From 77e30b83c3991c3ebfd292c09f4dad9ae29a6cb8 Mon Sep 17 00:00:00 2001 From: Krista Pratico Date: Thu, 3 Jun 2021 08:26:13 -0700 Subject: [PATCH] [translation] poller design (#19041) * add polling implementation * add polling generation transforms and regenerate * add tests and recordings * samples, readme, changelog * update changelog * pylint * some docs updates * missed an await --- eng/.docsettings.yml | 1 + .../CHANGELOG.md | 12 + .../azure-ai-translation-document/README.md | 112 +- .../azure/ai/translation/document/__init__.py | 2 + .../azure/ai/translation/document/_client.py | 125 +- .../_document_translation_operations.py | 18 +- .../_document_translation_operations.py | 18 +- .../azure/ai/translation/document/_models.py | 33 +- .../azure/ai/translation/document/_polling.py | 187 +- .../ai/translation/document/aio/__init__.py | 4 +- .../document/aio/_async_polling.py | 129 + .../translation/document/aio/_client_async.py | 126 +- .../samples/README.md | 8 +- ...c.py => sample_begin_translation_async.py} | 35 +- .../sample_check_document_statuses_async.py | 21 +- .../sample_list_all_submitted_jobs_async.py | 6 +- ...st_document_statuses_with_filters_async.py | 2 +- ...ample_translation_with_azure_blob_async.py | 18 +- ...ample_translation_with_glossaries_async.py | 21 +- ...ion_job.py => sample_begin_translation.py} | 36 +- .../samples/sample_check_document_statuses.py | 20 +- .../samples/sample_list_all_submitted_jobs.py | 6 +- ...ple_list_document_statuses_with_filters.py | 2 +- .../sample_translation_with_azure_blob.py | 18 +- .../sample_translation_with_glossaries.py | 22 +- .../swagger/README.md | 48 + .../tests/asynctestcase.py | 44 +- ..._statuses.test_list_document_statuses.yaml | 880 +-- ..._list_document_statuses_filter_by_ids.yaml | 663 +- ...st_document_statuses_filter_by_status.yaml | 478 +- ...t_statuses_order_by_creation_time_asc.yaml | 592 +- ..._statuses_order_by_creation_time_desc.yaml | 696 +- ...ist_document_statuses_with_pagination.yaml | 980 +-- ...test_list_document_statuses_with_skip.yaml | 652 +- ...ses_async.test_list_document_statuses.yaml | 398 +- ..._list_document_statuses_filter_by_ids.yaml | 543 +- ...st_document_statuses_filter_by_status.yaml | 420 +- ...t_statuses_order_by_creation_time_asc.yaml | 332 +- ..._statuses_order_by_creation_time_desc.yaml | 359 +- ...ist_document_statuses_with_pagination.yaml | 569 +- ...test_list_document_statuses_with_skip.yaml | 403 +- .../test_cancel_job.test_cancel_job.yaml | 174 +- ...test_cancel_job_async.test_cancel_job.yaml | 179 +- ...st_document_status.test_list_statuses.yaml | 623 +- ...ument_status_async.test_list_statuses.yaml | 326 +- ...bmitted_jobs.test_list_submitted_jobs.yaml | 777 +- ...ubmitted_jobs_filter_by_created_after.yaml | 467 +- ...bmitted_jobs_filter_by_created_before.yaml | 3144 ++------ ...est_list_submitted_jobs_filter_by_ids.yaml | 416 +- ..._list_submitted_jobs_filter_by_status.yaml | 2504 ++---- ...itted_jobs_order_by_creation_time_asc.yaml | 717 +- ...tted_jobs_order_by_creation_time_desc.yaml | 498 +- ...t_list_submitted_jobs_with_pagination.yaml | 6351 +++++++++++++++- ...bs.test_list_submitted_jobs_with_skip.yaml | 1270 +++- ...d_jobs_async.test_list_submitted_jobs.yaml | 854 ++- ...ubmitted_jobs_filter_by_created_after.yaml | 254 +- ...bmitted_jobs_filter_by_created_before.yaml | 2927 ++----- ...est_list_submitted_jobs_filter_by_ids.yaml | 254 +- ..._list_submitted_jobs_filter_by_status.yaml | 1897 ++--- ...itted_jobs_order_by_creation_time_asc.yaml | 600 +- ...tted_jobs_order_by_creation_time_desc.yaml | 599 +- ...t_list_submitted_jobs_with_pagination.yaml | 6755 ++++++++++++++--- ...nc.test_list_submitted_jobs_with_skip.yaml | 1542 ++-- ...rmats.test_supported_document_formats.yaml | 10 +- ...rmats.test_supported_glossary_formats.yaml | 10 +- ...async.test_supported_document_formats.yaml | 23 +- ...async.test_supported_glossary_formats.yaml | 16 +- ...est_translation.test_bad_input_source.yaml | 136 +- .../test_translation.test_empty_document.yaml | 215 +- ...ion.test_existing_documents_in_target.yaml | 176 +- ...xisting_documents_in_target_one_valid.yaml | 223 +- ...n.test_multiple_sources_single_target.yaml | 207 +- ...tion.test_single_source_single_target.yaml | 257 +- ...ngle_source_single_target_with_prefix.yaml | 193 +- ...ngle_source_single_target_with_suffix.yaml | 193 +- ...lation.test_single_source_two_targets.yaml | 293 +- ...t_use_supported_and_unsupported_files.yaml | 448 +- ...anslation_async.test_bad_input_source.yaml | 121 +- ...translation_async.test_empty_document.yaml | 191 +- ...ync.test_existing_documents_in_target.yaml | 166 +- ...xisting_documents_in_target_one_valid.yaml | 340 +- ...c.test_multiple_sources_single_target.yaml | 453 +- ...sync.test_single_source_single_target.yaml | 205 +- ...ngle_source_single_target_with_prefix.yaml | 269 +- ...ngle_source_single_target_with_suffix.yaml | 246 +- ..._async.test_single_source_two_targets.yaml | 258 +- ...t_use_supported_and_unsupported_files.yaml | 249 +- .../tests/test_all_document_statuses.py | 40 +- .../tests/test_all_document_statuses_async.py | 40 +- .../tests/test_cancel_job.py | 13 +- .../tests/test_cancel_job_async.py | 13 +- .../tests/test_document_status.py | 2 +- .../tests/test_document_status_async.py | 2 +- .../tests/test_list_submitted_jobs.py | 37 +- .../tests/test_list_submitted_jobs_async.py | 37 +- .../tests/test_translation.py | 65 +- .../tests/test_translation_async.py | 64 +- .../tests/testcase.py | 105 +- 98 files changed, 23531 insertions(+), 23952 deletions(-) create mode 100644 sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/_async_polling.py rename sdk/translation/azure-ai-translation-document/samples/async_samples/{sample_create_translation_job_async.py => sample_begin_translation_async.py} (70%) rename sdk/translation/azure-ai-translation-document/samples/{sample_create_translation_job.py => sample_begin_translation.py} (70%) create mode 100644 sdk/translation/azure-ai-translation-document/swagger/README.md diff --git a/eng/.docsettings.yml b/eng/.docsettings.yml index 960fcec4f346..4d1481cae9e1 100644 --- a/eng/.docsettings.yml +++ b/eng/.docsettings.yml @@ -84,6 +84,7 @@ known_content_issues: - ['sdk/monitor/azure-monitor-opentelemetry-exporter/README.md', '#4554'] - ['sdk/digitaltwins/azure-digitaltwins-core/swagger/README.md', '#4554'] - ['sdk/textanalytics/azure-ai-textanalytics/swagger/README.md', '#4554'] + - ['sdk/translation/azure-ai-translation-document/swagger/README.md', '#4554'] - ['sdk/purview/azure-purview-catalog/swagger/README.md',  '#4554'] - ['sdk/purview/azure-purview-scanning/swagger/README.md',  '#4554'] - ['sdk/agrifood/azure-agrifood-farming/swagger/README.md',  '#4554'] diff --git a/sdk/translation/azure-ai-translation-document/CHANGELOG.md b/sdk/translation/azure-ai-translation-document/CHANGELOG.md index f8f2419f7c2c..afffa883ace8 100644 --- a/sdk/translation/azure-ai-translation-document/CHANGELOG.md +++ b/sdk/translation/azure-ai-translation-document/CHANGELOG.md @@ -4,6 +4,18 @@ This version of the SDK defaults to the latest supported service version, which currently is v1.0 +**Breaking changes** + +- `create_translation_job` was removed and replaced with `begin_translation` which follows a long-running operation (LRO) +approach. The client method now returns a `DocumentTranslationPoller` (or `AsyncDocumentTranslationPoller`) to begin the +long-running operation. A call to `.result()` can be made on the poller object to wait until the translation is complete. +See the [README](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/README.md) for more information about LROs. +- Upon completion of the LRO, `begin_translation` now returns a pageable of `DocumentStatusResult`. All job-level metadata can still +be found on `poller.details`. +- `has_completed` has been removed from `JobStatusResult` and `DocumentStatusResult`. Use `poller.done()` to check if the +translation has completed. +- Client method `wait_until_done` has been removed. Use `poller.result()` to wait for the LRO to complete. + **New features** - Authentication using `azure-identity` credentials now supported. diff --git a/sdk/translation/azure-ai-translation-document/README.md b/sdk/translation/azure-ai-translation-document/README.md index d42e86a75f6f..635100330827 100644 --- a/sdk/translation/azure-ai-translation-document/README.md +++ b/sdk/translation/azure-ai-translation-document/README.md @@ -4,7 +4,7 @@ Azure Cognitive Services Document Translation is a cloud service that translates and dialects while preserving document structure and data format. Use the client library for Document Translation to: * Translate numerous, large files from an Azure Blob Storage container to a target container in your language of choice. -* Check the translation status and progress of each document in the translation job. +* Check the translation status and progress of each document in the translation operation. * Apply a custom translation model or glossaries to tailor translation to your specific case. [Source code][python-dt-src] | [Package (PyPI)][python-dt-pypi] | [API reference documentation][python-dt-ref-docs] | [Product documentation][python-dt-product-docs] | [Samples][python-dt-samples] @@ -130,14 +130,14 @@ the service documentation: Interaction with the Document Translation client library begins with an instance of the `DocumentTranslationClient`. The client provides operations for: - - Creating a translation job to translate documents in your source container(s) and write results to you target container(s). - - Checking the status of individual documents in the translation job and monitoring each document's progress. - - Enumerating all past and current translation jobs with the option to wait until the job(s) finish. + - Creating a translation operation to translate documents in your source container(s) and write results to you target container(s). + - Checking the status of individual documents in the translation operation and monitoring each document's progress. + - Enumerating all past and current translations operations. - Identifying supported glossary and document formats. ### Translation Input -To create a translation job, pass a list of `DocumentTranslationInput` into the `create_translation_job` client method. +To begin translating your documents, pass a list of `DocumentTranslationInput` into the `begin_translation` client method. Constructing a `DocumentTranslationInput` requires that you pass the SAS URLs to your source and target containers (or files) and the target language(s) for translation. @@ -191,20 +191,22 @@ my_input = [ See the service documentation for all [supported languages][supported_languages]. -### Return value +### Long-Running Operations +Long-running operations are operations which consist of an initial request sent to the service to start an operation, +followed by polling the service at intervals to determine whether the operation has completed or failed, and if it has +succeeded, to get the result. -There are primarily two types of return values when checking on the result of a translation job - `JobStatusResult` and `DocumentStatusResult`. -* A `JobStatusResult` will contain the details of the entire job, such as it's status, ID, any errors, and status summaries of the documents in the job. -* A `DocumentStatusResult` will contain the details of an individual document, such as it's status, translation progress, any errors, -and the URLs to the source document and translated document. +Methods that translate documents are modeled as long-running operations. +The client exposes a `begin_` method that returns a `DocumentTranslationPoller` or `AsyncDocumentTranslationPoller`. Callers should wait +for the operation to complete by calling `result()` on the poller object returned from the `begin_` method. +Sample code snippets are provided to illustrate using long-running operations [below](#examples "Examples"). ## Examples The following section provides several code snippets covering some of the most common Document Translation tasks, including: * [Translate your documents](#translate-your-documents "Translate Your Documents") -* [Check status on individual documents](#check-status-on-individual-documents "Check Status On Individual Documents") -* [List translation jobs](#list-translation-jobs "List Translation Jobs") +* [List translation operations](#list-translation-operations "List Translation Operations") ### Translate your documents Translate the documents in your source container to the target containers. @@ -221,7 +223,7 @@ target_container_sas_url_fr = "" document_translation_client = DocumentTranslationClient(endpoint, credential) -job = document_translation_client.create_translation_job( +poller = document_translation_client.begin_translation( [ DocumentTranslationInput( source_url=source_container_sas_url_en, @@ -231,59 +233,32 @@ job = document_translation_client.create_translation_job( ], ) ] -) # type: JobStatusResult - -job_result = document_translation_client.wait_until_done(job.id) # type: JobStatusResult - -print("Job created on: {}".format(job_result.created_on)) -print("Job last updated on: {}".format(job_result.last_updated_on)) -print("Total number of translations on documents: {}".format(job_result.documents_total_count)) - -print("Of total documents...") -print("{} failed".format(job_result.documents_failed_count)) -print("{} succeeded".format(job_result.documents_succeeded_count)) - -if job_result.status == "Succeeded": - print("Our translation job succeeded") - -if job_result.status == "Failed": - print("All documents failed in the translation job") - -# check document statuses... see next sample -``` - -### Check status on individual documents -Check status and translation progress of each document under a job. - -```python -from azure.core.credentials import AzureKeyCredential -from azure.ai.translation.document import DocumentTranslationClient - -endpoint = "https://.cognitiveservices.azure.com/" -credential = AzureKeyCredential("") -job_id = "" - -document_translation_client = DocumentTranslationClient(endpoint, credential) +) -documents = document_translation_client.list_all_document_statuses(job_id) # type: ItemPaged[DocumentStatusResult] - -for doc in documents: - if doc.status == "Succeeded": - print("Document at {} was translated to {} language".format( - doc.translated_document_url, doc.translate_to - )) - if doc.status == "Running": - print("Document ID: {}, translation progress is {} percent".format( - doc.id, doc.translation_progress*100 - )) - if doc.status == "Failed": - print("Document ID: {}, Error Code: {}, Message: {}".format( - doc.id, doc.error.code, doc.error.message - )) +result = poller.result() + +print("Status: {}".format(poller.status())) +print("Created on: {}".format(poller.details.created_on)) +print("Last updated on: {}".format(poller.details.last_updated_on)) +print("Total number of translations on documents: {}".format(poller.details.documents_total_count)) + +print("\nOf total documents...") +print("{} failed".format(poller.details.documents_failed_count)) +print("{} succeeded".format(poller.details.documents_succeeded_count)) + +for document in result: + print("Document ID: {}".format(document.id)) + print("Document status: {}".format(document.status)) + if document.status == "Succeeded": + print("Source document location: {}".format(document.source_document_url)) + print("Translated document location: {}".format(document.translated_document_url)) + print("Translated to language: {}\n".format(document.translate_to)) + else: + print("Error Code: {}, Message: {}\n".format(document.error.code, document.error.message)) ``` -### List translation jobs -Enumerate over the translation jobs submitted for the resource. +### List translation operations +Enumerate over the translation operations submitted for the resource. ```python from azure.core.credentials import AzureKeyCredential @@ -297,9 +272,6 @@ document_translation_client = DocumentTranslationClient(endpoint, credential) jobs = document_translation_client.list_submitted_jobs() # type: ItemPaged[JobStatusResult] for job in jobs: - if not job.has_completed: - job = document_translation_client.wait_until_done(job.id) - print("Job ID: {}".format(job.id)) print("Job status: {}".format(job.status)) print("Job created on: {}".format(job.created_on)) @@ -348,7 +320,7 @@ The following section provides several code snippets illustrating common pattern These code samples show common scenario operations with the Azure Document Translation client library. * Client authentication: [sample_authentication.py][sample_authentication] -* Create a translation job: [sample_create_translation_job.py][sample_create_translation_job] +* Begin translating documents: [sample_begin_translation.py][sample_begin_translation] * Check the status of documents: [sample_check_document_statuses.py][sample_check_document_statuses] * List all submitted translation jobs: [sample_list_all_submitted_jobs.py][sample_list_all_submitted_jobs] * Apply a custom glossary to translation: [sample_translation_with_glossaries.py][sample_translation_with_glossaries] @@ -361,7 +333,7 @@ first install an async transport, such as [aiohttp](https://pypi.org/project/aio are found under the `azure.ai.translation.document.aio` namespace. * Client authentication: [sample_authentication_async.py][sample_authentication_async] -* Create a translation job: [sample_create_translation_job_async.py][sample_create_translation_job_async] +* Begin translating documents: [sample_begin_translation_async.py][sample_begin_translation_async] * Check the status of documents: [sample_check_document_statuses_async.py][sample_check_document_statuses_async] * List all submitted translation jobs: [sample_list_all_submitted_jobs_async.py][sample_list_all_submitted_jobs_async] * Apply a custom glossary to translation: [sample_translation_with_glossaries_async.py][sample_translation_with_glossaries_async] @@ -416,8 +388,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con [sample_authentication]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/sample_authentication.py [sample_authentication_async]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_authentication_async.py -[sample_create_translation_job]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/sample_create_translation_job.py -[sample_create_translation_job_async]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_create_translation_job_async.py +[sample_begin_translation]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/sample_begin_translation.py +[sample_begin_translation_async]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_begin_translation_async.py [sample_check_document_statuses]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/sample_check_document_statuses.py [sample_check_document_statuses_async]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_check_document_statuses_async.py [sample_list_all_submitted_jobs]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/translation/azure-ai-translation-document/samples/sample_list_all_submitted_jobs.py diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/__init__.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/__init__.py index 1304889fdc6c..a0894ffcf38e 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/__init__.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/__init__.py @@ -10,6 +10,7 @@ StorageInputType, ) from ._api_version import DocumentTranslationApiVersion +from ._polling import DocumentTranslationPoller from ._models import ( TranslationTarget, JobStatusResult, @@ -34,4 +35,5 @@ "JobStatusResult", "DocumentStatusResult", "DocumentTranslationError", + "DocumentTranslationPoller" ] 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 6e71e548c513..7eaf5eb53069 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 @@ -4,12 +4,10 @@ # Licensed under the MIT License. # ------------------------------------ +import json from typing import Any, TYPE_CHECKING, List, Union from azure.core.tracing.decorator import distributed_trace -from azure.core.polling import LROPoller -from azure.core.polling.base_polling import LROBasePolling from ._generated import BatchDocumentTranslationClient as _BatchDocumentTranslationClient -from ._generated.models import TranslationStatus as _TranslationStatus from ._models import ( JobStatusResult, DocumentStatusResult, @@ -17,11 +15,12 @@ FileFormat ) from ._user_agent import USER_AGENT -from ._polling import TranslationPolling +from ._polling import TranslationPolling, DocumentTranslationLROPollingMethod from ._helpers import get_http_logging_policy, convert_datetime, get_authentication_policy if TYPE_CHECKING: from azure.core.paging import ItemPaged from azure.core.credentials import TokenCredential, AzureKeyCredential + from ._polling import DocumentTranslationPoller class DocumentTranslationClient(object): # pylint: disable=r0205 @@ -91,10 +90,10 @@ def close(self): return self._client.close() @distributed_trace - def create_translation_job(self, inputs, **kwargs): - # type: (List[DocumentTranslationInput], **Any) -> JobStatusResult - """Create a document translation job which translates the document(s) in your source container - to your TranslationTarget(s) in the given language. + def begin_translation(self, inputs, **kwargs): + # type: (List[DocumentTranslationInput], **Any) -> DocumentTranslationPoller[ItemPaged[DocumentStatusResult]] + """Begin translating the document(s) in your source container to your TranslationTarget(s) + in the given language. For supported languages and document formats, see the service documentation: https://docs.microsoft.com/azure/cognitive-services/translator/document-translation/overview @@ -103,37 +102,55 @@ def create_translation_job(self, inputs, **kwargs): source URL to documents and can contain multiple TranslationTargets (one for each language) for the destination to write translated documents. :type inputs: List[~azure.ai.translation.document.DocumentTranslationInput] - :return: A JobStatusResult with information on the status of the translation job. - :rtype: ~azure.ai.translation.document.JobStatusResult + :return: An instance of a DocumentTranslationPoller. Call `result()` on the poller + object to return a pageable of DocumentStatusResult. A DocumentStatusResult will be + returned for each translation on a document. + :rtype: DocumentTranslationPoller[ItemPaged[~azure.ai.translation.document.DocumentStatusResult]] :raises ~azure.core.exceptions.HttpResponseError: .. admonition:: Example: - .. literalinclude:: ../samples/sample_check_document_statuses.py - :start-after: [START create_translation_job] - :end-before: [END create_translation_job] + .. literalinclude:: ../samples/sample_begin_translation.py + :start-after: [START begin_translation] + :end-before: [END begin_translation] :language: python :dedent: 4 - :caption: Create a translation job. + :caption: Translate the documents in your storage container. """ - # submit translation job - response_headers = self._client.document_translation._start_translation_initial( # pylint: disable=protected-access - inputs=DocumentTranslationInput._to_generated_list(inputs), # pylint: disable=protected-access - cls=lambda pipeline_response, _, response_headers: response_headers, - **kwargs - ) - - def get_job_id(response_headers): - operation_loc_header = response_headers['Operation-Location'] - return operation_loc_header.split('/')[-1] + def deserialization_callback( + raw_response, _, headers + ): # pylint: disable=unused-argument + translation_status = json.loads(raw_response.http_response.text()) + return self.list_all_document_statuses(translation_status["id"]) - # get job id from response header - job_id = get_job_id(response_headers) - - # get job status - return self.get_job_status(job_id) + polling_interval = kwargs.pop( + "polling_interval", self._client._config.polling_interval # pylint: disable=protected-access + ) + continuation_token = kwargs.pop("continuation_token", None) + pipeline_response = None + if continuation_token: + pipeline_response = self._client.document_translation.get_translation_status( + continuation_token, + cls=lambda pipeline_response, _, response_headers: pipeline_response, + ) + + callback = kwargs.pop("cls", deserialization_callback) + return self._client.document_translation.begin_start_translation( + inputs=DocumentTranslationInput._to_generated_list(inputs) # pylint: disable=protected-access + if not continuation_token else None, + polling=DocumentTranslationLROPollingMethod( + timeout=polling_interval, + lro_algorithms=[ + TranslationPolling() + ], + cont_token_response=pipeline_response, + **kwargs), + cls=callback, + continuation_token=continuation_token, + **kwargs + ) @distributed_trace def get_job_status(self, job_id, **kwargs): @@ -169,50 +186,6 @@ def cancel_job(self, job_id, **kwargs): self._client.document_translation.cancel_translation(job_id, **kwargs) - @distributed_trace - def wait_until_done(self, job_id, **kwargs): - # type: (str, **Any) -> JobStatusResult - """Wait until the translation job is done. - - A job is considered "done" when it reaches a terminal state like - Succeeded, Failed, Cancelled. - - :param str job_id: The translation job ID. - :return: A JobStatusResult with information on the status of the translation job. - :rtype: ~azure.ai.translation.document.JobStatusResult - :raises ~azure.core.exceptions.HttpResponseError or ~azure.core.exceptions.ResourceNotFoundError: - Will raise if validation fails on the input. E.g. insufficient permissions on the blob containers. - - .. admonition:: Example: - - .. literalinclude:: ../samples/sample_create_translation_job.py - :start-after: [START wait_until_done] - :end-before: [END wait_until_done] - :language: python - :dedent: 4 - :caption: Create a translation job and wait until it is done. - """ - - pipeline_response = self._client.document_translation.get_translation_status( - job_id, - cls=lambda pipeline_response, _, response_headers: pipeline_response - ) - - def callback(raw_response): - detail = self._client._deserialize(_TranslationStatus, raw_response) # pylint: disable=protected-access - return JobStatusResult._from_generated(detail) # pylint: disable=protected-access - - poller = LROPoller( - client=self._client._client, # pylint: disable=protected-access - initial_response=pipeline_response, - deserialization_callback=callback, - polling_method=LROBasePolling( - timeout=self._client._config.polling_interval, # pylint: disable=protected-access - lro_algorithms=[TranslationPolling()], - **kwargs - ), - ) - return poller.result() @distributed_trace def list_submitted_jobs(self, **kwargs): @@ -291,12 +264,12 @@ def list_all_document_statuses(self, job_id, **kwargs): .. admonition:: Example: - .. literalinclude:: ../samples/sample_create_translation_job.py + .. literalinclude:: ../samples/sample_check_document_statuses.py :start-after: [START list_all_document_statuses] :end-before: [END list_all_document_statuses] :language: python - :dedent: 4 - :caption: List all the document statuses under the translation job. + :dedent: 8 + :caption: List all the document statuses as they are being translated. """ translated_after = kwargs.pop("translated_after", None) translated_before = kwargs.pop("translated_before", None) diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/aio/operations/_document_translation_operations.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/aio/operations/_document_translation_operations.py index 4cb6c03ed56f..580c15b781cf 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/aio/operations/_document_translation_operations.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/aio/operations/_document_translation_operations.py @@ -9,12 +9,12 @@ from typing import Any, AsyncIterable, Callable, Dict, Generic, List, Optional, TypeVar, Union import warnings +from ....aio._async_polling import AsyncDocumentTranslationLROPollingMethod, AsyncDocumentTranslationPoller from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.pipeline import PipelineResponse from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest -from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod -from azure.core.polling.async_base_polling import AsyncLROBasePolling +from azure.core.polling import AsyncNoPolling, AsyncPollingMethod from ... import models as _models @@ -102,7 +102,7 @@ async def begin_start_translation( self, inputs: List["_models.BatchRequest"], **kwargs: Any - ) -> AsyncLROPoller[None]: + ) -> AsyncDocumentTranslationPoller[None]: """Submit a document translation request to the Document Translation service. Use this API to submit a bulk (batch) translation request to the Document Translation service. @@ -124,12 +124,12 @@ async def begin_start_translation( :type inputs: list[~azure.ai.translation.document.models.BatchRequest] :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. - :keyword polling: By default, your polling method will be AsyncLROBasePolling. + :keyword polling: By default, your polling method will be AsyncDocumentTranslationLROPollingMethod. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. - :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[None] + :return: An instance of AsyncDocumentTranslationPoller that returns either None or the result of cls(response) + :rtype: ~....aio._async_polling.AsyncDocumentTranslationPoller[None] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -157,18 +157,18 @@ def get_long_running_output(pipeline_response): 'endpoint': self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), } - if polling is True: polling_method = AsyncLROBasePolling(lro_delay, lro_options={'final-state-via': 'location'}, path_format_arguments=path_format_arguments, **kwargs) + if polling is True: polling_method = AsyncDocumentTranslationLROPollingMethod(lro_delay, lro_options={'final-state-via': 'location'}, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = AsyncNoPolling() else: polling_method = polling if cont_token: - return AsyncLROPoller.from_continuation_token( + return AsyncDocumentTranslationPoller.from_continuation_token( polling_method=polling_method, continuation_token=cont_token, client=self._client, deserialization_callback=get_long_running_output ) else: - return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + return AsyncDocumentTranslationPoller(self._client, raw_result, get_long_running_output, polling_method) begin_start_translation.metadata = {'url': '/batches'} # type: ignore def get_translations_status( diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/operations/_document_translation_operations.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/operations/_document_translation_operations.py index e8f735b8c14d..0a1edd3ed987 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/operations/_document_translation_operations.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/operations/_document_translation_operations.py @@ -9,12 +9,12 @@ from typing import TYPE_CHECKING import warnings +from ..._polling import DocumentTranslationLROPollingMethod, DocumentTranslationPoller from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged from azure.core.pipeline import PipelineResponse from azure.core.pipeline.transport import HttpRequest, HttpResponse -from azure.core.polling import LROPoller, NoPolling, PollingMethod -from azure.core.polling.base_polling import LROBasePolling +from azure.core.polling import NoPolling, PollingMethod from .. import models as _models @@ -108,7 +108,7 @@ def begin_start_translation( inputs, # type: List["_models.BatchRequest"] **kwargs # type: Any ): - # type: (...) -> LROPoller[None] + # type: (...) -> DocumentTranslationPoller[None] """Submit a document translation request to the Document Translation service. Use this API to submit a bulk (batch) translation request to the Document Translation service. @@ -130,12 +130,12 @@ def begin_start_translation( :type inputs: list[~azure.ai.translation.document.models.BatchRequest] :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. - :keyword polling: By default, your polling method will be LROBasePolling. + :keyword polling: By default, your polling method will be DocumentTranslationLROPollingMethod. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. - :return: An instance of LROPoller that returns either None or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[None] + :return: An instance of DocumentTranslationPoller that returns either None or the result of cls(response) + :rtype: ~..._polling.DocumentTranslationPoller[None] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -163,18 +163,18 @@ def get_long_running_output(pipeline_response): 'endpoint': self._serialize.url("self._config.endpoint", self._config.endpoint, 'str', skip_quote=True), } - if polling is True: polling_method = LROBasePolling(lro_delay, lro_options={'final-state-via': 'location'}, path_format_arguments=path_format_arguments, **kwargs) + if polling is True: polling_method = DocumentTranslationLROPollingMethod(lro_delay, lro_options={'final-state-via': 'location'}, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling if cont_token: - return LROPoller.from_continuation_token( + return DocumentTranslationPoller.from_continuation_token( polling_method=polling_method, continuation_token=cont_token, client=self._client, deserialization_callback=get_long_running_output ) else: - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + return DocumentTranslationPoller(self._client, raw_result, get_long_running_output, polling_method) begin_start_translation.metadata = {'url': '/batches'} # type: ignore def get_translations_status( diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_models.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_models.py index 34ad8749c54f..4f37dc2d57a3 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_models.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_models.py @@ -254,10 +254,6 @@ class JobStatusResult(object): # pylint: disable=useless-object-inheritance, to :ivar int documents_not_yet_started_count: Number of documents that have not yet started being translated. :ivar int documents_cancelled_count: Number of documents that were cancelled for translation. :ivar int total_characters_charged: Total characters charged across all documents within the job. - :ivar bool has_completed: boolean to check whether a job has finished or not. - If the status returned indicates that the translation job has completed. - A translation job is considered 'complete' if it has reached - a terminal state like 'Succeeded', 'Cancelled', or 'Failed'." """ def __init__( @@ -265,9 +261,9 @@ def __init__( **kwargs ): # type: (**Any) -> None - self.id = kwargs['id'] - self.created_on = kwargs['created_on'] - self.last_updated_on = kwargs['last_updated_on'] + self.id = kwargs.get('id') + self.created_on = kwargs.get('created_on') + self.last_updated_on = kwargs.get('last_updated_on', None) self.status = kwargs.get('status', None) self.error = kwargs.get("error", None) self.documents_total_count = kwargs.get('documents_total_count', None) @@ -277,10 +273,11 @@ def __init__( self.documents_not_yet_started_count = kwargs.get('documents_not_yet_started_count', None) self.documents_cancelled_count = kwargs.get('documents_cancelled_count', None) self.total_characters_charged = kwargs.get('total_characters_charged', None) - self.has_completed = kwargs.get('has_completed', False) @classmethod def _from_generated(cls, batch_status_details): + if not batch_status_details: + return cls() return cls( id=batch_status_details.id, created_on=batch_status_details.created_date_time_utc, @@ -294,8 +291,7 @@ def _from_generated(cls, batch_status_details): documents_in_progress_count=batch_status_details.summary.in_progress, documents_not_yet_started_count=batch_status_details.summary.not_yet_started, documents_cancelled_count=batch_status_details.summary.cancelled, - total_characters_charged=batch_status_details.summary.total_character_charged, - has_completed=bool(batch_status_details.status not in ["NotStarted", "Running", "Cancelling"]) + total_characters_charged=batch_status_details.summary.total_character_charged ) def __repr__(self): @@ -303,12 +299,12 @@ def __repr__(self): "last_updated_on={}, status={}, error={}, documents_total_count={}, "\ "documents_failed_count={}, documents_succeeded_count={}, "\ "documents_in_progress_count={}, documents_not_yet_started_count={}, "\ - "documents_cancelled_count={}, total_characters_charged={}, has_completed={})" \ + "documents_cancelled_count={}, total_characters_charged={})" \ .format(self.id, self.created_on, self.last_updated_on, self.status, self.error.__repr__(), self.documents_total_count, self.documents_failed_count, self.documents_succeeded_count, self.documents_in_progress_count, self.documents_not_yet_started_count, self.documents_cancelled_count, - self.total_characters_charged, self.has_completed)[:1024] + self.total_characters_charged)[:1024] class DocumentStatusResult(object): # pylint: disable=useless-object-inheritance, R0903, R0902 @@ -339,10 +335,6 @@ class DocumentStatusResult(object): # pylint: disable=useless-object-inheritanc Value is between [0.0, 1.0]. :ivar str id: Document Id. :ivar int characters_charged: Characters charged for the document. - :ivar bool has_completed: boolean to check whether a document finished translation or not. - If the status returned indicates that the document has completed. - A document is considered 'complete' if it has reached - a terminal state like 'Succeeded', 'Cancelled', or 'Failed'." """ def __init__( @@ -360,8 +352,6 @@ def __init__( self.translation_progress = kwargs.get('translation_progress', None) self.id = kwargs.get('id', None) self.characters_charged = kwargs.get('characters_charged', None) - self.has_completed = kwargs.get('has_completed', False) - @classmethod def _from_generated(cls, doc_status): @@ -375,8 +365,7 @@ def _from_generated(cls, doc_status): error=DocumentTranslationError._from_generated(doc_status.error) if doc_status.error else None, # pylint: disable=protected-access translation_progress=doc_status.progress, id=doc_status.id, - characters_charged=doc_status.character_charged, - has_completed=bool(doc_status.status not in ["NotStarted", "Running", "Cancelling"]) + characters_charged=doc_status.character_charged ) def __repr__(self): @@ -384,10 +373,10 @@ def __repr__(self): return "DocumentStatusResult(id={}, source_document_url={}, "\ "translated_document_url={}, created_on={}, last_updated_on={}, "\ "status={}, translate_to={}, error={}, translation_progress={}, "\ - "characters_charged={}, has_completed={}" \ + "characters_charged={})" \ .format(self.id, self.source_document_url, self.translated_document_url, self.created_on, self.last_updated_on, self.status, self.translate_to, - self.error.__repr__(), self.translation_progress, self.characters_charged, self.has_completed)[:1024] + self.error.__repr__(), self.translation_progress, self.characters_charged)[:1024] class DocumentTranslationError(object): # pylint: disable=useless-object-inheritance, R0903 diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_polling.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_polling.py index c7db99ff18cf..86e20c03c2dd 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_polling.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_polling.py @@ -4,29 +4,166 @@ # Licensed under the MIT License. # ------------------------------------ +from typing import Any, Union, Tuple, TYPE_CHECKING +from azure.core.polling import LROPoller from azure.core.polling.base_polling import ( - LongRunningOperation, + LROBasePolling, + OperationResourcePolling, _is_empty, _as_json, BadResponse, - OperationFailed + OperationFailed, + _raise_if_bad_http_status_and_method ) from azure.core.exceptions import HttpResponseError, ODataV4Format +from ._generated.models import TranslationStatus +from ._models import JobStatusResult -class TranslationPolling(LongRunningOperation): - """Implements a Location polling. +if TYPE_CHECKING: + from azure.core.pipeline import PipelineResponse + from azure.core.pipeline.transport import ( + HttpResponse, + AsyncHttpResponse, + HttpRequest, + ) + + ResponseType = Union[HttpResponse, AsyncHttpResponse] + PipelineResponseType = PipelineResponse[HttpRequest, ResponseType] + + +_FINISHED = frozenset(["succeeded", "cancelled", "cancelling", "failed"]) +_FAILED = frozenset(["validationfailed"]) + + +class DocumentTranslationPoller(LROPoller): + """A custom poller implementation for Document Translation. """ - def __init__(self): - self._async_url = None + @property + def id(self): + # type: () -> str + """The ID for the translation operation + + :return: str + """ + if self._polling_method._current_body: # pylint: disable=protected-access + return self._polling_method._current_body.id # pylint: disable=protected-access + return self._polling_method._get_id_from_headers() # pylint: disable=protected-access + + @property + def details(self): + # type: () -> JobStatusResult + """The details for the translation operation + + :return: JobStatusResult + """ + return JobStatusResult._from_generated(self._polling_method._current_body) # pylint: disable=protected-access + + @classmethod + def from_continuation_token(cls, polling_method, continuation_token, **kwargs): + # type: (DocumentTranslationLROPollingMethod, str, **Any) -> DocumentTranslationPoller + + client, initial_response, deserialization_callback = polling_method.from_continuation_token( + continuation_token, **kwargs + ) + + return cls(client, initial_response, deserialization_callback, polling_method) + + +class DocumentTranslationLROPollingMethod(LROBasePolling): + """A custom polling method implementation for Document Translation. + """ + + def __init__(self, *args, **kwargs): + self._cont_token_response = kwargs.pop("cont_token_response") + super(DocumentTranslationLROPollingMethod, self).__init__(*args, **kwargs) + + @property + def _current_body(self): + # type: () -> TranslationStatus + return TranslationStatus.deserialize(self._pipeline_response) + + def _get_id_from_headers(self): + # type: () -> str + return self._pipeline_response.http_response.headers["Operation-Location"].split("/batches/")[1] + + def finished(self): + """Is this polling finished? + :rtype: bool + """ + return self._finished(self.status()) + + @staticmethod + def _finished(status): + if hasattr(status, "value"): + status = status.value + return str(status).lower() in _FINISHED + + @staticmethod + def _failed(status): + if hasattr(status, "value"): + status = status.value + return str(status).lower() in _FAILED + + def get_continuation_token(self): + # type: () -> str + if self._current_body: + return self._current_body.id + return self._get_id_from_headers() + + def from_continuation_token(self, continuation_token, **kwargs): + # type: (str, Any) -> Tuple + try: + client = kwargs["client"] + except KeyError: + raise ValueError("Need kwarg 'client' to be recreated from continuation_token") + + try: + deserialization_callback = kwargs["deserialization_callback"] + except KeyError: + raise ValueError("Need kwarg 'deserialization_callback' to be recreated from continuation_token") + + return client, self._cont_token_response, deserialization_callback + + def _poll(self): + """Poll status of operation so long as operation is incomplete and + we have an endpoint to query. + + :param callable update_cmd: The function to call to retrieve the + latest status of the long running operation. + :raises: OperationFailed if operation status 'Failed' or 'Canceled'. + :raises: BadStatus if response status invalid. + :raises: BadResponse if response invalid. + """ + + while not self.finished(): + self._delay() + self.update_status() + + if self._failed(self.status()): + raise OperationFailed("Operation failed or canceled") + + final_get_url = self._operation.get_final_get_url(self._pipeline_response) + if final_get_url: + self._pipeline_response = self.request_status(final_get_url) + _raise_if_bad_http_status_and_method(self._pipeline_response.http_response) + + +class TranslationPolling(OperationResourcePolling): + """Implements a Location polling. + """ def can_poll(self, pipeline_response): # type: (PipelineResponseType) -> bool """Answer if this polling method could be used. """ response = pipeline_response.http_response + can_poll = self._operation_location_header in response.headers + if can_poll: + return True + if not _is_empty(response): body = _as_json(response) status = body.get("status") @@ -34,30 +171,17 @@ def can_poll(self, pipeline_response): return True return False - def get_polling_url(self): - # type: () -> str - """Return the polling URL. - """ - return self._async_url - - def set_initial_status(self, pipeline_response): - # type: (PipelineResponseType) -> str - """Process first response after initiating long running operation. - - :param azure.core.pipeline.PipelineResponse response: initial REST call response. - """ - self._async_url = pipeline_response.http_response.request.url - - response = pipeline_response.http_response - if response.status_code in {200, 201, 202, 204} and self._async_url: - return "InProgress" - raise OperationFailed("Operation failed or canceled") + def _set_async_url_if_present(self, response): + # type: (ResponseType) -> None + self._async_url = response.headers.get(self._operation_location_header) + if not self._async_url: + self._async_url = response.request.url def get_status(self, pipeline_response): # type: (PipelineResponseType) -> str """Process the latest status update retrieved from a 'location' header. - :param azure.core.pipeline.PipelineResponse response: latest REST call response. + :param azure.core.pipeline.PipelineResponse pipeline_response: latest REST call response. :raises: BadResponse if response has no body and not status 202. """ response = pipeline_response.http_response @@ -69,14 +193,6 @@ def get_status(self, pipeline_response): raise BadResponse("No status found in body") raise BadResponse("The response from long running operation does not contain a body.") - def get_final_get_url(self, pipeline_response): - # type: (PipelineResponseType) -> Optional[str] - """If a final GET is needed, returns the URL. - - :rtype: str - """ - return None - # pylint: disable=R0201 def _map_nonstandard_statuses(self, status, body): # type: (str, dict) -> str @@ -87,11 +203,6 @@ def _map_nonstandard_statuses(self, status, body): """ if status == "ValidationFailed": self.raise_error(body) - if status == "Failed": - # We don't throw in a "Failed" case so this just indicates job completed - return "Succeeded" - if status in ["Cancelled", "Cancelling"]: - return "Canceled" return status def raise_error(self, body): diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/__init__.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/__init__.py index dd05613d4fe4..ccf9d73e9b44 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/__init__.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/__init__.py @@ -5,7 +5,9 @@ # ------------------------------------ from ._client_async import DocumentTranslationClient +from ._async_polling import AsyncDocumentTranslationPoller __all__ = [ - "DocumentTranslationClient" + "DocumentTranslationClient", + "AsyncDocumentTranslationPoller" ] diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/_async_polling.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/_async_polling.py new file mode 100644 index 000000000000..cb9166259a52 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/_async_polling.py @@ -0,0 +1,129 @@ +# coding=utf-8 +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ + +from typing import Any, Tuple, TypeVar +from azure.core.polling import AsyncLROPoller +from azure.core.polling.base_polling import ( + OperationFailed, + _raise_if_bad_http_status_and_method +) +from azure.core.polling.async_base_polling import AsyncLROBasePolling +from .._generated.models import TranslationStatus +from .._models import JobStatusResult + +PollingReturnType = TypeVar("PollingReturnType") +_FINISHED = frozenset(["succeeded", "cancelled", "cancelling", "failed"]) +_FAILED = frozenset(["validationfailed"]) + + +class AsyncDocumentTranslationPoller(AsyncLROPoller[PollingReturnType]): + """An async custom poller implementation for Document Translation. + """ + + @property + def id(self) -> str: + """The ID for the translation operation + + :return: str + """ + if self._polling_method._current_body: # pylint: disable=protected-access + return self._polling_method._current_body.id # pylint: disable=protected-access + return self._polling_method._get_id_from_headers() # pylint: disable=protected-access + + @property + def details(self) -> JobStatusResult: + """The details for the translation operation + + :return: JobStatusResult + """ + return JobStatusResult._from_generated(self._polling_method._current_body) # pylint: disable=protected-access + + @classmethod + def from_continuation_token( + cls, + polling_method: "AsyncDocumentTranslationLROPollingMethod", + continuation_token: str, + **kwargs: Any + ) -> "AsyncDocumentTranslationPoller": + + client, initial_response, deserialization_callback = polling_method.from_continuation_token( + continuation_token, **kwargs + ) + + return cls(client, initial_response, deserialization_callback, polling_method) + + +class AsyncDocumentTranslationLROPollingMethod(AsyncLROBasePolling): + """A custom polling method implementation for Document Translation. + """ + + def __init__(self, *args, **kwargs): + self._cont_token_response = kwargs.pop("cont_token_response") + super(AsyncDocumentTranslationLROPollingMethod, self).__init__(*args, **kwargs) + + @property + def _current_body(self) -> TranslationStatus: + return TranslationStatus.deserialize(self._pipeline_response) + + def _get_id_from_headers(self) -> str: + return self._pipeline_response.http_response.headers["Operation-Location"].split("/batches/")[1] + + def finished(self): + """Is this polling finished? + :rtype: bool + """ + return self._finished(self.status()) + + @staticmethod + def _finished(status): + if hasattr(status, "value"): + status = status.value + return str(status).lower() in _FINISHED + + @staticmethod + def _failed(status): + if hasattr(status, "value"): + status = status.value + return str(status).lower() in _FAILED + + def get_continuation_token(self) -> str: + if self._current_body: + return self._current_body.id + return self._get_id_from_headers() + + def from_continuation_token(self, continuation_token: str, **kwargs: Any) -> Tuple: + try: + client = kwargs["client"] + except KeyError: + raise ValueError("Need kwarg 'client' to be recreated from continuation_token") + + try: + deserialization_callback = kwargs["deserialization_callback"] + except KeyError: + raise ValueError("Need kwarg 'deserialization_callback' to be recreated from continuation_token") + + return client, self._cont_token_response, deserialization_callback + + async def _poll(self): # pylint:disable=invalid-overridden-method + """Poll status of operation so long as operation is incomplete and + we have an endpoint to query. + + :raises: OperationFailed if operation status 'Failed' or 'Canceled'. + :raises: BadStatus if response status invalid. + :raises: BadResponse if response invalid. + """ + + while not self.finished(): + await self._delay() + await self.update_status() + + if self._failed(self.status()): + raise OperationFailed("Operation failed or canceled") + + final_get_url = self._operation.get_final_get_url(self._pipeline_response) + if final_get_url: + self._pipeline_response = await self.request_status(final_get_url) + _raise_if_bad_http_status_and_method(self._pipeline_response.http_response) 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 a734de05689e..cd716d1b1568 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 @@ -4,17 +4,13 @@ # Licensed under the MIT License. # ------------------------------------ +import json from typing import Any, List, Union, TYPE_CHECKING from azure.core.tracing.decorator_async import distributed_trace_async from azure.core.tracing.decorator import distributed_trace -from azure.core.polling import AsyncLROPoller -from azure.core.polling.async_base_polling import AsyncLROBasePolling from azure.core.async_paging import AsyncItemPaged from .._generated.aio import BatchDocumentTranslationClient as _BatchDocumentTranslationClient from .._user_agent import USER_AGENT -from .._generated.models import ( - TranslationStatus as _TranslationStatus, -) from .._models import ( JobStatusResult, DocumentTranslationInput, @@ -22,6 +18,7 @@ DocumentStatusResult ) from .._helpers import get_http_logging_policy, convert_datetime, get_authentication_policy +from ._async_polling import AsyncDocumentTranslationLROPollingMethod, AsyncDocumentTranslationPoller from .._polling import TranslationPolling if TYPE_CHECKING: from azure.core.credentials import AzureKeyCredential @@ -92,10 +89,11 @@ async def close(self) -> None: await self._client.__aexit__() @distributed_trace_async - async def create_translation_job(self, inputs, **kwargs): - # type: (List[DocumentTranslationInput], **Any) -> JobStatusResult - """Create a document translation job which translates the document(s) in your source container - to your TranslationTarget(s) in the given language. + async def begin_translation( + self, inputs: List[DocumentTranslationInput], **kwargs: Any + ) -> AsyncDocumentTranslationPoller[AsyncItemPaged[DocumentStatusResult]]: + """Begin translating the document(s) in your source container to your TranslationTarget(s) + in the given language. For supported languages and document formats, see the service documentation: https://docs.microsoft.com/azure/cognitive-services/translator/document-translation/overview @@ -104,39 +102,55 @@ async def create_translation_job(self, inputs, **kwargs): source URL to documents and can contain multiple TranslationTargets (one for each language) for the destination to write translated documents. :type inputs: List[~azure.ai.translation.document.DocumentTranslationInput] - :return: A JobStatusResult with information on the status of the translation job. - :rtype: ~azure.ai.translation.document.JobStatusResult + :return: An instance of an AsyncDocumentTranslationPoller. Call `result()` on the poller + object to return a pageable of DocumentStatusResult. A DocumentStatusResult will be + returned for each translation on a document. + :rtype: AsyncDocumentTranslationPoller[AsyncItemPaged[~azure.ai.translation.document.DocumentStatusResult]] :raises ~azure.core.exceptions.HttpResponseError: .. admonition:: Example: - .. literalinclude:: ../samples/async_samples/sample_check_document_statuses_async.py - :start-after: [START create_translation_job_async] - :end-before: [END create_translation_job_async] + .. literalinclude:: ../samples/async_samples/sample_begin_translation_async.py + :start-after: [START begin_translation_async] + :end-before: [END begin_translation_async] :language: python :dedent: 4 - :caption: Create a translation job. + :caption: Translate the documents in your storage container. """ - # submit translation job - response_headers = await self._client.document_translation._start_translation_initial( # pylint: disable=protected-access - # pylint: disable=protected-access - inputs=DocumentTranslationInput._to_generated_list(inputs), - cls=lambda pipeline_response, _, response_headers: response_headers, - **kwargs - ) - - def get_job_id(response_headers): - # extract job id. - operation_location_header = response_headers['Operation-Location'] - return operation_location_header.split('/')[-1] + def deserialization_callback( + raw_response, _, headers + ): # pylint: disable=unused-argument + translation_status = json.loads(raw_response.http_response.text()) + return self.list_all_document_statuses(translation_status["id"]) - # get job id from response header - job_id = get_job_id(response_headers) - - # get job status - return await self.get_job_status(job_id) + polling_interval = kwargs.pop( + "polling_interval", self._client._config.polling_interval # pylint: disable=protected-access + ) + continuation_token = kwargs.pop("continuation_token", None) + pipeline_response = None + if continuation_token: + pipeline_response = await self._client.document_translation.get_translation_status( + continuation_token, + cls=lambda pipeline_response, _, response_headers: pipeline_response, + ) + + callback = kwargs.pop("cls", deserialization_callback) + return await self._client.document_translation.begin_start_translation( + inputs=DocumentTranslationInput._to_generated_list(inputs) # pylint: disable=protected-access + if not continuation_token else None, + polling=AsyncDocumentTranslationLROPollingMethod( + timeout=polling_interval, + lro_algorithms=[ + TranslationPolling() + ], + cont_token_response=pipeline_response, + **kwargs), + cls=callback, + continuation_token=continuation_token, + **kwargs + ) @distributed_trace_async async def get_job_status(self, job_id, **kwargs): @@ -173,50 +187,6 @@ async def cancel_job(self, job_id, **kwargs): await self._client.document_translation.cancel_translation(job_id, **kwargs) - @distributed_trace_async - async def wait_until_done(self, job_id, **kwargs): - # type: (str, **Any) -> JobStatusResult - """Wait until the translation job is done. - - A job is considered "done" when it reaches a terminal state like - Succeeded, Failed, Cancelled. - - :param str job_id: The translation job ID. - :return: A JobStatusResult with information on the status of the translation job. - :rtype: ~azure.ai.translation.document.JobStatusResult - :raises ~azure.core.exceptions.HttpResponseError or ~azure.core.exceptions.ResourceNotFoundError: - Will raise if validation fails on the input. E.g. insufficient permissions on the blob containers. - - .. admonition:: Example: - - .. literalinclude:: ../samples/async_samples/sample_create_translation_job_async.py - :start-after: [START wait_until_done_async] - :end-before: [END wait_until_done_async] - :language: python - :dedent: 4 - :caption: Create a translation job and wait until it is done. - """ - pipeline_response = await self._client.document_translation.get_translation_status( - job_id, - cls=lambda pipeline_response, _, response_headers: pipeline_response - ) - - def callback(raw_response): - detail = self._client._deserialize(_TranslationStatus, raw_response) # pylint: disable=protected-access - return JobStatusResult._from_generated(detail) # pylint: disable=protected-access - - poller = AsyncLROPoller( - client=self._client._client, # pylint: disable=protected-access - initial_response=pipeline_response, - deserialization_callback=callback, - polling_method=AsyncLROBasePolling( - timeout=self._client._config.polling_interval, # pylint: disable=protected-access - lro_algorithms=[TranslationPolling()], - **kwargs - ), - ) - return await poller.result() - @distributed_trace def list_submitted_jobs(self, **kwargs): # type: (**Any) -> AsyncItemPaged[JobStatusResult] @@ -295,12 +265,12 @@ def list_all_document_statuses(self, job_id, **kwargs): .. admonition:: Example: - .. literalinclude:: ../samples/async_samples/sample_create_translation_job_async.py + .. literalinclude:: ../samples/async_samples/sample_check_document_statuses_async.py :start-after: [START list_all_document_statuses_async] :end-before: [END list_all_document_statuses_async] :language: python :dedent: 8 - :caption: List all the document statuses under the translation job. + :caption: List all the document statuses as they are being translated. """ translated_after = kwargs.pop("translated_after", None) translated_before = kwargs.pop("translated_before", None) diff --git a/sdk/translation/azure-ai-translation-document/samples/README.md b/sdk/translation/azure-ai-translation-document/samples/README.md index f88788183a24..3a6c5bcaed3f 100644 --- a/sdk/translation/azure-ai-translation-document/samples/README.md +++ b/sdk/translation/azure-ai-translation-document/samples/README.md @@ -21,8 +21,8 @@ These sample programs show common scenarios for the Document Translation client' |**File Name**|**Description**| |----------------|-------------| -|[sample_create_translation_job.py][create_translation_job] and [sample_create_translation_job_async.py][create_translation_job_async]|Create a document translation job| -|[sample_translation_with_glossaries.py][create_translation_job_with_glossaries] and [sample_translation_with_glossaries_async.py][create_translation_job_with_glossaries_async]|Create a document translation job using custom glossaries| +|[sample_begin_translation.py][begin_translation] and [sample_begin_translation_async.py][begin_translation_async]|Translate your documents| +|[sample_translation_with_glossaries.py][create_translation_job_with_glossaries] and [sample_translation_with_glossaries_async.py][create_translation_job_with_glossaries_async]|Translate your documents using custom glossaries| |[sample_check_document_statuses.py][check_document_statuses] and [sample_check_document_statuses_async.py][check_document_statuses_async]|Check status of submitted documents| |[sample_list_all_submitted_jobs.py][list_all_submitted_jobs] and [sample_list_all_submitted_jobs_async.py][list_all_submitted_jobs_async]|Check status of all submitted translation jobs| @@ -64,8 +64,8 @@ what you can do with the Azure Document Translation client library. [azure_identity]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/identity/azure-identity [sample_authentication]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/sample_authentication.py [sample_authentication_async]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_authentication_async.py -[create_translation_job]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/sample_create_translation_job.py -[create_translation_job_async]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_create_translation_job_async.py +[begin_translation]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/sample_begin_translation.py +[begin_translation_async]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_begin_translation_async.py [create_translation_job_with_azure_blob]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_azure_blob.py [create_translation_job_with_azure_blob_async]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_azure_blob_async.py [create_translation_job_with_glossaries]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_glossaries.py diff --git a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_create_translation_job_async.py b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_begin_translation_async.py similarity index 70% rename from sdk/translation/azure-ai-translation-document/samples/async_samples/sample_create_translation_job_async.py rename to sdk/translation/azure-ai-translation-document/samples/async_samples/sample_begin_translation_async.py index a2af66d39ea6..b3845df0258a 100644 --- a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_create_translation_job_async.py +++ b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_begin_translation_async.py @@ -5,17 +5,16 @@ # ------------------------------------ """ -FILE: sample_create_translation_job_async.py +FILE: sample_begin_translation_async.py DESCRIPTION: - This sample demonstrates how to create a translation job for documents in your Azure Blob - Storage container and wait until the job is completed. + This sample demonstrates how to translate documents in your Azure Blob Storage container. To set up your containers for translation and generate SAS tokens to your containers (or files) with the appropriate permissions, see the README. USAGE: - python sample_create_translation_job_async.py + python sample_begin_translation_async.py Set the environment variables with your own values before running the sample: 1) AZURE_DOCUMENT_TRANSLATION_ENDPOINT - the endpoint to your Document Translation resource. @@ -31,8 +30,8 @@ async def sample_translation_async(): + # [START begin_translation_async] import os - # [START wait_until_done_async] from azure.core.credentials import AzureKeyCredential from azure.ai.translation.document.aio import DocumentTranslationClient from azure.ai.translation.document import ( @@ -48,7 +47,7 @@ async def sample_translation_async(): client = DocumentTranslationClient(endpoint, AzureKeyCredential(key)) async with client: - job = await client.create_translation_job(inputs=[ + poller = await client.begin_translation(inputs=[ DocumentTranslationInput( source_url=source_container_url, targets=[ @@ -59,23 +58,19 @@ async def sample_translation_async(): ] ) ] - ) # type: JobStatusResult + ) + result = await poller.result() - job_result = await client.wait_until_done(job.id) # type: JobStatusResult - - print("Job status: {}".format(job_result.status)) - print("Job created on: {}".format(job_result.created_on)) - print("Job last updated on: {}".format(job_result.last_updated_on)) - print("Total number of translations on documents: {}".format(job_result.documents_total_count)) + print("Status: {}".format(poller.status())) + print("Created on: {}".format(poller.details.created_on)) + print("Last updated on: {}".format(poller.details.last_updated_on)) + print("Total number of translations on documents: {}".format(poller.details.documents_total_count)) print("\nOf total documents...") - print("{} failed".format(job_result.documents_failed_count)) - print("{} succeeded".format(job_result.documents_succeeded_count)) - # [END wait_until_done_async] + print("{} failed".format(poller.details.documents_failed_count)) + print("{} succeeded".format(poller.details.documents_succeeded_count)) - # [START list_all_document_statuses_async] - doc_results = client.list_all_document_statuses(job_result.id) # type: AsyncItemPaged[DocumentStatusResult] - async for document in doc_results: + async for document in result: print("Document ID: {}".format(document.id)) print("Document status: {}".format(document.status)) if document.status == "Succeeded": @@ -84,7 +79,7 @@ async def sample_translation_async(): print("Translated to language: {}\n".format(document.translate_to)) else: print("Error Code: {}, Message: {}\n".format(document.error.code, document.error.message)) - # [END list_all_document_statuses_async] + # [END begin_translation_async] async def main(): diff --git a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_check_document_statuses_async.py b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_check_document_statuses_async.py index cb5bfab28ae1..108620c0ace5 100644 --- a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_check_document_statuses_async.py +++ b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_check_document_statuses_async.py @@ -8,8 +8,8 @@ FILE: sample_check_document_statuses_async.py DESCRIPTION: - This sample demonstrates how to create a translation job and then monitor each document's status - and progress within the job. + This sample demonstrates how to begin translation and then monitor each document's status + and progress. To set up your containers for translation and generate SAS tokens to your containers (or files) with the appropriate permissions, see the README. @@ -30,8 +30,8 @@ async def sample_document_status_checks_async(): + # [START list_all_document_statuses_async] import os - # [START create_translation_job_async] from azure.core.credentials import AzureKeyCredential from azure.ai.translation.document.aio import DocumentTranslationClient from azure.ai.translation.document import ( @@ -45,8 +45,9 @@ async def sample_document_status_checks_async(): target_container_url = os.environ["AZURE_TARGET_CONTAINER_URL"] client = DocumentTranslationClient(endpoint, AzureKeyCredential(key)) + async with client: - job_result = await client.create_translation_job(inputs=[ + poller = await client.begin_translation(inputs=[ DocumentTranslationInput( source_url=source_container_url, targets=[ @@ -57,14 +58,13 @@ async def sample_document_status_checks_async(): ] ) ] - ) # type: JobStatusResult - # [END create_translation_job_async] + ) completed_docs = [] - while not job_result.has_completed: + while not poller.done(): await asyncio.sleep(30) - doc_statuses = client.list_all_document_statuses(job_result.id) + doc_statuses = client.list_all_document_statuses(poller.id) async for document in doc_statuses: if document.id not in completed_docs: if document.status == "Succeeded": @@ -82,9 +82,8 @@ async def sample_document_status_checks_async(): document.id, document.translation_progress * 100 )) - job_result = await client.get_job_status(job_result.id) - - print("\nTranslation job completed.") + print("\nTranslation completed.") + # [END list_all_document_statuses_async] async def main(): diff --git a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_list_all_submitted_jobs_async.py b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_list_all_submitted_jobs_async.py index e3fcf84503f7..400f3562dc09 100644 --- a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_list_all_submitted_jobs_async.py +++ b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_list_all_submitted_jobs_async.py @@ -8,8 +8,7 @@ FILE: list_all_submitted_jobs_async.py DESCRIPTION: - This sample demonstrates how to list all the submitted translation jobs for the resource and - wait until done on any jobs that are still running. + This sample demonstrates how to list all the submitted translation jobs for the resource. To set up your containers for translation and generate SAS tokens to your containers (or files) with the appropriate permissions, see the README. @@ -39,9 +38,6 @@ async def sample_list_all_submitted_jobs_async(): translation_jobs = client.list_submitted_jobs() # type: AsyncItemPaged[JobStatusResult] async for job in translation_jobs: - if job.status == "Running": - job = await client.wait_until_done(job.id) - print("Job ID: {}".format(job.id)) print("Job status: {}".format(job.status)) print("Job created on: {}".format(job.created_on)) diff --git a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_list_document_statuses_with_filters_async.py b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_list_document_statuses_with_filters_async.py index 4c6295c21f85..a43632d407e8 100644 --- a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_list_document_statuses_with_filters_async.py +++ b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_list_document_statuses_with_filters_async.py @@ -26,7 +26,7 @@ import os import asyncio -async def sample_list_document_statuses_with_filters_async(self, client): +async def sample_list_document_statuses_with_filters_async(): # import libraries from azure.core.credentials import AzureKeyCredential from azure.ai.translation.document import ( diff --git a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_azure_blob_async.py b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_azure_blob_async.py index 7dc056b27bb9..919ddf8c6f4b 100644 --- a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_azure_blob_async.py +++ b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_azure_blob_async.py @@ -8,8 +8,8 @@ FILE: sample_translation_with_azure_blob_async.py DESCRIPTION: - This sample demonstrates how to use Azure Blob Storage to set up the necessary resources to create a translation - job. Run the sample to create containers, upload documents, and generate SAS tokens for the source/target + This sample demonstrates how to use Azure Blob Storage to set up the necessary resources to translate + documents. Run the sample to create containers, upload documents, and generate SAS tokens for the source/target containers. Once the job is completed, use the storage library to download your documents locally. PREREQUISITE: @@ -105,17 +105,15 @@ async def sample_translation_with_azure_blob(self): ) ] - job = await translation_client.create_translation_job(translation_inputs) - print("Created translation job with ID: {}".format(job.id)) - print("Waiting until job completes...") + poller = await translation_client.begin_translation(translation_inputs) + print("Created translation job with ID: {}".format(poller.id)) + print("Waiting until translation completes...") - job_result = await translation_client.wait_until_done(job.id) - print("Job status: {}".format(job_result.status)) - - doc_results = translation_client.list_all_document_statuses(job_result.id) + result = await poller.result() + print("Job status: {}".format(poller.status())) print("\nDocument results:") - async for document in doc_results: + async for document in result: print("Document ID: {}".format(document.id)) print("Document status: {}".format(document.status)) if document.status == "Succeeded": diff --git a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_glossaries_async.py b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_glossaries_async.py index fc69d0230aae..41e85231c565 100644 --- a/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_glossaries_async.py +++ b/sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_glossaries_async.py @@ -8,7 +8,7 @@ FILE: sample_translation_with_glossaries_async.py DESCRIPTION: - This sample demonstrates how to create a translation job and apply custom glossaries to the translation. + This sample demonstrates how to translate documents and apply custom glossaries to the translation. To set up your containers for translation and generate SAS tokens to your containers (or files) with the appropriate permissions, see the README. @@ -59,21 +59,20 @@ async def sample_translation_with_glossaries_async(): ) async with client: - job = await client.create_translation_job(inputs=[inputs]) # type: JobStatusResult + poller = await client.begin_translation(inputs=[inputs]) - job_result = await client.wait_until_done(job.id) # type: JobStatusResult + result = await poller.result() - print("Job status: {}".format(job_result.status)) - print("Job created on: {}".format(job_result.created_on)) - print("Job last updated on: {}".format(job_result.last_updated_on)) - print("Total number of translations on documents: {}".format(job_result.documents_total_count)) + print("Status: {}".format(poller.status())) + print("Created on: {}".format(poller.details.created_on)) + print("Last updated on: {}".format(poller.details.last_updated_on)) + print("Total number of translations on documents: {}".format(poller.details.documents_total_count)) print("\nOf total documents...") - print("{} failed".format(job_result.documents_failed_count)) - print("{} succeeded".format(job_result.documents_succeeded_count)) + print("{} failed".format(poller.details.documents_failed_count)) + print("{} succeeded".format(poller.details.documents_succeeded_count)) - doc_results = client.list_all_document_statuses(job_result.id) # type: AsyncItemPaged[DocumentStatusResult] - async for document in doc_results: + async for document in result: print("Document ID: {}".format(document.id)) print("Document status: {}".format(document.status)) if document.status == "Succeeded": diff --git a/sdk/translation/azure-ai-translation-document/samples/sample_create_translation_job.py b/sdk/translation/azure-ai-translation-document/samples/sample_begin_translation.py similarity index 70% rename from sdk/translation/azure-ai-translation-document/samples/sample_create_translation_job.py rename to sdk/translation/azure-ai-translation-document/samples/sample_begin_translation.py index b4022922f3e0..b8c1a8c04eca 100644 --- a/sdk/translation/azure-ai-translation-document/samples/sample_create_translation_job.py +++ b/sdk/translation/azure-ai-translation-document/samples/sample_begin_translation.py @@ -5,17 +5,16 @@ # ------------------------------------ """ -FILE: sample_create_translation_job.py +FILE: sample_begin_translation.py DESCRIPTION: - This sample demonstrates how to create a translation job for documents in your Azure Blob - Storage container and wait until the job is completed. + This sample demonstrates how to translate documents in your Azure Blob Storage container. To set up your containers for translation and generate SAS tokens to your containers (or files) with the appropriate permissions, see the README. USAGE: - python sample_create_translation_job.py + python sample_begin_translation.py Set the environment variables with your own values before running the sample: 1) AZURE_DOCUMENT_TRANSLATION_ENDPOINT - the endpoint to your Document Translation resource. @@ -28,8 +27,8 @@ def sample_translation(): + # [START begin_translation] import os - # [START wait_until_done] from azure.core.credentials import AzureKeyCredential from azure.ai.translation.document import ( DocumentTranslationClient, @@ -44,7 +43,7 @@ def sample_translation(): client = DocumentTranslationClient(endpoint, AzureKeyCredential(key)) - job = client.create_translation_job(inputs=[ + poller = client.begin_translation(inputs=[ DocumentTranslationInput( source_url=source_container_url, targets=[ @@ -55,23 +54,19 @@ def sample_translation(): ] ) ] - ) # type: JobStatusResult - - job_result = client.wait_until_done(job.id) # type: JobStatusResult + ) + result = poller.result() - print("Job status: {}".format(job_result.status)) - print("Job created on: {}".format(job_result.created_on)) - print("Job last updated on: {}".format(job_result.last_updated_on)) - print("Total number of translations on documents: {}".format(job_result.documents_total_count)) + print("Status: {}".format(poller.status())) + print("Created on: {}".format(poller.details.created_on)) + print("Last updated on: {}".format(poller.details.last_updated_on)) + print("Total number of translations on documents: {}".format(poller.details.documents_total_count)) print("\nOf total documents...") - print("{} failed".format(job_result.documents_failed_count)) - print("{} succeeded".format(job_result.documents_succeeded_count)) - # [END wait_until_done] + print("{} failed".format(poller.details.documents_failed_count)) + print("{} succeeded".format(poller.details.documents_succeeded_count)) - # [START list_all_document_statuses] - doc_results = client.list_all_document_statuses(job_result.id) # type: ItemPaged[DocumentStatusResult] - for document in doc_results: + for document in result: print("Document ID: {}".format(document.id)) print("Document status: {}".format(document.status)) if document.status == "Succeeded": @@ -80,7 +75,8 @@ def sample_translation(): print("Translated to language: {}\n".format(document.translate_to)) else: print("Error Code: {}, Message: {}\n".format(document.error.code, document.error.message)) - # [END list_all_document_statuses] + # [END begin_translation] + if __name__ == '__main__': sample_translation() diff --git a/sdk/translation/azure-ai-translation-document/samples/sample_check_document_statuses.py b/sdk/translation/azure-ai-translation-document/samples/sample_check_document_statuses.py index c463e7f397ec..2aea426ba260 100644 --- a/sdk/translation/azure-ai-translation-document/samples/sample_check_document_statuses.py +++ b/sdk/translation/azure-ai-translation-document/samples/sample_check_document_statuses.py @@ -8,8 +8,8 @@ FILE: sample_check_document_statuses.py DESCRIPTION: - This sample demonstrates how to create a translation job and then monitor each document's status - and progress within the job. + This sample demonstrates how to begin translation and then monitor each document's status + and progress. To set up your containers for translation and generate SAS tokens to your containers (or files) with the appropriate permissions, see the README. @@ -28,9 +28,9 @@ def sample_document_status_checks(): + # [START list_all_document_statuses] import os import time - # [START create_translation_job] from azure.core.credentials import AzureKeyCredential from azure.ai.translation.document import ( DocumentTranslationClient, @@ -45,7 +45,7 @@ def sample_document_status_checks(): client = DocumentTranslationClient(endpoint, AzureKeyCredential(key)) - job_result = client.create_translation_job(inputs=[ + poller = client.begin_translation(inputs=[ DocumentTranslationInput( source_url=source_container_url, targets=[ @@ -56,14 +56,13 @@ def sample_document_status_checks(): ] ) ] - ) # type: JobStatusResult - # [END create_translation_job] + ) completed_docs = [] - while not job_result.has_completed: + while not poller.done(): time.sleep(30) - doc_statuses = client.list_all_document_statuses(job_result.id) + doc_statuses = client.list_all_document_statuses(poller.id) for document in doc_statuses: if document.id not in completed_docs: if document.status == "Succeeded": @@ -81,9 +80,8 @@ def sample_document_status_checks(): document.id, document.translation_progress * 100 )) - job_result = client.get_job_status(job_result.id) - - print("\nTranslation job completed.") + print("\nTranslation completed.") + # [END list_all_document_statuses] if __name__ == '__main__': diff --git a/sdk/translation/azure-ai-translation-document/samples/sample_list_all_submitted_jobs.py b/sdk/translation/azure-ai-translation-document/samples/sample_list_all_submitted_jobs.py index 53f9e7308237..327da0bad0c4 100644 --- a/sdk/translation/azure-ai-translation-document/samples/sample_list_all_submitted_jobs.py +++ b/sdk/translation/azure-ai-translation-document/samples/sample_list_all_submitted_jobs.py @@ -8,8 +8,7 @@ FILE: list_all_submitted_jobs.py DESCRIPTION: - This sample demonstrates how to list all the submitted translation jobs for the resource and - wait until done on any jobs that are still running. + This sample demonstrates how to list all the submitted translation jobs for the resource. To set up your containers for translation and generate SAS tokens to your containers (or files) with the appropriate permissions, see the README. @@ -38,9 +37,6 @@ def sample_list_all_submitted_jobs(): translation_jobs = client.list_submitted_jobs() # type: ItemPaged[JobStatusResult] for job in translation_jobs: - if job.status == "Running": - job = client.wait_until_done(job.id) - print("Job ID: {}".format(job.id)) print("Job status: {}".format(job.status)) print("Job created on: {}".format(job.created_on)) diff --git a/sdk/translation/azure-ai-translation-document/samples/sample_list_document_statuses_with_filters.py b/sdk/translation/azure-ai-translation-document/samples/sample_list_document_statuses_with_filters.py index cea903285416..8a85452ceba6 100644 --- a/sdk/translation/azure-ai-translation-document/samples/sample_list_document_statuses_with_filters.py +++ b/sdk/translation/azure-ai-translation-document/samples/sample_list_document_statuses_with_filters.py @@ -23,7 +23,7 @@ 3) JOB_ID - The ID of the translation job """ -def sample_list_document_statuses_with_filters(self, client): +def sample_list_document_statuses_with_filters(): # import libraries from azure.core.credentials import AzureKeyCredential from azure.ai.translation.document import ( diff --git a/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_azure_blob.py b/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_azure_blob.py index 08e709799959..2a068aa27255 100644 --- a/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_azure_blob.py +++ b/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_azure_blob.py @@ -8,8 +8,8 @@ FILE: sample_translation_with_azure_blob.py DESCRIPTION: - This sample demonstrates how to use Azure Blob Storage to set up the necessary resources to create a translation - job. Run the sample to create containers, upload documents, and generate SAS tokens for the source/target + This sample demonstrates how to use Azure Blob Storage to set up the necessary resources to translate + documents. Run the sample to create containers, upload documents, and generate SAS tokens for the source/target containers. Once the job is completed, use the storage library to download your documents locally. PREREQUISITE: @@ -103,17 +103,15 @@ def sample_translation_with_azure_blob(self): ) ] - job = translation_client.create_translation_job(translation_inputs) - print("Created translation job with ID: {}".format(job.id)) - print("Waiting until job completes...") + poller = translation_client.begin_translation(translation_inputs) + print("Created translation job with ID: {}".format(poller.id)) + print("Waiting until translation completes...") - job_result = translation_client.wait_until_done(job.id) - print("Job status: {}".format(job_result.status)) - - doc_results = translation_client.list_all_document_statuses(job_result.id) + result = poller.result() + print("Job status: {}".format(poller.status())) print("\nDocument results:") - for document in doc_results: + for document in result: print("Document ID: {}".format(document.id)) print("Document status: {}".format(document.status)) if document.status == "Succeeded": diff --git a/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_glossaries.py b/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_glossaries.py index c4a87c3b8656..d0462f46d784 100644 --- a/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_glossaries.py +++ b/sdk/translation/azure-ai-translation-document/samples/sample_translation_with_glossaries.py @@ -8,7 +8,7 @@ FILE: sample_translation_with_glossaries.py DESCRIPTION: - This sample demonstrates how to create a translation job and apply custom glossaries to the translation. + This sample demonstrates how to translate documents and apply custom glossaries to the translation. To set up your containers for translation and generate SAS tokens to your containers (or files) with the appropriate permissions, see the README. @@ -56,21 +56,21 @@ def sample_translation_with_glossaries(): ] ) - job = client.create_translation_job(inputs=[inputs]) # type: JobStatusResult - job_result = client.wait_until_done(job.id) # type: JobStatusResult + poller = client.begin_translation(inputs=[inputs]) - print("Job status: {}".format(job_result.status)) - print("Job created on: {}".format(job_result.created_on)) - print("Job last updated on: {}".format(job_result.last_updated_on)) - print("Total number of translations on documents: {}".format(job_result.documents_total_count)) + result = poller.result() + + print("Status: {}".format(poller.status())) + print("Created on: {}".format(poller.details.created_on)) + print("Last updated on: {}".format(poller.details.last_updated_on)) + print("Total number of translations on documents: {}".format(poller.details.documents_total_count)) print("\nOf total documents...") - print("{} failed".format(job_result.documents_failed_count)) - print("{} succeeded".format(job_result.documents_succeeded_count)) + print("{} failed".format(poller.details.documents_failed_count)) + print("{} succeeded".format(poller.details.documents_succeeded_count)) - doc_results = client.list_all_document_statuses(job_result.id) # type: ItemPaged[DocumentStatusResult] - for document in doc_results: + for document in result: print("Document ID: {}".format(document.id)) print("Document status: {}".format(document.status)) if document.status == "Succeeded": diff --git a/sdk/translation/azure-ai-translation-document/swagger/README.md b/sdk/translation/azure-ai-translation-document/swagger/README.md new file mode 100644 index 000000000000..f161e972a432 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/swagger/README.md @@ -0,0 +1,48 @@ +# Document Translation for Python + +To generate this file, simply type + +``` +autorest swagger/README.md --python-sdks-folder= +``` + +We automatically hardcode in that this is `python`. + +## Basic + +```yaml +license-header: MICROSOFT_MIT_NO_VERSION +add-credentials: true +payload-flattening-threshold: 2 +namespace: azure.ai.translation.document +package-name: azure-ai-translation-document +clear-output-folder: true +credential-scopes: https://cognitiveservices.azure.com/.default +no-namespace-folders: true +python: true +python-sdks-folder: $(python-sdks-folder) +``` + + +## Release 1.0 + +These settings apply only when `--tag=release_1_0` is specified on the command line. + +``` yaml $(tag) == 'release_1_0' +input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/cognitiveservices/data-plane/TranslatorText/stable/v1.0/TranslatorBatch.json +output-folder: $(python-sdks-folder)/translation/azure-ai-translation-document/azure/ai/translation/document/_generated/ +``` + + +### Override Document Translation poller + +``` yaml +directive: + - from: swagger-document + where: '$.paths["/batches"].post' + transform: > + $["x-python-custom-poller-sync"] = "..._polling.DocumentTranslationPoller"; + $["x-python-custom-poller-async"] = "....aio._async_polling.AsyncDocumentTranslationPoller"; + $["x-python-custom-default-polling-method-sync"] = "..._polling.DocumentTranslationLROPollingMethod"; + $["x-python-custom-default-polling-method-async"] = "....aio._async_polling.AsyncDocumentTranslationLROPollingMethod"; +``` diff --git a/sdk/translation/azure-ai-translation-document/tests/asynctestcase.py b/sdk/translation/azure-ai-translation-document/tests/asynctestcase.py index 9207cfef14f9..e589eb69cad9 100644 --- a/sdk/translation/azure-ai-translation-document/tests/asynctestcase.py +++ b/sdk/translation/azure-ai-translation-document/tests/asynctestcase.py @@ -22,19 +22,20 @@ def generate_oauth_token(self): os.getenv("TRANSLATION_CLIENT_SECRET"), ) - async def _submit_and_validate_translation_job_async(self, async_client, translation_inputs, total_docs_count=None): + async def _begin_and_validate_translation_async(self, async_client, translation_inputs, total_docs_count, language=None): # submit job - job_details = await async_client.create_translation_job(translation_inputs) - self.assertIsNotNone(job_details.id) + poller = await async_client.begin_translation(translation_inputs) + self.assertIsNotNone(poller.id) # wait for result - job_details = await async_client.wait_until_done(job_details.id) + doc_statuses = await poller.result() # validate - self._validate_translation_job(job_details=job_details, status='Succeeded', total=total_docs_count, succeeded=total_docs_count) - - return job_details.id + self._validate_translation_metadata(poller=poller, status='Succeeded', total=total_docs_count, succeeded=total_docs_count) + async for doc in doc_statuses: + self._validate_doc_status(doc, language) + return poller.id # client helpers - async def _create_and_submit_sample_translation_jobs_async(self, async_client, jobs_count, **kwargs): + async def _begin_multiple_translations_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) @@ -65,16 +66,17 @@ 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) + poller = await async_client.begin_translation(translation_inputs) + self.assertIsNotNone(poller.id) if wait_for_job: - await async_client.wait_until_done(job_details.id) - result_job_ids.append(job_details.id) + await poller.result() + else: + await poller.wait() + result_job_ids.append(poller.id) return result_job_ids - - async def _create_translation_job_with_dummy_docs_async(self, async_client, docs_count, **kwargs): + async def _begin_and_validate_translation_with_multiple_docs_async(self, async_client, docs_count, **kwargs): # get input parms wait_for_job = kwargs.pop('wait', False) language_code = kwargs.pop('language_code', "es") @@ -98,12 +100,14 @@ async def _create_translation_job_with_dummy_docs_async(self, async_client, docs ] # submit job - job_details = await async_client.create_translation_job(translation_inputs) - self.assertIsNotNone(job_details.id) + poller = await async_client.begin_translation(translation_inputs) + self.assertIsNotNone(poller.id) # wait for result if wait_for_job: - await async_client.wait_until_done(job_details.id) - # validate - self._validate_translation_job(job_details=job_details) + result = await poller.result() + async for doc in result: + self._validate_doc_status(doc, "es") - return job_details.id + # validate + self._validate_translation_metadata(poller=poller) + return poller 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 index 0ea2cb95d855..ed702a4e891f 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:13 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c?restype=container + uri: https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:13 GMT etag: - - '"0x8D91C78B58C3A63"' + - '"0x8D9258B451F5AA7"' last-modified: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:14 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: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/258e01d4-183a-4cf3-8d9c-4ac1601e851a.txt + uri: https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/632b2eda-9998-47ec-814b-db7bf2561c6a.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:13 GMT etag: - - '"0x8D91C78B5A2DAA1"' + - '"0x8D9258B4526B8E9"' last-modified: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:14 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: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/8e2a8beb-8d8f-472a-b9d1-3f30dc75dc99.txt + uri: https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/e23af1fb-6294-482a-9605-1dd117879e0d.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:13 GMT etag: - - '"0x8D91C78B5AEEAC5"' + - '"0x8D9258B452DBF0E"' last-modified: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:14 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: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/3db69bc2-e8cf-4ac4-a847-a67e3311ec2d.txt + uri: https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/b736c518-fe83-416e-904a-35dfb8e88ebc.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:13 GMT etag: - - '"0x8D91C78B5E19CB7"' + - '"0x8D9258B4535618F"' last-modified: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:14 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: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/0e18b96e-d435-434a-8bb4-a572ae025f4b.txt + uri: https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/bfdbf85d-5d34-40c2-ab83-6c15fee6aba5.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:13 GMT etag: - - '"0x8D91C78B5EA50D9"' + - '"0x8D9258B453D523D"' last-modified: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:14 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: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/74f5ad99-76b5-4216-8c71-54f9364ea2fb.txt + uri: https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/1fd9cf45-36c8-4a58-88c5-292588660499.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:13 GMT etag: - - '"0x8D91C78B5F7247A"' + - '"0x8D9258B45440A34"' last-modified: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target5e10be10-8b78-44bb-b4e1-628c4aa87d10?restype=container + uri: https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:51:41 GMT + - Wed, 02 Jun 2021 05:57:13 GMT etag: - - '"0x8D91C78B6157A67"' + - '"0x8D9258B455E0C21"' last-modified: - - Fri, 21 May 2021 16:51:42 GMT + - Wed, 02 Jun 2021 05:57:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5e10be10-8b78-44bb-b4e1-628c4aa87d10?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -337,7 +337,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -349,13 +349,13 @@ interactions: string: '' headers: apim-request-id: - - 0d40c032-db50-4f25-8fbf-7d4677fb20a4 + - 7aa1b86a-18b6-4fd0-8e93-23e0c8b6f832 content-length: - '0' date: - - Fri, 21 May 2021 16:51:43 GMT + - Wed, 02 Jun 2021 05:57:14 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/090cc495-186c-4adb-8407-862636463757 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -366,762 +366,10 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0d40c032-db50-4f25-8fbf-7d4677fb20a4 + - 7aa1b86a-18b6-4fd0-8e93-23e0c8b6f832 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:43.427086Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 068c2965-9336-48a3-9c36-b765c764340f - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:43 GMT - etag: - - '"DB3039E804033AD81316218B29A1A4E00ADD8C936C8D8BA13E3DA0E26E357DCA"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 068c2965-9336-48a3-9c36-b765c764340f - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:43.427086Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ed4e810f-a719-4ee0-86a1-6cffde3a4581 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:43 GMT - etag: - - '"DB3039E804033AD81316218B29A1A4E00ADD8C936C8D8BA13E3DA0E26E357DCA"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ed4e810f-a719-4ee0-86a1-6cffde3a4581 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:44.068143Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - c9300d86-59e7-4cc9-b0e1-a06601849020 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:44 GMT - etag: - - '"56C1CAFFA208B95BEB46CD1A9E0D86DC1606B7EF97C62C87A78FA0D651C147C9"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - c9300d86-59e7-4cc9-b0e1-a06601849020 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:44.068143Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a0f4f73e-f54b-4cb4-8a05-ef46ec44cc13 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:45 GMT - etag: - - '"56C1CAFFA208B95BEB46CD1A9E0D86DC1606B7EF97C62C87A78FA0D651C147C9"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a0f4f73e-f54b-4cb4-8a05-ef46ec44cc13 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:44.068143Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 0e3a676d-06dc-4674-bf32-70e6033a4518 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:46 GMT - etag: - - '"56C1CAFFA208B95BEB46CD1A9E0D86DC1606B7EF97C62C87A78FA0D651C147C9"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 0e3a676d-06dc-4674-bf32-70e6033a4518 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:44.068143Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 39d5d908-c672-444f-b8f6-8a63d4990428 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:47 GMT - etag: - - '"56C1CAFFA208B95BEB46CD1A9E0D86DC1606B7EF97C62C87A78FA0D651C147C9"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 39d5d908-c672-444f-b8f6-8a63d4990428 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:44.068143Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 473cbaba-f868-426f-b0f7-67ff377cbd77 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:48 GMT - etag: - - '"56C1CAFFA208B95BEB46CD1A9E0D86DC1606B7EF97C62C87A78FA0D651C147C9"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 473cbaba-f868-426f-b0f7-67ff377cbd77 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:49.5199764Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 83f58a40-d120-486d-9b89-8a362cf821c5 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:49 GMT - etag: - - '"59266D037B0C6A5697D141BCE8C9DDE44E47CB8015ED1CD2659638784F5643D1"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 83f58a40-d120-486d-9b89-8a362cf821c5 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 36535445-74d8-4fa1-a10b-ac21b0cb0c13 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:50 GMT - etag: - - '"D573E3977A77064B5696FC7BDCB754E1B805F0BCFC7A8ECEBE1C199F342467FC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 36535445-74d8-4fa1-a10b-ac21b0cb0c13 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - f30def95-dd8f-45cd-8677-4f081ac07f64 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:51 GMT - etag: - - '"D573E3977A77064B5696FC7BDCB754E1B805F0BCFC7A8ECEBE1C199F342467FC"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - f30def95-dd8f-45cd-8677-4f081ac07f64 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a22fd835-ea61-4a7a-aeeb-d740b10e92fa - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:52 GMT - etag: - - '"D573E3977A77064B5696FC7BDCB754E1B805F0BCFC7A8ECEBE1C199F342467FC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a22fd835-ea61-4a7a-aeeb-d740b10e92fa - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 8e2cfeb8-f606-488f-b793-0f3e077283a2 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:53 GMT - etag: - - '"D573E3977A77064B5696FC7BDCB754E1B805F0BCFC7A8ECEBE1C199F342467FC"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 8e2cfeb8-f606-488f-b793-0f3e077283a2 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 6da88002-24a3-4154-b61f-7aff4255b894 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:55 GMT - etag: - - '"D573E3977A77064B5696FC7BDCB754E1B805F0BCFC7A8ECEBE1C199F342467FC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6da88002-24a3-4154-b61f-7aff4255b894 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - b755f0d4-52f6-46de-bd52-446b78a4a528 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:57 GMT - etag: - - '"D573E3977A77064B5696FC7BDCB754E1B805F0BCFC7A8ECEBE1C199F342467FC"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b755f0d4-52f6-46de-bd52-446b78a4a528 - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 3cc98e7b-c299-4c31-a348-0ee1f9a419ce - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:58 GMT - etag: - - '"D573E3977A77064B5696FC7BDCB754E1B805F0BCFC7A8ECEBE1C199F342467FC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3cc98e7b-c299-4c31-a348-0ee1f9a419ce - 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e - response: - body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - b7dc4ec0-fb85-43ab-babf-06328efc3e43 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:51:59 GMT - etag: - - '"D573E3977A77064B5696FC7BDCB754E1B805F0BCFC7A8ECEBE1C199F342467FC"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b7dc4ec0-fb85-43ab-babf-06328efc3e43 - status: - code: 200 - message: OK - request: body: null headers: @@ -1134,23 +382,23 @@ 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/090cc495-186c-4adb-8407-862636463757 response: body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + string: '{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 75a6c037-94a5-411a-ada0-428c8773f2fd + - 2df1c970-fe98-4f6a-a27e-45f099991b7c cache-control: - public,max-age=1 content-length: - - '291' + - '293' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:00 GMT + - Wed, 02 Jun 2021 05:57:44 GMT etag: - - '"0FD391ABB6D960C17314685220B128C7BB80242B51034812C1689201B86FC7B9"' + - '"550DC56F5B53DB99E5FA5AFD42BD3CF0BC3D174CC054B9EE204D3638BF0FF42A"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1165,7 +413,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 75a6c037-94a5-411a-ada0-428c8773f2fd + - 2df1c970-fe98-4f6a-a27e-45f099991b7c status: code: 200 message: OK @@ -1173,7 +421,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -1181,23 +429,23 @@ 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/090cc495-186c-4adb-8407-862636463757/documents?$skip=0 response: body: - string: '{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/e23af1fb-6294-482a-9605-1dd117879e0d.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/e23af1fb-6294-482a-9605-1dd117879e0d.txt","createdDateTimeUtc":"2021-06-02T05:57:16.4489946Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.9578463Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfa-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/bfdbf85d-5d34-40c2-ab83-6c15fee6aba5.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/bfdbf85d-5d34-40c2-ab83-6c15fee6aba5.txt","createdDateTimeUtc":"2021-06-02T05:57:16.1358774Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.4440787Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecf9-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/632b2eda-9998-47ec-814b-db7bf2561c6a.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/632b2eda-9998-47ec-814b-db7bf2561c6a.txt","createdDateTimeUtc":"2021-06-02T05:57:16.0919881Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.4751239Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecf7-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/b736c518-fe83-416e-904a-35dfb8e88ebc.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/b736c518-fe83-416e-904a-35dfb8e88ebc.txt","createdDateTimeUtc":"2021-06-02T05:57:16.0810028Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.4342868Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecf8-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/1fd9cf45-36c8-4a58-88c5-292588660499.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/1fd9cf45-36c8-4a58-88c5-292588660499.txt","createdDateTimeUtc":"2021-06-02T05:57:16.0763266Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.467892Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecf6-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 52a2fd55-a99a-4841-9db2-faa5de13436b + - 66e5637a-3133-423a-8706-ba9670bd8a67 cache-control: - public,max-age=1 content-length: - - '293' + - '2480' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:44 GMT etag: - - '"46511BB4C3533126F1B47CC068C8A9171E6FB3D0BD9F6173FF3CF9D8A387FF22"' + - '"B02FB7753D41052810EB33BA731BD3C274FBC0C76A3D061A93560F87FA38AB3C"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1212,7 +460,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 52a2fd55-a99a-4841-9db2-faa5de13436b + - 66e5637a-3133-423a-8706-ba9670bd8a67 status: code: 200 message: OK @@ -1228,23 +476,23 @@ 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/batches/9cea4909-549b-4ba2-93c6-d44f7af7934e/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/090cc495-186c-4adb-8407-862636463757/documents?$skip=0 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target5e10be10-8b78-44bb-b4e1-628c4aa87d10/8e2a8beb-8d8f-472a-b9d1-3f30dc75dc99.txt","sourcePath":"https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/8e2a8beb-8d8f-472a-b9d1-3f30dc75dc99.txt","createdDateTimeUtc":"2021-05-21T16:51:51.0687059Z","lastActionDateTimeUtc":"2021-05-21T16:51:59.8885249Z","status":"Succeeded","to":"es","progress":1,"id":"0007a209-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5e10be10-8b78-44bb-b4e1-628c4aa87d10/3db69bc2-e8cf-4ac4-a847-a67e3311ec2d.txt","sourcePath":"https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/3db69bc2-e8cf-4ac4-a847-a67e3311ec2d.txt","createdDateTimeUtc":"2021-05-21T16:51:49.5347645Z","lastActionDateTimeUtc":"2021-05-21T16:52:00.0559589Z","status":"Succeeded","to":"es","progress":1,"id":"0007a207-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5e10be10-8b78-44bb-b4e1-628c4aa87d10/74f5ad99-76b5-4216-8c71-54f9364ea2fb.txt","sourcePath":"https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/74f5ad99-76b5-4216-8c71-54f9364ea2fb.txt","createdDateTimeUtc":"2021-05-21T16:51:49.5292076Z","lastActionDateTimeUtc":"2021-05-21T16:51:59.8933121Z","status":"Succeeded","to":"es","progress":1,"id":"0007a208-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5e10be10-8b78-44bb-b4e1-628c4aa87d10/258e01d4-183a-4cf3-8d9c-4ac1601e851a.txt","sourcePath":"https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/258e01d4-183a-4cf3-8d9c-4ac1601e851a.txt","createdDateTimeUtc":"2021-05-21T16:51:49.5101144Z","lastActionDateTimeUtc":"2021-05-21T16:52:00.4216496Z","status":"Succeeded","to":"es","progress":1,"id":"0007a206-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5e10be10-8b78-44bb-b4e1-628c4aa87d10/0e18b96e-d435-434a-8bb4-a572ae025f4b.txt","sourcePath":"https://redacted.blob.core.windows.net/srcdaebe51f-75e1-4c4c-b49c-77d0557cf36c/0e18b96e-d435-434a-8bb4-a572ae025f4b.txt","createdDateTimeUtc":"2021-05-21T16:51:49.4979944Z","lastActionDateTimeUtc":"2021-05-21T16:51:59.8722479Z","status":"Succeeded","to":"es","progress":1,"id":"0007a205-0000-0000-0000-000000000000","characterCharged":27}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/e23af1fb-6294-482a-9605-1dd117879e0d.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/e23af1fb-6294-482a-9605-1dd117879e0d.txt","createdDateTimeUtc":"2021-06-02T05:57:16.4489946Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.9578463Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfa-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/bfdbf85d-5d34-40c2-ab83-6c15fee6aba5.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/bfdbf85d-5d34-40c2-ab83-6c15fee6aba5.txt","createdDateTimeUtc":"2021-06-02T05:57:16.1358774Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.4440787Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecf9-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/632b2eda-9998-47ec-814b-db7bf2561c6a.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/632b2eda-9998-47ec-814b-db7bf2561c6a.txt","createdDateTimeUtc":"2021-06-02T05:57:16.0919881Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.4751239Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecf7-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/b736c518-fe83-416e-904a-35dfb8e88ebc.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/b736c518-fe83-416e-904a-35dfb8e88ebc.txt","createdDateTimeUtc":"2021-06-02T05:57:16.0810028Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.4342868Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecf8-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetc04e5d87-c9f3-42b0-8a76-384b760f5d36/1fd9cf45-36c8-4a58-88c5-292588660499.txt","sourcePath":"https://redacted.blob.core.windows.net/srcee8287be-e087-46b7-83bf-fa00d57fb4a0/1fd9cf45-36c8-4a58-88c5-292588660499.txt","createdDateTimeUtc":"2021-06-02T05:57:16.0763266Z","lastActionDateTimeUtc":"2021-06-02T05:57:21.467892Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecf6-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - d3d991d1-6f47-4f7e-9e68-25d6cba3a2d1 + - bdd64171-a3ad-4b54-b8a5-8fc188f68f18 cache-control: - public,max-age=1 content-length: - - '2481' + - '2480' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:44 GMT etag: - - '"E9BF76BAADFC62CC2BEE05084CCD838F3AE73C180B360E710FCE3E316674C083"' + - '"B02FB7753D41052810EB33BA731BD3C274FBC0C76A3D061A93560F87FA38AB3C"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1259,7 +507,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d3d991d1-6f47-4f7e-9e68-25d6cba3a2d1 + - bdd64171-a3ad-4b54-b8a5-8fc188f68f18 status: code: 200 message: OK 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 index 70278954c7b9..8eb697a16f00 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51?restype=container + uri: https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT etag: - - '"0x8D91C78C18BCA57"' + - '"0x8D9258B57DA656A"' last-modified: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 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: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/97906dd3-ff45-4062-9450-8ca6c718f548.txt + uri: https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/13c285b9-2683-4d6f-84da-db5c1faed29b.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT etag: - - '"0x8D91C78C199CE4C"' + - '"0x8D9258B57E1F95B"' last-modified: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 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: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/2186df90-0a3a-48b9-808f-6f53db502a01.txt + uri: https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/f7b14e2b-d3b0-4f93-9c7e-a7806750383d.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT etag: - - '"0x8D91C78C1A2A98C"' + - '"0x8D9258B57E94DB2"' last-modified: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 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: - - Fri, 21 May 2021 16:52:02 GMT + - Wed, 02 Jun 2021 05:57:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/063ea85b-0b64-4605-93a8-30f106496fb2.txt + uri: https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/bf99bf26-3bdf-4751-a0f6-346248abf37e.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT etag: - - '"0x8D91C78C1ABFA0F"' + - '"0x8D9258B57F13E6E"' last-modified: - - Fri, 21 May 2021 16:52:02 GMT + - Wed, 02 Jun 2021 05:57:45 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: - - Fri, 21 May 2021 16:52:02 GMT + - Wed, 02 Jun 2021 05:57:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/406c80ad-6f4e-42d3-819e-a3f80fcc20ae.txt + uri: https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/6fc46061-0906-4ad2-91c2-bec689ca6267.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT etag: - - '"0x8D91C78C1B4872A"' + - '"0x8D9258B57F84481"' last-modified: - - Fri, 21 May 2021 16:52:02 GMT + - Wed, 02 Jun 2021 05:57:45 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: - - Fri, 21 May 2021 16:52:02 GMT + - Wed, 02 Jun 2021 05:57:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/68eec74a-8dd2-4ec8-b3c6-9fd28c4cb3bc.txt + uri: https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/6a38d81f-75aa-4e65-bbf5-e6a18907742f.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT etag: - - '"0x8D91C78C1BCED2F"' + - '"0x8D9258B57FF4AB3"' last-modified: - - Fri, 21 May 2021 16:52:02 GMT + - Wed, 02 Jun 2021 05:57:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:52:02 GMT + - Wed, 02 Jun 2021 05:57:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6?restype=container + uri: https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:45 GMT etag: - - '"0x8D91C78C1D5B003"' + - '"0x8D9258B581768C4"' last-modified: - - Fri, 21 May 2021 16:52:02 GMT + - Wed, 02 Jun 2021 05:57:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -349,497 +349,27 @@ interactions: string: '' headers: apim-request-id: - - 41066b8a-4708-47ad-88b9-6a90949bac7a + - 477b1903-c95b-409a-b924-4cb7a0af95c4 content-length: - '0' date: - - Fri, 21 May 2021 16:52:01 GMT + - Wed, 02 Jun 2021 05:57:46 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 41066b8a-4708-47ad-88b9-6a90949bac7a - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:02.6201554Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - d26194bf-56fe-4422-bbd2-9b71a1e5e6e8 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:01 GMT - etag: - - '"ED7E82091D6DB9F5B40DC35D0AD8381A16E8080EF04BED1042633E503B8BB58F"' + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/673d31d8-fe2b-485b-a84d-ecbfe1752d2c set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - d26194bf-56fe-4422-bbd2-9b71a1e5e6e8 + - 477b1903-c95b-409a-b924-4cb7a0af95c4 status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:02.6201554Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ef0ed171-871d-41f1-bf47-5afee2c8ffdf - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:01 GMT - etag: - - '"ED7E82091D6DB9F5B40DC35D0AD8381A16E8080EF04BED1042633E503B8BB58F"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ef0ed171-871d-41f1-bf47-5afee2c8ffdf - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:02.9451516Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 062d39db-db73-4349-a04d-d15a8991f088 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:03 GMT - etag: - - '"9E96F89D24564E8735A64618781D441A367869F8EB00454FE624862D654B822F"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 062d39db-db73-4349-a04d-d15a8991f088 - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:02.9451516Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 209818cd-f2ff-498a-9e70-e47fc1372d87 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:04 GMT - etag: - - '"9E96F89D24564E8735A64618781D441A367869F8EB00454FE624862D654B822F"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 209818cd-f2ff-498a-9e70-e47fc1372d87 - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:06.0684853Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":1,"notYetStarted":4,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 021c13f5-cc1d-4c8a-8c5e-83c52d8cc126 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:06 GMT - etag: - - '"0C8553796177324362C2C78085B1829D3850987B5DA1B5777B57530C08AA18BC"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 021c13f5-cc1d-4c8a-8c5e-83c52d8cc126 - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.2308013Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - fcd77dfe-f417-4601-9564-53e9a8857699 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:07 GMT - etag: - - '"4315437B70D986347902D2482D409E98E0BF712FAD68C6C550B70FC4F86A0540"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - fcd77dfe-f417-4601-9564-53e9a8857699 - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 4d696427-8eba-4dca-8929-8ded1b5232f7 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:08 GMT - etag: - - '"15012607B310FE1DD76FCED4A27F66AADB16722C104D8FAACB34218F15E92CA2"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 4d696427-8eba-4dca-8929-8ded1b5232f7 - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - d6fee67b-826c-49a7-8944-82320a9a2560 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:09 GMT - etag: - - '"15012607B310FE1DD76FCED4A27F66AADB16722C104D8FAACB34218F15E92CA2"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - d6fee67b-826c-49a7-8944-82320a9a2560 - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - e06be271-ca6c-45be-93e3-7f27082dbe10 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:10 GMT - etag: - - '"15012607B310FE1DD76FCED4A27F66AADB16722C104D8FAACB34218F15E92CA2"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - e06be271-ca6c-45be-93e3-7f27082dbe10 - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - d8110fd1-88e2-4db1-967f-5a62008ef77b - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:11 GMT - etag: - - '"15012607B310FE1DD76FCED4A27F66AADB16722C104D8FAACB34218F15E92CA2"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - d8110fd1-88e2-4db1-967f-5a62008ef77b - status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -852,23 +382,23 @@ 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/673d31d8-fe2b-485b-a84d-ecbfe1752d2c response: body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 242c746a-b0aa-4ced-9ffb-a5c56d302558 + - cfc80411-273d-491c-b8d5-ba9ef2050cd4 cache-control: - public,max-age=1 content-length: - - '289' + - '293' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:12 GMT + - Wed, 02 Jun 2021 05:58:15 GMT etag: - - '"15012607B310FE1DD76FCED4A27F66AADB16722C104D8FAACB34218F15E92CA2"' + - '"CAC177E4DE0A1CFD70419AC7C18866EAF2C1E3CDD170EFB009984D9FD08A03DC"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -883,7 +413,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 242c746a-b0aa-4ced-9ffb-a5c56d302558 + - cfc80411-273d-491c-b8d5-ba9ef2050cd4 status: code: 200 message: OK @@ -891,7 +421,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -899,23 +429,23 @@ 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/673d31d8-fe2b-485b-a84d-ecbfe1752d2c/documents?$skip=0 response: body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/f7b14e2b-d3b0-4f93-9c7e-a7806750383d.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/f7b14e2b-d3b0-4f93-9c7e-a7806750383d.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5741506Z","lastActionDateTimeUtc":"2021-06-02T05:57:57.1523328Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecff-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/bf99bf26-3bdf-4751-a0f6-346248abf37e.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/bf99bf26-3bdf-4751-a0f6-346248abf37e.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5526665Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.7882169Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfe-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/6fc46061-0906-4ad2-91c2-bec689ca6267.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/6fc46061-0906-4ad2-91c2-bec689ca6267.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5493668Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.7615554Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfd-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/6a38d81f-75aa-4e65-bbf5-e6a18907742f.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/6a38d81f-75aa-4e65-bbf5-e6a18907742f.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5274947Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.762404Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfc-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/13c285b9-2683-4d6f-84da-db5c1faed29b.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/13c285b9-2683-4d6f-84da-db5c1faed29b.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5135634Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.7875369Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfb-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 2bb46ae8-ff8d-4d91-a648-8f46e8d7e2bf + - 21f91d74-1040-4ce4-bd30-9da7cbbf3bcd cache-control: - public,max-age=1 content-length: - - '291' + - '2480' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:13 GMT + - Wed, 02 Jun 2021 05:58:15 GMT etag: - - '"0C2530483D6CB7641AC6503F9981A18D50AFFE10222671FCF74138E92B37CF62"' + - '"4BE84074A7E722DFAC6A17B9009AF6621A81C183FF98476F87DDAC1515215C84"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -930,54 +460,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2bb46ae8-ff8d-4d91-a648-8f46e8d7e2bf - 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b - response: - body: - string: '{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' - headers: - apim-request-id: - - 870366be-c6fd-463f-911b-d3540f2cd83e - cache-control: - - public,max-age=1 - content-length: - - '293' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:14 GMT - etag: - - '"3B9E336C6C34DD81077D1B1A19FDBA374E4B589E68929EDF51FB788B0CE66015"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 870366be-c6fd-463f-911b-d3540f2cd83e + - 21f91d74-1040-4ce4-bd30-9da7cbbf3bcd status: code: 200 message: OK @@ -993,23 +476,25 @@ 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/673d31d8-fe2b-485b-a84d-ecbfe1752d2c/documents?$skip=0 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6/97906dd3-ff45-4062-9450-8ca6c718f548.txt","sourcePath":"https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/97906dd3-ff45-4062-9450-8ca6c718f548.txt","createdDateTimeUtc":"2021-05-21T16:52:07.290886Z","lastActionDateTimeUtc":"2021-05-21T16:52:14.3120061Z","status":"Succeeded","to":"es","progress":1,"id":"0007a20e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6/406c80ad-6f4e-42d3-819e-a3f80fcc20ae.txt","sourcePath":"https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/406c80ad-6f4e-42d3-819e-a3f80fcc20ae.txt","createdDateTimeUtc":"2021-05-21T16:52:06.1243872Z","lastActionDateTimeUtc":"2021-05-21T16:52:13.698394Z","status":"Succeeded","to":"es","progress":1,"id":"0007a20c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6/063ea85b-0b64-4605-93a8-30f106496fb2.txt","sourcePath":"https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/063ea85b-0b64-4605-93a8-30f106496fb2.txt","createdDateTimeUtc":"2021-05-21T16:52:06.1212541Z","lastActionDateTimeUtc":"2021-05-21T16:52:13.7011472Z","status":"Succeeded","to":"es","progress":1,"id":"0007a20a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6/68eec74a-8dd2-4ec8-b3c6-9fd28c4cb3bc.txt","sourcePath":"https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/68eec74a-8dd2-4ec8-b3c6-9fd28c4cb3bc.txt","createdDateTimeUtc":"2021-05-21T16:52:06.0963246Z","lastActionDateTimeUtc":"2021-05-21T16:52:13.665992Z","status":"Succeeded","to":"es","progress":1,"id":"0007a20d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6/2186df90-0a3a-48b9-808f-6f53db502a01.txt","sourcePath":"https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/2186df90-0a3a-48b9-808f-6f53db502a01.txt","createdDateTimeUtc":"2021-05-21T16:52:06.0778872Z","lastActionDateTimeUtc":"2021-05-21T16:52:13.658443Z","status":"Succeeded","to":"es","progress":1,"id":"0007a20b-0000-0000-0000-000000000000","characterCharged":27}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/f7b14e2b-d3b0-4f93-9c7e-a7806750383d.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/f7b14e2b-d3b0-4f93-9c7e-a7806750383d.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5741506Z","lastActionDateTimeUtc":"2021-06-02T05:57:57.1523328Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecff-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/bf99bf26-3bdf-4751-a0f6-346248abf37e.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/bf99bf26-3bdf-4751-a0f6-346248abf37e.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5526665Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.7882169Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfe-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/6fc46061-0906-4ad2-91c2-bec689ca6267.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/6fc46061-0906-4ad2-91c2-bec689ca6267.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5493668Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.7615554Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfd-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/6a38d81f-75aa-4e65-bbf5-e6a18907742f.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/6a38d81f-75aa-4e65-bbf5-e6a18907742f.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5274947Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.762404Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfc-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/13c285b9-2683-4d6f-84da-db5c1faed29b.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/13c285b9-2683-4d6f-84da-db5c1faed29b.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5135634Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.7875369Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfb-0000-0000-0000-000000000000","characterCharged":27}]}' headers: + age: + - '0' apim-request-id: - - e7d6b77a-da4e-4207-b504-eb06fa670804 + - bc304b80-ec87-4252-860f-398dafe20265 cache-control: - public,max-age=1 content-length: - - '2477' + - '2480' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:14 GMT + - Wed, 02 Jun 2021 05:58:16 GMT etag: - - '"F1E84AEF2395D71F2D08807ED015CF77C07C0B8D5894264BBCFC8CC6F01642E9"' + - '"4BE84074A7E722DFAC6A17B9009AF6621A81C183FF98476F87DDAC1515215C84"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1024,7 +509,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e7d6b77a-da4e-4207-b504-eb06fa670804 + - 21f91d74-1040-4ce4-bd30-9da7cbbf3bcd status: code: 200 message: OK @@ -1040,23 +525,23 @@ 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/batches/9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b/documents?$skip=0&ids=0007a20e-0000-0000-0000-000000000000,0007a20c-0000-0000-0000-000000000000 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/673d31d8-fe2b-485b-a84d-ecbfe1752d2c/documents?$skip=0&ids=0007ecff-0000-0000-0000-000000000000,0007ecfe-0000-0000-0000-000000000000 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6/97906dd3-ff45-4062-9450-8ca6c718f548.txt","sourcePath":"https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/97906dd3-ff45-4062-9450-8ca6c718f548.txt","createdDateTimeUtc":"2021-05-21T16:52:07.290886Z","lastActionDateTimeUtc":"2021-05-21T16:52:14.3120061Z","status":"Succeeded","to":"es","progress":1,"id":"0007a20e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target6883db5d-09e6-4512-8940-53f62afe3ea6/406c80ad-6f4e-42d3-819e-a3f80fcc20ae.txt","sourcePath":"https://redacted.blob.core.windows.net/src613fc690-f991-4a04-84d5-6d807bb6ba51/406c80ad-6f4e-42d3-819e-a3f80fcc20ae.txt","createdDateTimeUtc":"2021-05-21T16:52:06.1243872Z","lastActionDateTimeUtc":"2021-05-21T16:52:13.698394Z","status":"Succeeded","to":"es","progress":1,"id":"0007a20c-0000-0000-0000-000000000000","characterCharged":27}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/f7b14e2b-d3b0-4f93-9c7e-a7806750383d.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/f7b14e2b-d3b0-4f93-9c7e-a7806750383d.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5741506Z","lastActionDateTimeUtc":"2021-06-02T05:57:57.1523328Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecff-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targeta0d3a294-3671-4a89-8ecf-11792620fc7c/bf99bf26-3bdf-4751-a0f6-346248abf37e.txt","sourcePath":"https://redacted.blob.core.windows.net/src2776bfc4-9720-4271-ba15-39ef92cd2098/bf99bf26-3bdf-4751-a0f6-346248abf37e.txt","createdDateTimeUtc":"2021-06-02T05:57:51.5526665Z","lastActionDateTimeUtc":"2021-06-02T05:57:56.7882169Z","status":"Succeeded","to":"es","progress":1,"id":"0007ecfe-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 209438f7-03a0-4ab4-b397-222c213943b8 + - 49147210-c217-411e-8ba2-b1612d58e0f2 cache-control: - public,max-age=1 content-length: - - '997' + - '999' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:14 GMT + - Wed, 02 Jun 2021 05:58:16 GMT etag: - - '"37D45642D42AA9092AD7BD5B885D75FD7AA0E143C4F1E952A48739863CB2BB3D"' + - '"1A124D759A4A53FC47547B05380A191F580431F1EA4ECF8E432336A330D57D46"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1071,7 +556,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 209438f7-03a0-4ab4-b397-222c213943b8 + - 49147210-c217-411e-8ba2-b1612d58e0f2 status: code: 200 message: OK 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 index 8acd2abd2a29..1039bb000dcd 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7?restype=container + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A6230254"' + - '"0x8D9258BE8567DEF"' last-modified: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 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: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/ff0856d0-6ab3-4308-963d-5e0ce7ab34b4.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/7ac11151-b558-4319-b23e-2728374dcdeb.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A62CA8E9"' + - '"0x8D9258BE86B78E2"' last-modified: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 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: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/87fa33d0-977c-47dc-a131-12aae0a46591.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/3f7c3079-fa94-4608-8aae-e3abf3aae16d.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A633FD42"' + - '"0x8D9258BE8731B63"' last-modified: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:48 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: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/15d67a96-f961-4635-837c-44cce63b883d.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/89e7eb38-8099-4c72-a078-e53095ba758f.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A63E1137"' + - '"0x8D9258BE87AE4F8"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 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: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/e8965425-50da-4cd5-a11c-bfe12a819a32.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/1c87f009-f6cc-4f33-bda7-dc74d9c7290c.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A64601E4"' + - '"0x8D9258BE882D5A3"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 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: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/bd110c57-6168-4820-a48b-53ddf25d8b1f.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/5a06ce52-9e81-4cbe-b357-acecf8d64793.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A64FEEC0"' + - '"0x8D9258BE88A782C"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 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: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/92ca21c4-91aa-4f44-b8ec-e0f090390cb8.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/22ecb361-bede-40e1-b211-f1eb52964891.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A6574319"' + - '"0x8D9258BE8932C48"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 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: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/a278f133-a5cc-405c-886c-9a3cd8c1a976.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/96f64e58-3f5a-4ab0-bfae-dc2c2d46cc0f.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A65F5ADF"' + - '"0x8D9258BE89AF5E2"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 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: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/ca5c0944-5dde-466b-a6a9-8cd9a124a51e.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/33fc873a-6860-417d-8aa9-e8bbfe94a503.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A66D6729"' + - '"0x8D9258BE8A24A35"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -457,11 +457,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/b1dc67a9-2ad6-4614-8500-92a5955daeb8.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/50cfac76-eecd-45d0-816b-5b06128d5a80.txt response: body: string: '' @@ -471,11 +471,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A675CD1D"' + - '"0x8D9258BE8AB2580"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -507,11 +507,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/b15d4198-3ba1-4f35-8cb7-04005f189dca.txt + uri: https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/a7f3456e-8403-47db-97a0-db2f1ab68776.txt response: body: string: '' @@ -521,11 +521,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:47 GMT etag: - - '"0x8D91C80A67FE118"' + - '"0x8D9258BE8B33D36"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -551,11 +551,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6?restype=container + uri: https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6?restype=container response: body: string: '' @@ -563,11 +563,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:48:31 GMT + - Wed, 02 Jun 2021 06:01:48 GMT etag: - - '"0x8D91C80A6A10D4C"' + - '"0x8D9258BE8D18B12"' last-modified: - - Fri, 21 May 2021 17:48:32 GMT + - Wed, 02 Jun 2021 06:01:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -576,8 +576,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -587,7 +587,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -599,13 +599,13 @@ interactions: string: '' headers: apim-request-id: - - 8aa9861c-176d-4447-8143-369e6221159e + - a0d668d0-41fa-407e-bae0-eaef329288da content-length: - '0' date: - - Fri, 21 May 2021 17:48:33 GMT + - Wed, 02 Jun 2021 06:01:48 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4e356baa-8996-4c2b-a1f9-259546e0218b set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -616,104 +616,10 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 8aa9861c-176d-4447-8143-369e6221159e + - a0d668d0-41fa-407e-bae0-eaef329288da 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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb - response: - body: - string: '{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:33.1622152Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 22a05c0c-fa46-4e45-b4d7-2bdf6eb21876 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:48:33 GMT - etag: - - '"485B5EF3FBB791F664009D70ACD041594861FFE9CBAF28964DE7F959468B2635"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 22a05c0c-fa46-4e45-b4d7-2bdf6eb21876 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb - response: - body: - string: '{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:33.539505Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 4fd90eae-045c-4ec0-9445-50fb36103a9b - cache-control: - - public,max-age=1 - content-length: - - '293' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:48:33 GMT - etag: - - '"58C9CF89DDC81640AA1409C7C7874EA754C9B26AC31CDA113AD6E78379AEB593"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 4fd90eae-045c-4ec0-9445-50fb36103a9b - status: - code: 200 - message: OK - request: body: null headers: @@ -726,23 +632,23 @@ 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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4e356baa-8996-4c2b-a1f9-259546e0218b response: body: - string: '{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:33.539505Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' headers: apim-request-id: - - 0c6453f8-2c4c-4257-a573-e3611075370e + - 29be243e-2e62-46cc-9b5a-1bd52348a432 cache-control: - public,max-age=1 content-length: - - '293' + - '294' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:48:34 GMT + - Wed, 02 Jun 2021 06:02:18 GMT etag: - - '"58C9CF89DDC81640AA1409C7C7874EA754C9B26AC31CDA113AD6E78379AEB593"' + - '"DB159D698974CF127F19DAA46135ACF6643BB59469348D75480F2720389F9E44"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -757,7 +663,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0c6453f8-2c4c-4257-a573-e3611075370e + - 29be243e-2e62-46cc-9b5a-1bd52348a432 status: code: 200 message: OK @@ -765,195 +671,7 @@ interactions: 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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb - response: - body: - string: '{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:35.6551561Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":8,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - e304d98a-240b-459b-8c3c-6984b602206e - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:48:35 GMT - etag: - - '"B7A479C9E8A858984DD8C13ABEA190F5BB57BEF93B152E9385303EBB7F166E4C"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - e304d98a-240b-459b-8c3c-6984b602206e - 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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb - response: - body: - string: '{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 79833322-86a6-4252-baed-4ad2d248c3e3 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:48:36 GMT - etag: - - '"22D221363D5FE2D86CE5D8C43FD8154EDEA744134D83CAED72172152C1018ABC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 79833322-86a6-4252-baed-4ad2d248c3e3 - 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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb - response: - body: - string: '{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ab29401d-a489-4af7-81c2-d5aefdc73a32 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:48:37 GMT - etag: - - '"22D221363D5FE2D86CE5D8C43FD8154EDEA744134D83CAED72172152C1018ABC"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ab29401d-a489-4af7-81c2-d5aefdc73a32 - 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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb - response: - body: - string: '{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 01af1bd6-a18e-43f5-a87c-13fdd0331c0b - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:48:38 GMT - etag: - - '"22D221363D5FE2D86CE5D8C43FD8154EDEA744134D83CAED72172152C1018ABC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 01af1bd6-a18e-43f5-a87c-13fdd0331c0b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -961,23 +679,23 @@ 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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4e356baa-8996-4c2b-a1f9-259546e0218b/documents?$skip=0 response: body: - string: '{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/96f64e58-3f5a-4ab0-bfae-dc2c2d46cc0f.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/96f64e58-3f5a-4ab0-bfae-dc2c2d46cc0f.txt","createdDateTimeUtc":"2021-06-02T06:01:59.2103798Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.8446143Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed26-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/a7f3456e-8403-47db-97a0-db2f1ab68776.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/a7f3456e-8403-47db-97a0-db2f1ab68776.txt","createdDateTimeUtc":"2021-06-02T06:01:59.1940244Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.8054517Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed27-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/89e7eb38-8099-4c72-a078-e53095ba758f.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/89e7eb38-8099-4c72-a078-e53095ba758f.txt","createdDateTimeUtc":"2021-06-02T06:01:58.8890689Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.7411761Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed25-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/7ac11151-b558-4319-b23e-2728374dcdeb.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/7ac11151-b558-4319-b23e-2728374dcdeb.txt","createdDateTimeUtc":"2021-06-02T06:01:58.8852766Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.8294276Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed24-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/5a06ce52-9e81-4cbe-b357-acecf8d64793.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/5a06ce52-9e81-4cbe-b357-acecf8d64793.txt","createdDateTimeUtc":"2021-06-02T06:01:58.8790483Z","lastActionDateTimeUtc":"2021-06-02T06:02:05.3409975Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed23-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/50cfac76-eecd-45d0-816b-5b06128d5a80.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/50cfac76-eecd-45d0-816b-5b06128d5a80.txt","createdDateTimeUtc":"2021-06-02T06:01:58.866242Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.7596732Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed22-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/3f7c3079-fa94-4608-8aae-e3abf3aae16d.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/3f7c3079-fa94-4608-8aae-e3abf3aae16d.txt","createdDateTimeUtc":"2021-06-02T06:01:58.7734658Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.7564016Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed21-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/33fc873a-6860-417d-8aa9-e8bbfe94a503.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/33fc873a-6860-417d-8aa9-e8bbfe94a503.txt","createdDateTimeUtc":"2021-06-02T06:01:58.7655918Z","lastActionDateTimeUtc":"2021-06-02T06:02:05.286549Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed20-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/22ecb361-bede-40e1-b211-f1eb52964891.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/22ecb361-bede-40e1-b211-f1eb52964891.txt","createdDateTimeUtc":"2021-06-02T06:01:58.7511988Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.9908943Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/1c87f009-f6cc-4f33-bda7-dc74d9c7290c.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/1c87f009-f6cc-4f33-bda7-dc74d9c7290c.txt","createdDateTimeUtc":"2021-06-02T06:01:58.7481473Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.8820172Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1e-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - acf3e2b7-375d-4b9d-baec-b137dfdc2014 + - c1f161ca-0fb9-4fca-8604-3de232d14581 cache-control: - public,max-age=1 content-length: - - '295' + - '4949' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:48:39 GMT + - Wed, 02 Jun 2021 06:02:18 GMT etag: - - '"34494396965A4F5A2AFB81C111E77C5EE2C4D34B9D7496AB2689CF4B21DCABAD"' + - '"F1649333B8B4C59C30E0235A9B638C895C4393D85FD20A72CBC21BE83486F6FD"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -992,7 +710,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - acf3e2b7-375d-4b9d-baec-b137dfdc2014 + - c1f161ca-0fb9-4fca-8604-3de232d14581 status: code: 200 message: OK @@ -1008,13 +726,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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb/documents?$skip=0&statuses=NotStarted + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4e356baa-8996-4c2b-a1f9-259546e0218b/documents?$skip=0&statuses=NotStarted response: body: string: '{"value":[]}' headers: apim-request-id: - - ac7f088c-2071-49b2-b8cd-94b74926bfc0 + - e8a618a6-1996-45eb-aa74-37f8d08f8642 cache-control: - public,max-age=1 content-length: @@ -1022,9 +740,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:48:39 GMT + - Wed, 02 Jun 2021 06:02:19 GMT etag: - - '"180D8BC10D5745F83E6E5F804E54A21616168F705012BDD5AA6A0D53821056D4"' + - '"0BF7BBDC0222189514175B62E07DE497D73995C5AF58DC4CA171C8D8B8808C43"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1039,7 +757,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ac7f088c-2071-49b2-b8cd-94b74926bfc0 + - e8a618a6-1996-45eb-aa74-37f8d08f8642 status: code: 200 message: OK @@ -1055,13 +773,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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb/documents?$skip=0&statuses=Succeeded + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4e356baa-8996-4c2b-a1f9-259546e0218b/documents?$skip=0&statuses=Succeeded response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/e8965425-50da-4cd5-a11c-bfe12a819a32.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/e8965425-50da-4cd5-a11c-bfe12a819a32.txt","createdDateTimeUtc":"2021-05-21T17:48:35.9153472Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.9217641Z","status":"Succeeded","to":"es","progress":1,"id":"0007a34f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/ff0856d0-6ab3-4308-963d-5e0ce7ab34b4.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/ff0856d0-6ab3-4308-963d-5e0ce7ab34b4.txt","createdDateTimeUtc":"2021-05-21T17:48:35.8699383Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.9030482Z","status":"Succeeded","to":"es","progress":1,"id":"0007a350-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/ca5c0944-5dde-466b-a6a9-8cd9a124a51e.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/ca5c0944-5dde-466b-a6a9-8cd9a124a51e.txt","createdDateTimeUtc":"2021-05-21T17:48:35.6616959Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.4170381Z","status":"Succeeded","to":"es","progress":1,"id":"0007a34e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/b1dc67a9-2ad6-4614-8500-92a5955daeb8.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/b1dc67a9-2ad6-4614-8500-92a5955daeb8.txt","createdDateTimeUtc":"2021-05-21T17:48:35.6424112Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.3536514Z","status":"Succeeded","to":"es","progress":1,"id":"0007a34c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/bd110c57-6168-4820-a48b-53ddf25d8b1f.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/bd110c57-6168-4820-a48b-53ddf25d8b1f.txt","createdDateTimeUtc":"2021-05-21T17:48:35.6141533Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.3133447Z","status":"Succeeded","to":"es","progress":1,"id":"0007a34d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/b15d4198-3ba1-4f35-8cb7-04005f189dca.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/b15d4198-3ba1-4f35-8cb7-04005f189dca.txt","createdDateTimeUtc":"2021-05-21T17:48:35.5945842Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.3143752Z","status":"Succeeded","to":"es","progress":1,"id":"0007a34b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/a278f133-a5cc-405c-886c-9a3cd8c1a976.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/a278f133-a5cc-405c-886c-9a3cd8c1a976.txt","createdDateTimeUtc":"2021-05-21T17:48:35.22381Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.2895778Z","status":"Succeeded","to":"es","progress":1,"id":"0007a34a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/92ca21c4-91aa-4f44-b8ec-e0f090390cb8.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/92ca21c4-91aa-4f44-b8ec-e0f090390cb8.txt","createdDateTimeUtc":"2021-05-21T17:48:35.2104426Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.3504285Z","status":"Succeeded","to":"es","progress":1,"id":"0007a349-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/87fa33d0-977c-47dc-a131-12aae0a46591.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/87fa33d0-977c-47dc-a131-12aae0a46591.txt","createdDateTimeUtc":"2021-05-21T17:48:35.2065341Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.2645025Z","status":"Succeeded","to":"es","progress":1,"id":"0007a348-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target85f0afe3-2622-49d4-abdc-ce2ec2d28ac6/15d67a96-f961-4635-837c-44cce63b883d.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc70a7f7b-5ff4-4e78-be29-095722b694d7/15d67a96-f961-4635-837c-44cce63b883d.txt","createdDateTimeUtc":"2021-05-21T17:48:35.1867824Z","lastActionDateTimeUtc":"2021-05-21T17:48:39.4022911Z","status":"Succeeded","to":"es","progress":1,"id":"0007a347-0000-0000-0000-000000000000","characterCharged":27}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/96f64e58-3f5a-4ab0-bfae-dc2c2d46cc0f.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/96f64e58-3f5a-4ab0-bfae-dc2c2d46cc0f.txt","createdDateTimeUtc":"2021-06-02T06:01:59.2103798Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.8446143Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed26-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/a7f3456e-8403-47db-97a0-db2f1ab68776.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/a7f3456e-8403-47db-97a0-db2f1ab68776.txt","createdDateTimeUtc":"2021-06-02T06:01:59.1940244Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.8054517Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed27-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/89e7eb38-8099-4c72-a078-e53095ba758f.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/89e7eb38-8099-4c72-a078-e53095ba758f.txt","createdDateTimeUtc":"2021-06-02T06:01:58.8890689Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.7411761Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed25-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/7ac11151-b558-4319-b23e-2728374dcdeb.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/7ac11151-b558-4319-b23e-2728374dcdeb.txt","createdDateTimeUtc":"2021-06-02T06:01:58.8852766Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.8294276Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed24-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/5a06ce52-9e81-4cbe-b357-acecf8d64793.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/5a06ce52-9e81-4cbe-b357-acecf8d64793.txt","createdDateTimeUtc":"2021-06-02T06:01:58.8790483Z","lastActionDateTimeUtc":"2021-06-02T06:02:05.3409975Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed23-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/50cfac76-eecd-45d0-816b-5b06128d5a80.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/50cfac76-eecd-45d0-816b-5b06128d5a80.txt","createdDateTimeUtc":"2021-06-02T06:01:58.866242Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.7596732Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed22-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/3f7c3079-fa94-4608-8aae-e3abf3aae16d.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/3f7c3079-fa94-4608-8aae-e3abf3aae16d.txt","createdDateTimeUtc":"2021-06-02T06:01:58.7734658Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.7564016Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed21-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/33fc873a-6860-417d-8aa9-e8bbfe94a503.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/33fc873a-6860-417d-8aa9-e8bbfe94a503.txt","createdDateTimeUtc":"2021-06-02T06:01:58.7655918Z","lastActionDateTimeUtc":"2021-06-02T06:02:05.286549Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed20-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/22ecb361-bede-40e1-b211-f1eb52964891.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/22ecb361-bede-40e1-b211-f1eb52964891.txt","createdDateTimeUtc":"2021-06-02T06:01:58.7511988Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.9908943Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target82791160-6ccc-402d-a045-a0f1e174dfa6/1c87f009-f6cc-4f33-bda7-dc74d9c7290c.txt","sourcePath":"https://redacted.blob.core.windows.net/srccadfcf56-bd17-4ab9-b005-9f7bf449fc61/1c87f009-f6cc-4f33-bda7-dc74d9c7290c.txt","createdDateTimeUtc":"2021-06-02T06:01:58.7481473Z","lastActionDateTimeUtc":"2021-06-02T06:02:04.8820172Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1e-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - abc670a3-8fea-4f7b-8afc-c0bf285b1d4d + - 1ff05d1f-9db9-44f7-b276-656229ed0500 cache-control: - public,max-age=1 content-length: @@ -1069,9 +787,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:48:39 GMT + - Wed, 02 Jun 2021 06:02:19 GMT etag: - - '"4207719EBB5C42B2302775F148CA72DC96CC89383A56B2AF504DA8BA731CF928"' + - '"F1649333B8B4C59C30E0235A9B638C895C4393D85FD20A72CBC21BE83486F6FD"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1086,7 +804,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - abc670a3-8fea-4f7b-8afc-c0bf285b1d4d + - 1ff05d1f-9db9-44f7-b276-656229ed0500 status: code: 200 message: OK @@ -1102,13 +820,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/batches/892231a0-a74b-4f2a-b3d9-adc91ff571eb/documents?$skip=0&statuses=Failed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4e356baa-8996-4c2b-a1f9-259546e0218b/documents?$skip=0&statuses=Failed response: body: string: '{"value":[]}' headers: apim-request-id: - - 0fcff7df-5a24-461f-afcc-30b7174eef73 + - b15df91d-632e-4315-afa4-ee3c95940ff8 cache-control: - public,max-age=1 content-length: @@ -1116,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:48:39 GMT + - Wed, 02 Jun 2021 06:02:19 GMT etag: - - '"180D8BC10D5745F83E6E5F804E54A21616168F705012BDD5AA6A0D53821056D4"' + - '"0BF7BBDC0222189514175B62E07DE497D73995C5AF58DC4CA171C8D8B8808C43"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1133,7 +851,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0fcff7df-5a24-461f-afcc-30b7174eef73 + - b15df91d-632e-4315-afa4-ee3c95940ff8 status: code: 200 message: OK 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 index 23e457fecfcd..a55c3e0bd769 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba?restype=container + uri: https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:52:35 GMT + - Wed, 02 Jun 2021 05:58:17 GMT etag: - - '"0x8D91C78D630913A"' + - '"0x8D9258B6B713C82"' last-modified: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 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: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/9ce17417-5ba8-4ad9-ab56-32b531e20c21.txt + uri: https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/746b289a-ba27-45a6-81e5-88a36028ad4b.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:35 GMT + - Wed, 02 Jun 2021 05:58:17 GMT etag: - - '"0x8D91C78D63E0ABF"' + - '"0x8D9258B6B7BB449"' last-modified: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 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: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/a14aea22-ed73-424d-9824-ab35d6197798.txt + uri: https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/5ffbc56f-240b-47dc-a3f8-1392790f9160.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:17 GMT etag: - - '"0x8D91C78D648BB15"' + - '"0x8D9258B6B872808"' last-modified: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 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: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/614604bd-0d08-4903-9dab-1ae51122be9f.txt + uri: https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/c70236f3-9523-46ca-95d8-7f7ea25756f6.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT etag: - - '"0x8D91C78D654CB3E"' + - '"0x8D9258B6B8DE00C"' last-modified: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 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: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/548410e9-f07e-419d-9cb9-b4dba3bb875e.txt + uri: https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/a20045ff-6035-4a43-ac43-eab11e939620.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT etag: - - '"0x8D91C78D65F2D61"' + - '"0x8D9258B6B950D45"' last-modified: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 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: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/37c24033-c974-4ff4-812e-736afb369786.txt + uri: https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/ccd56574-17a4-4d89-afd0-010a2500f66f.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT etag: - - '"0x8D91C78D666F706"' + - '"0x8D9258B6B9C88A4"' last-modified: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target2b4764b8-9bb8-4351-b11a-70f3a6daa94a?restype=container + uri: https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:17 GMT etag: - - '"0x8D91C78D689C7CB"' + - '"0x8D9258B6BBA1082"' last-modified: - - Fri, 21 May 2021 16:52:37 GMT + - Wed, 02 Jun 2021 05:58:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2b4764b8-9bb8-4351-b11a-70f3a6daa94a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -349,13 +349,13 @@ interactions: string: '' headers: apim-request-id: - - 242ad5a6-7d2b-498f-ab91-fc9a32a7fe84 + - 193f9c17-527c-4ec2-8cff-463827abcf8d content-length: - '0' date: - - Fri, 21 May 2021 16:52:36 GMT + - Wed, 02 Jun 2021 05:58:18 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0ee35c9d-9018-4a3b-9ea1-68245a334dd4 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -366,7 +366,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 242ad5a6-7d2b-498f-ab91-fc9a32a7fe84 + - 193f9c17-527c-4ec2-8cff-463827abcf8d status: code: 202 message: Accepted @@ -374,7 +374,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -382,13 +382,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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0ee35c9d-9018-4a3b-9ea1-68245a334dd4 response: body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:37.5768135Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 5344057c-ef20-4ec5-9f4d-b6ba00817166 + - 14f8e43e-f99f-468b-bebb-cbc721fbfd6b cache-control: - public,max-age=1 content-length: @@ -396,9 +396,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:37 GMT + - Wed, 02 Jun 2021 05:58:48 GMT etag: - - '"1257966EEF548F976A899B8642ADBAA320997E71433A5BB2D82D7DB686AB99CD"' + - '"DD8667BEB30059937988961D297198CE9983F545BCE62003A4E921855A5DDBAE"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -413,7 +413,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5344057c-ef20-4ec5-9f4d-b6ba00817166 + - 14f8e43e-f99f-468b-bebb-cbc721fbfd6b status: code: 200 message: OK @@ -429,493 +429,23 @@ 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:37.5768135Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 8fa4084d-8496-42cf-ba46-0453552d9627 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:37 GMT - etag: - - '"1257966EEF548F976A899B8642ADBAA320997E71433A5BB2D82D7DB686AB99CD"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 8fa4084d-8496-42cf-ba46-0453552d9627 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:37.991485Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 2422bc56-7718-4180-a3c9-9e44d03d6f47 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:38 GMT - etag: - - '"0141A49186E347D5ADAA8DB4A901AE670CB1B853855ACAF75199F07DD73D7503"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 2422bc56-7718-4180-a3c9-9e44d03d6f47 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:37.991485Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - b7f738ee-c1dd-4ef8-8469-b7885c7e2e12 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:39 GMT - etag: - - '"0141A49186E347D5ADAA8DB4A901AE670CB1B853855ACAF75199F07DD73D7503"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b7f738ee-c1dd-4ef8-8469-b7885c7e2e12 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:37.991485Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 288374d7-9eaa-47e2-a58f-dc86cc350c66 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:40 GMT - etag: - - '"0141A49186E347D5ADAA8DB4A901AE670CB1B853855ACAF75199F07DD73D7503"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 288374d7-9eaa-47e2-a58f-dc86cc350c66 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:37.991485Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 9cf92d6a-e4d0-47b3-b247-4b7ab1cf4d76 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:41 GMT - etag: - - '"0141A49186E347D5ADAA8DB4A901AE670CB1B853855ACAF75199F07DD73D7503"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9cf92d6a-e4d0-47b3-b247-4b7ab1cf4d76 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 870fc654-3e45-4eec-ae35-39d0649e0006 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:42 GMT - etag: - - '"8DF526E27E701BA9BDEBDED0DDA0AC3BFA0DF05C59AAB3B343126B4C57277EFC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 870fc654-3e45-4eec-ae35-39d0649e0006 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a7611065-6071-4c82-88f9-2cf6ac4477b2 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:43 GMT - etag: - - '"8DF526E27E701BA9BDEBDED0DDA0AC3BFA0DF05C59AAB3B343126B4C57277EFC"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a7611065-6071-4c82-88f9-2cf6ac4477b2 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 278804e2-49b8-40c9-8c4e-ccd2f635a093 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:44 GMT - etag: - - '"8DF526E27E701BA9BDEBDED0DDA0AC3BFA0DF05C59AAB3B343126B4C57277EFC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 278804e2-49b8-40c9-8c4e-ccd2f635a093 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0ee35c9d-9018-4a3b-9ea1-68245a334dd4/documents?$skip=0 response: body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/ccd56574-17a4-4d89-afd0-010a2500f66f.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/ccd56574-17a4-4d89-afd0-010a2500f66f.txt","createdDateTimeUtc":"2021-06-02T05:58:26.8887661Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.4309146Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed04-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/a20045ff-6035-4a43-ac43-eab11e939620.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/a20045ff-6035-4a43-ac43-eab11e939620.txt","createdDateTimeUtc":"2021-06-02T05:58:26.714739Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.2627888Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed02-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/c70236f3-9523-46ca-95d8-7f7ea25756f6.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/c70236f3-9523-46ca-95d8-7f7ea25756f6.txt","createdDateTimeUtc":"2021-06-02T05:58:26.6853848Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.2141134Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed03-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/5ffbc56f-240b-47dc-a3f8-1392790f9160.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/5ffbc56f-240b-47dc-a3f8-1392790f9160.txt","createdDateTimeUtc":"2021-06-02T05:58:26.6809707Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.1794963Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed00-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/746b289a-ba27-45a6-81e5-88a36028ad4b.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/746b289a-ba27-45a6-81e5-88a36028ad4b.txt","createdDateTimeUtc":"2021-06-02T05:58:26.6769641Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.2176209Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed01-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - e810cc20-eb23-4c61-8894-060f1b06d6e7 + - 3817f670-2c47-40b6-b879-e6dd458c0077 cache-control: - public,max-age=1 content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:45 GMT - etag: - - '"DA5AD16354EEDE62578D8A7C39CD0954091E2208B7B17AA6767C7FFA460FCF18"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - e810cc20-eb23-4c61-8894-060f1b06d6e7 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' - headers: - apim-request-id: - - 53615097-3c72-4055-a2ce-ceb1ff8d4130 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:46 GMT - etag: - - '"DA5AD16354EEDE62578D8A7C39CD0954091E2208B7B17AA6767C7FFA460FCF18"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 53615097-3c72-4055-a2ce-ceb1ff8d4130 - 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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0 - response: - body: - string: '{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' - headers: - apim-request-id: - - d49e4ac8-2987-4009-b327-4eca591ef297 - cache-control: - - public,max-age=1 - content-length: - - '293' + - '2480' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:47 GMT + - Wed, 02 Jun 2021 05:58:48 GMT etag: - - '"4C82B6974A0CD932E09A62EE5B77D07A15A979D7620947317BA458E0E754986C"' + - '"8F05B0858CA1D90EB30153E120DC31116104A6D06B95FFD831201DE61D5E1308"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -930,7 +460,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d49e4ac8-2987-4009-b327-4eca591ef297 + - 3817f670-2c47-40b6-b879-e6dd458c0077 status: code: 200 message: OK @@ -946,13 +476,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/batches/d2e506ec-d1d1-4f1d-b10a-bae45656efd0/documents?$skip=0&$orderBy=createdDateTimeUtc%20asc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0ee35c9d-9018-4a3b-9ea1-68245a334dd4/documents?$skip=0&$orderBy=createdDateTimeUtc%20asc response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target2b4764b8-9bb8-4351-b11a-70f3a6daa94a/37c24033-c974-4ff4-812e-736afb369786.txt","sourcePath":"https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/37c24033-c974-4ff4-812e-736afb369786.txt","createdDateTimeUtc":"2021-05-21T16:52:42.3661499Z","lastActionDateTimeUtc":"2021-05-21T16:52:45.7233354Z","status":"Succeeded","to":"es","progress":1,"id":"0007a20f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target2b4764b8-9bb8-4351-b11a-70f3a6daa94a/9ce17417-5ba8-4ad9-ab56-32b531e20c21.txt","sourcePath":"https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/9ce17417-5ba8-4ad9-ab56-32b531e20c21.txt","createdDateTimeUtc":"2021-05-21T16:52:42.3699319Z","lastActionDateTimeUtc":"2021-05-21T16:52:47.7245122Z","status":"Succeeded","to":"es","progress":1,"id":"0007a212-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target2b4764b8-9bb8-4351-b11a-70f3a6daa94a/614604bd-0d08-4903-9dab-1ae51122be9f.txt","sourcePath":"https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/614604bd-0d08-4903-9dab-1ae51122be9f.txt","createdDateTimeUtc":"2021-05-21T16:52:42.380534Z","lastActionDateTimeUtc":"2021-05-21T16:52:45.8020561Z","status":"Succeeded","to":"es","progress":1,"id":"0007a211-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target2b4764b8-9bb8-4351-b11a-70f3a6daa94a/548410e9-f07e-419d-9cb9-b4dba3bb875e.txt","sourcePath":"https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/548410e9-f07e-419d-9cb9-b4dba3bb875e.txt","createdDateTimeUtc":"2021-05-21T16:52:42.3836991Z","lastActionDateTimeUtc":"2021-05-21T16:52:45.7642457Z","status":"Succeeded","to":"es","progress":1,"id":"0007a210-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target2b4764b8-9bb8-4351-b11a-70f3a6daa94a/a14aea22-ed73-424d-9824-ab35d6197798.txt","sourcePath":"https://redacted.blob.core.windows.net/src057727c4-3d04-44d5-acf7-3e71cd6eb7ba/a14aea22-ed73-424d-9824-ab35d6197798.txt","createdDateTimeUtc":"2021-05-21T16:52:42.7235413Z","lastActionDateTimeUtc":"2021-05-21T16:52:46.3679536Z","status":"Succeeded","to":"es","progress":1,"id":"0007a213-0000-0000-0000-000000000000","characterCharged":27}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/746b289a-ba27-45a6-81e5-88a36028ad4b.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/746b289a-ba27-45a6-81e5-88a36028ad4b.txt","createdDateTimeUtc":"2021-06-02T05:58:26.6769641Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.2176209Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed01-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/5ffbc56f-240b-47dc-a3f8-1392790f9160.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/5ffbc56f-240b-47dc-a3f8-1392790f9160.txt","createdDateTimeUtc":"2021-06-02T05:58:26.6809707Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.1794963Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed00-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/c70236f3-9523-46ca-95d8-7f7ea25756f6.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/c70236f3-9523-46ca-95d8-7f7ea25756f6.txt","createdDateTimeUtc":"2021-06-02T05:58:26.6853848Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.2141134Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed03-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/a20045ff-6035-4a43-ac43-eab11e939620.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/a20045ff-6035-4a43-ac43-eab11e939620.txt","createdDateTimeUtc":"2021-06-02T05:58:26.714739Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.2627888Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed02-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target305fea55-c3f2-4a64-895a-c610ee9d1b6a/ccd56574-17a4-4d89-afd0-010a2500f66f.txt","sourcePath":"https://redacted.blob.core.windows.net/src71f40aa0-a621-4f5b-b5dc-9a20eb08c031/ccd56574-17a4-4d89-afd0-010a2500f66f.txt","createdDateTimeUtc":"2021-06-02T05:58:26.8887661Z","lastActionDateTimeUtc":"2021-06-02T05:58:32.4309146Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed04-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 8de64436-0e00-40e5-87a6-c06569916494 + - c0a8d378-0c09-4c92-b765-3f031c0bf069 cache-control: - public,max-age=1 content-length: @@ -960,9 +490,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:52:48 GMT + - Wed, 02 Jun 2021 05:58:48 GMT etag: - - '"A78B45668069E3410577BB19EE0C901CBA91912CCAEE8F2EFC216A16AFE3005B"' + - '"540F0EA4032969587F33FB8FB4EB2B0CCC1BFCF78F1514AE01ED6C7DD08B4A64"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -977,7 +507,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 8de64436-0e00-40e5-87a6-c06569916494 + - c0a8d378-0c09-4c92-b765-3f031c0bf069 status: code: 200 message: OK 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 index db7401e1f69d..35115e1620bb 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956?restype=container + uri: https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:52:48 GMT + - Wed, 02 Jun 2021 05:58:49 GMT etag: - - '"0x8D91C78DDC689E5"' + - '"0x8D9258B7E5F0750"' last-modified: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 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: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/81f6b9ff-52b2-442a-a690-991b3474c48f.txt + uri: https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/361d53cd-7908-495e-aebc-b2e504b4108f.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:48 GMT + - Wed, 02 Jun 2021 05:58:49 GMT etag: - - '"0x8D91C78DDD2D2A4"' + - '"0x8D9258B7E664AA6"' last-modified: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 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: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/e2e5af36-18b2-49d5-bb2b-b46c72643668.txt + uri: https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/af713b75-e309-46b7-be4a-5986d56fb8fb.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:48 GMT + - Wed, 02 Jun 2021 05:58:49 GMT etag: - - '"0x8D91C78DDDC7163"' + - '"0x8D9258B7E6D29C3"' last-modified: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 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: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/d9031492-41e4-4d53-869a-294418013f36.txt + uri: https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/683107a3-ffd5-4264-8f10-ffca465071ad.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:48 GMT + - Wed, 02 Jun 2021 05:58:49 GMT etag: - - '"0x8D91C78DE0ED527"' + - '"0x8D9258B7E751A69"' last-modified: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 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: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/0f9e0bf6-6497-423e-b258-0f0fc540a1ce.txt + uri: https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/d31af0cb-da93-47b2-8898-61c5b97ea508.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:48 GMT + - Wed, 02 Jun 2021 05:58:49 GMT etag: - - '"0x8D91C78DE169EBF"' + - '"0x8D9258B7E7D594B"' last-modified: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 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: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/12b1a686-755e-4275-921f-96008a6259a1.txt + uri: https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/49cbd035-73fb-4af4-8dcb-f4bd45d89845.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:52:48 GMT + - Wed, 02 Jun 2021 05:58:49 GMT etag: - - '"0x8D91C78DE203D83"' + - '"0x8D9258B7E848684"' last-modified: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target580eb5c1-0dc0-4684-9016-4beb7fdb400b?restype=container + uri: https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:50 GMT etag: - - '"0x8D91C78DE4121F5"' + - '"0x8D9258B7E9E19AE"' last-modified: - - Fri, 21 May 2021 16:52:50 GMT + - Wed, 02 Jun 2021 05:58:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target580eb5c1-0dc0-4684-9016-4beb7fdb400b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -337,7 +337,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -349,591 +349,27 @@ interactions: string: '' headers: apim-request-id: - - 4227ba57-863b-44e4-be99-04c52a5ba7ab + - 6f2f9379-f2ed-4a12-bdaf-a802b378675b content-length: - '0' date: - - Fri, 21 May 2021 16:52:49 GMT + - Wed, 02 Jun 2021 05:58:51 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 4227ba57-863b-44e4-be99-04c52a5ba7ab - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:50.3166867Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - e39f1caf-fbe2-4402-a9d6-62e388601852 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:49 GMT - etag: - - '"40779411267DCF5EE146F64601B912F6EBA82D6C4A293EB69BC1B9C234ACC2F6"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - e39f1caf-fbe2-4402-a9d6-62e388601852 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:50.3166867Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 6e075e7f-cef4-4ffb-9a73-430b6b7d21dd - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:49 GMT - etag: - - '"40779411267DCF5EE146F64601B912F6EBA82D6C4A293EB69BC1B9C234ACC2F6"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6e075e7f-cef4-4ffb-9a73-430b6b7d21dd - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:50.5583115Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 63892472-9bca-4c21-b786-057041dcefe4 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:50 GMT - etag: - - '"7FDF73C872D99709514468676C54496B725451D78B3D94EC4E56365FEB48B9D8"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 63892472-9bca-4c21-b786-057041dcefe4 - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:50.5583115Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 35603b43-e2e2-4247-bd3f-f6a1de19cb6d - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:51 GMT - etag: - - '"7FDF73C872D99709514468676C54496B725451D78B3D94EC4E56365FEB48B9D8"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 35603b43-e2e2-4247-bd3f-f6a1de19cb6d - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:50.5583115Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 190a49ae-cedf-48da-a301-aa6a3a9ab00b - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:52 GMT - etag: - - '"7FDF73C872D99709514468676C54496B725451D78B3D94EC4E56365FEB48B9D8"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 190a49ae-cedf-48da-a301-aa6a3a9ab00b - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:50.5583115Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 5a602f1b-f896-4515-b5b9-a7d8ca252a57 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:53 GMT - etag: - - '"7FDF73C872D99709514468676C54496B725451D78B3D94EC4E56365FEB48B9D8"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5a602f1b-f896-4515-b5b9-a7d8ca252a57 - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:50.5583115Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 0a3b8c1b-ebd3-4151-bf02-de6e60f825c4 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:54 GMT - etag: - - '"7FDF73C872D99709514468676C54496B725451D78B3D94EC4E56365FEB48B9D8"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 0a3b8c1b-ebd3-4151-bf02-de6e60f825c4 - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:50.5583115Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - c9a4d0c2-3f17-4936-8a16-be462298b12f - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:56 GMT - etag: - - '"7FDF73C872D99709514468676C54496B725451D78B3D94EC4E56365FEB48B9D8"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - c9a4d0c2-3f17-4936-8a16-be462298b12f - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 007ae843-23b2-4607-b23e-8b743c3e4f77 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:58 GMT - etag: - - '"DB6B5737C321D2886047920E8CB98FE4B5464CB6E3759BAA322443878DE2A0E5"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 007ae843-23b2-4607-b23e-8b743c3e4f77 - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - afe51067-f1d9-4091-a05e-68103ae2535a - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:52:59 GMT - etag: - - '"DB6B5737C321D2886047920E8CB98FE4B5464CB6E3759BAA322443878DE2A0E5"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - afe51067-f1d9-4091-a05e-68103ae2535a - 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 7908eb5c-df8a-4d3c-aaae-e2ebe0339c6f - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:00 GMT - etag: - - '"DB6B5737C321D2886047920E8CB98FE4B5464CB6E3759BAA322443878DE2A0E5"' + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/affdd43f-a59e-4faf-9b7c-045d28a129bc set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 7908eb5c-df8a-4d3c-aaae-e2ebe0339c6f + - 6f2f9379-f2ed-4a12-bdaf-a802b378675b 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 - response: - body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 33a6a925-68cb-4888-a32c-eab7d61c1e77 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:01 GMT - etag: - - '"DB6B5737C321D2886047920E8CB98FE4B5464CB6E3759BAA322443878DE2A0E5"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 33a6a925-68cb-4888-a32c-eab7d61c1e77 - status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -946,23 +382,23 @@ 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/affdd43f-a59e-4faf-9b7c-045d28a129bc response: body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + string: '{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 6383443c-d514-4a53-8105-86a825f07a76 + - 28468d73-a812-48a3-8f0c-f6ea872852f4 cache-control: - public,max-age=1 content-length: - - '291' + - '293' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:02 GMT + - Wed, 02 Jun 2021 05:59:20 GMT etag: - - '"5153E69E5873A92D93A68A080A6585A5ADBE6761576B0BE3D3A925A33AC18FE7"' + - '"475A22511926F5FF72C6EAE1A5BD71F1DA02DA8D0D9475110C319E180674A174"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -977,7 +413,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6383443c-d514-4a53-8105-86a825f07a76 + - 28468d73-a812-48a3-8f0c-f6ea872852f4 status: code: 200 message: OK @@ -985,7 +421,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -993,23 +429,23 @@ 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/affdd43f-a59e-4faf-9b7c-045d28a129bc/documents?$skip=0 response: body: - string: '{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/af713b75-e309-46b7-be4a-5986d56fb8fb.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/af713b75-e309-46b7-be4a-5986d56fb8fb.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9590605Z","lastActionDateTimeUtc":"2021-06-02T05:58:58.2635527Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed08-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/d31af0cb-da93-47b2-8898-61c5b97ea508.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/d31af0cb-da93-47b2-8898-61c5b97ea508.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9512385Z","lastActionDateTimeUtc":"2021-06-02T05:58:58.3207495Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed09-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/683107a3-ffd5-4264-8f10-ffca465071ad.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/683107a3-ffd5-4264-8f10-ffca465071ad.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9435288Z","lastActionDateTimeUtc":"2021-06-02T05:58:57.8277703Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed07-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/49cbd035-73fb-4af4-8dcb-f4bd45d89845.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/49cbd035-73fb-4af4-8dcb-f4bd45d89845.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9295642Z","lastActionDateTimeUtc":"2021-06-02T05:58:58.241932Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed06-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/361d53cd-7908-495e-aebc-b2e504b4108f.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/361d53cd-7908-495e-aebc-b2e504b4108f.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9140821Z","lastActionDateTimeUtc":"2021-06-02T05:58:58.2691959Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed05-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 64f4a667-eff0-4032-9bec-de361cdc2758 + - 8b04785b-2104-4ac5-a9ee-f43dcc459d98 cache-control: - public,max-age=1 content-length: - - '293' + - '2480' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:20 GMT etag: - - '"E4E9B32D297C1AE07B6D7A7973343548F03B8A68CF633CBC1A50D7F89121E767"' + - '"6A6793E7AC059A497076E113FD71BC1B8FB67C064A6091FE5526C9482EEF0960"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1024,7 +460,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 64f4a667-eff0-4032-9bec-de361cdc2758 + - 8b04785b-2104-4ac5-a9ee-f43dcc459d98 status: code: 200 message: OK @@ -1040,23 +476,23 @@ 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/batches/2af3b642-ff84-4d3c-bee6-05d751020272/documents?$skip=0&$orderBy=createdDateTimeUtc%20desc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/affdd43f-a59e-4faf-9b7c-045d28a129bc/documents?$skip=0&$orderBy=createdDateTimeUtc%20desc response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target580eb5c1-0dc0-4684-9016-4beb7fdb400b/e2e5af36-18b2-49d5-bb2b-b46c72643668.txt","sourcePath":"https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/e2e5af36-18b2-49d5-bb2b-b46c72643668.txt","createdDateTimeUtc":"2021-05-21T16:52:57.6998179Z","lastActionDateTimeUtc":"2021-05-21T16:53:01.930793Z","status":"Succeeded","to":"es","progress":1,"id":"0007a218-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target580eb5c1-0dc0-4684-9016-4beb7fdb400b/d9031492-41e4-4d53-869a-294418013f36.txt","sourcePath":"https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/d9031492-41e4-4d53-869a-294418013f36.txt","createdDateTimeUtc":"2021-05-21T16:52:57.6093423Z","lastActionDateTimeUtc":"2021-05-21T16:53:01.813297Z","status":"Succeeded","to":"es","progress":1,"id":"0007a217-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target580eb5c1-0dc0-4684-9016-4beb7fdb400b/81f6b9ff-52b2-442a-a690-991b3474c48f.txt","sourcePath":"https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/81f6b9ff-52b2-442a-a690-991b3474c48f.txt","createdDateTimeUtc":"2021-05-21T16:52:57.6058563Z","lastActionDateTimeUtc":"2021-05-21T16:53:02.8412439Z","status":"Succeeded","to":"es","progress":1,"id":"0007a216-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target580eb5c1-0dc0-4684-9016-4beb7fdb400b/0f9e0bf6-6497-423e-b258-0f0fc540a1ce.txt","sourcePath":"https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/0f9e0bf6-6497-423e-b258-0f0fc540a1ce.txt","createdDateTimeUtc":"2021-05-21T16:52:57.5824154Z","lastActionDateTimeUtc":"2021-05-21T16:53:01.8439446Z","status":"Succeeded","to":"es","progress":1,"id":"0007a214-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target580eb5c1-0dc0-4684-9016-4beb7fdb400b/12b1a686-755e-4275-921f-96008a6259a1.txt","sourcePath":"https://redacted.blob.core.windows.net/src9924a8a5-ab40-4d51-8bd4-2f2142706956/12b1a686-755e-4275-921f-96008a6259a1.txt","createdDateTimeUtc":"2021-05-21T16:52:57.5678486Z","lastActionDateTimeUtc":"2021-05-21T16:53:01.7836128Z","status":"Succeeded","to":"es","progress":1,"id":"0007a215-0000-0000-0000-000000000000","characterCharged":27}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/af713b75-e309-46b7-be4a-5986d56fb8fb.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/af713b75-e309-46b7-be4a-5986d56fb8fb.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9590605Z","lastActionDateTimeUtc":"2021-06-02T05:58:58.2635527Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed08-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/d31af0cb-da93-47b2-8898-61c5b97ea508.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/d31af0cb-da93-47b2-8898-61c5b97ea508.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9512385Z","lastActionDateTimeUtc":"2021-06-02T05:58:58.3207495Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed09-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/683107a3-ffd5-4264-8f10-ffca465071ad.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/683107a3-ffd5-4264-8f10-ffca465071ad.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9435288Z","lastActionDateTimeUtc":"2021-06-02T05:58:57.8277703Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed07-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/49cbd035-73fb-4af4-8dcb-f4bd45d89845.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/49cbd035-73fb-4af4-8dcb-f4bd45d89845.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9295642Z","lastActionDateTimeUtc":"2021-06-02T05:58:58.241932Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed06-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3536c22d-5139-436a-ae0a-033f3944a5b4/361d53cd-7908-495e-aebc-b2e504b4108f.txt","sourcePath":"https://redacted.blob.core.windows.net/srccf750205-066b-4976-819a-beba6425ec4b/361d53cd-7908-495e-aebc-b2e504b4108f.txt","createdDateTimeUtc":"2021-06-02T05:58:51.9140821Z","lastActionDateTimeUtc":"2021-06-02T05:58:58.2691959Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed05-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 6f2b0adc-138e-47bb-a929-5ea84bc23708 + - 16803817-a963-4656-b72b-88ceb378b7e8 cache-control: - public,max-age=1 content-length: - - '2479' + - '2480' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"11D5C05FF3CFA2658A39C7184CFAEDD15172F31939ECE32A1F2EBCF20F7E9AFD"' + - '"6A6793E7AC059A497076E113FD71BC1B8FB67C064A6091FE5526C9482EEF0960"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1071,7 +507,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6f2b0adc-138e-47bb-a929-5ea84bc23708 + - 16803817-a963-4656-b72b-88ceb378b7e8 status: code: 200 message: OK 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 index 68111da2b398..daa0aecf6f6f 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398?restype=container + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6A66750"' + - '"0x8D9258B91394B46"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 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: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/138c74a7-6247-43a7-8d17-ea5b0696a045.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/2a78a876-8e1f-4d4d-89ad-e9b6597bb930.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6B39115"' + - '"0x8D9258B91403C39"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 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: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/7dcbae01-6027-460d-ab5e-7fd4f0ba7dd7.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/8289ada2-9f1f-4414-a71f-cc3ae172576f.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6BDA500"' + - '"0x8D9258B9146F42F"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 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: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/7a9eaa42-746f-4131-af0b-de4c8a9b1e74.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/08e840b5-94c1-440a-aeee-68e83e478793.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6CA518A"' + - '"0x8D9258B914E6F96"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 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: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/314ba0a5-8463-469c-874c-2cbaa8beafab.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/e25558f0-c6a4-4e0a-9713-de7a280a7775.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6D1309F"' + - '"0x8D9258B915AA6CF"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 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: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/9b320ac8-6504-4086-923e-c1bad1eca980.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/e1de4603-88e4-40ce-9a3d-e300b1bb6f66.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6D8AC08"' + - '"0x8D9258B91615ECA"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 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: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/efc444bf-5f61-4ba9-b6e0-a70132b43a37.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/7f2aa9a4-0b90-4cdb-959b-46c94cdd0008.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6E3AA8C"' + - '"0x8D9258B916AD65B"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 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: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/6da1fb60-2632-41ab-8feb-d78d88c3151d.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/75bbf507-142a-4812-bc73-180d342b2d41.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6EEA90C"' + - '"0x8D9258B9175ADC7"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 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: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/d2bd793a-c794-4e28-bed8-07748372807a.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/b43a1cd8-c743-4061-9d75-195eef2535ff.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6F7AB7C"' + - '"0x8D9258B917D9E76"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -457,11 +457,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/1037c492-b34c-4dd1-95ed-5af618993eef.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/1fd73038-04bd-4781-86f9-0d652703df6a.txt response: body: string: '' @@ -471,11 +471,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E6FF4DE0"' + - '"0x8D9258B9189AE8C"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -507,11 +507,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/aaf1c8a9-7c24-4ba6-8305-d58fb0af11a2.txt + uri: https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/faf1780c-b8c1-46c9-9cd9-8eaaf856a1e5.txt response: body: string: '' @@ -521,11 +521,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:03 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E706F063"' + - '"0x8D9258B9190DBCF"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -551,11 +551,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe?restype=container + uri: https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74?restype=container response: body: string: '' @@ -563,11 +563,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:21 GMT etag: - - '"0x8D91C78E7274379"' + - '"0x8D9258B91AC7B8F"' last-modified: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -576,8 +576,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -587,7 +587,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -599,13 +599,13 @@ interactions: string: '' headers: apim-request-id: - - a5e2d263-70e6-4144-b661-c7cbc43aede8 + - 0ee4625f-c7d6-47ed-88dd-827bce63de67 content-length: - '0' date: - - Fri, 21 May 2021 16:53:04 GMT + - Wed, 02 Jun 2021 05:59:22 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/bf88816c-7963-4b30-9984-9ae016749a77 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -616,762 +616,10 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a5e2d263-70e6-4144-b661-c7cbc43aede8 + - 0ee4625f-c7d6-47ed-88dd-827bce63de67 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:05.2930342Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 5829e3db-a01f-465c-b1d9-524ad2822707 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:04 GMT - etag: - - '"1F89D37CEA1DF91D35E443B26732FE7D4EB5C9BFC480BA020673B2FAF3A10135"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5829e3db-a01f-465c-b1d9-524ad2822707 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:05.2930342Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 8c0636cc-232c-47a0-a1b1-338172bfb40d - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:04 GMT - etag: - - '"1F89D37CEA1DF91D35E443B26732FE7D4EB5C9BFC480BA020673B2FAF3A10135"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 8c0636cc-232c-47a0-a1b1-338172bfb40d - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:05.8587516Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ea4b8c7f-a2ef-401a-b548-262762303218 - cache-control: - - public,max-age=1 - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:05 GMT - etag: - - '"A31BF4202E5C723B3C62247034BF1F067D33D5DAB9F0EAA4754244130B37EF88"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ea4b8c7f-a2ef-401a-b548-262762303218 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:05.8587516Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 1360a091-6766-4f2b-becd-f00ef6d961bc - cache-control: - - public,max-age=1 - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:06 GMT - etag: - - '"A31BF4202E5C723B3C62247034BF1F067D33D5DAB9F0EAA4754244130B37EF88"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 1360a091-6766-4f2b-becd-f00ef6d961bc - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:05.8587516Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 3b0519cd-c7b3-4ed2-b2cf-1eed066e9a34 - cache-control: - - public,max-age=1 - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:08 GMT - etag: - - '"A31BF4202E5C723B3C62247034BF1F067D33D5DAB9F0EAA4754244130B37EF88"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3b0519cd-c7b3-4ed2-b2cf-1eed066e9a34 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:05.8587516Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 53b5852b-9241-41db-a3eb-dccabacbf012 - cache-control: - - public,max-age=1 - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:09 GMT - etag: - - '"A31BF4202E5C723B3C62247034BF1F067D33D5DAB9F0EAA4754244130B37EF88"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 53b5852b-9241-41db-a3eb-dccabacbf012 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:05.8587516Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 2069d530-15fa-4e84-aa78-7c0eb3474605 - cache-control: - - public,max-age=1 - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:10 GMT - etag: - - '"A31BF4202E5C723B3C62247034BF1F067D33D5DAB9F0EAA4754244130B37EF88"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 2069d530-15fa-4e84-aa78-7c0eb3474605 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:05.8587516Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a417b523-67f0-42a9-bffc-53658fe89825 - cache-control: - - public,max-age=1 - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:11 GMT - etag: - - '"A31BF4202E5C723B3C62247034BF1F067D33D5DAB9F0EAA4754244130B37EF88"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a417b523-67f0-42a9-bffc-53658fe89825 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.0088889Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":8,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 7d79faa9-8138-47d3-a9c7-a0a041dea11f - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:12 GMT - etag: - - '"6D3A856EA5E67407A7A0DB6B485380442496AB210273ECC31422228FA79BEE45"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 7d79faa9-8138-47d3-a9c7-a0a041dea11f - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 1ef1deca-05a4-4ebb-9637-ea7413a70d26 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:13 GMT - etag: - - '"5FFCB366F67FE5D7EC3BAE9CF50E7E9BEADC7F5CB8EDBF08EC7F46DA21619FD1"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 1ef1deca-05a4-4ebb-9637-ea7413a70d26 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a2bc71b8-d7a7-4cb3-b058-ab6ed2862af1 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:14 GMT - etag: - - '"5FFCB366F67FE5D7EC3BAE9CF50E7E9BEADC7F5CB8EDBF08EC7F46DA21619FD1"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a2bc71b8-d7a7-4cb3-b058-ab6ed2862af1 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - b17eed2c-34fe-49c3-89be-1980c41721dc - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:15 GMT - etag: - - '"5FFCB366F67FE5D7EC3BAE9CF50E7E9BEADC7F5CB8EDBF08EC7F46DA21619FD1"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b17eed2c-34fe-49c3-89be-1980c41721dc - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 6500010c-7320-4765-a16d-e83ea08ddb02 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:16 GMT - etag: - - '"5FFCB366F67FE5D7EC3BAE9CF50E7E9BEADC7F5CB8EDBF08EC7F46DA21619FD1"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6500010c-7320-4765-a16d-e83ea08ddb02 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Running","summary":{"total":10,"failed":0,"success":3,"inProgress":7,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}' - headers: - apim-request-id: - - 1120a8f4-c49f-4250-8e04-57e680bebb50 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:17 GMT - etag: - - '"57B85F59B2FEEE6C173EACE48D08F16D733877F2F4FB4EFF40ADC1AF75165851"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 1120a8f4-c49f-4250-8e04-57e680bebb50 - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Running","summary":{"total":10,"failed":0,"success":9,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":243}}' - headers: - apim-request-id: - - d5df8fb5-93d8-4712-8c19-56b7742ad4eb - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:18 GMT - etag: - - '"233990089EF00B9051F330D27B72343CFDFB052F014BAC0E1C20F72B7232FF6E"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - d5df8fb5-93d8-4712-8c19-56b7742ad4eb - 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 - response: - body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Running","summary":{"total":10,"failed":0,"success":9,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":243}}' - headers: - apim-request-id: - - 21d1c214-0f6e-48a2-bd9d-c70e2deb111a - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:19 GMT - etag: - - '"233990089EF00B9051F330D27B72343CFDFB052F014BAC0E1C20F72B7232FF6E"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 21d1c214-0f6e-48a2-bd9d-c70e2deb111a - status: - code: 200 - message: OK - request: body: null headers: @@ -1384,23 +632,23 @@ 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408 response: body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Running","summary":{"total":10,"failed":0,"success":9,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":243}}' + string: '{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' headers: apim-request-id: - - cd1c237c-689b-411c-9bf6-de28a4f5a396 + - 1bf6243f-1a07-4e87-a0b5-943149bff292 cache-control: - public,max-age=1 content-length: - - '291' + - '295' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:20 GMT + - Wed, 02 Jun 2021 05:59:52 GMT etag: - - '"233990089EF00B9051F330D27B72343CFDFB052F014BAC0E1C20F72B7232FF6E"' + - '"54792413F6849AE0D74CB8BA13A02C93B9FE72C93B6781ADC2671171CB339EB1"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1415,7 +663,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cd1c237c-689b-411c-9bf6-de28a4f5a396 + - 1bf6243f-1a07-4e87-a0b5-943149bff292 status: code: 200 message: OK @@ -1423,7 +671,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -1431,23 +679,23 @@ 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/batches/bf88816c-7963-4b30-9984-9ae016749a77 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=0 response: body: - string: '{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/e25558f0-c6a4-4e0a-9713-de7a280a7775.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/e25558f0-c6a4-4e0a-9713-de7a280a7775.txt","createdDateTimeUtc":"2021-06-02T05:59:28.2625179Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.3247709Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed12-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/faf1780c-b8c1-46c9-9cd9-8eaaf856a1e5.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/faf1780c-b8c1-46c9-9cd9-8eaaf856a1e5.txt","createdDateTimeUtc":"2021-06-02T05:59:28.2591315Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.3484165Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed13-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/e1de4603-88e4-40ce-9a3d-e300b1bb6f66.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/e1de4603-88e4-40ce-9a3d-e300b1bb6f66.txt","createdDateTimeUtc":"2021-06-02T05:59:28.0168145Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.9056326Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed11-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/b43a1cd8-c743-4061-9d75-195eef2535ff.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/b43a1cd8-c743-4061-9d75-195eef2535ff.txt","createdDateTimeUtc":"2021-06-02T05:59:28.0108057Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.3684682Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed10-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/8289ada2-9f1f-4414-a71f-cc3ae172576f.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/8289ada2-9f1f-4414-a71f-cc3ae172576f.txt","createdDateTimeUtc":"2021-06-02T05:59:28.0072345Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.4913732Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/7f2aa9a4-0b90-4cdb-959b-46c94cdd0008.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/7f2aa9a4-0b90-4cdb-959b-46c94cdd0008.txt","createdDateTimeUtc":"2021-06-02T05:59:28.0020899Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.8964989Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/75bbf507-142a-4812-bc73-180d342b2d41.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/75bbf507-142a-4812-bc73-180d342b2d41.txt","createdDateTimeUtc":"2021-06-02T05:59:27.025609Z","lastActionDateTimeUtc":"2021-06-02T05:59:32.7902246Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/2a78a876-8e1f-4d4d-89ad-e9b6597bb930.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/2a78a876-8e1f-4d4d-89ad-e9b6597bb930.txt","createdDateTimeUtc":"2021-06-02T05:59:27.0185326Z","lastActionDateTimeUtc":"2021-06-02T05:59:32.7980671Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/1fd73038-04bd-4781-86f9-0d652703df6a.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/1fd73038-04bd-4781-86f9-0d652703df6a.txt","createdDateTimeUtc":"2021-06-02T05:59:27.0079393Z","lastActionDateTimeUtc":"2021-06-02T05:59:32.8145301Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/08e840b5-94c1-440a-aeee-68e83e478793.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/08e840b5-94c1-440a-aeee-68e83e478793.txt","createdDateTimeUtc":"2021-06-02T05:59:27.0028511Z","lastActionDateTimeUtc":"2021-06-02T05:59:32.7986047Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0a-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 82ea6854-eccb-49ba-aeb8-0162cd4b1e76 + - 2997ef79-58e2-4404-a94b-c0e132b7c1cb cache-control: - public,max-age=1 content-length: - - '294' + - '4950' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:22 GMT + - Wed, 02 Jun 2021 05:59:52 GMT etag: - - '"B7A1BBA1834359292B22EBD27A0B959B36AC44E1C819DDAFD65B9C9ED2CAA6F9"' + - '"627E4FA31B9CB47E30FA8706C40CCBE52212F4CC282D08EAA085111F3B35A381"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1462,7 +710,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 82ea6854-eccb-49ba-aeb8-0162cd4b1e76 + - 2997ef79-58e2-4404-a94b-c0e132b7c1cb status: code: 200 message: OK @@ -1478,13 +726,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/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=0&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=0&$maxpagesize=2 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/efc444bf-5f61-4ba9-b6e0-a70132b43a37.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/efc444bf-5f61-4ba9-b6e0-a70132b43a37.txt","createdDateTimeUtc":"2021-05-21T16:53:13.3571626Z","lastActionDateTimeUtc":"2021-05-21T16:53:19.1222287Z","status":"Succeeded","to":"es","progress":1,"id":"0007a222-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/d2bd793a-c794-4e28-bed8-07748372807a.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/d2bd793a-c794-4e28-bed8-07748372807a.txt","createdDateTimeUtc":"2021-05-21T16:53:13.3537148Z","lastActionDateTimeUtc":"2021-05-21T16:53:19.3692971Z","status":"Succeeded","to":"es","progress":1,"id":"0007a221-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=2&$top=8&$maxpagesize=2"}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/e25558f0-c6a4-4e0a-9713-de7a280a7775.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/e25558f0-c6a4-4e0a-9713-de7a280a7775.txt","createdDateTimeUtc":"2021-06-02T05:59:28.2625179Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.3247709Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed12-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/faf1780c-b8c1-46c9-9cd9-8eaaf856a1e5.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/faf1780c-b8c1-46c9-9cd9-8eaaf856a1e5.txt","createdDateTimeUtc":"2021-06-02T05:59:28.2591315Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.3484165Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed13-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=2&$top=8&$maxpagesize=2"}' headers: apim-request-id: - - 60b71ef6-01b6-4456-b72d-a220fcb6a60d + - abdc7ee7-5df9-4f3f-afd6-89f4d94709f5 cache-control: - public,max-age=1 content-length: @@ -1492,9 +740,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:22 GMT + - Wed, 02 Jun 2021 05:59:53 GMT etag: - - '"E0115B45DE8E3434E44935F71C7B0743FE9ACCA28216553F16A6C14156F3596A"' + - '"0EE0AE17AD79181B3CB65766C3DABA880971F1F2867FB6B68054A63F4617AB36"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1509,7 +757,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 60b71ef6-01b6-4456-b72d-a220fcb6a60d + - abdc7ee7-5df9-4f3f-afd6-89f4d94709f5 status: code: 200 message: OK @@ -1525,13 +773,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/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=2&$top=8&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=2&$top=8&$maxpagesize=2 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/aaf1c8a9-7c24-4ba6-8305-d58fb0af11a2.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/aaf1c8a9-7c24-4ba6-8305-d58fb0af11a2.txt","createdDateTimeUtc":"2021-05-21T16:53:13.0328576Z","lastActionDateTimeUtc":"2021-05-21T16:53:18.3912879Z","status":"Succeeded","to":"es","progress":1,"id":"0007a220-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/7a9eaa42-746f-4131-af0b-de4c8a9b1e74.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/7a9eaa42-746f-4131-af0b-de4c8a9b1e74.txt","createdDateTimeUtc":"2021-05-21T16:53:13.0015588Z","lastActionDateTimeUtc":"2021-05-21T16:53:18.6283355Z","status":"Succeeded","to":"es","progress":1,"id":"0007a21d-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=4&$top=6&$maxpagesize=2"}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/e1de4603-88e4-40ce-9a3d-e300b1bb6f66.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/e1de4603-88e4-40ce-9a3d-e300b1bb6f66.txt","createdDateTimeUtc":"2021-06-02T05:59:28.0168145Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.9056326Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed11-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/b43a1cd8-c743-4061-9d75-195eef2535ff.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/b43a1cd8-c743-4061-9d75-195eef2535ff.txt","createdDateTimeUtc":"2021-06-02T05:59:28.0108057Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.3684682Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed10-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=4&$top=6&$maxpagesize=2"}' headers: apim-request-id: - - 453e0225-d9c6-486e-9aa4-f895f533ba3c + - 96691b47-742e-42d7-bc7b-726f605a60fe cache-control: - public,max-age=1 content-length: @@ -1539,9 +787,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:22 GMT + - Wed, 02 Jun 2021 05:59:53 GMT etag: - - '"29C7BF81CBB45D3547F2BF74CB0E4B09D414DF75B07064FC352006D70CC928BF"' + - '"96247C05C726E251E0AA05AAF34B9B1F1A8BE033992012C2C5E8AC6F76314687"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1556,7 +804,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 453e0225-d9c6-486e-9aa4-f895f533ba3c + - 96691b47-742e-42d7-bc7b-726f605a60fe status: code: 200 message: OK @@ -1572,13 +820,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/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=4&$top=6&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=4&$top=6&$maxpagesize=2 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/9b320ac8-6504-4086-923e-c1bad1eca980.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/9b320ac8-6504-4086-923e-c1bad1eca980.txt","createdDateTimeUtc":"2021-05-21T16:53:12.9977163Z","lastActionDateTimeUtc":"2021-05-21T16:53:18.4216971Z","status":"Succeeded","to":"es","progress":1,"id":"0007a21f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/7dcbae01-6027-460d-ab5e-7fd4f0ba7dd7.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/7dcbae01-6027-460d-ab5e-7fd4f0ba7dd7.txt","createdDateTimeUtc":"2021-05-21T16:53:12.9812925Z","lastActionDateTimeUtc":"2021-05-21T16:53:22.3653501Z","status":"Succeeded","to":"es","progress":1,"id":"0007a21e-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=6&$top=4&$maxpagesize=2"}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/8289ada2-9f1f-4414-a71f-cc3ae172576f.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/8289ada2-9f1f-4414-a71f-cc3ae172576f.txt","createdDateTimeUtc":"2021-06-02T05:59:28.0072345Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.4913732Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/7f2aa9a4-0b90-4cdb-959b-46c94cdd0008.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/7f2aa9a4-0b90-4cdb-959b-46c94cdd0008.txt","createdDateTimeUtc":"2021-06-02T05:59:28.0020899Z","lastActionDateTimeUtc":"2021-06-02T05:59:33.8964989Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0e-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=6&$top=4&$maxpagesize=2"}' headers: apim-request-id: - - d800aa7e-a881-4c61-99aa-14d2755d1a22 + - fc238fe6-1634-415b-81d4-7b2b1e7d4dda cache-control: - public,max-age=1 content-length: @@ -1586,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:22 GMT + - Wed, 02 Jun 2021 05:59:53 GMT etag: - - '"3C4121B5E2133F7A7165B2C6252AFF79E367CAFFB5A2321BD2E31591CCE3FF5F"' + - '"EAB4B1AAFDCD6A6E4399DAD5540FED536F65E2E6610DDBE8307451CB1DCD389F"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1603,7 +851,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d800aa7e-a881-4c61-99aa-14d2755d1a22 + - fc238fe6-1634-415b-81d4-7b2b1e7d4dda status: code: 200 message: OK @@ -1619,23 +867,23 @@ 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/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=6&$top=4&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=6&$top=4&$maxpagesize=2 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/138c74a7-6247-43a7-8d17-ea5b0696a045.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/138c74a7-6247-43a7-8d17-ea5b0696a045.txt","createdDateTimeUtc":"2021-05-21T16:53:12.7881395Z","lastActionDateTimeUtc":"2021-05-21T16:53:19.3420248Z","status":"Succeeded","to":"es","progress":1,"id":"0007a21a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/6da1fb60-2632-41ab-8feb-d78d88c3151d.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/6da1fb60-2632-41ab-8feb-d78d88c3151d.txt","createdDateTimeUtc":"2021-05-21T16:53:12.7734905Z","lastActionDateTimeUtc":"2021-05-21T16:53:19.1839687Z","status":"Succeeded","to":"es","progress":1,"id":"0007a21c-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=8&$top=2&$maxpagesize=2"}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/75bbf507-142a-4812-bc73-180d342b2d41.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/75bbf507-142a-4812-bc73-180d342b2d41.txt","createdDateTimeUtc":"2021-06-02T05:59:27.025609Z","lastActionDateTimeUtc":"2021-06-02T05:59:32.7902246Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/2a78a876-8e1f-4d4d-89ad-e9b6597bb930.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/2a78a876-8e1f-4d4d-89ad-e9b6597bb930.txt","createdDateTimeUtc":"2021-06-02T05:59:27.0185326Z","lastActionDateTimeUtc":"2021-06-02T05:59:32.7980671Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0c-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=8&$top=2&$maxpagesize=2"}' headers: apim-request-id: - - 3657da28-e480-46ed-935c-bedc0cc8c123 + - 5551dc31-0a11-4d91-95e8-730c4dc4eb57 cache-control: - public,max-age=1 content-length: - - '1170' + - '1169' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:22 GMT + - Wed, 02 Jun 2021 05:59:53 GMT etag: - - '"C76EED6E3D95CF9CC4D49FA121D2EBD10E733180386C69AA2D16A7057BF39F8D"' + - '"4B6A9144029429609A606437CC2410DA9B0498285E608358A3647F3AA59B77BC"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1650,7 +898,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3657da28-e480-46ed-935c-bedc0cc8c123 + - 5551dc31-0a11-4d91-95e8-730c4dc4eb57 status: code: 200 message: OK @@ -1666,23 +914,23 @@ 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/batches/bf88816c-7963-4b30-9984-9ae016749a77/documents?$skip=8&$top=2&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/71ab389d-a2c3-4110-8988-8da4e5fd7408/documents?$skip=8&$top=2&$maxpagesize=2 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/314ba0a5-8463-469c-874c-2cbaa8beafab.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/314ba0a5-8463-469c-874c-2cbaa8beafab.txt","createdDateTimeUtc":"2021-05-21T16:53:12.7695975Z","lastActionDateTimeUtc":"2021-05-21T16:53:18.5382288Z","status":"Succeeded","to":"es","progress":1,"id":"0007a21b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target22216edf-ba50-4ab4-9a84-ad5a23523dbe/1037c492-b34c-4dd1-95ed-5af618993eef.txt","sourcePath":"https://redacted.blob.core.windows.net/src18b811e6-abce-40d6-b02c-1f1d04611398/1037c492-b34c-4dd1-95ed-5af618993eef.txt","createdDateTimeUtc":"2021-05-21T16:53:12.7617986Z","lastActionDateTimeUtc":"2021-05-21T16:53:19.126247Z","status":"Succeeded","to":"es","progress":1,"id":"0007a219-0000-0000-0000-000000000000","characterCharged":27}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/1fd73038-04bd-4781-86f9-0d652703df6a.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/1fd73038-04bd-4781-86f9-0d652703df6a.txt","createdDateTimeUtc":"2021-06-02T05:59:27.0079393Z","lastActionDateTimeUtc":"2021-06-02T05:59:32.8145301Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target570b3cc8-cd15-4756-bf8e-814a2cc40d74/08e840b5-94c1-440a-aeee-68e83e478793.txt","sourcePath":"https://redacted.blob.core.windows.net/srcbf11872b-bfd7-4cd7-ae7f-977af04e3048/08e840b5-94c1-440a-aeee-68e83e478793.txt","createdDateTimeUtc":"2021-06-02T05:59:27.0028511Z","lastActionDateTimeUtc":"2021-06-02T05:59:32.7986047Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed0a-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 3726b076-d061-44c4-afae-6b18f63322a5 + - 6fa385c9-3fd9-473b-b890-9bd6d75f5509 cache-control: - public,max-age=1 content-length: - - '998' + - '999' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:22 GMT + - Wed, 02 Jun 2021 05:59:53 GMT etag: - - '"B80F4E2D4AB06B9E151C5B43EDD67895FFC6417B7046FF00B5FB21E079A3833F"' + - '"AE71DEE8167551D25BA65306DF981C65FB3DEE0B38F98F371941BFFD6C1252C3"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1697,7 +945,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3726b076-d061-44c4-afae-6b18f63322a5 + - 6fa385c9-3fd9-473b-b890-9bd6d75f5509 status: code: 200 message: OK 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 index cf40a2ba0611..e4c7c212a4b9 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538?restype=container + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:09 GMT etag: - - '"0x8D91C78F25C4AC5"' + - '"0x8D9258BAE30B1F1"' last-modified: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 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: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/33fab2e9-4e70-49e5-a8e2-5463690f85bf.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/800cf559-0dcd-4e59-906c-0cf3adeb91a6.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:09 GMT etag: - - '"0x8D91C78F267A2F1"' + - '"0x8D9258BAE38A8E2"' last-modified: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 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: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/0bf8f7e4-7cb1-4885-996e-6ee3da3a218f.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/5c5f3bc9-5324-459d-b561-eafd1a13d3bd.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:09 GMT etag: - - '"0x8D91C78F27316BD"' + - '"0x8D9258BAE404B63"' last-modified: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 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: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/745ec0b9-1b37-44e8-b7df-9bc9865a56c4.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/11e74001-2d07-496f-a1c4-c0c87f555fa5.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:09 GMT etag: - - '"0x8D91C78F27D2AB1"' + - '"0x8D9258BAE47518C"' last-modified: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 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: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/338a5126-a3fd-4f93-84c8-d148c7e29c18.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/3d547b6c-5bd1-4ff9-bc57-1fa35fabea21.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:09 GMT etag: - - '"0x8D91C78F287B3FB"' + - '"0x8D9258BAE4DE269"' last-modified: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 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: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/1aeba066-2f53-48e3-b61b-f25a8588fb2a.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/5f2ef89f-ee84-4ea8-8e9b-793772e23838.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:23 GMT + - Wed, 02 Jun 2021 06:00:10 GMT etag: - - '"0x8D91C78F2928B62"' + - '"0x8D9258BAE55FA31"' last-modified: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 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: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/f417f080-24ef-4e0f-9e16-1393e960f65c.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/8d756204-29f4-4c27-8136-8cf9a22cecef.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT etag: - - '"0x8D91C78F29DB0FB"' + - '"0x8D9258BAE5E3909"' last-modified: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 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: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/ccaeca63-6527-4182-9995-9c5181c04d5d.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/8f656f6f-901d-46fa-af93-7dc7580fa0ee.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT etag: - - '"0x8D91C78F2A8AF84"' + - '"0x8D9258BAE6650CD"' last-modified: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 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: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/b9b1d696-6e0d-4b58-a8c4-a49016542dd8.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/21594d87-f2ad-435d-9eae-0f4d139f3648.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT etag: - - '"0x8D91C78F2B3D51D"' + - '"0x8D9258BAE6E1A74"' last-modified: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -457,11 +457,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/4736ab4a-c900-477f-9ddf-d5063bfbef25.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/483a8bf4-5a3e-4d21-92a0-c5c9fe0c8e70.txt response: body: string: '' @@ -471,11 +471,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT etag: - - '"0x8D91C78F2BED3A2"' + - '"0x8D9258BAE771CBA"' last-modified: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -507,11 +507,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/c407bdc8-48d6-4117-8a4d-5f09754bee96.txt + uri: https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/c8efee14-1538-4191-b8b6-fd0d73019306.txt response: body: string: '' @@ -521,11 +521,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT etag: - - '"0x8D91C78F2C69D39"' + - '"0x8D9258BAE7F5B97"' last-modified: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -551,11 +551,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458?restype=container + uri: https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c?restype=container response: body: string: '' @@ -563,11 +563,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:11 GMT etag: - - '"0x8D91C78F2E962AF"' + - '"0x8D9258BAEAA110A"' last-modified: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -576,8 +576,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -587,7 +587,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -599,497 +599,27 @@ interactions: string: '' headers: apim-request-id: - - aed7c549-1219-4dd4-b27e-ad77b8b096cf + - 1ca082bd-8610-410b-8020-5f568c080f0a content-length: - '0' date: - - Fri, 21 May 2021 16:53:24 GMT + - Wed, 02 Jun 2021 06:00:11 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - aed7c549-1219-4dd4-b27e-ad77b8b096cf - 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:25.0540338Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ab8fc44d-a350-415f-aa49-611795baadd5 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:24 GMT - etag: - - '"7CDAF26B3A7A791B157A9EF4C3FDEB66C3B16A08259BE35640BB3976C4967948"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ab8fc44d-a350-415f-aa49-611795baadd5 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:25.0540338Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 2da2716e-9526-4f91-8903-5488aeef3871 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:24 GMT - etag: - - '"7CDAF26B3A7A791B157A9EF4C3FDEB66C3B16A08259BE35640BB3976C4967948"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 2da2716e-9526-4f91-8903-5488aeef3871 - 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:26.0386637Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 5e8a23cb-589f-4e6a-95c8-92391b1584bf - cache-control: - - public,max-age=1 - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:25 GMT - etag: - - '"6188AC53FE53DD05E7B5F8DBA32EAC65CB4AE70EB7ED97F2C5B599EC275C9A61"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5e8a23cb-589f-4e6a-95c8-92391b1584bf - 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:26.0386637Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 7f863c8d-47d6-426b-a521-593cf1a286e8 - cache-control: - - public,max-age=1 - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:26 GMT - etag: - - '"6188AC53FE53DD05E7B5F8DBA32EAC65CB4AE70EB7ED97F2C5B599EC275C9A61"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 7f863c8d-47d6-426b-a521-593cf1a286e8 - 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.4320517Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":4,"notYetStarted":6,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 7cf9b935-ae7e-46a8-8b45-85ec7499e9c4 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:27 GMT - etag: - - '"06EE22F245020608599B7BBEBE82ECC7A6CDED774223D5EDAECE73338FC0CC33"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 7cf9b935-ae7e-46a8-8b45-85ec7499e9c4 - 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - cf36d556-74dd-4a92-b9a2-33fc00e8af70 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:29 GMT - etag: - - '"8D2E9A051B2873DBBA561007C123D4D81AC028C2BC3B4D850FA222EC1C21D629"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - cf36d556-74dd-4a92-b9a2-33fc00e8af70 - 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 163e43f2-e719-46a4-b322-aaa1c9ef7a39 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:30 GMT - etag: - - '"8D2E9A051B2873DBBA561007C123D4D81AC028C2BC3B4D850FA222EC1C21D629"' + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2b1c6fe5-0c84-4032-a111-d566ae74e1d4 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 163e43f2-e719-46a4-b322-aaa1c9ef7a39 + - 1ca082bd-8610-410b-8020-5f568c080f0a 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 5bae1171-6500-48c9-bf09-101ec8ae874f - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:31 GMT - etag: - - '"8D2E9A051B2873DBBA561007C123D4D81AC028C2BC3B4D850FA222EC1C21D629"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5bae1171-6500-48c9-bf09-101ec8ae874f - 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 7afc2eb2-00c6-4e98-90ec-be588836a591 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:32 GMT - etag: - - '"8D2E9A051B2873DBBA561007C123D4D81AC028C2BC3B4D850FA222EC1C21D629"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 7afc2eb2-00c6-4e98-90ec-be588836a591 - 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 - response: - body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - faa1ac82-cbff-4aae-97df-67260e2ab535 - cache-control: - - public,max-age=1 - content-length: - - '290' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:53:33 GMT - etag: - - '"8D2E9A051B2873DBBA561007C123D4D81AC028C2BC3B4D850FA222EC1C21D629"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - faa1ac82-cbff-4aae-97df-67260e2ab535 - status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1102,23 +632,23 @@ 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2b1c6fe5-0c84-4032-a111-d566ae74e1d4 response: body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Running","summary":{"total":10,"failed":0,"success":3,"inProgress":7,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}' + string: '{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' headers: apim-request-id: - - 428c9eb0-d5bd-4129-aa96-9c176303c685 + - 91ffc326-02f7-49af-898d-a668b0b79b82 cache-control: - public,max-age=1 content-length: - - '290' + - '295' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:34 GMT + - Wed, 02 Jun 2021 06:00:40 GMT etag: - - '"DD22FAD05F29D533A84C8A45F496FC831E2060518B667C26F283B0CC7813D9CA"' + - '"1E1A1F0A26B44964AB34BC5972BAFB92D265008EF935F0E92742E077875859A0"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1133,7 +663,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 428c9eb0-d5bd-4129-aa96-9c176303c685 + - 91ffc326-02f7-49af-898d-a668b0b79b82 status: code: 200 message: OK @@ -1141,7 +671,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -1149,23 +679,23 @@ 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2b1c6fe5-0c84-4032-a111-d566ae74e1d4/documents?$skip=0 response: body: - string: '{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/c8efee14-1538-4191-b8b6-fd0d73019306.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/c8efee14-1538-4191-b8b6-fd0d73019306.txt","createdDateTimeUtc":"2021-06-02T06:00:13.6395738Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.5022203Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/8f656f6f-901d-46fa-af93-7dc7580fa0ee.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/8f656f6f-901d-46fa-af93-7dc7580fa0ee.txt","createdDateTimeUtc":"2021-06-02T06:00:13.6236827Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.5445778Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/8d756204-29f4-4c27-8136-8cf9a22cecef.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/8d756204-29f4-4c27-8136-8cf9a22cecef.txt","createdDateTimeUtc":"2021-06-02T06:00:13.5030639Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0084238Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/800cf559-0dcd-4e59-906c-0cf3adeb91a6.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/800cf559-0dcd-4e59-906c-0cf3adeb91a6.txt","createdDateTimeUtc":"2021-06-02T06:00:13.4943028Z","lastActionDateTimeUtc":"2021-06-02T06:00:18.9656623Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/5f2ef89f-ee84-4ea8-8e9b-793772e23838.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/5f2ef89f-ee84-4ea8-8e9b-793772e23838.txt","createdDateTimeUtc":"2021-06-02T06:00:13.4807912Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0299156Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed19-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/5c5f3bc9-5324-459d-b561-eafd1a13d3bd.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/5c5f3bc9-5324-459d-b561-eafd1a13d3bd.txt","createdDateTimeUtc":"2021-06-02T06:00:13.4727395Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0237244Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed18-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/483a8bf4-5a3e-4d21-92a0-c5c9fe0c8e70.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/483a8bf4-5a3e-4d21-92a0-c5c9fe0c8e70.txt","createdDateTimeUtc":"2021-06-02T06:00:13.3616928Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0373439Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed17-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/3d547b6c-5bd1-4ff9-bc57-1fa35fabea21.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/3d547b6c-5bd1-4ff9-bc57-1fa35fabea21.txt","createdDateTimeUtc":"2021-06-02T06:00:13.3559514Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.1263799Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed16-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/21594d87-f2ad-435d-9eae-0f4d139f3648.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/21594d87-f2ad-435d-9eae-0f4d139f3648.txt","createdDateTimeUtc":"2021-06-02T06:00:13.3483216Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0612457Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed15-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/11e74001-2d07-496f-a1c4-c0c87f555fa5.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/11e74001-2d07-496f-a1c4-c0c87f555fa5.txt","createdDateTimeUtc":"2021-06-02T06:00:13.3392168Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0202153Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed14-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - d9836547-b15a-4436-bc48-cba613e396f5 + - bd0a060a-940b-47ca-90cb-ae249e6c0d1b cache-control: - public,max-age=1 content-length: - - '294' + - '4951' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:35 GMT + - Wed, 02 Jun 2021 06:00:40 GMT etag: - - '"808CF1CFB0142B0D31711E1CF4EB84F06D5247D63B0A48A985B5017DBEF149CC"' + - '"023892F3E0B5DF30A7CD54CAA49DC563A80F84574E0AD1F69264BCA43D163B95"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1180,7 +710,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d9836547-b15a-4436-bc48-cba613e396f5 + - bd0a060a-940b-47ca-90cb-ae249e6c0d1b status: code: 200 message: OK @@ -1196,23 +726,23 @@ 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/batches/edf96a31-96ec-4fa6-9c36-c6c439a88dd7/documents?$skip=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2b1c6fe5-0c84-4032-a111-d566ae74e1d4/documents?$skip=2 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458/c407bdc8-48d6-4117-8a4d-5f09754bee96.txt","sourcePath":"https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/c407bdc8-48d6-4117-8a4d-5f09754bee96.txt","createdDateTimeUtc":"2021-05-21T16:53:28.64818Z","lastActionDateTimeUtc":"2021-05-21T16:53:35.3713195Z","status":"Succeeded","to":"es","progress":1,"id":"0007a22a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458/b9b1d696-6e0d-4b58-a8c4-a49016542dd8.txt","sourcePath":"https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/b9b1d696-6e0d-4b58-a8c4-a49016542dd8.txt","createdDateTimeUtc":"2021-05-21T16:53:28.6392481Z","lastActionDateTimeUtc":"2021-05-21T16:53:35.4651578Z","status":"Succeeded","to":"es","progress":1,"id":"0007a229-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458/745ec0b9-1b37-44e8-b7df-9bc9865a56c4.txt","sourcePath":"https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/745ec0b9-1b37-44e8-b7df-9bc9865a56c4.txt","createdDateTimeUtc":"2021-05-21T16:53:28.6204614Z","lastActionDateTimeUtc":"2021-05-21T16:53:35.8317211Z","status":"Succeeded","to":"es","progress":1,"id":"0007a228-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458/4736ab4a-c900-477f-9ddf-d5063bfbef25.txt","sourcePath":"https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/4736ab4a-c900-477f-9ddf-d5063bfbef25.txt","createdDateTimeUtc":"2021-05-21T16:53:28.6115743Z","lastActionDateTimeUtc":"2021-05-21T16:53:34.7260258Z","status":"Succeeded","to":"es","progress":1,"id":"0007a227-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458/0bf8f7e4-7cb1-4885-996e-6ee3da3a218f.txt","sourcePath":"https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/0bf8f7e4-7cb1-4885-996e-6ee3da3a218f.txt","createdDateTimeUtc":"2021-05-21T16:53:28.4405515Z","lastActionDateTimeUtc":"2021-05-21T16:53:36.073751Z","status":"Succeeded","to":"es","progress":1,"id":"0007a223-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458/33fab2e9-4e70-49e5-a8e2-5463690f85bf.txt","sourcePath":"https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/33fab2e9-4e70-49e5-a8e2-5463690f85bf.txt","createdDateTimeUtc":"2021-05-21T16:53:28.4246793Z","lastActionDateTimeUtc":"2021-05-21T16:53:34.7686874Z","status":"Succeeded","to":"es","progress":1,"id":"0007a226-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458/338a5126-a3fd-4f93-84c8-d148c7e29c18.txt","sourcePath":"https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/338a5126-a3fd-4f93-84c8-d148c7e29c18.txt","createdDateTimeUtc":"2021-05-21T16:53:28.4164335Z","lastActionDateTimeUtc":"2021-05-21T16:53:34.76723Z","status":"Succeeded","to":"es","progress":1,"id":"0007a225-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1994a589-fc3d-47e0-b682-c7f711413458/1aeba066-2f53-48e3-b61b-f25a8588fb2a.txt","sourcePath":"https://redacted.blob.core.windows.net/src99599f10-f5fb-4a58-9123-dea0f4e7a538/1aeba066-2f53-48e3-b61b-f25a8588fb2a.txt","createdDateTimeUtc":"2021-05-21T16:53:28.4072589Z","lastActionDateTimeUtc":"2021-05-21T16:53:35.3907658Z","status":"Succeeded","to":"es","progress":1,"id":"0007a224-0000-0000-0000-000000000000","characterCharged":27}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/8d756204-29f4-4c27-8136-8cf9a22cecef.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/8d756204-29f4-4c27-8136-8cf9a22cecef.txt","createdDateTimeUtc":"2021-06-02T06:00:13.5030639Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0084238Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/800cf559-0dcd-4e59-906c-0cf3adeb91a6.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/800cf559-0dcd-4e59-906c-0cf3adeb91a6.txt","createdDateTimeUtc":"2021-06-02T06:00:13.4943028Z","lastActionDateTimeUtc":"2021-06-02T06:00:18.9656623Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed1a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/5f2ef89f-ee84-4ea8-8e9b-793772e23838.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/5f2ef89f-ee84-4ea8-8e9b-793772e23838.txt","createdDateTimeUtc":"2021-06-02T06:00:13.4807912Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0299156Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed19-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/5c5f3bc9-5324-459d-b561-eafd1a13d3bd.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/5c5f3bc9-5324-459d-b561-eafd1a13d3bd.txt","createdDateTimeUtc":"2021-06-02T06:00:13.4727395Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0237244Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed18-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/483a8bf4-5a3e-4d21-92a0-c5c9fe0c8e70.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/483a8bf4-5a3e-4d21-92a0-c5c9fe0c8e70.txt","createdDateTimeUtc":"2021-06-02T06:00:13.3616928Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0373439Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed17-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/3d547b6c-5bd1-4ff9-bc57-1fa35fabea21.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/3d547b6c-5bd1-4ff9-bc57-1fa35fabea21.txt","createdDateTimeUtc":"2021-06-02T06:00:13.3559514Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.1263799Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed16-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/21594d87-f2ad-435d-9eae-0f4d139f3648.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/21594d87-f2ad-435d-9eae-0f4d139f3648.txt","createdDateTimeUtc":"2021-06-02T06:00:13.3483216Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0612457Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed15-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target250cb1db-fddb-4db0-8282-c30c3699601c/11e74001-2d07-496f-a1c4-c0c87f555fa5.txt","sourcePath":"https://redacted.blob.core.windows.net/srca373c96a-f8fe-488e-8de9-c9cd3f42cc9c/11e74001-2d07-496f-a1c4-c0c87f555fa5.txt","createdDateTimeUtc":"2021-06-02T06:00:13.3392168Z","lastActionDateTimeUtc":"2021-06-02T06:00:19.0202153Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed14-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 6e0e9a7a-a959-4cd3-b175-03a9cf3ef313 + - acce996d-5a71-4d77-8008-9927a8fc611c cache-control: - public,max-age=1 content-length: - - '3958' + - '3963' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:53:35 GMT + - Wed, 02 Jun 2021 06:00:40 GMT etag: - - '"4F83D6726B061B85563BE5137F911E8F5D4EEB64A152EF4A50616B461E399D38"' + - '"385EEAD919D0DA59E6EE5B84EEE21C997E4564F0D9B0E9975F98824185953F23"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1227,7 +757,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6e0e9a7a-a959-4cd3-b175-03a9cf3ef313 + - acce996d-5a71-4d77-8008-9927a8fc611c status: code: 200 message: OK 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 index 5a577c8edd51..5351a38b0bcf 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src236cb5fc-ca29-475e-a77f-4e669f3539cf?restype=container + uri: https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:35 GMT + - Wed, 02 Jun 2021 06:04:45 GMT etag: - - '"0x8D91C78FA01DD4E"' + - '"0x8D9258C5273B7FD"' last-modified: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:45 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: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src236cb5fc-ca29-475e-a77f-4e669f3539cf/6b826e11-4680-40f5-b4df-bf2cac08daae.txt + uri: https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/4f7465ae-70ab-43d2-9e6f-55720b446552.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:35 GMT + - Wed, 02 Jun 2021 06:04:45 GMT etag: - - '"0x8D91C78FA0DABCF"' + - '"0x8D9258C527C486A"' last-modified: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:45 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: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src236cb5fc-ca29-475e-a77f-4e669f3539cf/8fdbf277-527a-46b5-bca4-59b313ab8b68.txt + uri: https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/e1a03698-d751-4947-bd1a-f69143f75093.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:35 GMT + - Wed, 02 Jun 2021 06:04:45 GMT etag: - - '"0x8D91C78FA16AE28"' + - '"0x8D9258C5284AE65"' last-modified: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:45 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: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src236cb5fc-ca29-475e-a77f-4e669f3539cf/23f93867-4e05-4e34-9250-345ccad094f4.txt + uri: https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/0a22be84-ac2b-418b-9447-210a9604ef8c.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:35 GMT + - Wed, 02 Jun 2021 06:04:45 GMT etag: - - '"0x8D91C78FA1F3B35"' + - '"0x8D9258C528DD7C8"' last-modified: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:46 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: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src236cb5fc-ca29-475e-a77f-4e669f3539cf/5d87cd7a-acea-43ed-9b40-cb1ecf4b66a4.txt + uri: https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/2e2954cf-0c26-4f61-8879-596137286478.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:35 GMT + - Wed, 02 Jun 2021 06:04:45 GMT etag: - - '"0x8D91C78FA2864A3"' + - '"0x8D9258C52979D8B"' last-modified: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:46 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: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src236cb5fc-ca29-475e-a77f-4e669f3539cf/d5abc774-9a4f-4f53-97fa-5666411b00d2.txt + uri: https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/b117602f-56cf-473a-95e3-b71cfe3d257e.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:35 GMT + - Wed, 02 Jun 2021 06:04:45 GMT etag: - - '"0x8D91C78FA35D4A3"' + - '"0x8D9258C529F6725"' last-modified: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8e35e237-0d2d-433c-8b31-d08bca93dc92?restype=container + uri: https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:36 GMT + - Wed, 02 Jun 2021 06:04:46 GMT etag: - - '"0x8D91C78FA57C577"' + - '"0x8D9258C52C29DF7"' last-modified: - - Fri, 21 May 2021 16:53:37 GMT + - Wed, 02 Jun 2021 06:04:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src236cb5fc-ca29-475e-a77f-4e669f3539cf?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8e35e237-0d2d-433c-8b31-d08bca93dc92?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -344,407 +344,237 @@ interactions: body: string: '' headers: - apim-request-id: 9e144100-c273-4232-aa67-6697416cac05 + apim-request-id: 155284c9-2064-4a54-87c4-1fb49500b86b content-length: '0' - date: Fri, 21 May 2021 16:53:36 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:04:45 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 9e144100-c273-4232-aa67-6697416cac05 + x-requestid: 155284c9-2064-4a54-87c4-1fb49500b86b status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/2c29467b-4860-4121-9c22-ae89075c6371 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVEiyZNnainYuCjQZ2o1hlESAbQESPRRB/j2SgXTuQhzv7pE3 - iCfwoEmPpndHYYZeCqO0EiNpLTAMo3SW+s4p2AHlgBxO73Xs4xwOTI2VtS2t0Gqvem8737kXq50z - w/BTmQkLvxLHtPwPs9o0rDDyWmrvI/EXY65vm7vOM+Zf8DfgxDiBlzs4Y5xq2mRZiUIpm47LZ06X - /FyXxN/h71RzCBcK0xPd7r1dMSNxyE1ctuR+fwAXTxteJAEAAA== + string: '{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.5696884Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 87558ea3-d314-476b-a9fd-2af3d472dde6 + apim-request-id: d6a6c315-9542-4795-ad8f-39a1380ab3f7 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:36 GMT - etag: '"EB3AFB0D522586C8C8340097CFFC753862A39F7D8C09508E589F6E8EB3519D7D"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 87558ea3-d314-476b-a9fd-2af3d472dde6 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVEiyZNnainYuCjQZ2o1hlESAbQESPRRB/j2SgXTuQhzv7pE3 - iCfwoEmPpndHYYZeCqO0EiNpLTAMo3SW+s4p2AHlgBxO73Xs4xwOTI2VtS2t0Gqvem8737kXq50z - w/BTmQkLvxLHtPwPs9o0rDDyWmrvI/EXY65vm7vOM+Zf8DfgxDiBlzs4Y5xq2mRZiUIpm47LZ06X - /FyXxN/h71RzCBcK0xPd7r1dMSNxyE1ctuR+fwAXTxteJAEAAA== - headers: - apim-request-id: 9a34069e-b550-4dcf-b129-8c6089076e92 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:36 GMT - etag: '"EB3AFB0D522586C8C8340097CFFC753862A39F7D8C09508E589F6E8EB3519D7D"' + date: Wed, 02 Jun 2021 06:04:50 GMT + etag: '"8FFAD2BE7C0AB63AF6D3FBA1AF8FB3E97A42FFAE59526B0D78AF0AFDFA0F5421"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 9a34069e-b550-4dcf-b129-8c6089076e92 + x-requestid: d6a6c315-9542-4795-ad8f-39a1380ab3f7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 - 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/4VzFEiyZcnainYuAjQZ0o1l1ESAbQESMxRB/j2SgWTtQhx59443 - iCfwoEmP/WB/RO8GKXqllRhJa4HBjdIaGjqrYAOUA3I4fdSxj3M4MDVW1rQ0Qqu9GrzpfGe3Rlvb - O/ddmQkLvxHHtPyPWWucMrphhZGvpeY+E38x5vq2Xa/zjPkP/A04MU7gzQZ+MU7V9bL5RKGUVcdl - l9M5P9cl8TG8qhpHuFCYnuja937BjMQhN3Fenfv9AQ02DC0kAQAA + string: '{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 67ab0653-ffad-4e70-b288-9505c8fd822f + apim-request-id: fb3b671a-4ec8-42e9-a906-dca397be33e4 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:38 GMT - etag: '"1DA97C41C379D1F1AD45E085578207AC2797CD1ADBB5178689B1AEF0B345F219"' + date: Wed, 02 Jun 2021 06:04:51 GMT + etag: '"BE192D8270B6DA71C118FB782F1A7CC4335D0734D0B8C69DABD57081DC6DC510"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 67ab0653-ffad-4e70-b288-9505c8fd822f + x-requestid: fb3b671a-4ec8-42e9-a906-dca397be33e4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 - 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/4VzFEiyZcnainYuAjQZ0o1l1ESAbQESMxRB/j2SgWTtQhx59443 - iCfwoEmP/WB/RO8GKXqllRhJa4HBjdIaGjqrYAOUA3I4fdSxj3M4MDVW1rQ0Qqu9GrzpfGe3Rlvb - O/ddmQkLvxHHtPyPWWucMrphhZGvpeY+E38x5vq2Xa/zjPkP/A04MU7gzQZ+MU7V9bL5RKGUVcdl - l9M5P9cl8TG8qhpHuFCYnuja937BjMQhN3Fenfv9AQ02DC0kAQAA + string: '{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: ebac0e61-6f64-479e-8d1e-b93e18c5215b + apim-request-id: 6a9a6f0c-c2f3-4869-b819-efb19cd27b6d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:39 GMT - etag: '"1DA97C41C379D1F1AD45E085578207AC2797CD1ADBB5178689B1AEF0B345F219"' + date: Wed, 02 Jun 2021 06:04:52 GMT + etag: '"BE192D8270B6DA71C118FB782F1A7CC4335D0734D0B8C69DABD57081DC6DC510"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ebac0e61-6f64-479e-8d1e-b93e18c5215b + x-requestid: 6a9a6f0c-c2f3-4869-b819-efb19cd27b6d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 - 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/4VzFEiyZcnainYuAjQZ0o1l1ESAbQESMxRB/j2SgWTtQhx59443 - iCfwoEmP/WB/RO8GKXqllRhJa4HBjdIaGjqrYAOUA3I4fdSxj3M4MDVW1rQ0Qqu9GrzpfGe3Rlvb - O/ddmQkLvxHHtPyPWWucMrphhZGvpeY+E38x5vq2Xa/zjPkP/A04MU7gzQZ+MU7V9bL5RKGUVcdl - l9M5P9cl8TG8qhpHuFCYnuja937BjMQhN3Fenfv9AQ02DC0kAQAA + string: '{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 4978224c-08ee-4fbe-955f-9c44d33e230c + apim-request-id: 20167e11-6304-4b7b-a414-f8a36ce30f30 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:40 GMT - etag: '"1DA97C41C379D1F1AD45E085578207AC2797CD1ADBB5178689B1AEF0B345F219"' + date: Wed, 02 Jun 2021 06:04:53 GMT + etag: '"BE192D8270B6DA71C118FB782F1A7CC4335D0734D0B8C69DABD57081DC6DC510"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4978224c-08ee-4fbe-955f-9c44d33e230c + x-requestid: 20167e11-6304-4b7b-a414-f8a36ce30f30 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 - 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/4VzFEiyZcnainYuAjQZ0o1l1ESAbQESMxRB/j2SgWTtQhx59443 - iCfwoEmP/WB/RO8GKXqllRhJa4HBjdIaGjqrYAOUA3I4fdSxj3M4MDVW1rQ0Qqu9GrzpfGe3Rlvb - O/ddmQkLvxHHtPyPWWucMrphhZGvpeY+E38x5vq2Xa/zjPkP/A04MU7gzQZ+MU7V9bL5RKGUVcdl - l9M5P9cl8TG8qhpHuFCYnuja937BjMQhN3Fenfv9AQ02DC0kAQAA + string: '{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 0dbcf3be-7688-46af-850d-94fb9c8a24bc + apim-request-id: 96cb339c-9455-4fbb-aa22-1454c10b1c7c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:41 GMT - etag: '"1DA97C41C379D1F1AD45E085578207AC2797CD1ADBB5178689B1AEF0B345F219"' + date: Wed, 02 Jun 2021 06:04:55 GMT + etag: '"BE192D8270B6DA71C118FB782F1A7CC4335D0734D0B8C69DABD57081DC6DC510"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0dbcf3be-7688-46af-850d-94fb9c8a24bc + x-requestid: 96cb339c-9455-4fbb-aa22-1454c10b1c7c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 - 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/4VzFEiyZcnainYuAjQZ0o1l1ESAbQESMxRB/j2SgWTtQhx59443 - iCfwoEmP/WB/RO8GKXqllRhJa4HBjdIaGjqrYAOUA3I4fdSxj3M4MDVW1rQ0Qqu9GrzpfGe3Rlvb - O/ddmQkLvxHHtPyPWWucMrphhZGvpeY+E38x5vq2Xa/zjPkP/A04MU7gzQZ+MU7V9bL5RKGUVcdl - l9M5P9cl8TG8qhpHuFCYnuja937BjMQhN3Fenfv9AQ02DC0kAQAA + string: '{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' headers: - apim-request-id: f3b2a137-0f14-4d1a-8b2f-8a7aa9f342fa + apim-request-id: e6a0bf76-46b7-46cc-82d3-3bab297c4a26 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:42 GMT - etag: '"1DA97C41C379D1F1AD45E085578207AC2797CD1ADBB5178689B1AEF0B345F219"' + date: Wed, 02 Jun 2021 06:04:57 GMT + etag: '"E143844547CF5D86234A963A1AABC100107D5398D0518A1ED1A62E34DE08052C"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f3b2a137-0f14-4d1a-8b2f-8a7aa9f342fa + x-requestid: e6a0bf76-46b7-46cc-82d3-3bab297c4a26 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 - 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPPW7DMAxG76I5CvRrydqK9gBFmg7txjKqI8CWAYkegiB3r2S0cxeC5PceAd5Z - urDAFKrRDO6LGz8IbqSSfESlOEQ/Cmdx0E6yA8MSgeLlpZVzWuI7YXdFo4XlSp7lEKwO2h2tcs54 - /9mcGSo9IaU1/6MZffROqVGbrlUC2mrjTlvOKU99tS0LlBsLd0YrwcyCPbBvSHNsL4ieI8Za9z7l - 17JOZR8blVf6iPRGUOgXRsgY5z91v/d8hQJIsfRm2pPH4wfZKITcIQEAAA== + string: '{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: - apim-request-id: a52e0749-9bce-4179-9148-55ed6b428790 + apim-request-id: 29f939dd-e40f-4701-83f1-b04ad79f9f13 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:43 GMT - etag: '"C45CAA324D0D67E949A2F7015697E3490D3D60D294DCD8E3FC0AC4B6461FB6AC"' + date: Wed, 02 Jun 2021 06:04:58 GMT + etag: '"DF32067DE0D8F286388DE68F0BF846BD57B465733327953EA18FFA42DA005C60"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a52e0749-9bce-4179-9148-55ed6b428790 + x-requestid: 29f939dd-e40f-4701-83f1-b04ad79f9f13 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 -- 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwW7DIAyG34VzqYBAINym7QGmrj10N9elKVJCJHAOVdV3H0TbeRfrt///s+wn - i1fmmUI16N5euHa94FoqyQdUikNwg7AG+85KtmOYA1C4ftRyjHM4ETZW1LQwXMmj7L3pfGf3Rlmr - nfuuzASF3pDikv7BtN53qh7hZMMKAa2l5g5rSjGNbbTOM+QH809GC8HEvNmxG8Qp1BdE8xFDKZuO - 6TMvY97amkoLnQN9EWT6DSMkDNMfuu17v0MGpJCbGDfn9foBCms5VSEBAAA= - headers: - apim-request-id: c6e31ebf-99c0-40e0-81e7-83a52095b792 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:44 GMT - etag: '"5459926C4660DC0CBD335DE46A50DF9AAE1A6A16EA8AB43EC97658355BC41A3E"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: c6e31ebf-99c0-40e0-81e7-83a52095b792 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 -- 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwW7DIAyG34VzqYBAINym7QGmrj10N9elKVJCJHAOVdV3H0TbeRfrt///s+wn - i1fmmUI16N5euHa94FoqyQdUikNwg7AG+85KtmOYA1C4ftRyjHM4ETZW1LQwXMmj7L3pfGf3Rlmr - nfuuzASF3pDikv7BtN53qh7hZMMKAa2l5g5rSjGNbbTOM+QH809GC8HEvNmxG8Qp1BdE8xFDKZuO - 6TMvY97amkoLnQN9EWT6DSMkDNMfuu17v0MGpJCbGDfn9foBCms5VSEBAAA= - headers: - apim-request-id: 53fb81b2-58e1-4dff-a83e-721f98ffd4df - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:45 GMT - etag: '"5459926C4660DC0CBD335DE46A50DF9AAE1A6A16EA8AB43EC97658355BC41A3E"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 53fb81b2-58e1-4dff-a83e-721f98ffd4df - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 -- 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/batches/2c29467b-4860-4121-9c22-ae89075c6371 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwW7DIAyG34VzqYBAINym7QGmrj10N9elKVJCJHAOVdV3H0TbeRfrt///s+wn - i1fmmUI16N5euHa94FoqyQdUikNwg7AG+85KtmOYA1C4ftRyjHM4ETZW1LQwXMmj7L3pfGf3Rlmr - nfuuzASF3pDikv7BtN53qh7hZMMKAa2l5g5rSjGNbbTOM+QH809GC8HEvNmxG8Qp1BdE8xFDKZuO - 6TMvY97amkoLnQN9EWT6DSMkDNMfuu17v0MGpJCbGDfn9foBCms5VSEBAAA= - headers: - apim-request-id: 2d192475-ec63-4c1b-bfa2-8c1d10ad883a - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:46 GMT - etag: '"5459926C4660DC0CBD335DE46A50DF9AAE1A6A16EA8AB43EC97658355BC41A3E"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 2d192475-ec63-4c1b-bfa2-8c1d10ad883a - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3 - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWOu27DMAxF/0VzHOhpydqK9gMKJB3ajaXZRIAfgEQPQZB/j2S0cxeC5LmH4F2k - UUShUQ+299+dDb3srNKqG1DrDigM0jvsjVfiIDATMI1vtZzTTB+MzZU1LV2n1Vn10Zlo/NFp720I - X9WZoPALclqXfzRrj0bXJ4JqWmHgrdTcaUMkGmlsy22eId9EvAteGSYR3UH8QJoqjbLxmi1lX6fl - Pa+XvI8VLSt/Ep8YMv+GERak6U/d771eIQMy5dZcGlHGPR5PvE90QCUBAAA= + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/e1a03698-d751-4947-bd1a-f69143f75093.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/e1a03698-d751-4947-bd1a-f69143f75093.txt","createdDateTimeUtc":"2021-06-02T06:04:51.7495787Z","lastActionDateTimeUtc":"2021-06-02T06:04:57.127351Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed5b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/4f7465ae-70ab-43d2-9e6f-55720b446552.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/4f7465ae-70ab-43d2-9e6f-55720b446552.txt","createdDateTimeUtc":"2021-06-02T06:04:51.5773778Z","lastActionDateTimeUtc":"2021-06-02T06:04:56.5975483Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed59-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/b117602f-56cf-473a-95e3-b71cfe3d257e.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/b117602f-56cf-473a-95e3-b71cfe3d257e.txt","createdDateTimeUtc":"2021-06-02T06:04:51.5377612Z","lastActionDateTimeUtc":"2021-06-02T06:04:56.6873321Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed5a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/2e2954cf-0c26-4f61-8879-596137286478.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/2e2954cf-0c26-4f61-8879-596137286478.txt","createdDateTimeUtc":"2021-06-02T06:04:51.5321106Z","lastActionDateTimeUtc":"2021-06-02T06:04:56.5352149Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed58-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/0a22be84-ac2b-418b-9447-210a9604ef8c.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/0a22be84-ac2b-418b-9447-210a9604ef8c.txt","createdDateTimeUtc":"2021-06-02T06:04:51.5273296Z","lastActionDateTimeUtc":"2021-06-02T06:04:56.5417206Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed57-0000-0000-0000-000000000000","characterCharged":27}]}' headers: - apim-request-id: 8d57cf8d-9f58-47c2-9edb-1c6f046db688 + apim-request-id: f5625380-caa9-44b1-9a1d-707f08179c62 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:47 GMT - etag: '"376E7909509C2435601097E2CBE2AE59FCA659F2C7D1EB63969CCA1194238422"' + date: Wed, 02 Jun 2021 06:04:58 GMT + etag: '"E2A12BA57BCD367803B2F9396650215E610DDBACC5D2579B2775DD3DF35FF48C"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8d57cf8d-9f58-47c2-9edb-1c6f046db688 + x-requestid: f5625380-caa9-44b1-9a1d-707f08179c62 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3/documents?$skip=0 - request: body: null headers: @@ -753,35 +583,25 @@ 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/batches/2c29467b-4860-4121-9c22-ae89075c6371/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAM2VTYsbMQyG/8uco4m/P3Ir7Q8odHtp6UGW5U3odifMON3Csv+9SqGXvTRDaFgf - hBF68Ws9yH4efuLDiYfd1+fhiH0/7IZ978dlt91+n48z9gOVh6mMfwJNM49Ph8c6PS3jI/dtx/me - e2Lr2dgIqpoKzlqCVKyGqlIhzLZSNttQkgmsNbiQFDjVPBRXG5RmCEmlishj/9WHzbBMp5n442o3 - y0zGBiq+ERCaDC56BoyxgeMQcrPeZmprrNDM2Ll+kHB3+MGfO4klo4wG5cHoOx123u6cHVPMLtrw - RTQPuPR31A/T479kcfTOZO3cWbZ07KdF6j6diJgrV0n2SRK8yO44T/czL1KgN8OhSlopFdGYBrJR - r8Lfdb7CHmekzvP7/ZmWKE182fxn2tVjoRgdZHTS/eYt5NgQfAjBaV2UiG9Ee4WVy2mHZLR2q2mb - 5IMOV9CWPr9B2r6mSDUiIDFKEVfIxSmgopmaKyGguxHtFVZW0DYqJ72OdhpVMlbehGtmm98ibWNb - tilEabzc2LGV0TJegXWeCKvKrt2K9gorl9P2KqacV892zHJ0uoZ2fYu0U6vyL8YI3shUuVDksyR0 - 4LOUWiyphHQj2iusXE7bWq29XU1b65ysv+Ylfw36ItrfXn4DbzPR+7EJAAA= - headers: - apim-request-id: 984e7db7-379a-4b82-9be7-785b21ca7f00 + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/e1a03698-d751-4947-bd1a-f69143f75093.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/e1a03698-d751-4947-bd1a-f69143f75093.txt","createdDateTimeUtc":"2021-06-02T06:04:51.7495787Z","lastActionDateTimeUtc":"2021-06-02T06:04:57.127351Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed5b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/4f7465ae-70ab-43d2-9e6f-55720b446552.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/4f7465ae-70ab-43d2-9e6f-55720b446552.txt","createdDateTimeUtc":"2021-06-02T06:04:51.5773778Z","lastActionDateTimeUtc":"2021-06-02T06:04:56.5975483Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed59-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/b117602f-56cf-473a-95e3-b71cfe3d257e.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/b117602f-56cf-473a-95e3-b71cfe3d257e.txt","createdDateTimeUtc":"2021-06-02T06:04:51.5377612Z","lastActionDateTimeUtc":"2021-06-02T06:04:56.6873321Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed5a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/2e2954cf-0c26-4f61-8879-596137286478.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/2e2954cf-0c26-4f61-8879-596137286478.txt","createdDateTimeUtc":"2021-06-02T06:04:51.5321106Z","lastActionDateTimeUtc":"2021-06-02T06:04:56.5352149Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed58-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target52aca744-821b-45dc-9539-45718e5e2ba6/0a22be84-ac2b-418b-9447-210a9604ef8c.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb4789938-cbd5-4824-aef2-94bad7127a99/0a22be84-ac2b-418b-9447-210a9604ef8c.txt","createdDateTimeUtc":"2021-06-02T06:04:51.5273296Z","lastActionDateTimeUtc":"2021-06-02T06:04:56.5417206Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed57-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 813ad707-8b09-457e-8fc7-061020baf5b2 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:47 GMT - etag: '"6EA4B3DCC96AA0C228A8F2D4370F4E8A44D233D6A2029704A8A6F348A63AD773"' + date: Wed, 02 Jun 2021 06:04:58 GMT + etag: '"E2A12BA57BCD367803B2F9396650215E610DDBACC5D2579B2775DD3DF35FF48C"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 984e7db7-379a-4b82-9be7-785b21ca7f00 + x-requestid: 813ad707-8b09-457e-8fc7-061020baf5b2 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2c29467b-4860-4121-9c22-ae89075c6371/documents?$skip=0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dcb9927b-7e58-4278-9a30-d2ac24e3ffe3/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 index c005459401d6..5aa16542f3aa 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890?restype=container + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:47 GMT + - Wed, 02 Jun 2021 06:02:42 GMT etag: - - '"0x8D91C790159449A"' + - '"0x8D9258C09749C08"' last-modified: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 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: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/10fe73e8-b137-484d-a8b5-b76f2800724d.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/f1173dd5-423f-4f9f-b863-5eba8e012f1d.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:42 GMT etag: - - '"0x8D91C7901812A0E"' + - '"0x8D9258C09801F42"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 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: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/283ff36b-7ddd-47eb-bcba-4c2eb67d5e65.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/fe6879d6-3524-46c9-b90e-9f7ff81b751d.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:42 GMT etag: - - '"0x8D91C79018C0167"' + - '"0x8D9258C09877393"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 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: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/07a13df9-4c91-455c-982f-30b7544845c1.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/fd27c973-a16f-484e-b34e-403ded14bd33.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:42 GMT etag: - - '"0x8D91C7901941931"' + - '"0x8D9258C098EC7E8"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 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: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/fa43b754-6916-48d9-8b67-a0063a21d3b2.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/dedb8655-c50b-4f9f-9dc2-8a31d998c0ea.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:42 GMT etag: - - '"0x8D91C79019CA643"' + - '"0x8D9258C0996435C"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 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: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/e522b081-9f2a-4a4a-87de-3caa6b85de2a.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/55aaaa91-a31f-4c1a-b646-23290ff1db1d.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:42 GMT etag: - - '"0x8D91C7901A53354"' + - '"0x8D9258C099D7094"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 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: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/36d8eea9-8ccd-40b5-bb9c-683f545dae57.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/39719faa-5d9f-4fc7-a7cc-126f08c44180.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901AD2409"' + - '"0x8D9258C09A64BCC"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 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: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/6a1efbe4-0bf8-4999-9c25-7ebc64f85143.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/02f047d4-6070-47a1-ac5c-8f196523bbc4.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901B6265E"' + - '"0x8D9258C09AE639C"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 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: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/07bd87f9-48ff-48e8-afa5-a9e31210eb99.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/5a6117ce-1b04-4b90-b0ee-24b38a5de79f.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901BF9DFF"' + - '"0x8D9258C09B87792"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -457,11 +457,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/1d048484-a6fe-4f6e-b245-91896424d532.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/7eb4043e-73df-41e8-b458-c8f141736691.txt response: body: string: '' @@ -471,11 +471,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901C963C1"' + - '"0x8D9258C09C0683F"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -507,11 +507,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/a9ce68b1-f08b-469d-af2a-b94f73639df6.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/d41ac150-c61c-4dd4-a310-26a4855093d8.txt response: body: string: '' @@ -521,11 +521,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901D41420"' + - '"0x8D9258C09CB1892"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -557,11 +557,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/1aba5ac1-5c33-4036-ae07-a1209046e69b.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/a62a9aea-d746-43ef-9bc9-44cf84ae21af.txt response: body: string: '' @@ -571,11 +571,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901DCA12D"' + - '"0x8D9258C09D6B45B"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -607,11 +607,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/5f91d119-3fb7-4f68-b3ab-f72880d05200.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/16374137-68a2-4f4c-b6a6-9341919cd74d.txt response: body: string: '' @@ -621,11 +621,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901E6B52B"' + - '"0x8D9258C09E24E47"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -657,11 +657,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/adef31c0-eb91-49f8-baca-dfb47b5bdb9b.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/4cd49347-57bc-43bd-82c7-6f84709d7646.txt response: body: string: '' @@ -671,11 +671,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:48 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901EECCF9"' + - '"0x8D9258C09EDE91F"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -707,11 +707,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/659f9779-2fd7-4a30-a90d-1dfd7bd7cfde.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/9ed733ae-c715-4849-86a2-564249a88cbc.txt response: body: string: '' @@ -721,11 +721,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901F732ED"' + - '"0x8D9258C09F84B3F"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -757,11 +757,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890/aca48687-a213-4e47-bf8b-b15a65cacf8b.txt + uri: https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/3232ce72-2b09-45fc-b1bb-80ccfc8180c7.txt response: body: string: '' @@ -771,11 +771,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C7901FED574"' + - '"0x8D9258C09FFEDC4"' last-modified: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -801,11 +801,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:50 GMT + - Wed, 02 Jun 2021 06:02:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target64c07f37-0c99-4396-b6f6-b75c3d791387?restype=container + uri: https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3?restype=container response: body: string: '' @@ -813,11 +813,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:49 GMT + - Wed, 02 Jun 2021 06:02:43 GMT etag: - - '"0x8D91C79021E6EF6"' + - '"0x8D9258C0A209F46"' last-modified: - - Fri, 21 May 2021 16:53:50 GMT + - Wed, 02 Jun 2021 06:02:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -826,14 +826,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src53c3100d-4455-4c2e-b408-544700980890?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target64c07f37-0c99-4396-b6f6-b75c3d791387?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '488' + - '484' Content-Type: - application/json User-Agent: @@ -844,279 +844,343 @@ interactions: body: string: '' headers: - apim-request-id: e25b61bd-e4c3-41f3-875f-ea87c6cdfaa3 + apim-request-id: 1e1de318-a713-4a78-8843-2ad487ae7565 content-length: '0' - date: Fri, 21 May 2021 16:53:49 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:02:44 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e25b61bd-e4c3-41f3-875f-ea87c6cdfaa3 + x-requestid: 1e1de318-a713-4a78-8843-2ad487ae7565 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches +- 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/batches/26a66406-477f-4aaa-9c82-5da0c3758efc + response: + body: + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:45.2786843Z","status":"NotStarted","summary":{"total":15,"failed":0,"success":0,"inProgress":0,"notYetStarted":15,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b29675f1-00ae-48de-b862-19cd6dd0dcd4 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:02:49 GMT + etag: '"80FBDC64EC02B9110EB102FE9A54C6D51D661D5A7B7302373740F518222A7167"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b29675f1-00ae-48de-b862-19cd6dd0dcd4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - request: body: null headers: - Accept: - - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE30VzVOjHiiNtRTsXBZoMzcYwdCLAtgCJHoog7x7JQDpnIY53/I43 - Ec8iCOy812R76XedlR2qk9ydgKTvCY0enBm8FhuBmYDp/FnHPk50YKysUUZL5aTRe70Nzgan3uzW - d866Y2VGKPyOHNP8ItabhhUGXkq9+0r8w5Dr2+Yu0wT5T4Sb4MQwiqA2YoA41rTJsiBSKauO83dO - l/xc58S/9F/VHIQZaXyia9/HFTIgU27isib3+wN4arElJAEAAA== + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:45.2786843Z","status":"NotStarted","summary":{"total":15,"failed":0,"success":0,"inProgress":0,"notYetStarted":15,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 6e411e36-20c4-4fa3-a4c8-83dde6f03abe + apim-request-id: ad923abd-7c03-4487-a9b9-dcb8aaf6fb85 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:49 GMT - etag: '"AF766A32B8D2C75219B7B332183829CD28850BEFB3552648B02B282B2FF84CC1"' + date: Wed, 02 Jun 2021 06:02:50 GMT + etag: '"80FBDC64EC02B9110EB102FE9A54C6D51D661D5A7B7302373740F518222A7167"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6e411e36-20c4-4fa3-a4c8-83dde6f03abe + x-requestid: ad923abd-7c03-4487-a9b9-dcb8aaf6fb85 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc +- 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/batches/26a66406-477f-4aaa-9c82-5da0c3758efc + response: + body: + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:45.2786843Z","status":"NotStarted","summary":{"total":15,"failed":0,"success":0,"inProgress":0,"notYetStarted":15,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 26f776bb-4c14-421d-b958-a73ad700a037 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:02:51 GMT + etag: '"80FBDC64EC02B9110EB102FE9A54C6D51D661D5A7B7302373740F518222A7167"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 26f776bb-4c14-421d-b958-a73ad700a037 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc +- 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/batches/26a66406-477f-4aaa-9c82-5da0c3758efc + response: + body: + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:45.2786843Z","status":"NotStarted","summary":{"total":15,"failed":0,"success":0,"inProgress":0,"notYetStarted":15,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 8ed27928-fdde-4f70-9a38-dd8f41d2265b + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:02:52 GMT + etag: '"80FBDC64EC02B9110EB102FE9A54C6D51D661D5A7B7302373740F518222A7167"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8ed27928-fdde-4f70-9a38-dd8f41d2265b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - request: body: null headers: - Accept: - - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE30VzVOjHiiNtRTsXBZoMzcYwdCLAtgCJHoog7x7JQDpnIY53/I43 - Ec8iCOy812R76XedlR2qk9ydgKTvCY0enBm8FhuBmYDp/FnHPk50YKysUUZL5aTRe70Nzgan3uzW - d866Y2VGKPyOHNP8ItabhhUGXkq9+0r8w5Dr2+Yu0wT5T4Sb4MQwiqA2YoA41rTJsiBSKauO83dO - l/xc58S/9F/VHIQZaXyia9/HFTIgU27isib3+wN4arElJAEAAA== + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.2501433Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":5,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 2a6f9cf1-417c-42ab-a67e-a84d89e71b1b + apim-request-id: b852ca1e-53ba-4a26-a94e-5507e1456155 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:50 GMT - etag: '"AF766A32B8D2C75219B7B332183829CD28850BEFB3552648B02B282B2FF84CC1"' + date: Wed, 02 Jun 2021 06:02:53 GMT + etag: '"C1F0BF87D836B47C6259B6635A216D17F2E13D0DD6442007CA6BEDFB141F1117"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2a6f9cf1-417c-42ab-a67e-a84d89e71b1b + x-requestid: b852ca1e-53ba-4a26-a94e-5507e1456155 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - 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/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30WzFYj6iSNvRfsARZoO7cYotCPAlgGJHoog717JQOcuxJG874B7 - iHgTgwjWeyDTS3+yRtqgrvJ0RZK+p6BhdHr0IDoRMiHT7a2OS1zok0NltdIglZMaLnAcnBmcOpij - t86478rMWPglcFzTfxhUzIDufcMKI2+l+s5bSjFN7bQtC+YfMTwEr4yzGMB1YsQ4U+2gmiEEKmXX - Mb3ndcr7ajuRVv4i/mDM3MwAtQymQPMfuye+3jFjYMpNTPvn+fwFDQZsICMBAAA= + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":15,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 8310ee33-825b-43ac-8e5e-6412884078d0 + apim-request-id: a10047bb-4a43-4820-b769-fabb6fa91b3b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:51 GMT - etag: '"2FE245BCFC17C817A9AD8A9C2EB134A82481AB6D40966436D5D3ADD9D4D46AA8"' + date: Wed, 02 Jun 2021 06:02:54 GMT + etag: '"B0433A677B8BFF6B424767C015A96ACCAB76354246D876873DAC25D72F74927F"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8310ee33-825b-43ac-8e5e-6412884078d0 + x-requestid: a10047bb-4a43-4820-b769-fabb6fa91b3b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - 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/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc response: body: - string: !!binary | - H4sIAAAAAAAEAIWPPW7DMAxG76I5CvQbW96K9gBFmw7txjC0I8CWAYkeiiB3r2S0cxfiI/keAd5F - vIpBoAtBk+1k6J2VDtVF9hcgGTpCo0dvxqDFQWAmYLq+1HKOC30wVtcoo6Xy0uizPg3eDl4d7Sk4 - b/1XdWYo/IQc1/SfZo7O9Z0KrmmFgbdSubctpZimNtqWBfK3GO6CV4ZZDNofxAhxpvqDagAilbLn - mF7zOuW9bVha+ZP4nSHzL42QkOY/d7/4fIMMyJRbmPbN4/ED1uF84CMBAAA= + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":15,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 940eef59-49d7-4341-a9e1-ae9f650adc58 + apim-request-id: 426a7936-ccc1-4317-a45b-dffd8aea9abd cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:52 GMT - etag: '"CABD2251AB5A4D0870E6B803E9C223C85C88F71E6D9659DB7BB8F2B43EF5E51F"' + date: Wed, 02 Jun 2021 06:02:55 GMT + etag: '"B0433A677B8BFF6B424767C015A96ACCAB76354246D876873DAC25D72F74927F"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 940eef59-49d7-4341-a9e1-ae9f650adc58 + x-requestid: 426a7936-ccc1-4317-a45b-dffd8aea9abd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - 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/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc response: body: - string: !!binary | - H4sIAAAAAAAEAIWPPW7DMAxG76I5CvQbW96K9gBFmw7txjC0I8CWAYkeiiB3r2S0cxfiI/keAd5F - vIpBoAtBk+1k6J2VDtVF9hcgGTpCo0dvxqDFQWAmYLq+1HKOC30wVtcoo6Xy0uizPg3eDl4d7Sk4 - b/1XdWYo/IQc1/SfZo7O9Z0KrmmFgbdSubctpZimNtqWBfK3GO6CV4ZZDNofxAhxpvqDagAilbLn - mF7zOuW9bVha+ZP4nSHzL42QkOY/d7/4fIMMyJRbmPbN4/ED1uF84CMBAAA= + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":15,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: f64d1918-9ac7-452e-9ae8-29542ae587d1 + apim-request-id: 4d719463-c482-403c-b7cf-524b51ad2087 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:53 GMT - etag: '"CABD2251AB5A4D0870E6B803E9C223C85C88F71E6D9659DB7BB8F2B43EF5E51F"' + date: Wed, 02 Jun 2021 06:02:56 GMT + etag: '"B0433A677B8BFF6B424767C015A96ACCAB76354246D876873DAC25D72F74927F"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f64d1918-9ac7-452e-9ae8-29542ae587d1 + x-requestid: 4d719463-c482-403c-b7cf-524b51ad2087 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - 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/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc response: body: - string: !!binary | - H4sIAAAAAAAEAIWPPW7DMAxG76I5CvQbW96K9gBFmw7txjC0I8CWAYkeiiB3r2S0cxfiI/keAd5F - vIpBoAtBk+1k6J2VDtVF9hcgGTpCo0dvxqDFQWAmYLq+1HKOC30wVtcoo6Xy0uizPg3eDl4d7Sk4 - b/1XdWYo/IQc1/SfZo7O9Z0KrmmFgbdSubctpZimNtqWBfK3GO6CV4ZZDNofxAhxpvqDagAilbLn - mF7zOuW9bVha+ZP4nSHzL42QkOY/d7/4fIMMyJRbmPbN4/ED1uF84CMBAAA= + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":15,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: d59d1897-2d3d-409e-8fe0-c4892b049780 + apim-request-id: d30ea10c-041d-4136-b016-f639cabda0c6 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:54 GMT - etag: '"CABD2251AB5A4D0870E6B803E9C223C85C88F71E6D9659DB7BB8F2B43EF5E51F"' + date: Wed, 02 Jun 2021 06:02:57 GMT + etag: '"B0433A677B8BFF6B424767C015A96ACCAB76354246D876873DAC25D72F74927F"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d59d1897-2d3d-409e-8fe0-c4892b049780 + x-requestid: d30ea10c-041d-4136-b016-f639cabda0c6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - 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/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwW6DMAyG38VnUiUhAcJt2h5g6rrDdnNdQyNBkII5VFXffaHazrtY9u/vs+Q7 - xAv0QC4Ew3WrQudq5UifVXdGVqFlsmbwdggGKqDMKHx5K+UUZ/4UKq7V1ijtlTUn0/S+7r0+1E1w - vvbfxZlwlReSuKT/NHtwrmt1cLu2Csq2Fu64pRTTuEfbPGO+QX8HWQQn6I2vYMA4cflB7wARr0Xq - KojpPS9jfo5tBWmRL5YPwSy/MGEinv7U58HXK2Yk4bw3476xpnk8fgCVTkuaJAEAAA== + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":15,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 637c7371-c581-4dd8-a61c-bfa4509a03df + apim-request-id: 02dac203-dbd8-402b-bcc0-525e61291168 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:55 GMT - etag: '"8B349EDFE675E45E8F69D449FC54281538D2FFC90CCD9DE28C635B1644B9097D"' + date: Wed, 02 Jun 2021 06:02:58 GMT + etag: '"B0433A677B8BFF6B424767C015A96ACCAB76354246D876873DAC25D72F74927F"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 637c7371-c581-4dd8-a61c-bfa4509a03df + x-requestid: 02dac203-dbd8-402b-bcc0-525e61291168 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - 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/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc response: body: - string: !!binary | - H4sIAAAAAAAEAIWMu27DMAxF/0VzFOgZW9qK9gMCJB3ajaHpVIAfgEQPQZB/r5S2cxeCvPcc3kUa - RBToQtBkOxl6Z6VDdZH9BUiGjtDo0ZsxaLETmAmYhrc6zmmmd8bqGmW0VF4afdaH6G30am8PwXnr - P6szQeEX5LQu/2lm71zfqeCaVhh4K5U7bYhEAw0t3OYZ8k3Eu+CVYRJR+50YIU21jqoBFS7lJ0/L - Ma/X/Lxrt6z8QXxiyPxLIyxI05/7/Pj6BRmQKbfl2hqn/OPxDVomtlknAQAA + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Running","summary":{"total":15,"failed":0,"success":8,"inProgress":7,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}' headers: - apim-request-id: 6f28c762-c7a5-44a2-85b0-42f4c0c99a58 + apim-request-id: f4d57a01-6952-4c62-bad9-9c8c94d455f4 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:56 GMT - etag: '"E508D330310EF3CA747AB3557D47F5837A7E20F1528BDB79765E8C6BC738756C"' + date: Wed, 02 Jun 2021 06:02:59 GMT + etag: '"BB5AAC3988D4586769FE27049900FAAF52A51F657756456EE32EE5B75219D90F"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6f28c762-c7a5-44a2-85b0-42f4c0c99a58 + x-requestid: f4d57a01-6952-4c62-bad9-9c8c94d455f4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc +- 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/batches/26a66406-477f-4aaa-9c82-5da0c3758efc + response: + body: + string: '{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}' + headers: + apim-request-id: a414b112-5135-40ef-bd14-cd6c2225fd6d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:03:00 GMT + etag: '"F39FA87C84E790192FBA366C47394C2D4080A70C0B9E54250B564BE841BC478D"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a414b112-5135-40ef-bd14-cd6c2225fd6d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc - request: body: null headers: @@ -1125,45 +1189,56 @@ 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/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAM3ZzW7jNhAH8HfxeenMkDMcTm5F+wAFur206IGfm6DpOrCVboHFvnvHC/Syl4oV - KsgBCJuWgH/0w1Ac+fPpz/zy1k+Pv34+vebl6fR4elqW19vjw8Pv19drXp5rebmU89ehXq79/On5 - Y7t8up0/9uVhydcPfYlUQUYQB1XVUdDoShw2CNfQRDEkeejsfYGETofPjjJll6R1F2rOsSRu3efz - 8tdyene6Xd6utf84neZ2rRxqQIDmiJgdVd9dIUiOiQRAEySFmSj12vPS2w82vH/+o/+8VIvkwaMD - dh7fY3zk8Mj+7FkVwi92yku+Ld/V5fny8d/OiuckGgm/nnZb8vJ2s+N+equ199abTS4Xm+g3e/d6 - vXy49psdgO9Oz82mAUCyD8PZG/hm+Od1/w+e8jXXpV+/f7pj2Zlevrz7n7FHpmAT5KJidJSaulSi - uAwQQ/bYQvE7YU9EmcDm5AWntSMibcGmb50PgZ1bHwEruF4UHelIruSaXRuFpHBpRctO2BNR1mN7 - UIo6i01IrFsKux/SumZKMVn5eAyOOokrIxVXkHPkmqt92Mt6fZT11gABcH4ZTxzQpy3a7ZDaWntM - Bd0Au7BWBM3l+y2zKA0JMWgbcS/t9VFWauPZ7r1i87PaAbxnwC3a9YjakXWoiDo/mti2KIDLaizY - 7HNpUkfrO2lPRJnQRkg0r22FjWGTdj6kdsY+SicHtmrardKO1OrZSS810khsW5W9tNdHWa/NCb2m - aW2Ge3lv0S5H1PYpjBFicdKaYdiVdaWW/FXEdsONe+SdtCeirNaOoiHO1jafk4+CcZO2HFGbh2JD - VBdGseVzRNsGh1zcEJ8SNGDb5+ykPRFlQpujyDQ2eOVt2HpE7BBb6j1bW1urWUBhV4pWF63OmLjl - zrIT9kSU9dghWa89uZCbNpLtH7ZgpyNiYwNK9udyHP1eTsbgiZ1ist2sp8ZhrwcrE1HWY/sEYbb/ - 4rNQUtFNpR0PqZ1L5lzR2Zy1uGApcwfreNGDAsUed3uyMhFltXaQRDFOa2PySLxpR86H1IbRJXS7 - QaIdaZVlLW66L6ESh9UFiNXUXtrro6zXjkHATy/kqIkINz1boSNqg/WxSYZ9n8awwS52Hpmtz+3W - ciL0orqT9kSU9dpMgkqz2l4YIsgW7XBM7Yyh3S9xvT+YZq5Okx8uwP23CSswrrib9uoo67UpsPjp - /suLR4m8Rdv/F+3fvvwNwQan/vccAAA= - headers: - apim-request-id: b8385aa8-f04c-4d6a-b6ba-293c70a55680 + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/fe6879d6-3524-46c9-b90e-9f7ff81b751d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/fe6879d6-3524-46c9-b90e-9f7ff81b751d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.6408492Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9992383Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed36-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/fd27c973-a16f-484e-b34e-403ded14bd33.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/fd27c973-a16f-484e-b34e-403ded14bd33.txt","createdDateTimeUtc":"2021-06-02T06:02:54.6341635Z","lastActionDateTimeUtc":"2021-06-02T06:03:01.0077626Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed35-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/dedb8655-c50b-4f9f-9dc2-8a31d998c0ea.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/dedb8655-c50b-4f9f-9dc2-8a31d998c0ea.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5874646Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4839692Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed33-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/a62a9aea-d746-43ef-9bc9-44cf84ae21af.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/a62a9aea-d746-43ef-9bc9-44cf84ae21af.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5625704Z","lastActionDateTimeUtc":"2021-06-02T06:03:01.0517426Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed31-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/f1173dd5-423f-4f9f-b863-5eba8e012f1d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/f1173dd5-423f-4f9f-b863-5eba8e012f1d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5466985Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9963787Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed34-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/d41ac150-c61c-4dd4-a310-26a4855093d8.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/d41ac150-c61c-4dd4-a310-26a4855093d8.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5229818Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9719867Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed32-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/9ed733ae-c715-4849-86a2-564249a88cbc.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/9ed733ae-c715-4849-86a2-564249a88cbc.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5203561Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9950735Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed30-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/7eb4043e-73df-41e8-b458-c8f141736691.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/7eb4043e-73df-41e8-b458-c8f141736691.txt","createdDateTimeUtc":"2021-06-02T06:02:54.3208291Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4784825Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/5a6117ce-1b04-4b90-b0ee-24b38a5de79f.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/5a6117ce-1b04-4b90-b0ee-24b38a5de79f.txt","createdDateTimeUtc":"2021-06-02T06:02:54.317484Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9074454Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/55aaaa91-a31f-4c1a-b646-23290ff1db1d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/55aaaa91-a31f-4c1a-b646-23290ff1db1d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.3027282Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4746442Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/4cd49347-57bc-43bd-82c7-6f84709d7646.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/4cd49347-57bc-43bd-82c7-6f84709d7646.txt","createdDateTimeUtc":"2021-06-02T06:02:54.2872153Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4019666Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/39719faa-5d9f-4fc7-a7cc-126f08c44180.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/39719faa-5d9f-4fc7-a7cc-126f08c44180.txt","createdDateTimeUtc":"2021-06-02T06:02:54.265277Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4621841Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/3232ce72-2b09-45fc-b1bb-80ccfc8180c7.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/3232ce72-2b09-45fc-b1bb-80ccfc8180c7.txt","createdDateTimeUtc":"2021-06-02T06:02:54.2447057Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.5118986Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/16374137-68a2-4f4c-b6a6-9341919cd74d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/16374137-68a2-4f4c-b6a6-9341919cd74d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.2335939Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4164024Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed29-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/02f047d4-6070-47a1-ac5c-8f196523bbc4.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/02f047d4-6070-47a1-ac5c-8f196523bbc4.txt","createdDateTimeUtc":"2021-06-02T06:02:54.2263441Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4790312Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed28-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: ddf348d3-ba3c-4ddf-a451-a4abe93acac1 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:56 GMT - etag: '"212EF5759E85C54F4C2F13F40932E3ED5F6E10667A1B9872EFAA71E65D821087"' + date: Wed, 02 Jun 2021 06:03:00 GMT + etag: '"5067B2008A62CB18F688B5B00121DC5D456B745D54A010CC3B43519BAC924BB5"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ddf348d3-ba3c-4ddf-a451-a4abe93acac1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc/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/batches/26a66406-477f-4aaa-9c82-5da0c3758efc/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/fe6879d6-3524-46c9-b90e-9f7ff81b751d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/fe6879d6-3524-46c9-b90e-9f7ff81b751d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.6408492Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9992383Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed36-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/fd27c973-a16f-484e-b34e-403ded14bd33.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/fd27c973-a16f-484e-b34e-403ded14bd33.txt","createdDateTimeUtc":"2021-06-02T06:02:54.6341635Z","lastActionDateTimeUtc":"2021-06-02T06:03:01.0077626Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed35-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/dedb8655-c50b-4f9f-9dc2-8a31d998c0ea.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/dedb8655-c50b-4f9f-9dc2-8a31d998c0ea.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5874646Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4839692Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed33-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/a62a9aea-d746-43ef-9bc9-44cf84ae21af.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/a62a9aea-d746-43ef-9bc9-44cf84ae21af.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5625704Z","lastActionDateTimeUtc":"2021-06-02T06:03:01.0517426Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed31-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/f1173dd5-423f-4f9f-b863-5eba8e012f1d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/f1173dd5-423f-4f9f-b863-5eba8e012f1d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5466985Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9963787Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed34-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/d41ac150-c61c-4dd4-a310-26a4855093d8.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/d41ac150-c61c-4dd4-a310-26a4855093d8.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5229818Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9719867Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed32-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/9ed733ae-c715-4849-86a2-564249a88cbc.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/9ed733ae-c715-4849-86a2-564249a88cbc.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5203561Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9950735Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed30-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/7eb4043e-73df-41e8-b458-c8f141736691.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/7eb4043e-73df-41e8-b458-c8f141736691.txt","createdDateTimeUtc":"2021-06-02T06:02:54.3208291Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4784825Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/5a6117ce-1b04-4b90-b0ee-24b38a5de79f.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/5a6117ce-1b04-4b90-b0ee-24b38a5de79f.txt","createdDateTimeUtc":"2021-06-02T06:02:54.317484Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9074454Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/55aaaa91-a31f-4c1a-b646-23290ff1db1d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/55aaaa91-a31f-4c1a-b646-23290ff1db1d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.3027282Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4746442Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/4cd49347-57bc-43bd-82c7-6f84709d7646.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/4cd49347-57bc-43bd-82c7-6f84709d7646.txt","createdDateTimeUtc":"2021-06-02T06:02:54.2872153Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4019666Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/39719faa-5d9f-4fc7-a7cc-126f08c44180.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/39719faa-5d9f-4fc7-a7cc-126f08c44180.txt","createdDateTimeUtc":"2021-06-02T06:02:54.265277Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4621841Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/3232ce72-2b09-45fc-b1bb-80ccfc8180c7.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/3232ce72-2b09-45fc-b1bb-80ccfc8180c7.txt","createdDateTimeUtc":"2021-06-02T06:02:54.2447057Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.5118986Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed2a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/16374137-68a2-4f4c-b6a6-9341919cd74d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/16374137-68a2-4f4c-b6a6-9341919cd74d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.2335939Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4164024Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed29-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/02f047d4-6070-47a1-ac5c-8f196523bbc4.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/02f047d4-6070-47a1-ac5c-8f196523bbc4.txt","createdDateTimeUtc":"2021-06-02T06:02:54.2263441Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4790312Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed28-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 1ef84524-a761-460f-9eba-d3de37d19855 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:03:00 GMT + etag: '"5067B2008A62CB18F688B5B00121DC5D456B745D54A010CC3B43519BAC924BB5"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b8385aa8-f04c-4d6a-b6ba-293c70a55680 + x-requestid: 1ef84524-a761-460f-9eba-d3de37d19855 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91/documents?$skip=0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc/documents?$skip=0 - request: body: null headers: @@ -1172,37 +1247,25 @@ 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/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91/documents?$skip=0&ids=0007a23f-0000-0000-0000-000000000000,0007a240-0000-0000-0000-000000000000,0007a23e-0000-0000-0000-000000000000,0007a23d-0000-0000-0000-000000000000,0007a23c-0000-0000-0000-000000000000,0007a23a-0000-0000-0000-000000000000,0007a23b-0000-0000-0000-000000000000 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc/documents?$skip=0&ids=0007ed36-0000-0000-0000-000000000000,0007ed35-0000-0000-0000-000000000000,0007ed33-0000-0000-0000-000000000000,0007ed31-0000-0000-0000-000000000000,0007ed34-0000-0000-0000-000000000000,0007ed32-0000-0000-0000-000000000000,0007ed30-0000-0000-0000-000000000000 response: body: - string: !!binary | - H4sIAAAAAAAEAM3WzY7TMBAH8HfJeSedscdfvSF4ACSWC4jD+GtbUbZV4rJIq3133JW47IWGiqo5 - WPHIlv7JTxPnefgpu2MZ1l+fh4O0zbAeNq0d5vVq9X06TNK2Ke72cXwd0n4q49P2Me+f5vGxtFWT - 6aE0ywld1Q4whQCsg4Voax+cSTq7QNq7VTFKRfQEoSoBFhbwLhfQScRGb3JRMrZfbbgb5v1xSuXj - 4jTzlIxOmhAzMBsDnFSByOjBMDvE4NEHXBIlTUVayR/6cL/9UT631CMpVARoQNE92bXRa6NGZUJA - /aVv2cnc3qW23T/+bZcdvQuW6XXb3KQd577u0zGlUnLJvdj2vVDmfneY9g9TmfsCuhu2uZcR0YnS - FfoNvhn+XKcn2MgkqZXp/eaE1Xcq93L3n7GrsO4FBhvIAvscwEfrQBCtFkVZR3Ul7AVRFmAbrxwt - 1rZEfAk2v3W+CWzJpWpKCCUGAg7VQ5QkkGtkF03MMcQrYS+Icj62wsA2LMVmYhMuaexyk9ZJ2Fvf - 20eRBi7sIFYfIZIRa5KkPrmW9flRzrdG1EjLP+PeaFL+Eu18k9ohFesjQcX+YnsTZJDTkRkDV6et - Drnaa2mfH+VMbRr72et6fam2RqUM0iXa6Ra1rQk1OBdA1ez6b5FGkNBZKPd5zC7VXK6kvSDKAm1C - z8u1e2OTvkhbblJbqNRYGLB/NftR2VeGpAy4EpPl6k3/VbmW9vlRztc2nlTwi7UNntr7Eu34L9rf - Xn4Dj5/Mn4kNAAA= - headers: - apim-request-id: 84eb63d4-3c50-46c8-b919-f9e76bcae0a3 + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/fe6879d6-3524-46c9-b90e-9f7ff81b751d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/fe6879d6-3524-46c9-b90e-9f7ff81b751d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.6408492Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9992383Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed36-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/fd27c973-a16f-484e-b34e-403ded14bd33.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/fd27c973-a16f-484e-b34e-403ded14bd33.txt","createdDateTimeUtc":"2021-06-02T06:02:54.6341635Z","lastActionDateTimeUtc":"2021-06-02T06:03:01.0077626Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed35-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/dedb8655-c50b-4f9f-9dc2-8a31d998c0ea.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/dedb8655-c50b-4f9f-9dc2-8a31d998c0ea.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5874646Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.4839692Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed33-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/a62a9aea-d746-43ef-9bc9-44cf84ae21af.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/a62a9aea-d746-43ef-9bc9-44cf84ae21af.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5625704Z","lastActionDateTimeUtc":"2021-06-02T06:03:01.0517426Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed31-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/f1173dd5-423f-4f9f-b863-5eba8e012f1d.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/f1173dd5-423f-4f9f-b863-5eba8e012f1d.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5466985Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9963787Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed34-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/d41ac150-c61c-4dd4-a310-26a4855093d8.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/d41ac150-c61c-4dd4-a310-26a4855093d8.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5229818Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9719867Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed32-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf402a393-17c2-4de3-ba2d-0d53f981b9c3/9ed733ae-c715-4849-86a2-564249a88cbc.txt","sourcePath":"https://redacted.blob.core.windows.net/src617143b2-6def-47d9-aa79-c36f0ee69158/9ed733ae-c715-4849-86a2-564249a88cbc.txt","createdDateTimeUtc":"2021-06-02T06:02:54.5203561Z","lastActionDateTimeUtc":"2021-06-02T06:03:00.9950735Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed30-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 79c46b4e-051d-41cd-a330-9e981112c84d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:56 GMT - etag: '"D3C0A63FD41CE04A524180CBD3A4435FE7E859981B7316C82245183DA7679753"' + date: Wed, 02 Jun 2021 06:03:01 GMT + etag: '"0C4CC1D4C2F48058E91830B02FF25C5ABD51DD61513D3D6C629A65DD4D69EA3A"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 84eb63d4-3c50-46c8-b919-f9e76bcae0a3 + x-requestid: 79c46b4e-051d-41cd-a330-9e981112c84d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c4991e37-9843-4c0b-8bae-97ec21f52f91/documents?$skip=0&ids=0007a23f-0000-0000-0000-000000000000,0007a240-0000-0000-0000-000000000000,0007a23e-0000-0000-0000-000000000000,0007a23d-0000-0000-0000-000000000000,0007a23c-0000-0000-0000-000000000000,0007a23a-0000-0000-0000-000000000000,0007a23b-0000-0000-0000-000000000000 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/26a66406-477f-4aaa-9c82-5da0c3758efc/documents?$skip=0&ids=0007ed36-0000-0000-0000-000000000000,0007ed35-0000-0000-0000-000000000000,0007ed33-0000-0000-0000-000000000000,0007ed31-0000-0000-0000-000000000000,0007ed34-0000-0000-0000-000000000000,0007ed32-0000-0000-0000-000000000000,0007ed30-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 index c326e8b6e4e9..05e1cd5c9d1f 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5?restype=container + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:01 GMT etag: - - '"0x8D91C7906857EC6"' + - '"0x8D9258C14C4C7DE"' last-modified: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 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: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/f9f1a99d-dcb6-4bec-ae10-75d5e83f2da9.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/87d7e488-7cc0-4d3c-a63b-2950930c31da.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:01 GMT etag: - - '"0x8D91C790696C0FA"' + - '"0x8D9258C14CF891D"' last-modified: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 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: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/51ff0874-37ab-4521-874c-a47629158b92.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/70df5c18-5bd8-4797-8308-f61dddba6c06.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:01 GMT etag: - - '"0x8D91C7906A430F1"' + - '"0x8D9258C14D752AE"' last-modified: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 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: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/e721ca12-0b28-45f3-a19f-6ccb154590de.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/1c8c4f22-7aad-4c28-b80d-4d43f3ef3976.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:01 GMT etag: - - '"0x8D91C7906AD0C31"' + - '"0x8D9258C14E07C15"' last-modified: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 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: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/79879efe-dce4-4019-8505-6ed829440f57.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/1dddcedf-8df7-41c8-a817-45caf0d03965.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:01 GMT etag: - - '"0x8D91C7906B5E775"' + - '"0x8D9258C14E9A578"' last-modified: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 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: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/7ec1248d-4312-4084-b8cf-1ba3d4e5f8f8.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/663722b5-731f-4800-a067-ea0cbd3aa0c4.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:01 GMT etag: - - '"0x8D91C7906BD89F3"' + - '"0x8D9258C14F120E4"' last-modified: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 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: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/a46155b0-da24-4c30-a537-81240b59992b.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/fc1e5b81-aa8e-414a-892c-6ac5e339c706.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT etag: - - '"0x8D91C7906C68C5E"' + - '"0x8D9258C14FE90CD"' last-modified: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 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: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/241ed419-c78c-4ee0-af41-35a477bf5b64.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/c419d9ff-8718-4cbc-9b32-9324c5e429ba.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT etag: - - '"0x8D91C7906CEF249"' + - '"0x8D9258C15056FDC"' last-modified: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:02 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: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/8d8299a2-1005-405f-ba9e-8ad69933c623.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/adab7ddc-a099-4cfd-8f83-0946fe1b3004.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT etag: - - '"0x8D91C7906D95475"' + - '"0x8D9258C150DAEC2"' last-modified: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:02 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -457,11 +457,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/69b6b855-a5e7-47a1-90ef-7fee1fc63171.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/989d782f-6305-408d-a414-b303feb68eb2.txt response: body: string: '' @@ -471,11 +471,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT etag: - - '"0x8D91C7906E22FBE"' + - '"0x8D9258C151AA968"' last-modified: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:02 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -507,11 +507,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5/a9715b0f-0b35-4ba2-87e3-c9863deb629c.txt + uri: https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/4935ada1-4ba1-4978-86d2-c51ec66ff530.txt response: body: string: '' @@ -521,11 +521,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT etag: - - '"0x8D91C7906EC6AC8"' + - '"0x8D9258C15269265"' last-modified: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -551,11 +551,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8db5b703-2917-4502-84b0-41c215adf443?restype=container + uri: https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093?restype=container response: body: string: '' @@ -563,11 +563,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:53:57 GMT + - Wed, 02 Jun 2021 06:03:02 GMT etag: - - '"0x8D91C79070BB1E0"' + - '"0x8D9258C15446156"' last-modified: - - Fri, 21 May 2021 16:53:58 GMT + - Wed, 02 Jun 2021 06:03:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -576,14 +576,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcbc0e979e-47ad-45ff-929d-aafdf7635fb5?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8db5b703-2917-4502-84b0-41c215adf443?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '486' + - '488' Content-Type: - application/json User-Agent: @@ -594,247 +594,291 @@ interactions: body: string: '' headers: - apim-request-id: 4af6f757-9f54-4bfc-940a-0c767663f275 + apim-request-id: 74173cb4-4366-410d-bd8a-2f0349133ca8 content-length: '0' - date: Fri, 21 May 2021 16:53:58 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:03:03 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4af6f757-9f54-4bfc-940a-0c767663f275 + x-requestid: 74173cb4-4366-410d-bd8a-2f0349133ca8 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 response: body: - string: !!binary | - H4sIAAAAAAAEAI2OvW7DMAyE34VzVOjHclxtQTsXBZoOzcbQrCPAtgCJHoog717ZQDJnIY48foe7 - QuwhACI53Vuv9mfHqiFvVYfOK2radt+ReWXuYQeUGYX79zqOceJvocpabY3SXllzNG3wLvjupbXG - a+NOlRmxyIEkpvlJrGlWrAjKUurfR5IvwSxbgbJME+Y/CFeQJDhC0Dv4xThWd5VlIeJSNh3nz5yG - fF/nJD/8iFovhDPxeEe3vLcLZiThvIphc263f51HV7wkAQAA + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:03.87835Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: fa6b029c-c8dc-4c0e-9cc4-7c026c033607 + apim-request-id: 49a0cb9c-6008-441d-ad58-de554867f16b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:58 GMT - etag: '"0EF5C3CFA2FC8BBE3E1FEBBE0A2B995EFD4C4C5DBEB77288EEB43DAB82F4FDE5"' + date: Wed, 02 Jun 2021 06:03:08 GMT + etag: '"89D5C9F4E955B3993BA190444836B12373152C7AB76098B7C42C609123EBC084"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 49a0cb9c-6008-441d-ad58-de554867f16b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 +- 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/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 + response: + body: + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:09.6528199Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":4,"notYetStarted":6,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 00288c9c-d854-4ea2-bd0b-2b30ffdbd292 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:03:09 GMT + etag: '"8F1834E0AB4F3356AF1F7FD71F7E76171186590A8B730B2985076AC6CFB5ADA0"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: fa6b029c-c8dc-4c0e-9cc4-7c026c033607 + x-requestid: 00288c9c-d854-4ea2-bd0b-2b30ffdbd292 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 - request: body: null headers: - Accept: - - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 response: body: - string: !!binary | - H4sIAAAAAAAEAI2OvW7DMAyE34VzVOjHclxtQTsXBZoOzcbQrCPAtgCJHoog717ZQDJnIY48foe7 - QuwhACI53Vuv9mfHqiFvVYfOK2radt+ReWXuYQeUGYX79zqOceJvocpabY3SXllzNG3wLvjupbXG - a+NOlRmxyIEkpvlJrGlWrAjKUurfR5IvwSxbgbJME+Y/CFeQJDhC0Dv4xThWd5VlIeJSNh3nz5yG - fF/nJD/8iFovhDPxeEe3vLcLZiThvIphc263f51HV7wkAQAA + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 3c23f1f9-251d-4fc7-a950-55b957e38e5c + apim-request-id: 856ecaad-895e-45bd-84ad-b5c541f673fc cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:58 GMT - etag: '"0EF5C3CFA2FC8BBE3E1FEBBE0A2B995EFD4C4C5DBEB77288EEB43DAB82F4FDE5"' + date: Wed, 02 Jun 2021 06:03:10 GMT + etag: '"01777162BF8FC341F2955D9B2E9185D6AE6869885D613C15A277CDDA0A452742"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3c23f1f9-251d-4fc7-a950-55b957e38e5c + x-requestid: 856ecaad-895e-45bd-84ad-b5c541f673fc status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 - 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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPPW7DMAyF76LZCvQTWba2oj1AkKZDu7E06wqwZUCihyLI3SsZ6NyFeCTf90De - RZxEEABo1WSc9J+W5BmdkQNYJ/Hc935APRJNohOYCZiml1pucaU3xsoaZbRUThp9031wNrjh1Bvt - lLYflVmg8BNy3NJ/2HjywzAqbxpWGHgv1XfdU4ppbqN9XSH/iHAXvDEsImjViS+ISz0uqGZApFIO - HdMlb3M+Wt+JtPE78StD5ma29RdISMsfegQ+f0MGZMpNzMfm8fgF9gAG+SIBAAA= + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 37a01bf4-af74-4ecd-a176-53b62e9439fd + apim-request-id: 18577753-90b3-4c60-bfda-369c92c913dd cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:53:59 GMT - etag: '"0D13301B5187261B23847752A42EE4650687F170F4910BCDD7C0F50BAF22562E"' + date: Wed, 02 Jun 2021 06:03:11 GMT + etag: '"01777162BF8FC341F2955D9B2E9185D6AE6869885D613C15A277CDDA0A452742"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 37a01bf4-af74-4ecd-a176-53b62e9439fd + x-requestid: 18577753-90b3-4c60-bfda-369c92c913dd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 - 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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 response: body: - string: !!binary | - H4sIAAAAAAAEAH2OTU7EMAxG75L1ZJSfJm2zQ3AABMMCdsY1nUhtKiXuAo3m7iQVbNlYn+33LN9E - nEQQAGjVZJzsPy3JDp2RA1gnsfO+H1CPRJM4CcwETNNTLZe40htjdY0yWionjb5oH5wNbjh7o53S - 9qM6CxR+QI5b+lfrglJnPfbej80qDLyXir3sKcU0t9G+rpC/RbgJ3hgWEbQ6iS+IS/0tqAYgUilH - juk5b3M+2oaljd+JXxky/9IICWn5c4+Lj1fIgEy5hfnY3O8/52SU2CIBAAA= + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 0ddf43af-1b24-417f-a3ca-3334f6383dc1 + apim-request-id: 8c8b25f6-80dc-453c-bfb7-e9a7b299522d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:00 GMT - etag: '"1579913325B699A84E1BFFFE8CDB7756021CE992EB9312529DA7285B6D0152D2"' + date: Wed, 02 Jun 2021 06:03:12 GMT + etag: '"01777162BF8FC341F2955D9B2E9185D6AE6869885D613C15A277CDDA0A452742"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0ddf43af-1b24-417f-a3ca-3334f6383dc1 + x-requestid: 8c8b25f6-80dc-453c-bfb7-e9a7b299522d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 - 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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 response: body: - string: !!binary | - H4sIAAAAAAAEAH2OTU7EMAxG75L1ZJSfJm2zQ3AABMMCdsY1nUhtKiXuAo3m7iQVbNlYn+33LN9E - nEQQAGjVZJzsPy3JDp2RA1gnsfO+H1CPRJM4CcwETNNTLZe40htjdY0yWionjb5oH5wNbjh7o53S - 9qM6CxR+QI5b+lfrglJnPfbej80qDLyXir3sKcU0t9G+rpC/RbgJ3hgWEbQ6iS+IS/0tqAYgUilH - juk5b3M+2oaljd+JXxky/9IICWn5c4+Lj1fIgEy5hfnY3O8/52SU2CIBAAA= + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 534541c9-29d7-4662-aac6-a05e77175566 + apim-request-id: d0994a65-7dc7-4ad8-b155-cb498812a64b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:01 GMT - etag: '"1579913325B699A84E1BFFFE8CDB7756021CE992EB9312529DA7285B6D0152D2"' + date: Wed, 02 Jun 2021 06:03:13 GMT + etag: '"01777162BF8FC341F2955D9B2E9185D6AE6869885D613C15A277CDDA0A452742"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 534541c9-29d7-4662-aac6-a05e77175566 + x-requestid: d0994a65-7dc7-4ad8-b155-cb498812a64b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 - 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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 response: body: - string: !!binary | - H4sIAAAAAAAEAH2OTU7EMAxG7+J1M8pPk7bZITgAgmEBO+OaTqQ2lVJ3gUZzd9IRbNlY9uf3LF8h - jRABkZwerVfdp2PVkreqR+cVtSF0PZmBeYQGqDAKj0+1nNPCb0LVtdoapb2y5mxC9C76/hSs8dq4 - j+rMuMkDSVrzv1obtT6ZoQthOKxNUPatYi97zilPR7QvC5ZviFeQVXCGaHQDX5jm+lvUB0DEW5X6 - BlJ+LutU7qNtIK/yzvIqWOQXJszE8596P/h4wYIkXI5mOjbWhNvtB7QKRQEjAQAA + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 65341b95-8d26-4f69-adad-c176ba77f280 + apim-request-id: f770f295-b05a-47f5-a6a4-a76008bd6ed7 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:03 GMT - etag: '"56B2858E38D3E6A315305798D1CE42D16055B963DB7BDE17F10DAE5ADC2DFA45"' + date: Wed, 02 Jun 2021 06:03:14 GMT + etag: '"01777162BF8FC341F2955D9B2E9185D6AE6869885D613C15A277CDDA0A452742"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 65341b95-8d26-4f69-adad-c176ba77f280 + x-requestid: f770f295-b05a-47f5-a6a4-a76008bd6ed7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 - 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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 response: body: - string: !!binary | - H4sIAAAAAAAEAH2NvW7DMAyE30VzFFCSJdvaivYBAiQd2o2l2VSAfwCJHoIg717ZbdcuBI93H++u - 0qCiQiQHg/W6/XCsG/JWd+i8piaEtiPTMw/qoCgzCg8vdVzSxK9ClbVgjQavrbmYEL2LvjsGazwY - 916ZEYs8kaRl/hdrIsDR9G0I/UYVQVlLjZ1Xolq+15d1mjDfVLwrWQRHFQ0c1CemsdoRtkANl/Jz - T/MpL9e86yrnRd5YzoJZftOEM/H4x+4fn78wIwnnbblujm3h8fgGEEmmMSYBAAA= + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 041f6ecd-7947-4564-ad61-62053e332604 + apim-request-id: 20d3b6a6-bc8b-43b0-aee3-2f6ce5b844a9 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:04 GMT - etag: '"B7C50B6DB65D494A7F32664F03657372EC888F8E2C62CA365DBE0CE357A1842F"' + date: Wed, 02 Jun 2021 06:03:15 GMT + etag: '"01777162BF8FC341F2955D9B2E9185D6AE6869885D613C15A277CDDA0A452742"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 041f6ecd-7947-4564-ad61-62053e332604 + x-requestid: 20d3b6a6-bc8b-43b0-aee3-2f6ce5b844a9 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 +- 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/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 + response: + body: + string: '{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' + headers: + apim-request-id: 69f6428d-15d4-4344-aab9-760a1b107b26 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:03:16 GMT + etag: '"3091FFDCE06E30B3114778536BF19033AE8AF2D3BA2A2BDCB75A260E956A67B6"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 69f6428d-15d4-4344-aab9-760a1b107b26 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/fc1e5b81-aa8e-414a-892c-6ac5e339c706.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/fc1e5b81-aa8e-414a-892c-6ac5e339c706.txt","createdDateTimeUtc":"2021-06-02T06:03:09.9387743Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.6695412Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed40-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/c419d9ff-8718-4cbc-9b32-9324c5e429ba.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/c419d9ff-8718-4cbc-9b32-9324c5e429ba.txt","createdDateTimeUtc":"2021-06-02T06:03:09.9201308Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.5831271Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/adab7ddc-a099-4cfd-8f83-0946fe1b3004.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/adab7ddc-a099-4cfd-8f83-0946fe1b3004.txt","createdDateTimeUtc":"2021-06-02T06:03:09.9024504Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.2766947Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/989d782f-6305-408d-a414-b303feb68eb2.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/989d782f-6305-408d-a414-b303feb68eb2.txt","createdDateTimeUtc":"2021-06-02T06:03:09.8505588Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.6099157Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/87d7e488-7cc0-4d3c-a63b-2950930c31da.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/87d7e488-7cc0-4d3c-a63b-2950930c31da.txt","createdDateTimeUtc":"2021-06-02T06:03:09.83757Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.6538108Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/70df5c18-5bd8-4797-8308-f61dddba6c06.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/70df5c18-5bd8-4797-8308-f61dddba6c06.txt","createdDateTimeUtc":"2021-06-02T06:03:09.8318408Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.2097413Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/663722b5-731f-4800-a067-ea0cbd3aa0c4.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/663722b5-731f-4800-a067-ea0cbd3aa0c4.txt","createdDateTimeUtc":"2021-06-02T06:03:09.6634927Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.8401042Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/4935ada1-4ba1-4978-86d2-c51ec66ff530.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/4935ada1-4ba1-4978-86d2-c51ec66ff530.txt","createdDateTimeUtc":"2021-06-02T06:03:09.6555908Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.2256067Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed39-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/1dddcedf-8df7-41c8-a817-45caf0d03965.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/1dddcedf-8df7-41c8-a817-45caf0d03965.txt","createdDateTimeUtc":"2021-06-02T06:03:09.6487259Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.7396442Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed38-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/1c8c4f22-7aad-4c28-b80d-4d43f3ef3976.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/1c8c4f22-7aad-4c28-b80d-4d43f3ef3976.txt","createdDateTimeUtc":"2021-06-02T06:03:09.6379479Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.2234843Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed37-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 6012d6bf-712f-4c75-baa0-5a8e7c1ba869 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:03:16 GMT + etag: '"80D195E7C6F796CC0BBACC4512A0A2C0F16B14EA63099A8A0450AD49A64716CB"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6012d6bf-712f-4c75-baa0-5a8e7c1ba869 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68/documents?$skip=0 - request: body: null headers: @@ -843,29 +887,27 @@ 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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed/documents?$skip=0&statuses=NotStarted + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68/documents?$skip=0&statuses=NotStarted response: body: - string: !!binary | - H4sIAAAAAAAEAKtWKkvMKU1VsoqOrQUAQupARAwAAAA= + string: '{"value":[]}' headers: - apim-request-id: 1bc99e62-e581-49ea-8963-cccac5cca2a6 + apim-request-id: 2e04a1ea-bcae-47da-9061-1da5b5312d3f cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:04 GMT - etag: '"9768B31A4359C1CBE9EE893EA6230B3FC6A39B326922F28A391DFA2D4FA1E1BE"' + date: Wed, 02 Jun 2021 06:03:16 GMT + etag: '"7C73669CAA244920107D2F3D5A76BB14700186E5C93524EF0D1ABBAA5A81F5B5"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1bc99e62-e581-49ea-8963-cccac5cca2a6 + x-requestid: 2e04a1ea-bcae-47da-9061-1da5b5312d3f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed/documents?$skip=0&statuses=NotStarted + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68/documents?$skip=0&statuses=NotStarted - request: body: null headers: @@ -874,41 +916,27 @@ 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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed/documents?$skip=0&statuses=Succeeded + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68/documents?$skip=0&statuses=Succeeded response: body: - string: !!binary | - H4sIAAAAAAAEAM2Xz47UOBDG36XP456yXWW7+obgAZCAy6724D9lpsUwPUoygIR4961G4sJlY6KN - Ogcrsezkq/rlK9vfD1/y44scTn9/Pzzn5eFwOjwsy/N8ur//ND1PeTnX8ngpx59NvUxy/Hp+apev - 8/FJlvslTx9lSa1QieCNYxsNEjiTsIBBW52l3Dqiv+/cbWZuptUSDBapJosFE6mRJN9dy3xcvi2H - u8N8eZmqvB1WM0+1VBCOLAZjbiqld8NOP5pzbz0GT73QiJQ6SV6kvdHm/fmzfFiqSnLgrAEyzr63 - 4UR4AjiCZW9D/EvnPOZ5eVWX8+Xpv6b5IzqCCD+nzUteXmYd9+6lVpEmTTuXi3bIrHfP0+XjJLMO - sHeHc9NuAIjZYTZ6A781v65rCA95ynWR6fXDlZbOdPHH3f9MW6KzNVtnoLh05eBNttxNqLVYQmJo - shPtASlraPsT8ZHZQwA/SpsgJeK0hTbfIu3M0VKBrin2pIbKOiiKN5VT8E1KcFx3oj0gZTXthBgc - ujHaTn8Sy5qdLbTTTdLGYElzbJoqNFg9mEw+mmQdQiFmdmUv2uulrKat7w7O8zBtxMiwydvxFmmn - lhyz2siCRoxA3ZSsWFJuQcugr5qsnWgPSFlP2ye16bi3tf57u4l2uEXaUapaJykCrysmQkJTUu3G - luwbCvXU0060B6QM0NaS7AfXbXdMkcDzpkpON0mbk1Loohth0fKpe1iTSGMPcnUaInSKe9FeL2U1 - bVJjYxr2tg9BE7eJNt4i7cAllESkS6TEKwxrGKSb2EVsr1rPot2J9oCU9bQhkR22ttdcgdt0APO3 - CJts75AiGh9z0UEauT7pQRejboEtpcJuJ9gDUgZgOwo8TluPXxsLubtF2g6tNNSaWWOqBkV0H9zR - Gk+a5Fg6lYA70R6Qspo2svPwB94OgIk20bZ/QvufH/8CyZ1dj1YTAAA= - headers: - apim-request-id: f61992cd-2e8a-42a0-b29a-19c844aade1a + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/fc1e5b81-aa8e-414a-892c-6ac5e339c706.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/fc1e5b81-aa8e-414a-892c-6ac5e339c706.txt","createdDateTimeUtc":"2021-06-02T06:03:09.9387743Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.6695412Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed40-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/c419d9ff-8718-4cbc-9b32-9324c5e429ba.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/c419d9ff-8718-4cbc-9b32-9324c5e429ba.txt","createdDateTimeUtc":"2021-06-02T06:03:09.9201308Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.5831271Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/adab7ddc-a099-4cfd-8f83-0946fe1b3004.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/adab7ddc-a099-4cfd-8f83-0946fe1b3004.txt","createdDateTimeUtc":"2021-06-02T06:03:09.9024504Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.2766947Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/989d782f-6305-408d-a414-b303feb68eb2.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/989d782f-6305-408d-a414-b303feb68eb2.txt","createdDateTimeUtc":"2021-06-02T06:03:09.8505588Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.6099157Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/87d7e488-7cc0-4d3c-a63b-2950930c31da.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/87d7e488-7cc0-4d3c-a63b-2950930c31da.txt","createdDateTimeUtc":"2021-06-02T06:03:09.83757Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.6538108Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/70df5c18-5bd8-4797-8308-f61dddba6c06.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/70df5c18-5bd8-4797-8308-f61dddba6c06.txt","createdDateTimeUtc":"2021-06-02T06:03:09.8318408Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.2097413Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/663722b5-731f-4800-a067-ea0cbd3aa0c4.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/663722b5-731f-4800-a067-ea0cbd3aa0c4.txt","createdDateTimeUtc":"2021-06-02T06:03:09.6634927Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.8401042Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed3a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/4935ada1-4ba1-4978-86d2-c51ec66ff530.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/4935ada1-4ba1-4978-86d2-c51ec66ff530.txt","createdDateTimeUtc":"2021-06-02T06:03:09.6555908Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.2256067Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed39-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/1dddcedf-8df7-41c8-a817-45caf0d03965.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/1dddcedf-8df7-41c8-a817-45caf0d03965.txt","createdDateTimeUtc":"2021-06-02T06:03:09.6487259Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.7396442Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed38-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0e06b6e9-7fc3-48cd-ad2d-dafc21c8b093/1c8c4f22-7aad-4c28-b80d-4d43f3ef3976.txt","sourcePath":"https://redacted.blob.core.windows.net/src6043b8d7-f0c6-4f5e-ab4d-59fcf1b8be89/1c8c4f22-7aad-4c28-b80d-4d43f3ef3976.txt","createdDateTimeUtc":"2021-06-02T06:03:09.6379479Z","lastActionDateTimeUtc":"2021-06-02T06:03:16.2234843Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed37-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 4647f793-2be4-499f-b0a2-3843270b5d36 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:04 GMT - etag: '"9AEAE19FEDD1850C457451245DDA1481CF5E17357553C8E9D71FB8FCB7C0C2FD"' + date: Wed, 02 Jun 2021 06:03:16 GMT + etag: '"80D195E7C6F796CC0BBACC4512A0A2C0F16B14EA63099A8A0450AD49A64716CB"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f61992cd-2e8a-42a0-b29a-19c844aade1a + x-requestid: 4647f793-2be4-499f-b0a2-3843270b5d36 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed/documents?$skip=0&statuses=Succeeded + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68/documents?$skip=0&statuses=Succeeded - request: body: null headers: @@ -917,27 +945,25 @@ 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/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed/documents?$skip=0&statuses=Failed + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68/documents?$skip=0&statuses=Failed response: body: - string: !!binary | - H4sIAAAAAAAEAKtWKkvMKU1VsoqOrQUAQupARAwAAAA= + string: '{"value":[]}' headers: - apim-request-id: 11adf90c-08b6-4c35-80d6-e29dda490d9b + apim-request-id: 608a9eb1-ca76-4e3f-af38-d9d280ee590a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:04 GMT - etag: '"9768B31A4359C1CBE9EE893EA6230B3FC6A39B326922F28A391DFA2D4FA1E1BE"' + date: Wed, 02 Jun 2021 06:03:16 GMT + etag: '"7C73669CAA244920107D2F3D5A76BB14700186E5C93524EF0D1ABBAA5A81F5B5"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 11adf90c-08b6-4c35-80d6-e29dda490d9b + x-requestid: 608a9eb1-ca76-4e3f-af38-d9d280ee590a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/aac30d25-7b3e-4c52-8a35-c46678c19eed/documents?$skip=0&statuses=Failed + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dfd67e83-c77f-4514-9367-e82b93bc4f68/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 index 2ab303583e90..e9e8abf5d422 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2b1b43b1-1eae-44e0-9e31-478cbba2f02f?restype=container + uri: https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT etag: - - '"0x8D91C790AD61228"' + - '"0x8D9258C1E02F2A1"' last-modified: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 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: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2b1b43b1-1eae-44e0-9e31-478cbba2f02f/33814b21-128b-4519-a3f6-981f53524e31.txt + uri: https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/0eed118f-a16a-4332-a297-0a03153df716.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT etag: - - '"0x8D91C790AE2EFDE"' + - '"0x8D9258C1E0C06EF"' last-modified: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 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: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2b1b43b1-1eae-44e0-9e31-478cbba2f02f/b7882b88-b694-4f1e-b141-353402d4f983.txt + uri: https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/1bdfd5dd-b2b8-407d-888e-deb6b0ccdd6a.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT etag: - - '"0x8D91C790AEA1D1D"' + - '"0x8D9258C1E12E5FA"' last-modified: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 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: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2b1b43b1-1eae-44e0-9e31-478cbba2f02f/765e3a7f-f390-46f7-9203-b4927e216801.txt + uri: https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/b8f5caa6-1f09-490c-8bb7-019b036dc150.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT etag: - - '"0x8D91C790AF25BFB"' + - '"0x8D9258C1E1976CE"' last-modified: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:18 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: - - Fri, 21 May 2021 16:54:05 GMT + - Wed, 02 Jun 2021 06:03:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2b1b43b1-1eae-44e0-9e31-478cbba2f02f/452376d2-549b-4dbe-93e2-550b414357db.txt + uri: https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/fe2f7a26-cb9f-43e1-b48b-9735c6a557b7.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT etag: - - '"0x8D91C790AFB8577"' + - '"0x8D9258C1E2055E2"' last-modified: - - Fri, 21 May 2021 16:54:05 GMT + - Wed, 02 Jun 2021 06:03:18 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: - - Fri, 21 May 2021 16:54:05 GMT + - Wed, 02 Jun 2021 06:03:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2b1b43b1-1eae-44e0-9e31-478cbba2f02f/ef514455-3a98-4261-8b97-99ddec0b9ddc.txt + uri: https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/9297f355-21b9-4bcb-921c-785e202a068b.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT etag: - - '"0x8D91C790B074764"' + - '"0x8D9258C1E275C02"' last-modified: - - Fri, 21 May 2021 16:54:05 GMT + - Wed, 02 Jun 2021 06:03:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:05 GMT + - Wed, 02 Jun 2021 06:03:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf8567292-3483-4ac8-aa2b-8f1450a41dd4?restype=container + uri: https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:04 GMT + - Wed, 02 Jun 2021 06:03:17 GMT etag: - - '"0x8D91C790B23F926"' + - '"0x8D9258C1E4125C1"' last-modified: - - Fri, 21 May 2021 16:54:05 GMT + - Wed, 02 Jun 2021 06:03:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2b1b43b1-1eae-44e0-9e31-478cbba2f02f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf8567292-3483-4ac8-aa2b-8f1450a41dd4?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -344,247 +344,291 @@ interactions: body: string: '' headers: - apim-request-id: dae24601-17ed-4cbc-8540-a630a90d138b + apim-request-id: 634b2851-9480-4a3e-9cc4-91ca7e2a1a47 content-length: '0' - date: Fri, 21 May 2021 16:54:05 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:03:17 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: dae24601-17ed-4cbc-8540-a630a90d138b + x-requestid: 634b2851-9480-4a3e-9cc4-91ca7e2a1a47 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFEiyZBfainYuAtQZko2m5VSAbQESPRRG/j2ygWTOQhzv+I4r - hB4cdBLrYegroZtOCtNIEh91b4SmTunG2sEYggNQ8si+/y6jDZM/MxVWS62EtEKrVtXOGiftsVZG - yaq5FmbEzJ/EIc5vYjuVGXnJ5ewn8i9jKl83d5kmTP/gVuDIOIKTBxgwjCXdZF6IfM67DvMpxVt6 - rnPki39VbQ7hTH58onvf1x8mJPZpE7c9ud8f0oAPyiMBAAA= + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:19.0432779Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: fc9226e8-b90b-4eb5-86e7-a4e69ddad377 + apim-request-id: 891dd7f4-c35a-4e39-beb2-532ff5e3df9e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:05 GMT - etag: '"A920A1934BE6F944DB41A341E64A0AAB75A68782CAA4812C0D83719C4225EBA3"' + date: Wed, 02 Jun 2021 06:03:23 GMT + etag: '"96BAC83094EADA3276887BAA88C1326376DCFF112AD08910A2406C3894300606"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 891dd7f4-c35a-4e39-beb2-532ff5e3df9e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a +- 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/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a + response: + body: + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:19.0432779Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: bd5fe882-2df6-49be-8506-381881c1f13a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:03:24 GMT + etag: '"96BAC83094EADA3276887BAA88C1326376DCFF112AD08910A2406C3894300606"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: fc9226e8-b90b-4eb5-86e7-a4e69ddad377 + x-requestid: bd5fe882-2df6-49be-8506-381881c1f13a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a - request: body: null headers: - Accept: - - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFEiyZBfainYuAtQZko2m5VSAbQESPRRG/j2ygWTOQhzv+I4r - hB4cdBLrYegroZtOCtNIEh91b4SmTunG2sEYggNQ8si+/y6jDZM/MxVWS62EtEKrVtXOGiftsVZG - yaq5FmbEzJ/EIc5vYjuVGXnJ5ewn8i9jKl83d5kmTP/gVuDIOIKTBxgwjCXdZF6IfM67DvMpxVt6 - rnPki39VbQ7hTH58onvf1x8mJPZpE7c9ud8f0oAPyiMBAAA= + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: c5783b03-03e6-4eac-ac68-4b9394e21ce3 + apim-request-id: 9af80384-702b-4702-a199-858aa2248ae8 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:05 GMT - etag: '"A920A1934BE6F944DB41A341E64A0AAB75A68782CAA4812C0D83719C4225EBA3"' + date: Wed, 02 Jun 2021 06:03:25 GMT + etag: '"7F8767EBD4C71D7A322A998BF6BB089937AD42AA126E6AB9435AAAC30C94153A"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c5783b03-03e6-4eac-ac68-4b9394e21ce3 + x-requestid: 9af80384-702b-4702-a199-858aa2248ae8 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a - 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/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/4VzFFCKZKfainYOCjQd2o2m5VSAbQESMxRB/r2SgXTtQhx5fHc3 - iCN4GJC6aRoPyvQDKtsjq2M3WmV40KZ3brKWYQecA0kYX+s4xyV8CFfWoNEKnTL6rDvvrEe377TV - eOi/KjNTkWeWmNb/saOzFvGpYUVIrqX+nZK8C+Va267XZaH8A/4GkoRm8G4HE8W5uh6bzxxK2XRc - 33K65Me6JvkMf1GNY1o5zA90y3v5pkwsITdx2Zz7/Rf51BG4JAEAAA== + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 0f5ce218-8869-414d-ab08-c4a56af37058 + apim-request-id: 7d3a10f6-8cef-496f-a2a4-417e53381d0a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:06 GMT - etag: '"A6AB774434ECA82284950AAF239DA0EC18F12B0749D0BF9D284B7D19D57344AF"' + date: Wed, 02 Jun 2021 06:03:26 GMT + etag: '"7F8767EBD4C71D7A322A998BF6BB089937AD42AA126E6AB9435AAAC30C94153A"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0f5ce218-8869-414d-ab08-c4a56af37058 + x-requestid: 7d3a10f6-8cef-496f-a2a4-417e53381d0a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a - 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/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a response: body: - string: !!binary | - H4sIAAAAAAAEAIWPzU7EMAyE38XnzSpJ8wO5IXgABMsBbq6bdiO1qZS4B7Tadyet4MzFGnvmG8k3 - SAME6CW6cRw6oX0vhfGSxIMbjNDUK+2tHY0hOAGViByHlzYuaYkfTI3VUishrdDqolywJkh7dsoo - 2fmvxsxY+Yk4rfk/zJ+tNo+uMztWGXmrLfe25ZzytJ+2ZcHyDeEGvDLOEOwJRkxzbC/I3SeKtR46 - 5deyTuVYWyqv/Bn5nbHwb5gwU5z/0KPv+YoFiWPZxXQ49/sPckHd7iEBAAA= + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: db4ca4e7-c103-4c92-b243-e911e60a798d + apim-request-id: 049e7334-e493-4689-9aa6-9ea3fe682054 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:07 GMT - etag: '"60F23489D0A3CF011A5D24EC2FAE15B1D73BD17625B86AE43C9CFFE7D29D0E45"' + date: Wed, 02 Jun 2021 06:03:27 GMT + etag: '"7F8767EBD4C71D7A322A998BF6BB089937AD42AA126E6AB9435AAAC30C94153A"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: db4ca4e7-c103-4c92-b243-e911e60a798d + x-requestid: 049e7334-e493-4689-9aa6-9ea3fe682054 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a - 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/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a response: body: - string: !!binary | - H4sIAAAAAAAEAIWPzU7EMAyE38XnzSpJ8wO5IXgABMsBbq6bdiO1qZS4B7Tadyet4MzFGnvmG8k3 - SAME6CW6cRw6oX0vhfGSxIMbjNDUK+2tHY0hOAGViByHlzYuaYkfTI3VUishrdDqolywJkh7dsoo - 2fmvxsxY+Yk4rfk/zJ+tNo+uMztWGXmrLfe25ZzytJ+2ZcHyDeEGvDLOEOwJRkxzbC/I3SeKtR46 - 5deyTuVYWyqv/Bn5nbHwb5gwU5z/0KPv+YoFiWPZxXQ49/sPckHd7iEBAAA= + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 50544cc3-d70d-4f73-afd9-b6282c9824b6 + apim-request-id: 6162960d-68dd-432f-80a9-5cd005494b30 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:08 GMT - etag: '"60F23489D0A3CF011A5D24EC2FAE15B1D73BD17625B86AE43C9CFFE7D29D0E45"' + date: Wed, 02 Jun 2021 06:03:28 GMT + etag: '"7F8767EBD4C71D7A322A998BF6BB089937AD42AA126E6AB9435AAAC30C94153A"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 50544cc3-d70d-4f73-afd9-b6282c9824b6 + x-requestid: 6162960d-68dd-432f-80a9-5cd005494b30 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a - 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/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a response: body: - string: !!binary | - H4sIAAAAAAAEAIWPzU7EMAyE38XnzSpJ8wO5IXgABMsBbq6bdiO1qZS4B7Tadyet4MzFGnvmG8k3 - SAME6CW6cRw6oX0vhfGSxIMbjNDUK+2tHY0hOAGViByHlzYuaYkfTI3VUishrdDqolywJkh7dsoo - 2fmvxsxY+Yk4rfk/zJ+tNo+uMztWGXmrLfe25ZzytJ+2ZcHyDeEGvDLOEOwJRkxzbC/I3SeKtR46 - 5deyTuVYWyqv/Bn5nbHwb5gwU5z/0KPv+YoFiWPZxXQ49/sPckHd7iEBAAA= + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: db54ba60-2698-405e-b712-b5d349ce3a92 + apim-request-id: 1c979a73-baaf-4d2b-9b24-d1eb7f6459bf cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:09 GMT - etag: '"60F23489D0A3CF011A5D24EC2FAE15B1D73BD17625B86AE43C9CFFE7D29D0E45"' + date: Wed, 02 Jun 2021 06:03:29 GMT + etag: '"7F8767EBD4C71D7A322A998BF6BB089937AD42AA126E6AB9435AAAC30C94153A"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: db54ba60-2698-405e-b712-b5d349ce3a92 + x-requestid: 1c979a73-baaf-4d2b-9b24-d1eb7f6459bf status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a - 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/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a response: body: - string: !!binary | - H4sIAAAAAAAEAIWMy24CMQxF/yVrgpJMHpAdoh9QCbpodx4nA5HmISWeBUL8O8moXXdj2ffc4ydL - gXnWC7DDEDquXC+4dgL5wQbNFfZSOWMGrZHtGOYIFMNHHdc0xS/C6iqhJBeGK3mV1hvthdlbqaXo - 3E91Rih0QkrL/J/m9kbpo+100woBraX2LitijCGGFq7TBPnB/JPRQjAyb3ZsgDRW6kXjtVvKFqf5 - My+3vJ0VzQt9R7oQZPotI8wYxz91+3e+QwakmNtya0R25vV6AxVYhL0lAQAA + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 2830e823-0fcb-4b16-a53b-27499c291c4a + apim-request-id: 26d808e3-af27-4ce3-a7df-62d9fa02d8ff cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:10 GMT - etag: '"AEAEF15EB866D8976B981761901B2AD0AE4C7CCF0F404E0E3CE4E4911A67CF90"' + date: Wed, 02 Jun 2021 06:03:30 GMT + etag: '"7F8767EBD4C71D7A322A998BF6BB089937AD42AA126E6AB9435AAAC30C94153A"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2830e823-0fcb-4b16-a53b-27499c291c4a + x-requestid: 26d808e3-af27-4ce3-a7df-62d9fa02d8ff status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a +- 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/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a + response: + body: + string: '{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: 554422dd-be94-4bee-95b5-92519476a0d8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:03:31 GMT + etag: '"1A629BE17C75FCE4CBAC86BE311E0F9714A9214B63035BFE8D7582910747CE6A"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 554422dd-be94-4bee-95b5-92519476a0d8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/fe2f7a26-cb9f-43e1-b48b-9735c6a557b7.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/fe2f7a26-cb9f-43e1-b48b-9735c6a557b7.txt","createdDateTimeUtc":"2021-06-02T06:03:25.1457046Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.2500807Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed45-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/1bdfd5dd-b2b8-407d-888e-deb6b0ccdd6a.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/1bdfd5dd-b2b8-407d-888e-deb6b0ccdd6a.txt","createdDateTimeUtc":"2021-06-02T06:03:25.0278109Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.2142771Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed42-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/b8f5caa6-1f09-490c-8bb7-019b036dc150.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/b8f5caa6-1f09-490c-8bb7-019b036dc150.txt","createdDateTimeUtc":"2021-06-02T06:03:25.018946Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.2577221Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed44-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/9297f355-21b9-4bcb-921c-785e202a068b.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/9297f355-21b9-4bcb-921c-785e202a068b.txt","createdDateTimeUtc":"2021-06-02T06:03:25.0129333Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.255855Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed43-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/0eed118f-a16a-4332-a297-0a03153df716.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/0eed118f-a16a-4332-a297-0a03153df716.txt","createdDateTimeUtc":"2021-06-02T06:03:24.9986396Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.2499741Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed41-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: ed112cba-ac42-44d2-81a3-69fd4dfa1ff6 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 06:03:31 GMT + etag: '"462B3C8DC38C214D57008A3BE3FC3D5C37276C1E027C883B4ADC98E278ADB9B8"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ed112cba-ac42-44d2-81a3-69fd4dfa1ff6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a/documents?$skip=0 - request: body: null headers: @@ -593,35 +637,25 @@ 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/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c/documents?$skip=0&$orderBy=createdDateTimeUtc%20asc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a/documents?$skip=0&$orderBy=createdDateTimeUtc%20asc response: body: - string: !!binary | - H4sIAAAAAAAEAM3TzY7TMBAH8HfJuZPO2OOv3hA8ABLLBcTBH+NtxdJUicsirfbd8SJx4UJDRbU5 - TBzLI/+dX/I0fI8PZxl2n5+GU2z7YTfsWzstu+3263yaYzvk9DCl8VfJ0yzj4+FYpsdlPErbtjjf - S6veWKeCAs1eA8fsIUaVwFdig5GpFN6yUdrZosBwSMAlCQQt/dFgYmJtXElj+9GGzbBM5znL+9Vp - ljmrRIl1IiCJAsyCEEQTsPM5pagqqromSp4lNinverk7fJOPLfdIChUBGlB0R3ZneIduRKuRSH3q - PQ9xaW9yO0zHv7QRjuxDIGNe2pYW23np6z6ccxYpUvpkm/qELH10mqf7WZa+gDbDofRpRHRRcYY+ - wD/K7+vlCPs4x9xkfrt/0eqdyj1v/rN2ct6r5D0kGxi4kkAiJtBGM6rCNXh9I+0VUS7Xdoy9fb22 - 8c5dpS2vUVtrT5z6eUn5/kMZChB1tRA8VaNNT63pRtorolyu7dEHZVdrB20M8TXa6TVqO2tER1eh - 6oDAtjoICjUkDsqJIuvxVtorolyuHUywVq/VNojakr9Gu7xGban9G2ZjQMfggZUl8Cn09xxKkYyp - 3/KNtFdEuVhb9x3UWm0a0aD3zl6jXf9F+8vzTx+ZKwWxCQAA - headers: - apim-request-id: 03b7cc26-a840-45d0-a7a2-467e6a274991 + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/0eed118f-a16a-4332-a297-0a03153df716.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/0eed118f-a16a-4332-a297-0a03153df716.txt","createdDateTimeUtc":"2021-06-02T06:03:24.9986396Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.2499741Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed41-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/9297f355-21b9-4bcb-921c-785e202a068b.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/9297f355-21b9-4bcb-921c-785e202a068b.txt","createdDateTimeUtc":"2021-06-02T06:03:25.0129333Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.255855Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed43-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/b8f5caa6-1f09-490c-8bb7-019b036dc150.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/b8f5caa6-1f09-490c-8bb7-019b036dc150.txt","createdDateTimeUtc":"2021-06-02T06:03:25.018946Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.2577221Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed44-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/1bdfd5dd-b2b8-407d-888e-deb6b0ccdd6a.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/1bdfd5dd-b2b8-407d-888e-deb6b0ccdd6a.txt","createdDateTimeUtc":"2021-06-02T06:03:25.0278109Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.2142771Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed42-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target0a509feb-e003-4716-a6ca-c4f6fe34e108/fe2f7a26-cb9f-43e1-b48b-9735c6a557b7.txt","sourcePath":"https://redacted.blob.core.windows.net/srcccb62f3f-e79c-4a7f-9dea-f3c11090c7e3/fe2f7a26-cb9f-43e1-b48b-9735c6a557b7.txt","createdDateTimeUtc":"2021-06-02T06:03:25.1457046Z","lastActionDateTimeUtc":"2021-06-02T06:03:32.2500807Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed45-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 315bb277-13c6-4b55-88d6-027bef2c8224 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:10 GMT - etag: '"8FB28553A42A61E8E8F6ED668AA4E8B0F19A458EBBBBCB86013D009CBD6151F2"' + date: Wed, 02 Jun 2021 06:03:31 GMT + etag: '"9908DBB24AFA0EDF77941B00288EE83D932C37E16E87A3072D15592A445B84D5"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 03b7cc26-a840-45d0-a7a2-467e6a274991 + x-requestid: 315bb277-13c6-4b55-88d6-027bef2c8224 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b0a6ffd3-27b0-470c-86d4-2cb12755f44c/documents?$skip=0&$orderBy=createdDateTimeUtc%20asc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9a0efbe3-c610-4f42-ab6f-63079aa69e3a/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 index 706450f76e13..a9d8b1f273a5 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7f702685-52c8-4330-a0d8-f984314dff4e?restype=container + uri: https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:10 GMT + - Wed, 02 Jun 2021 06:03:32 GMT etag: - - '"0x8D91C790ED58983"' + - '"0x8D9258C2716CDE8"' last-modified: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 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: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7f702685-52c8-4330-a0d8-f984314dff4e/440646ed-932d-4882-a5e8-14c48f09060e.txt + uri: https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/e5c27755-9e08-4d3b-97be-bc2d254ecec2.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:10 GMT + - Wed, 02 Jun 2021 06:03:32 GMT etag: - - '"0x8D91C790EDF1B4B"' + - '"0x8D9258C271F713D"' last-modified: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 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: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7f702685-52c8-4330-a0d8-f984314dff4e/36fcb036-88fd-4064-afff-e34491b90a7f.txt + uri: https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/a034eb0e-c1d8-4075-9bdc-414b65d4bea5.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:10 GMT + - Wed, 02 Jun 2021 06:03:32 GMT etag: - - '"0x8D91C790EE9CBA1"' + - '"0x8D9258C2727D738"' last-modified: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 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: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7f702685-52c8-4330-a0d8-f984314dff4e/cbdc9a8c-cd51-4a73-9bf3-0e233d4dd47c.txt + uri: https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/95467cb7-df88-4926-8f07-ef8f8c841b44.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:10 GMT + - Wed, 02 Jun 2021 06:03:32 GMT etag: - - '"0x8D91C790EF3DF9F"' + - '"0x8D9258C272E6815"' last-modified: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 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: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7f702685-52c8-4330-a0d8-f984314dff4e/1770953b-37ce-453c-82b0-a86ced222467.txt + uri: https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/ab792086-f0d5-4ff5-a7de-d099d842878d.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:10 GMT + - Wed, 02 Jun 2021 06:03:32 GMT etag: - - '"0x8D91C790EFBD04F"' + - '"0x8D9258C27360A91"' last-modified: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 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: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7f702685-52c8-4330-a0d8-f984314dff4e/754dc674-4922-4816-94a4-5a9dfe4d7e4f.txt + uri: https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/4586d6f9-8f73-46cb-98b9-d717ce67eccb.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:10 GMT + - Wed, 02 Jun 2021 06:03:32 GMT etag: - - '"0x8D91C790F056F1C"' + - '"0x8D9258C273DAD12"' last-modified: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target2a905aab-c026-4baf-a30a-5f494c219f7e?restype=container + uri: https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:11 GMT + - Wed, 02 Jun 2021 06:03:32 GMT etag: - - '"0x8D91C790F2683ED"' + - '"0x8D9258C275E9E31"' last-modified: - - Fri, 21 May 2021 16:54:12 GMT + - Wed, 02 Jun 2021 06:03:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,14 +326,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7f702685-52c8-4330-a0d8-f984314dff4e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2a905aab-c026-4baf-a30a-5f494c219f7e?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '484' Content-Type: - application/json User-Agent: @@ -344,407 +344,318 @@ interactions: body: string: '' headers: - apim-request-id: e270bb0e-feb0-4b59-991a-2ad66705d63a + apim-request-id: 9d99be8e-6c24-4f67-9034-8e18044cc185 content-length: '0' - date: Fri, 21 May 2021 16:54:11 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + date: Wed, 02 Jun 2021 06:03:33 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e270bb0e-feb0-4b59-991a-2ad66705d63a + x-requestid: 9d99be8e-6c24-4f67-9034-8e18044cc185 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFEiyncbaimYOAiQd2o2l6ESAbQESPQRB/r2SgXTuQhzv+I4P - CB4c/LQa0VqjDJNX7b43CofmTfXUkqbBs98TbIASo7A/lHEJE38KFdbqwulOWXMxO9e1ztht0+um - 25nvwoyY5Z0kxPmfWN9ULAvKksvdMcpZMJW31V2mCdMd3AMkCo7g9AYGDGNJq8wLEee86jCfUrym - 1zpH+eK/quoQzsTjC137Pm6YkIRTFdc1eT5/AYVgvWYkAQAA + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:34.5349114Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: ac441cdd-efea-4119-bfb1-f78f26c02626 + apim-request-id: 44577116-a73b-4d4a-9ed5-a7e13e0bde65 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:11 GMT - etag: '"8E6EB3B72540EAA672898F3A65A8890A29948D48ECC9790F88EF32A230A176B9"' + date: Wed, 02 Jun 2021 06:03:38 GMT + etag: '"97FEE195AA15E387DC6021FA56266C0EA05D49088EA96685F19BAB436EDBB7C5"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ac441cdd-efea-4119-bfb1-f78f26c02626 + x-requestid: 44577116-a73b-4d4a-9ed5-a7e13e0bde65 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - request: body: null headers: - Accept: - - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFEiyncbaimYOAiQd2o2l6ESAbQESPQRB/r2SgXTuQhzv+I4P - CB4c/LQa0VqjDJNX7b43CofmTfXUkqbBs98TbIASo7A/lHEJE38KFdbqwulOWXMxO9e1ztht0+um - 25nvwoyY5Z0kxPmfWN9ULAvKksvdMcpZMJW31V2mCdMd3AMkCo7g9AYGDGNJq8wLEee86jCfUrym - 1zpH+eK/quoQzsTjC137Pm6YkIRTFdc1eT5/AYVgvWYkAQAA + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:34.5349114Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: d970eed6-05c3-4901-88a2-8f4e047a8d82 + apim-request-id: 4fd9276d-9bd7-4c9d-af6a-4f632936b51f cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:11 GMT - etag: '"8E6EB3B72540EAA672898F3A65A8890A29948D48ECC9790F88EF32A230A176B9"' + date: Wed, 02 Jun 2021 06:03:39 GMT + etag: '"97FEE195AA15E387DC6021FA56266C0EA05D49088EA96685F19BAB436EDBB7C5"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d970eed6-05c3-4901-88a2-8f4e047a8d82 + x-requestid: 4fd9276d-9bd7-4c9d-af6a-4f632936b51f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNQW/CMAyF/4vPBCVpAzQ3BGeENHYYN89xIVLbSIk5TIj/vrQSu+5iPfv5e+8J - MYCH71YjWmuUYQqq3XVGYd9sVUctaeoDhx3BCigzCodjHZc48qdQZa2unHbKmovZeNd6Y9dNpxu3 - MdfKDFhkTxLT9D/mutpsFqwIyqPUv1OSD8Fca+frYxwx/4B/giTBAbxbQY9xqK7Xs0/EpSw6Tuec - bvm9Tkm++C9q5ggn4uGNLnmHO2Yk4TyL2+K8Xr8gQR1hJAEAAA== + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 67f9ee09-8682-4a54-bbeb-89bf49bd757d + apim-request-id: 8d306614-c7a7-4c16-b79d-900388c4282b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:12 GMT - etag: '"9738354A41C48DBBAF62398E5E7CBAD22E7D1B977A726E5BBCCFB60DBF2E5E26"' + date: Wed, 02 Jun 2021 06:03:40 GMT + etag: '"D68074201DB1077459D27DACA7A9B27FAE100488D224F67A52D9737FF334FB59"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 67f9ee09-8682-4a54-bbeb-89bf49bd757d + x-requestid: 8d306614-c7a7-4c16-b79d-900388c4282b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnZpWk6bLNDcEHIFgOcDOOWyK1qZS4B7TafyepxJmLNfbMszQ3 - iAE8fDmNaK1RhikodxmNwql/UCM50jQFDheCDigzCofnOq5x5XehylpdOT0oa67m7AfnjT31o+6H - s/mszIJFHknilv7D3Mlp7UZtG1YEZS8197qnFNPcTvu6Yv4BfwPZBBfwQwcTxoVrBd18Ii7l0DG9 - 5G3Ox+o6SJt8sLwJZmlhU6tgIl7+0OPf0zdmJOHcxHw49/svro1cYSEBAAA= + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: e7ccd4b6-e36a-428f-800d-209c13a39e8c + apim-request-id: dc597095-221d-4b61-9c43-20fdbcd24741 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:13 GMT - etag: '"60F4A9A656AD0A3C721B2A14A8B782425F0D97E8CAC3FD56D445FF602A77DFCC"' + date: Wed, 02 Jun 2021 06:03:41 GMT + etag: '"D68074201DB1077459D27DACA7A9B27FAE100488D224F67A52D9737FF334FB59"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e7ccd4b6-e36a-428f-800d-209c13a39e8c + x-requestid: dc597095-221d-4b61-9c43-20fdbcd24741 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnZpWk6bLNDcEHIFgOcDOOWyK1qZS4B7TafyepxJmLNfbMszQ3 - iAE8fDmNaK1RhikodxmNwql/UCM50jQFDheCDigzCofnOq5x5XehylpdOT0oa67m7AfnjT31o+6H - s/mszIJFHknilv7D3Mlp7UZtG1YEZS8197qnFNPcTvu6Yv4BfwPZBBfwQwcTxoVrBd18Ii7l0DG9 - 5G3Ox+o6SJt8sLwJZmlhU6tgIl7+0OPf0zdmJOHcxHw49/svro1cYSEBAAA= + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 562f78f1-2650-4970-99fd-b3d1ba30e3c8 + apim-request-id: bfbfd1fc-abd4-4dc5-ba75-237deba2d995 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:14 GMT - etag: '"60F4A9A656AD0A3C721B2A14A8B782425F0D97E8CAC3FD56D445FF602A77DFCC"' + date: Wed, 02 Jun 2021 06:03:42 GMT + etag: '"D68074201DB1077459D27DACA7A9B27FAE100488D224F67A52D9737FF334FB59"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 562f78f1-2650-4970-99fd-b3d1ba30e3c8 + x-requestid: bfbfd1fc-abd4-4dc5-ba75-237deba2d995 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/yXnzSpJk9LmhuADECwHuBnH7UZqUylxD2i1/04awZmLNfbMG8k3 - EYPw4ssqAGO01IRB2mHUEqbuQY5oUeEUKAwoTgIzAVN4ruMSV3pnrKxRlVNOGn3RvXfWa3PuRtW5 - Xn9WZoHCj8hxS/9h/bl3dtCqYYWB91Jzr3tKMc3HaV9XyN/C3wRvDIvw7iQmiAvVF9ThI1IpTcf0 - krc5t7Wm0sYfxG8MmX/DCAlp+UNb39MVMiBTPsTcnPv9B4cbfO0hAQAA + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: a145f2d3-87ec-4283-8dd7-3dfccc89f3df + apim-request-id: f2ebeef2-8d89-49fd-88be-f2c78ee67067 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:15 GMT - etag: '"21B21D842B2C90E1453C4E37EE9E43018A7D9F6DFDC5B8862F5AD7292668BAAA"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: a145f2d3-87ec-4283-8dd7-3dfccc89f3df - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c -- 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiy5R9tRfsAQZoM6cZStCvAlgGJHoog7x7ZSOcuxJF33wG8 - i+CFE9+1AjBGS03oZd31WsJQtbLHGhUOnnyH4iAwETD5jzIuYaYrY2GNKpyy0uiLbpytnTbHqleV - bfRXYSbI/IYclvgf1hw7a02r2g3LDLzmkjuvMYY4bqd1niH9CncXvDBMwtmDGCBMVF5Qm49IOe86 - xFNaxrSvJRUXvhF/MiR+hREi0vSH7n3vP5AAmdImxt15PJ5x84dKIQEAAA== - headers: - apim-request-id: ce8e244f-f6ad-43f1-ad4c-7e0969b102da - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:17 GMT - etag: '"08281595B7128FD66DA6D8811FCF850221F93ED8FCC23098FB2D5B4A057C93F9"' + date: Wed, 02 Jun 2021 06:03:44 GMT + etag: '"D68074201DB1077459D27DACA7A9B27FAE100488D224F67A52D9737FF334FB59"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ce8e244f-f6ad-43f1-ad4c-7e0969b102da + x-requestid: f2ebeef2-8d89-49fd-88be-f2c78ee67067 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiy5R9tRfsAQZoM6cZStCvAlgGJHoog7x7ZSOcuxJF33wG8 - i+CFE9+1AjBGS03oZd31WsJQtbLHGhUOnnyH4iAwETD5jzIuYaYrY2GNKpyy0uiLbpytnTbHqleV - bfRXYSbI/IYclvgf1hw7a02r2g3LDLzmkjuvMYY4bqd1niH9CncXvDBMwtmDGCBMVF5Qm49IOe86 - xFNaxrSvJRUXvhF/MiR+hREi0vSH7n3vP5AAmdImxt15PJ5x84dKIQEAAA== + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: a01e3587-13c5-4a32-aadc-e0441003eda9 + apim-request-id: 4771e491-382a-42cc-a3b2-03f638a239ae cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:18 GMT - etag: '"08281595B7128FD66DA6D8811FCF850221F93ED8FCC23098FB2D5B4A057C93F9"' + date: Wed, 02 Jun 2021 06:03:45 GMT + etag: '"D68074201DB1077459D27DACA7A9B27FAE100488D224F67A52D9737FF334FB59"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a01e3587-13c5-4a32-aadc-e0441003eda9 + x-requestid: 4771e491-382a-42cc-a3b2-03f638a239ae status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiy5R9tRfsAQZoM6cZStCvAlgGJHoog7x7ZSOcuxJF33wG8 - i+CFE9+1AjBGS03oZd31WsJQtbLHGhUOnnyH4iAwETD5jzIuYaYrY2GNKpyy0uiLbpytnTbHqleV - bfRXYSbI/IYclvgf1hw7a02r2g3LDLzmkjuvMYY4bqd1niH9CncXvDBMwtmDGCBMVF5Qm49IOe86 - xFNaxrSvJRUXvhF/MiR+hREi0vSH7n3vP5AAmdImxt15PJ5x84dKIQEAAA== + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 9229ee66-882f-4e9f-87f2-8b4e1805dd77 + apim-request-id: 2f50573d-9af5-4b8b-8bcc-ed3e266d6f2d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:19 GMT - etag: '"08281595B7128FD66DA6D8811FCF850221F93ED8FCC23098FB2D5B4A057C93F9"' + date: Wed, 02 Jun 2021 06:03:46 GMT + etag: '"D68074201DB1077459D27DACA7A9B27FAE100488D224F67A52D9737FF334FB59"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 9229ee66-882f-4e9f-87f2-8b4e1805dd77 + x-requestid: 2f50573d-9af5-4b8b-8bcc-ed3e266d6f2d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiy5R9tRfsAQZoM6cZStCvAlgGJHoog7x7ZSOcuxJF33wG8 - i+CFE9+1AjBGS03oZd31WsJQtbLHGhUOnnyH4iAwETD5jzIuYaYrY2GNKpyy0uiLbpytnTbHqleV - bfRXYSbI/IYclvgf1hw7a02r2g3LDLzmkjuvMYY4bqd1niH9CncXvDBMwtmDGCBMVF5Qm49IOe86 - xFNaxrSvJRUXvhF/MiR+hREi0vSH7n3vP5AAmdImxt15PJ5x84dKIQEAAA== + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: f9df2e94-afb9-4b06-a12d-c1d69581f79c + apim-request-id: 50a3f044-f755-4a8a-8399-5ad5437d6368 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:20 GMT - etag: '"08281595B7128FD66DA6D8811FCF850221F93ED8FCC23098FB2D5B4A057C93F9"' + date: Wed, 02 Jun 2021 06:03:47 GMT + etag: '"D68074201DB1077459D27DACA7A9B27FAE100488D224F67A52D9737FF334FB59"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f9df2e94-afb9-4b06-a12d-c1d69581f79c + x-requestid: 50a3f044-f755-4a8a-8399-5ad5437d6368 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 response: body: - string: !!binary | - H4sIAAAAAAAEAIXPvW7EIAwA4HfxHE5AID9sVfsAp+t1aDfXkBQpIRJxhup07144tXMXy3+fJd8g - enDwaSSi1kqoQF6YYVQCp7YXIxmSNPngB4IGKAfk4F9KuMY1vDEVq2Vx0gqtrqpz1jilT+0oW9up - j2IW3PmJOG7pP9adBmt1L/vKdkY+9rJ3OVKKaa6tY10xf4O7AW+MCzjbwIRxCeUFWedEYS9GNRDT - OW9zfpSmgbTxe+BXxsy/y4SJwvJHH/eevzAjccg1metE9/f7D6JbDnsiAQAA + string: '{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: - apim-request-id: 13fe9e7b-f2cb-4a2e-9172-231ddd387ea8 + apim-request-id: eb756c34-1a89-4ff3-b022-bd2e0ca9e271 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:22 GMT - etag: '"EBD6457EDCB340B5176C56CE7ABDDABFDC3C6BE39A93A4920F4BBF28A0D691F9"' + date: Wed, 02 Jun 2021 06:03:48 GMT + etag: '"A2D9167CAA5C4D950FC286DEBD187B144A7089B1AC19C0CDD63F04EFBC2748C9"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 13fe9e7b-f2cb-4a2e-9172-231ddd387ea8 + x-requestid: eb756c34-1a89-4ff3-b022-bd2e0ca9e271 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890 - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWOu27DMAxF/0VzFEiy5Ye2ov2AAkmHdmMpOhXgByDRQxHk30sZ7dyFIHnuIXhX - KaqgPlsD4JzVljDqdhithqnp9YgtGpwixQHVSWEmYIovUq5poTdGcZ0Rz3jt7NV2wbfBunMzmsZ3 - 9kOcGQo/Iadt/U/rzoP3rjd91QoD70Vylx2RSD6oy31ZIH+rcFe8Mcwq+JOaIM1Cg6lcsqUc67S+ - 5u2Wj1HQuvE78YUh828YYUWa/9Tj3vMXZECmXJtbJbbxj8cPqg8E+CUBAAA= + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/e5c27755-9e08-4d3b-97be-bc2d254ecec2.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/e5c27755-9e08-4d3b-97be-bc2d254ecec2.txt","createdDateTimeUtc":"2021-06-02T06:03:40.466554Z","lastActionDateTimeUtc":"2021-06-02T06:03:47.8311959Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/a034eb0e-c1d8-4075-9bdc-414b65d4bea5.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/a034eb0e-c1d8-4075-9bdc-414b65d4bea5.txt","createdDateTimeUtc":"2021-06-02T06:03:40.2642052Z","lastActionDateTimeUtc":"2021-06-02T06:03:48.2358213Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed48-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/ab792086-f0d5-4ff5-a7de-d099d842878d.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/ab792086-f0d5-4ff5-a7de-d099d842878d.txt","createdDateTimeUtc":"2021-06-02T06:03:40.2277999Z","lastActionDateTimeUtc":"2021-06-02T06:03:48.2205213Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed49-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/95467cb7-df88-4926-8f07-ef8f8c841b44.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/95467cb7-df88-4926-8f07-ef8f8c841b44.txt","createdDateTimeUtc":"2021-06-02T06:03:40.2171137Z","lastActionDateTimeUtc":"2021-06-02T06:03:48.1916799Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed47-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/4586d6f9-8f73-46cb-98b9-d717ce67eccb.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/4586d6f9-8f73-46cb-98b9-d717ce67eccb.txt","createdDateTimeUtc":"2021-06-02T06:03:40.2130259Z","lastActionDateTimeUtc":"2021-06-02T06:03:48.1662033Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed46-0000-0000-0000-000000000000","characterCharged":27}]}' headers: - apim-request-id: 97dd313b-b724-4182-8a3b-992ba1481e69 + apim-request-id: f7a83bc2-2104-4da2-a997-196d225101ef cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:23 GMT - etag: '"4B8A69CD3991C73A410C98243280B1C5AC053F30471BD8154703041472442B60"' + date: Wed, 02 Jun 2021 06:03:48 GMT + etag: '"E4DE11D6E68BD9096698CF82D824F1E87996256B3A2E94E54FA7F83D239576B2"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 97dd313b-b724-4182-8a3b-992ba1481e69 + x-requestid: f7a83bc2-2104-4da2-a997-196d225101ef status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890/documents?$skip=0 - request: body: null headers: @@ -753,35 +664,25 @@ 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/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c/documents?$skip=0&$orderBy=createdDateTimeUtc%20desc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890/documents?$skip=0&$orderBy=createdDateTimeUtc%20desc response: body: - string: !!binary | - H4sIAAAAAAAEAM3UzYrbMBAH8HfxOeNIo9FXbkv7AIVuLy09jEfSJjSNg610C8u+e5VCL3tp3NAQ - HwYxaPBf/JBeuh+8P+Vu8+WlO3LddptuW+tx3qzX36bjxHUnw34c+t9Fxin3z7tDGp/n/pDruvL0 - lCtyVJZ5AFHogAYuwEYx2EKRBHUsPq9lSBI5CEiyGoi9gTgUAyqjMYlSIi99/Vm7VTePp0nyh8Vp - 5kl88S1DsGBRApAxClilACUGMppSKbQoikyZa07vW3ncfc+fqrRIqFCDsoD6UbuNpY12vXMYYqTP - bWbPc32QuhsPfxlD7JXXIeJ5aq5cT3Pb9vEkknPKqTXr2Bp5bqvjND5NeW4b9KrbpdZWSnlGS9AW - 6k35851PsOWJpebp3faM1SbRv67+M7b2XkVrBjBeMpA1AgGHZhGc5ISI5PyNsBdEuRCbelIxBFxm - bXr0gdC5a7DfOt8FtnFFBmUchFASkHIEXEqBbIiiHqJiX26EvSDKxdgmGkXOLtU2SCFae422vkdt - bymJ8wQUEYGCdhCJCSzHVDIln+lW2guiXK4dSHsXl99t56y+Stvcozad75DLCaLBdqHaqwdscwBN - QqGoqJzKN9JeEOVy7fZTu/whD0phvMYa/8X66+svPlYtFa0JAAA= - headers: - apim-request-id: 60c5f8ab-8b70-4718-8a8f-2e63893775a3 + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/e5c27755-9e08-4d3b-97be-bc2d254ecec2.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/e5c27755-9e08-4d3b-97be-bc2d254ecec2.txt","createdDateTimeUtc":"2021-06-02T06:03:40.466554Z","lastActionDateTimeUtc":"2021-06-02T06:03:47.8311959Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/a034eb0e-c1d8-4075-9bdc-414b65d4bea5.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/a034eb0e-c1d8-4075-9bdc-414b65d4bea5.txt","createdDateTimeUtc":"2021-06-02T06:03:40.2642052Z","lastActionDateTimeUtc":"2021-06-02T06:03:48.2358213Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed48-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/ab792086-f0d5-4ff5-a7de-d099d842878d.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/ab792086-f0d5-4ff5-a7de-d099d842878d.txt","createdDateTimeUtc":"2021-06-02T06:03:40.2277999Z","lastActionDateTimeUtc":"2021-06-02T06:03:48.2205213Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed49-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/95467cb7-df88-4926-8f07-ef8f8c841b44.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/95467cb7-df88-4926-8f07-ef8f8c841b44.txt","createdDateTimeUtc":"2021-06-02T06:03:40.2171137Z","lastActionDateTimeUtc":"2021-06-02T06:03:48.1916799Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed47-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf08d00da-397f-491e-816b-f14f3dff87a0/4586d6f9-8f73-46cb-98b9-d717ce67eccb.txt","sourcePath":"https://redacted.blob.core.windows.net/src10d284e0-5ce0-409c-853b-d0382172f2fb/4586d6f9-8f73-46cb-98b9-d717ce67eccb.txt","createdDateTimeUtc":"2021-06-02T06:03:40.2130259Z","lastActionDateTimeUtc":"2021-06-02T06:03:48.1662033Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed46-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 64d0d1f6-1db0-43bc-afcb-a956501e53f3 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:23 GMT - etag: '"3DF985ED26D2CE200E07A34EE15D75E902D2FA07B76B09BB45BCCBD2F4B63D47"' + date: Wed, 02 Jun 2021 06:03:48 GMT + etag: '"E4DE11D6E68BD9096698CF82D824F1E87996256B3A2E94E54FA7F83D239576B2"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 60c5f8ab-8b70-4718-8a8f-2e63893775a3 + x-requestid: 64d0d1f6-1db0-43bc-afcb-a956501e53f3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b40aa221-1ecd-4891-af37-9c4c0cfded8c/documents?$skip=0&$orderBy=createdDateTimeUtc%20desc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/139ad887-8f41-4de4-9457-66de68f9c890/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 index cf6ce4138dbd..3d901dbe14d3 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8?restype=container + uri: https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C791678B8A2"' + - '"0x8D9258C30BF6415"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 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: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8/564169b6-e1ff-460c-b3c5-a78253e1d441.txt + uri: https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/4637ec81-ca3f-4e71-98c9-fe510f7b7bf9.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C791684AEEA"' + - '"0x8D9258C30C9B8CD"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 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: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8/b8705155-1783-4654-8c64-899a563bc0de.txt + uri: https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/944deaad-b4de-4ab1-ab2a-c401479a666d.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C79168E9BCA"' + - '"0x8D9258C30D15B45"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 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: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8/a580c87a-c135-4d18-bb50-75ba90433741.txt + uri: https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/2259df26-b8d7-4764-a26e-7008cc264a0d.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C791695C91F"' + - '"0x8D9258C30D8AFA0"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 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: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8/b3db6a0f-8a89-4aec-a7ef-250049809ecb.txt + uri: https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/b05baf93-d2da-4304-96c3-1e8126a4e2a0.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C79169CCF33"' + - '"0x8D9258C30E11592"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 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: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8/fe9ea405-f0c6-494d-bebb-03a866f62576.txt + uri: https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/e789702e-deb2-483a-a571-856caf19c795.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C7916A4E701"' + - '"0x8D9258C30EC8955"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 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: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8/9294edfd-dc62-4d3b-a385-3d28fa36a54d.txt + uri: https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/2858a340-9b6b-4de1-a709-c286a81c7acf.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C7916ACB09D"' + - '"0x8D9258C30F47A04"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 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: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8/5bc39a63-1ef7-4a39-9375-1318676b57be.txt + uri: https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/c2495560-0252-4def-a182-97e28bf3a332.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C7916B404FE"' + - '"0x8D9258C30FD7C52"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -401,11 +401,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target20f54835-0bb5-45b7-9ee8-4a0140ac58c2?restype=container + uri: https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf?restype=container response: body: string: '' @@ -413,11 +413,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT etag: - - '"0x8D91C7916CE5488"' + - '"0x8D9258C311B4731"' last-modified: - - Fri, 21 May 2021 16:54:24 GMT + - Wed, 02 Jun 2021 06:03:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -426,8 +426,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc8614e90-f912-45e6-b968-a42e35a0eec8?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target20f54835-0bb5-45b7-9ee8-4a0140ac58c2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -444,439 +444,129 @@ interactions: body: string: '' headers: - apim-request-id: 1be5b872-1c41-48dc-88c6-ac32c288bcba + apim-request-id: ecb1e70f-d253-4ee1-8203-76a73631e5b1 content-length: '0' - date: Fri, 21 May 2021 16:54:25 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:03:49 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1be5b872-1c41-48dc-88c6-ac32c288bcba + x-requestid: ecb1e70f-d253-4ee1-8203-76a73631e5b1 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMU/EMAyF/4vnC3LSJleyIZgREscAm3HTu0htIyXugE7330kqHTOL9fyev+cr - xBE8TN+d64feKee0UT3zpIjwqLoBxwmNJTp2cADOgSSML3Wc4hI+hCtr0GiFVhl90s7b3hv7oBHN - 42C/KjNTkSeWmNZ/YR2aRhUh2Uo9e03yLpTr1+Zuy0L5B/wVJAnN4PEAE8W5pk2WjTmUsuu4vuV0 - zvd1TfIZ/qqaw7RymO/o3vd8oUwsITdx3pPb7ReDIvc/IwEAAA== - headers: - apim-request-id: 4c7af2e2-eda7-48d1-afbf-abf5539226c5 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:25 GMT - etag: '"237D743BC0F6A5E34786EEE04405F2EC8350301B48BBB8012B801EE31AEADCA7"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 4c7af2e2-eda7-48d1-afbf-abf5539226c5 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMU/EMAyF/4vnC3LSJleyIZgREscAm3HTu0htIyXugE7330kqHTOL9fyev+cr - xBE8TN+d64feKee0UT3zpIjwqLoBxwmNJTp2cADOgSSML3Wc4hI+hCtr0GiFVhl90s7b3hv7oBHN - 42C/KjNTkSeWmNZ/YR2aRhUh2Uo9e03yLpTr1+Zuy0L5B/wVJAnN4PEAE8W5pk2WjTmUsuu4vuV0 - zvd1TfIZ/qqaw7RymO/o3vd8oUwsITdx3pPb7ReDIvc/IwEAAA== - headers: - apim-request-id: 28c50ee8-6372-425f-9777-1e25ca10384c - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:25 GMT - etag: '"237D743BC0F6A5E34786EEE04405F2EC8350301B48BBB8012B801EE31AEADCA7"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 28c50ee8-6372-425f-9777-1e25ca10384c - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 -- 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVFCyJDvagnYuCjQd2o2h5USAbQESMxRB/r2SgXTNQhx5fHc3 - EUfhxXTqnBmMk84pLQ3RJBGhl90A4wTaIvad2AnKATmMb3Uc4xK+mCqrQSsJVmp1VM5b47V9UQB6 - P9ifysxY+EAc0/oc69QeXG8aVhj5Wurfe+JPxlxr2/W6LJh/hb8JToyz8P1OTBjn6npoPlEoZdNx - /cjpnB/rmvg7/Ec1jnClMD/QLe/1ghmJQ27ivDn3+x9Xo7L0JAEAAA== - headers: - apim-request-id: 2eea9cfb-5ed9-4c8b-ab1f-286de4dfe375 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:26 GMT - etag: '"751C139B8998ECFFECF8EF7460EB79C29BF9F5EBD99C38EC394541E3E73884A0"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 2eea9cfb-5ed9-4c8b-ab1f-286de4dfe375 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 -- 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVFCyJDvagnYuCjQd2o2h5USAbQESMxRB/r2SgXTNQhx5fHc3 - EUfhxXTqnBmMk84pLQ3RJBGhl90A4wTaIvad2AnKATmMb3Uc4xK+mCqrQSsJVmp1VM5b47V9UQB6 - P9ifysxY+EAc0/oc69QeXG8aVhj5Wurfe+JPxlxr2/W6LJh/hb8JToyz8P1OTBjn6npoPlEoZdNx - /cjpnB/rmvg7/Ec1jnClMD/QLe/1ghmJQ27ivDn3+x9Xo7L0JAEAAA== - headers: - apim-request-id: 806ab63a-3e18-476a-a5a1-a20998dd4a34 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:27 GMT - etag: '"751C139B8998ECFFECF8EF7460EB79C29BF9F5EBD99C38EC394541E3E73884A0"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 806ab63a-3e18-476a-a5a1-a20998dd4a34 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 -- 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVFCyJDvagnYuCjQd2o2h5USAbQESMxRB/r2SgXTNQhx5fHc3 - EUfhxXTqnBmMk84pLQ3RJBGhl90A4wTaIvad2AnKATmMb3Uc4xK+mCqrQSsJVmp1VM5b47V9UQB6 - P9ifysxY+EAc0/oc69QeXG8aVhj5Wurfe+JPxlxr2/W6LJh/hb8JToyz8P1OTBjn6npoPlEoZdNx - /cjpnB/rmvg7/Ec1jnClMD/QLe/1ghmJQ27ivDn3+x9Xo7L0JAEAAA== - headers: - apim-request-id: 78922b9c-6b3a-4d49-8700-68a80ccb941a - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:28 GMT - etag: '"751C139B8998ECFFECF8EF7460EB79C29BF9F5EBD99C38EC394541E3E73884A0"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 78922b9c-6b3a-4d49-8700-68a80ccb941a - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 -- 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPzU7EMAyE3yXnZuX8ts0NwQMgWA5wM2najdSmUuIe0GrfnaQSZy7W2DOfpbmz - ODHH5m9l9aAtt1ZIrr2fOSL0XA0wzSANYq9Yx3wOSGF6qeMat/BBvrISpOBguBRXYZ3RTpqLAJDj - YL4qs2KhJ09xT/9h4wUAtLJjwwohHaXm3o6UYlra6dg2zD/M3RnthCtzfcdmjGuoFaD53odSTh3T - a96XfK66Y2mnz0DvhJlaWNUqmHxY/9Dz3/MNM3oKuYnldB6PX+ebRW0hAQAA - headers: - apim-request-id: 5f5b6aab-91b6-48f0-8d97-12852d0c1e2b - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:29 GMT - etag: '"CEE026745856E128971A5FCC942C10A866CD6498F992DD49FFEA2669B42D22C4"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 5f5b6aab-91b6-48f0-8d97-12852d0c1e2b - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 -- 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFFCSJTvaiuQDijYd0o2lZVeALQMSPRRB/r2ykc5diCPv3gG8 - i9gLL4Yv45qucdI5pWVDNEhEaKXpoB9AW8TWiIOgHJBDf6njGufwwVRZDVpJsFKrq3LeNl7bowLQ - p85+VmbCwi/EcUn/YAaOprMW2tOGFUZeS829rSnFNG6ndZ4x/wh/F7wwTsK3BzFgnEJ9ATafKJSy - 65he8zLmfa2ptPAt8Dtj5meYMFGY/tC97/yNGYlD3sS4O4/HLy1JvF8hAQAA - headers: - apim-request-id: 58a4f731-807d-4b1f-9a04-ab1341846806 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:30 GMT - etag: '"A977A4DC2A73CE3CAAD7F0841A698778DD2E3B1F7B5E3341837668B3CEE9A93B"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 58a4f731-807d-4b1f-9a04-ab1341846806 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFFCSJTvaiuQDijYd0o2lZVeALQMSPRRB/r2ykc5diCPv3gG8 - i9gLL4Yv45qucdI5pWVDNEhEaKXpoB9AW8TWiIOgHJBDf6njGufwwVRZDVpJsFKrq3LeNl7bowLQ - p85+VmbCwi/EcUn/YAaOprMW2tOGFUZeS829rSnFNG6ndZ4x/wh/F7wwTsK3BzFgnEJ9ATafKJSy - 65he8zLmfa2ptPAt8Dtj5meYMFGY/tC97/yNGYlD3sS4O4/HLy1JvF8hAQAA + string: '{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Running","summary":{"total":7,"failed":0,"success":0,"inProgress":7,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 727c4a93-fc9e-4987-aae8-d3e58d698908 + apim-request-id: b51d9884-1110-441d-984d-b9b719db89bd cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:31 GMT - etag: '"A977A4DC2A73CE3CAAD7F0841A698778DD2E3B1F7B5E3341837668B3CEE9A93B"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 727c4a93-fc9e-4987-aae8-d3e58d698908 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 -- 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFFCSJTvaiuQDijYd0o2lZVeALQMSPRRB/r2ykc5diCPv3gG8 - i9gLL4Yv45qucdI5pWVDNEhEaKXpoB9AW8TWiIOgHJBDf6njGufwwVRZDVpJsFKrq3LeNl7bowLQ - p85+VmbCwi/EcUn/YAaOprMW2tOGFUZeS829rSnFNG6ndZ4x/wh/F7wwTsK3BzFgnEJ9ATafKJSy - 65he8zLmfa2ptPAt8Dtj5meYMFGY/tC97/yNGYlD3sS4O4/HLy1JvF8hAQAA - headers: - apim-request-id: 26bb6ce7-81e0-4416-bb17-c1385fb4d08e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:32 GMT - etag: '"A977A4DC2A73CE3CAAD7F0841A698778DD2E3B1F7B5E3341837668B3CEE9A93B"' + date: Wed, 02 Jun 2021 06:03:54 GMT + etag: '"F5D91D8334434398EA288A1A2944DCF587C5EC2BDDD069D7D5AECE7066A94245"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 26bb6ce7-81e0-4416-bb17-c1385fb4d08e + x-requestid: b51d9884-1110-441d-984d-b9b719db89bd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd - 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFFCSJTvaiuQDijYd0o2lZVeALQMSPRRB/r2ykc5diCPv3gG8 - i9gLL4Yv45qucdI5pWVDNEhEaKXpoB9AW8TWiIOgHJBDf6njGufwwVRZDVpJsFKrq3LeNl7bowLQ - p85+VmbCwi/EcUn/YAaOprMW2tOGFUZeS829rSnFNG6ndZ4x/wh/F7wwTsK3BzFgnEJ9ATafKJSy - 65he8zLmfa2ptPAt8Dtj5meYMFGY/tC97/yNGYlD3sS4O4/HLy1JvF8hAQAA + string: '{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Running","summary":{"total":7,"failed":0,"success":3,"inProgress":4,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}' headers: - apim-request-id: bd5b3027-0f2c-4cde-ab0c-4956bfd211b4 + apim-request-id: a516ce95-793b-40d3-9d02-371d487f0d16 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:33 GMT - etag: '"A977A4DC2A73CE3CAAD7F0841A698778DD2E3B1F7B5E3341837668B3CEE9A93B"' + date: Wed, 02 Jun 2021 06:03:56 GMT + etag: '"28713C6024DD054938965FAC4D8D58537388B81FED663D9DD1C9C230EF9FE3DD"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: bd5b3027-0f2c-4cde-ab0c-4956bfd211b4 + x-requestid: a516ce95-793b-40d3-9d02-371d487f0d16 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd - 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFFCSJTvaiuQDijYd0o2lZVeALQMSPRRB/r2ykc5diCPv3gG8 - i9gLL4Yv45qucdI5pWVDNEhEaKXpoB9AW8TWiIOgHJBDf6njGufwwVRZDVpJsFKrq3LeNl7bowLQ - p85+VmbCwi/EcUn/YAaOprMW2tOGFUZeS829rSnFNG6ndZ4x/wh/F7wwTsK3BzFgnEJ9ATafKJSy - 65he8zLmfa2ptPAt8Dtj5meYMFGY/tC97/yNGYlD3sS4O4/HLy1JvF8hAQAA + string: '{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}' headers: - apim-request-id: fc40f3a9-a6a5-44a4-9b9b-4e8b4c1ee4c6 + apim-request-id: d923b58c-de9b-4645-9bde-0564eefe006a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:34 GMT - etag: '"A977A4DC2A73CE3CAAD7F0841A698778DD2E3B1F7B5E3341837668B3CEE9A93B"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: fc40f3a9-a6a5-44a4-9b9b-4e8b4c1ee4c6 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 -- 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/batches/fb364846-6612-4ccf-aa07-380df025aa73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPzU7EMAyE38XnZuX8NtsbggdAsBzgZtK0RGpTKXUPaLXvTrKCMxfL45lvJF8h - jTDA9Kmd8cYJ56QSJoRJEGEvtMdxQmWJeg0dhBKJ4/hUxyWt8Y1DZRUqKdAKJS/SDdYMyp4kojp7 - +1GZhXZ+CJy2/A+m8aS9tdifG7Yz8bHX3MuRc8pzOx3rSuUbhivwxrTA0HcwUVpifQGbH0LcK2M6 - SPm5bHO5S91B3vg98itT4d9woBzi8ofe+x6/qFDgWNoyN0eiv91+AP77SyEjAQAA - headers: - apim-request-id: 0d4de62e-dc74-46d6-9537-0bd685964f19 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:35 GMT - etag: '"25D5C983491093446068464C4C631F19AFEAE2F2DD9E1E453F87A386644EED69"' + date: Wed, 02 Jun 2021 06:03:57 GMT + etag: '"21D797B78A440D5FB2F5CF36DFA8A84B8320A9D5CE9817C7B0790F1E04250CCF"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0d4de62e-dc74-46d6-9537-0bd685964f19 + x-requestid: d923b58c-de9b-4645-9bde-0564eefe006a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWMy27EIAxF/4X1MDIkEMKuaj+g0kwX7c41ZIqUhwTOohrNvxeidt2NZd9zj+8i - BeHF9NnZ3vVWWqu07IkmiQiD7ByECbRBHDpxEpQjcgwvdVzTEt+YqqtBKwlGanVV1pvea3NWAHp0 - 5qM6MxZ+Ik7b+o/WwblzxsAwNq0w8l5q77ITxRhiaOG+LJi/hb8L3hhn4YeTmDDNlXpovHZLOeK0 - vubtlo+zonXj98gXxsy/ZcKV4vynHv+evzAjccxtuTWi3Ph4/ADvdaATJQEAAA== + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/e789702e-deb2-483a-a571-856caf19c795.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/e789702e-deb2-483a-a571-856caf19c795.txt","createdDateTimeUtc":"2021-06-02T06:03:51.3505224Z","lastActionDateTimeUtc":"2021-06-02T06:03:55.8356248Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed51-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/c2495560-0252-4def-a182-97e28bf3a332.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/c2495560-0252-4def-a182-97e28bf3a332.txt","createdDateTimeUtc":"2021-06-02T06:03:51.346642Z","lastActionDateTimeUtc":"2021-06-02T06:03:55.8043116Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed50-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/b05baf93-d2da-4304-96c3-1e8126a4e2a0.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/b05baf93-d2da-4304-96c3-1e8126a4e2a0.txt","createdDateTimeUtc":"2021-06-02T06:03:51.2915164Z","lastActionDateTimeUtc":"2021-06-02T06:03:55.820457Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/944deaad-b4de-4ab1-ab2a-c401479a666d.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/944deaad-b4de-4ab1-ab2a-c401479a666d.txt","createdDateTimeUtc":"2021-06-02T06:03:51.0090242Z","lastActionDateTimeUtc":"2021-06-02T06:03:56.6273383Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/4637ec81-ca3f-4e71-98c9-fe510f7b7bf9.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/4637ec81-ca3f-4e71-98c9-fe510f7b7bf9.txt","createdDateTimeUtc":"2021-06-02T06:03:51.0057863Z","lastActionDateTimeUtc":"2021-06-02T06:03:56.6505733Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/2858a340-9b6b-4de1-a709-c286a81c7acf.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/2858a340-9b6b-4de1-a709-c286a81c7acf.txt","createdDateTimeUtc":"2021-06-02T06:03:50.9925964Z","lastActionDateTimeUtc":"2021-06-02T06:03:56.6250831Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/2259df26-b8d7-4764-a26e-7008cc264a0d.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/2259df26-b8d7-4764-a26e-7008cc264a0d.txt","createdDateTimeUtc":"2021-06-02T06:03:50.9840281Z","lastActionDateTimeUtc":"2021-06-02T06:03:56.60782Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4b-0000-0000-0000-000000000000","characterCharged":27}]}' headers: - apim-request-id: 79202e1c-6ac7-4950-8b1d-b35fab6d271c + apim-request-id: 527fabad-94dc-482d-b44d-1b5fbb350ddd cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:36 GMT - etag: '"A2A527D49A96C32C68944232DBF23A4B40E9DFFF23F19A1D0E28720381D6F4DF"' + date: Wed, 02 Jun 2021 06:03:57 GMT + etag: '"E7597DEDC2D1763E969E077F2F0D378A78B27CF0F2A9E8C139D8DB28695A6CE7"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 79202e1c-6ac7-4950-8b1d-b35fab6d271c + x-requestid: 527fabad-94dc-482d-b44d-1b5fbb350ddd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=0 - request: body: null headers: @@ -885,37 +575,27 @@ 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/batches/fb364846-6612-4ccf-aa07-380df025aa73/documents?$skip=0&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=0&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAL2SQYvbMBCF/4sJe4psSZZkORDa0h57KHR7adnDaDxOTBLbSONs2GX/e5WWXkqh - pKXV4TEMeuLNfHouznBcqNh8eS5m4H2xKfbMc9pU1SHOEXjAcJxC+U1wilQ+DmM3PaZyJK4Y4o5Y - y94aX1shQ7DC2NCIlsgLA1IZCWg96ir4RlplrVCNr4Vx1giPLkvbgnV1QNlRyRcu1kWaloj04eY0 - KSJ6pwy1UvSt0jkKORFa5wUYTbUFSYT+ligYCZi6d1nuhxN9YsyRtNRKSCu0ulduY82mlqXy2ref - s+MIid8gD9P4O5MrG2+9qu3Vlhh4SfnexwWRqKMuN3nKDUq5muO0i5TyBbUuhi63pZQNaAsiF/In - +XGuA+whAjLFt/srq+zUzcv6H7PuqSUwedheohOmNZ0IFIKQNXjneqdt4/4T6xui3MLaeK9vpZ1R - a902f0M7/Anth3XxeqQLvx/Gwy+WnHe7GwcezpQongekVMLTkteN06niCGM6Ak+x4vxEFYBxX51V - Kb+XlKo+1M5444RzVwyIvQCQjai97HqZfyg0ddVNuJxo5PRqlQ7DvNV3K57mrb1bneAyw47S8ERb - Xbx8BU336oGQBAAA + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/e789702e-deb2-483a-a571-856caf19c795.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/e789702e-deb2-483a-a571-856caf19c795.txt","createdDateTimeUtc":"2021-06-02T06:03:51.3505224Z","lastActionDateTimeUtc":"2021-06-02T06:03:55.8356248Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed51-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/c2495560-0252-4def-a182-97e28bf3a332.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/c2495560-0252-4def-a182-97e28bf3a332.txt","createdDateTimeUtc":"2021-06-02T06:03:51.346642Z","lastActionDateTimeUtc":"2021-06-02T06:03:55.8043116Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed50-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=2&$top=5&$maxpagesize=2"}' headers: - apim-request-id: 7932fd3d-0c9c-4533-b0c2-879173411d22 + apim-request-id: fa72ea70-ebea-40e0-a07b-8249e1245da0 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:36 GMT - etag: '"5AC7D3E2CD00C4190B7ACF5DE5F97123AA5163EFC6991775761B75247635B817"' + date: Wed, 02 Jun 2021 06:03:57 GMT + etag: '"6321B42C1C787A39D43EB0DAD9040F7E1577080FAFC24C0E4978864B601F01A4"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7932fd3d-0c9c-4533-b0c2-879173411d22 + x-requestid: fa72ea70-ebea-40e0-a07b-8249e1245da0 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73/documents?$skip=0&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=0&$maxpagesize=2 - request: body: null headers: @@ -924,37 +604,27 @@ 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/batches/fb364846-6612-4ccf-aa07-380df025aa73/documents?$skip=2&$top=5&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=2&$top=5&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAL2RT4/TMBDFv0tU7alOxo7/pVIFCI4ckFguIA4TZ9JGbZPInnSrXe13xwVxQUhQ - EPgwGo3fs57n91Sc8bhQsfn0VMzI+2JT7JnntKmqQ5wj8hDa49SWX0uYIpUPw9hND6kciSvGuCNW - 0BvtayOgbY3QpnWiIfJCI0gNGIwPqmrrrrUIvfDom3xFQaCjXigDoBsPDYW25AsX6yJNSwz07uY0 - KYbgrdTUgOgbqXIUsqJtrBeoFdUGgSj4W6KESMjUvcnlfjjRBw45kgIlBRih5L20G6M3NZTS1rXy - 9mP2HDHxq8DDNP7KZktnnTTKX22JkZeUde+XEIg66vKQpzyglLs5TrtIKQvkuhi6PAYAh8o0Ijfw - Q/l+rl/YY8TAFF/vr7SyU7nn9T+mjcZD8A5FkFmpO+lFVoNwpsUGdF07Lf8T7Rui/B5t1ZQAVmtw - t9KWWjfOyL+h7f+E9ud18XKkC78dxsNPlpx3uxsHHs6UKJ6HQKnExyWvO0yniiOO6Yg8xYrzE1WL - HPbVWZbwraVU9W1ttddWWHvFEEIvEMGJ2kPXgzKIrq66KSwnGjm9WKXDMG/13YqneVvfrU54mXFH - aXikrSqevwC6nOv5kgQAAA== + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/b05baf93-d2da-4304-96c3-1e8126a4e2a0.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/b05baf93-d2da-4304-96c3-1e8126a4e2a0.txt","createdDateTimeUtc":"2021-06-02T06:03:51.2915164Z","lastActionDateTimeUtc":"2021-06-02T06:03:55.820457Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/944deaad-b4de-4ab1-ab2a-c401479a666d.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/944deaad-b4de-4ab1-ab2a-c401479a666d.txt","createdDateTimeUtc":"2021-06-02T06:03:51.0090242Z","lastActionDateTimeUtc":"2021-06-02T06:03:56.6273383Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4e-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=4&$top=3&$maxpagesize=2"}' headers: - apim-request-id: a4558e7b-b775-4114-9965-f113682a2597 + apim-request-id: cfa9899a-cad2-49c8-9a9d-c2ae10bbbf37 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:36 GMT - etag: '"5206CAA0E57ADEDC3F23B69917C0A6D99CCF17D9564BAE27BFC6694D8B91E9C8"' + date: Wed, 02 Jun 2021 06:03:57 GMT + etag: '"757922548050DAD7E6E9920010F73C21BEAB7D782569A5D1655D7E461FA5642D"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a4558e7b-b775-4114-9965-f113682a2597 + x-requestid: cfa9899a-cad2-49c8-9a9d-c2ae10bbbf37 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73/documents?$skip=2&$top=5&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=2&$top=5&$maxpagesize=2 - request: body: null headers: @@ -963,37 +633,27 @@ 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/batches/fb364846-6612-4ccf-aa07-380df025aa73/documents?$skip=4&$top=3&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=4&$top=3&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAL2RTY/TMBCG/0tU7alO/BF/VaoAwZEDEssFtIeJPWmjtklkT7rVrva/413EBSFB - QeDDaDSed/x6nsfqDMcFq82Xx2oG2lebak80503THNKcgIbQHaeufglhSljfD2Oc7nM9IjUEaYck - ea9bpzTjXadZqzvLPKJjLXDRcgjaBdl46VuMfWQxGMnaqDoGymmmonQ9KAO6jTVdqFpXeVpSwA9X - u8kpBGdEi56z3ovyikbDOm8cg1ai0sARg7vGSkgIhPFdCbfDCT9RKJYkl4JxzaS4FWaj2410tfde - S2E+F80RMr0JNEzjL2TK1MJZpd2LLBPQkkvfxyUExIixFGkqBcwlm9O0S5hLg1hXQyxlzrkFqS0r - Cf8hfD/PX9hDgkCY3u6faRWltE/rf0xbd0F5MIoJ7G25Up55ZTUTSjhjTadth/+J9hVWfp+2s0J6 - dzVtJax2/m9omz+hfbeuXo94offDePjJkstud+NAwxkzpvMQMNfwsJR1h+nUUIIxH4Gm1FAZ0XRA - Yd+cRc2/pZibvlOmda1hxjxjCKFnANwy5XjsudQAVjVxCssJR8qvVvkwzFtzs6Jp3oqb1QkuM+ww - Dw+4ldXTV8pkbviSBAAA + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/4637ec81-ca3f-4e71-98c9-fe510f7b7bf9.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/4637ec81-ca3f-4e71-98c9-fe510f7b7bf9.txt","createdDateTimeUtc":"2021-06-02T06:03:51.0057863Z","lastActionDateTimeUtc":"2021-06-02T06:03:56.6505733Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/2858a340-9b6b-4de1-a709-c286a81c7acf.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/2858a340-9b6b-4de1-a709-c286a81c7acf.txt","createdDateTimeUtc":"2021-06-02T06:03:50.9925964Z","lastActionDateTimeUtc":"2021-06-02T06:03:56.6250831Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4c-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=6&$top=1&$maxpagesize=2"}' headers: - apim-request-id: 9c8f7ab5-dab0-47a7-953a-67354489346c + apim-request-id: 05493342-6bcf-4c22-aa28-54aebcdf713c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:36 GMT - etag: '"B2C18662F9A32BF6C7FDB4A751A671414ED19626861776B07740F6101E6612F8"' + date: Wed, 02 Jun 2021 06:03:57 GMT + etag: '"EB01BD6DADD8A8B37E62F57461D87257B5112A6E05DC29A62E5E5632275A0742"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 9c8f7ab5-dab0-47a7-953a-67354489346c + x-requestid: 05493342-6bcf-4c22-aa28-54aebcdf713c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73/documents?$skip=4&$top=3&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=4&$top=3&$maxpagesize=2 - request: body: null headers: @@ -1002,32 +662,25 @@ 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/batches/fb364846-6612-4ccf-aa07-380df025aa73/documents?$skip=6&$top=1&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/documents?$skip=6&$top=1&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAJVRy07DMBD8F5/rxO84uSH4ACTKBcTB3myaiNBE9oYiVf13XCQuXFDnMFqNZqTZ - 3TP7DPOGrHs9szXQyDo2Eq25q+v3tKZAE8R5idUPwZKwOk3Hfjnl6ohUU0gHJCUGa7y2XMRoubGx - 4S2i5yYIaUQA60HV1hnp2ug4ymHgxgngUYPlofHKapS9MbKiL2I7lpctAT7e3CYnAO+kwVbwoZWq - VEHHY+s8D0ahtkEggr+lCiQMhP1Dof30gc8EpZISSnJhuZJ76TprOuWr1gutG/NSMnPIdAc0Lcd/ - YtpV0nsjjb7GMgXacvE9bQCIPfZFpKUImMu0puWQMBeD3LGpL7IQognKlrMX/KFfXFcYQwpAmO7H - 67dKUjWXt8s32zsjk/kBAAA= + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target3a733729-ac3d-4200-a6a2-5fac955840cf/2259df26-b8d7-4764-a26e-7008cc264a0d.txt","sourcePath":"https://redacted.blob.core.windows.net/srcef64f999-8186-42bc-a247-5f0c371b816e/2259df26-b8d7-4764-a26e-7008cc264a0d.txt","createdDateTimeUtc":"2021-06-02T06:03:50.9840281Z","lastActionDateTimeUtc":"2021-06-02T06:03:56.60782Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed4b-0000-0000-0000-000000000000","characterCharged":27}]}' headers: - apim-request-id: 71928d92-417a-4e0f-b04a-558efe0c7144 + apim-request-id: 35cadae6-0eee-4cf3-a6c9-26b9db0a1d88 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:36 GMT - etag: '"6F578F91444800318D0B3826687C5A963B1CD4F7809E9565BBC485F564C4615D"' + date: Wed, 02 Jun 2021 06:03:57 GMT + etag: '"8FF3CFA6E483241AA97333E44B983B4A4143B2B77C7E630CC854F595CB5F1752"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 71928d92-417a-4e0f-b04a-558efe0c7144 + x-requestid: 35cadae6-0eee-4cf3-a6c9-26b9db0a1d88 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fb364846-6612-4ccf-aa07-380df025aa73/documents?$skip=6&$top=1&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a353b38-bc96-4f43-bcec-88346d01edfd/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 index a4293b0b06ec..2f31d1171571 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:37 GMT + - Wed, 02 Jun 2021 06:03:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf7b4d2da-f31b-4d62-a985-2df0b82d7413?restype=container + uri: https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:37 GMT + - Wed, 02 Jun 2021 06:03:57 GMT etag: - - '"0x8D91C791E9F6337"' + - '"0x8D9258C35E9CCF8"' last-modified: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:57 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: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf7b4d2da-f31b-4d62-a985-2df0b82d7413/1dec6517-1597-48e4-82ce-cbc272fb935a.txt + uri: https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/233fc880-c7fb-46b1-aed8-9e647afc66c9.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:37 GMT + - Wed, 02 Jun 2021 06:03:57 GMT etag: - - '"0x8D91C791EA8B1C3"' + - '"0x8D9258C35F2D810"' last-modified: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 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: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf7b4d2da-f31b-4d62-a985-2df0b82d7413/e3ff382f-f564-460a-bdee-3b7ca53952d3.txt + uri: https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/802f779d-b2dc-4913-9047-920046e4ec88.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:57 GMT etag: - - '"0x8D91C791EBADD74"' + - '"0x8D9258C35FC4F98"' last-modified: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 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: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf7b4d2da-f31b-4d62-a985-2df0b82d7413/7163520e-361c-45cc-ab87-a3d7bbeb7123.txt + uri: https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/ce9c2913-5fff-40d7-b045-fe97f7b14d98.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:57 GMT etag: - - '"0x8D91C791EC2F542"' + - '"0x8D9258C36032E9A"' last-modified: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 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: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf7b4d2da-f31b-4d62-a985-2df0b82d7413/7fe8e318-520c-4120-aa58-b9a9709adce0.txt + uri: https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/6bcee54e-31e5-4428-b1c0-e5d9d897d37e.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:57 GMT etag: - - '"0x8D91C791ECA70B4"' + - '"0x8D9258C360A0DAE"' last-modified: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 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: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf7b4d2da-f31b-4d62-a985-2df0b82d7413/e678f935-8fd9-47e7-a3ea-91414979c4bf.txt + uri: https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/eb63da4d-d703-43b0-9a7d-a082746184b2.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:57 GMT etag: - - '"0x8D91C791ED1EC1D"' + - '"0x8D9258C3611D748"' last-modified: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetfcf2da0e-47b8-4b98-8973-cb275838e30e?restype=container + uri: https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:37 GMT + - Wed, 02 Jun 2021 06:03:58 GMT etag: - - '"0x8D91C791EEE04C9"' + - '"0x8D9258C362C24B4"' last-modified: - - Fri, 21 May 2021 16:54:38 GMT + - Wed, 02 Jun 2021 06:03:58 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf7b4d2da-f31b-4d62-a985-2df0b82d7413?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfcf2da0e-47b8-4b98-8973-cb275838e30e?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -344,439 +344,291 @@ interactions: body: string: '' headers: - apim-request-id: d90ceaf8-2a0b-4817-a45b-25a6c8ebe61c + apim-request-id: 31144284-a769-4053-aa6e-a2cc1bfe0e80 content-length: '0' - date: Fri, 21 May 2021 16:54:38 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + date: Wed, 02 Jun 2021 06:03:58 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d90ceaf8-2a0b-4817-a45b-25a6c8ebe61c + x-requestid: 31144284-a769-4053-aa6e-a2cc1bfe0e80 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzFMhybP1sRTsHBZIM6cbKdCrAtgCJHoog7x7JQDp3IY53/I53 - CAM4UDhaM1olejtIcehICytbLcgq+d2qgYzxsAOfCJmGjzLOYaYL+8pK1QjZCdWcm951B9eavba6 - l53+KsyEmd88h7j8EzO2YpmR11zujpFPjKm8re46z5h+wd2BI+METu5gxDCVtMq8ek85bzosnyne - 0mtdIl/pr6o6HhdP0wvd+t5/MKFnSlXctuTxeAJDF6NeJAEAAA== + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:03:58.7561817Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: dc890c86-44d1-4568-b894-d24b2c6f0ca8 + apim-request-id: dbf0a930-5e52-4d99-9de0-e44d09bc4a24 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:38 GMT - etag: '"005D21C340845B345B53898FEEC956F56684B51F4A2325E84DAC913040ADEFC7"' + date: Wed, 02 Jun 2021 06:04:02 GMT + etag: '"DEFA000E9416074A41E9A237EE5E190B5DB310FD745360D552327405F0FC1E17"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: dc890c86-44d1-4568-b894-d24b2c6f0ca8 + x-requestid: dbf0a930-5e52-4d99-9de0-e44d09bc4a24 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - request: body: null headers: - Accept: - - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzFMhybP1sRTsHBZIM6cbKdCrAtgCJHoog7x7JQDp3IY53/I53 - CAM4UDhaM1olejtIcehICytbLcgq+d2qgYzxsAOfCJmGjzLOYaYL+8pK1QjZCdWcm951B9eavba6 - l53+KsyEmd88h7j8EzO2YpmR11zujpFPjKm8re46z5h+wd2BI+METu5gxDCVtMq8ek85bzosnyne - 0mtdIl/pr6o6HhdP0wvd+t5/MKFnSlXctuTxeAJDF6NeJAEAAA== + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:03:58.7561817Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 8cd95a1b-94ff-4b04-9c5f-81afb19ee89c + apim-request-id: 067de542-5f84-4bf3-96cf-16d2a4ab6e41 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:38 GMT - etag: '"005D21C340845B345B53898FEEC956F56684B51F4A2325E84DAC913040ADEFC7"' + date: Wed, 02 Jun 2021 06:04:03 GMT + etag: '"DEFA000E9416074A41E9A237EE5E190B5DB310FD745360D552327405F0FC1E17"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8cd95a1b-94ff-4b04-9c5f-81afb19ee89c + x-requestid: 067de542-5f84-4bf3-96cf-16d2a4ab6e41 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWNvW4CMRCE38U1RrYPn386ROoIKaRIusW3B5buzpK9FAjx7rFPIi3NanZnv5kH - iwPzTMHo7OgU790g+E6j4U50hqNT4typAa0NbMNCRiAcPuo4xRm/KTRWKMmF5kqeZO/1znd2a5zp - hTa/lZmg0D5QTMs7zG2l1NaKFSsEdCv17zPRF0Gute16m2fId+YfjBLBxLzesBHiVF0vmh8ClrLq - uBxzuuTXuiT6wf+oxgVYAk4vdM07XCFDIMxNXFbn+fwDXfRU5SQBAAA= + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:03:58.7561817Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 3e7b08ac-ba4a-4b3d-a5dc-6f29ff60218d + apim-request-id: 1750cd75-e18f-4b00-852e-297db1d9f2c1 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:39 GMT - etag: '"EAEEA4B2F5925DC7435ED610051F6761DE901BF403E1C93D43B921728E1EB3A3"' + date: Wed, 02 Jun 2021 06:04:05 GMT + etag: '"DEFA000E9416074A41E9A237EE5E190B5DB310FD745360D552327405F0FC1E17"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3e7b08ac-ba4a-4b3d-a5dc-6f29ff60218d + x-requestid: 1750cd75-e18f-4b00-852e-297db1d9f2c1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWNvW4CMRCE38U1RrYPn386ROoIKaRIusW3B5buzpK9FAjx7rFPIi3NanZnv5kH - iwPzTMHo7OgU790g+E6j4U50hqNT4typAa0NbMNCRiAcPuo4xRm/KTRWKMmF5kqeZO/1znd2a5zp - hTa/lZmg0D5QTMs7zG2l1NaKFSsEdCv17zPRF0Gute16m2fId+YfjBLBxLzesBHiVF0vmh8ClrLq - uBxzuuTXuiT6wf+oxgVYAk4vdM07XCFDIMxNXFbn+fwDXfRU5SQBAAA= + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 4e929c19-b680-46e9-925e-8b0db8aeb9cc + apim-request-id: 24dca8e8-bc74-4718-bac7-c646092ec122 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:40 GMT - etag: '"EAEEA4B2F5925DC7435ED610051F6761DE901BF403E1C93D43B921728E1EB3A3"' + date: Wed, 02 Jun 2021 06:04:06 GMT + etag: '"D717634637481D3B9CC3EE48BADB24C20484A97AC44E5CF9736F1D1F9CAB6351"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4e929c19-b680-46e9-925e-8b0db8aeb9cc + x-requestid: 24dca8e8-bc74-4718-bac7-c646092ec122 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnZpWkTdP0huADECwHuJnU7UZqUylxD2i1/05SiTMXa+yZZ2nu - ECYYQePshtlp0btJis6QFU62VpDT8rvVEw2DhwZ8ImSaXsq4ho0+2FdWaiWkEVpdVT+abmyHi3W2 - l8Z+FWbFzE+ewx7/wTp1sa3qnalUZuQjl9jbEWOISz0d24bpB8Y78M64wmgamDGsVBrI6ntPOZ86 - xNe0L+lcuwbizp/E74yJa1iVJhg9rX/o+e/5hgk9U6piOZ3H4xdL3o/zIAEAAA== + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 8e6298ee-fafb-4c82-b8a6-39b1ec996648 + apim-request-id: 2e313296-71a8-48c0-ba61-ca0ce5fa084e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:41 GMT - etag: '"4B31F601225E53806E9FB8163762CD4AAA7F47065AD0AE3D4C2D5F8DDF517F3E"' + date: Wed, 02 Jun 2021 06:04:07 GMT + etag: '"D717634637481D3B9CC3EE48BADB24C20484A97AC44E5CF9736F1D1F9CAB6351"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8e6298ee-fafb-4c82-b8a6-39b1ec996648 + x-requestid: 2e313296-71a8-48c0-ba61-ca0ce5fa084e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFMj6sSRvRfsAQZoO7cbKtCvAlgGJHoog717JaOcuxJF33wG8 - sziygUmYvJu85L0fBdcGLfdCWY5eik8lR3QusBMLGYFwfKnjFld8o9BYITsuDJfdresHowflztbb - Xhj7UZkFCj0Filv6B9Pq3CnXay0bVghoLzV33VOKaW6nfV0hf7PhzmgjWNhgTmyCuGB9QTQ/BCzl - 0DFd8jbnY62ptNE70itBpt9wgBRw+UOPvucvyBAIcxPz4TweP0/HjcAhAQAA + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 99d02482-d3d8-464c-8dcb-6e368be0d065 + apim-request-id: 481e3392-e819-49da-b9f8-3b3316ab41d8 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:43 GMT - etag: '"7E54D21C7A172C81CD11235BF27D3DB1BAFA03C67DEBD897AB66A2C209C35456"' + date: Wed, 02 Jun 2021 06:04:08 GMT + etag: '"D717634637481D3B9CC3EE48BADB24C20484A97AC44E5CF9736F1D1F9CAB6351"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 99d02482-d3d8-464c-8dcb-6e368be0d065 + x-requestid: 481e3392-e819-49da-b9f8-3b3316ab41d8 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFMj6sSRvRfsAQZoO7cbKtCvAlgGJHoog717JaOcuxJF33wG8 - sziygUmYvJu85L0fBdcGLfdCWY5eik8lR3QusBMLGYFwfKnjFld8o9BYITsuDJfdresHowflztbb - Xhj7UZkFCj0Filv6B9Pq3CnXay0bVghoLzV33VOKaW6nfV0hf7PhzmgjWNhgTmyCuGB9QTQ/BCzl - 0DFd8jbnY62ptNE70itBpt9wgBRw+UOPvucvyBAIcxPz4TweP0/HjcAhAQAA + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 606d7427-3b88-4971-90cf-ca8727bbdb79 + apim-request-id: e2f0d63c-d981-418e-8968-3e1778532467 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:44 GMT - etag: '"7E54D21C7A172C81CD11235BF27D3DB1BAFA03C67DEBD897AB66A2C209C35456"' + date: Wed, 02 Jun 2021 06:04:09 GMT + etag: '"D717634637481D3B9CC3EE48BADB24C20484A97AC44E5CF9736F1D1F9CAB6351"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 606d7427-3b88-4971-90cf-ca8727bbdb79 + x-requestid: e2f0d63c-d981-418e-8968-3e1778532467 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFMj6sSRvRfsAQZoO7cbKtCvAlgGJHoog717JaOcuxJF33wG8 - sziygUmYvJu85L0fBdcGLfdCWY5eik8lR3QusBMLGYFwfKnjFld8o9BYITsuDJfdresHowflztbb - Xhj7UZkFCj0Filv6B9Pq3CnXay0bVghoLzV33VOKaW6nfV0hf7PhzmgjWNhgTmyCuGB9QTQ/BCzl - 0DFd8jbnY62ptNE70itBpt9wgBRw+UOPvucvyBAIcxPz4TweP0/HjcAhAQAA + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' headers: - apim-request-id: 083c888d-4914-4add-b51c-7dce9776dcc3 + apim-request-id: fb637cce-f6ad-4616-9192-fe3985f64eae cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:45 GMT - etag: '"7E54D21C7A172C81CD11235BF27D3DB1BAFA03C67DEBD897AB66A2C209C35456"' + date: Wed, 02 Jun 2021 06:04:10 GMT + etag: '"E2816BA281490FED9F5520C2C8DE868DDBC27E875A53A34E1F27D6479DFB5470"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 083c888d-4914-4add-b51c-7dce9776dcc3 + x-requestid: fb637cce-f6ad-4616-9192-fe3985f64eae status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFMj6sSRvRfsAQZoO7cbKtCvAlgGJHoog717JaOcuxJF33wG8 - sziygUmYvJu85L0fBdcGLfdCWY5eik8lR3QusBMLGYFwfKnjFld8o9BYITsuDJfdresHowflztbb - Xhj7UZkFCj0Filv6B9Pq3CnXay0bVghoLzV33VOKaW6nfV0hf7PhzmgjWNhgTmyCuGB9QTQ/BCzl - 0DFd8jbnY62ptNE70itBpt9wgBRw+UOPvucvyBAIcxPz4TweP0/HjcAhAQAA + string: '{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: - apim-request-id: af014cac-3c28-4043-bb9c-df8ff91c1f37 + apim-request-id: 6d081fea-8174-4083-924f-e9271efb1b91 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:46 GMT - etag: '"7E54D21C7A172C81CD11235BF27D3DB1BAFA03C67DEBD897AB66A2C209C35456"' + date: Wed, 02 Jun 2021 06:04:11 GMT + etag: '"15225837D7C20426C6ACC103FB713F65E7B319083B4ED30BE08DAC48992B8B4B"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: af014cac-3c28-4043-bb9c-df8ff91c1f37 + x-requestid: 6d081fea-8174-4083-924f-e9271efb1b91 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFMj6sSRvRfsAQZoO7cbKtCvAlgGJHoog717JaOcuxJF33wG8 - sziygUmYvJu85L0fBdcGLfdCWY5eik8lR3QusBMLGYFwfKnjFld8o9BYITsuDJfdresHowflztbb - Xhj7UZkFCj0Filv6B9Pq3CnXay0bVghoLzV33VOKaW6nfV0hf7PhzmgjWNhgTmyCuGB9QTQ/BCzl - 0DFd8jbnY62ptNE70itBpt9wgBRw+UOPvucvyBAIcxPz4TweP0/HjcAhAQAA - headers: - apim-request-id: bd4fac47-ac07-455f-81f9-82fd9802a234 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:47 GMT - etag: '"7E54D21C7A172C81CD11235BF27D3DB1BAFA03C67DEBD897AB66A2C209C35456"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: bd4fac47-ac07-455f-81f9-82fd9802a234 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c -- 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFMj6sSRvRfsAQZoO7cbKtCvAlgGJHoog717JaOcuxJF33wG8 - sziygUmYvJu85L0fBdcGLfdCWY5eik8lR3QusBMLGYFwfKnjFld8o9BYITsuDJfdresHowflztbb - Xhj7UZkFCj0Filv6B9Pq3CnXay0bVghoLzV33VOKaW6nfV0hf7PhzmgjWNhgTmyCuGB9QTQ/BCzl - 0DFd8jbnY62ptNE70itBpt9wgBRw+UOPvucvyBAIcxPz4TweP0/HjcAhAQAA - headers: - apim-request-id: 2d550ab3-1d15-40fa-8c88-2937794699ef - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:48 GMT - etag: '"7E54D21C7A172C81CD11235BF27D3DB1BAFA03C67DEBD897AB66A2C209C35456"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 2d550ab3-1d15-40fa-8c88-2937794699ef - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c -- 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE34WzFejPtuStaB8gSNOh3ViZdgXYMiDTQxHk3SsF7dyF4PHuO4A3 - iCMMoHHybvJadH6UwrbUCy9NL8hr+Wn0SM4FaCBkQqbxpYxrXOmNQ2WlVkK2Qqur6obWDsadet93 - su0/CrPgzk+B45b+waw5KeM6a3XFdkY+9pK7HCnFNNfTsa6Yv2G4AW+MCwxtAxPGhcoLsvoh0F4Y - 20BM57zN+SFVA2njd+JXxsy/4YAp0PKHPvqevzBjYMp1maujpLvffwDNw4B8IwEAAA== + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc/eb63da4d-d703-43b0-9a7d-a082746184b2.txt","sourcePath":"https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/eb63da4d-d703-43b0-9a7d-a082746184b2.txt","createdDateTimeUtc":"2021-06-02T06:04:06.4068403Z","lastActionDateTimeUtc":"2021-06-02T06:04:11.4578944Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed56-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc/ce9c2913-5fff-40d7-b045-fe97f7b14d98.txt","sourcePath":"https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/ce9c2913-5fff-40d7-b045-fe97f7b14d98.txt","createdDateTimeUtc":"2021-06-02T06:04:06.3911136Z","lastActionDateTimeUtc":"2021-06-02T06:04:10.8530416Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed55-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc/802f779d-b2dc-4913-9047-920046e4ec88.txt","sourcePath":"https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/802f779d-b2dc-4913-9047-920046e4ec88.txt","createdDateTimeUtc":"2021-06-02T06:04:06.375382Z","lastActionDateTimeUtc":"2021-06-02T06:04:10.8794415Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed54-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc/6bcee54e-31e5-4428-b1c0-e5d9d897d37e.txt","sourcePath":"https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/6bcee54e-31e5-4428-b1c0-e5d9d897d37e.txt","createdDateTimeUtc":"2021-06-02T06:04:06.365826Z","lastActionDateTimeUtc":"2021-06-02T06:04:10.9443017Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed53-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc/233fc880-c7fb-46b1-aed8-9e647afc66c9.txt","sourcePath":"https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/233fc880-c7fb-46b1-aed8-9e647afc66c9.txt","createdDateTimeUtc":"2021-06-02T06:04:06.3610009Z","lastActionDateTimeUtc":"2021-06-02T06:04:10.878159Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed52-0000-0000-0000-000000000000","characterCharged":27}]}' headers: - apim-request-id: 0502170a-642a-47f6-b95b-e2a8f17d6238 + apim-request-id: 666ee101-845b-4218-9a1c-7f7f95202310 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:49 GMT - etag: '"30BF77ADE3F4D6125D2852C6AA5FB0030A4DDAC9CD13FCC26058D6B930C1FCFD"' + date: Wed, 02 Jun 2021 06:04:11 GMT + etag: '"362E58B408B8B52229886C62305846A0625EED30B7CC8A3D828D0AA6A8693638"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0502170a-642a-47f6-b95b-e2a8f17d6238 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c -- 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMu04EMQxF/yX1ZpXJY/LoEHwA0i4FdCbxLJHmISWeAq3230lGUNNY9j33+M5y - YoFJmLybvOSjT4Jrg5Z7oSxHL8Wnkgmdi+zEYkEgTC9tXPOCbxS7K+TAheFyuA5jMDood7bejsLY - j+bMUOkpUt7WfzStzoNyo9aya5WA9tp6lz1GxISph/uyQPlm4c5oI5hZMCc2QZ4bDaLz1q31iPP6 - WrZbOc6G1o3ekS4EhX7LEdaI8596/Hv+ggKRsPTl1smgzOPxA8BPEDwlAQAA - headers: - apim-request-id: 0fb0f248-c6cb-4c13-877e-e24f0e8efbca - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:50 GMT - etag: '"F9520E2E87F79318FD1545AB31B151DE94187316642B8D5EA710972ECA98100D"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 0fb0f248-c6cb-4c13-877e-e24f0e8efbca + x-requestid: 666ee101-845b-4218-9a1c-7f7f95202310 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad/documents?$skip=0 - request: body: null headers: @@ -785,34 +637,25 @@ 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/batches/2af98f92-69d0-45e7-9037-e920b32de88c/documents?$skip=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad/documents?$skip=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2Sz24UMQzG32XO69k4fybJ3BB9ACTKBcTBcTzdEdudVSZLkaq+O2klLlzYoaIi - h0+W5S/64l8eu+90vEg3fnnszlQP3dgdaj2v437/rZwL1ZnTcUn9i/BSpH+YT3l5WPuT1H2lcid1 - 4klnUgLWpwA2xQAhegOctHfBBDFK9n6SVmAApxWDRa2AyAVIkaJXkTKL6uuP2u26dbkUlg+b06yF - J59sbmFgMpjA5kEDxeBA50mloLO3aLZE4SJUJd80uZ3v5VPlFkkrjaDapXiLw+jsaLH3Bm0I9nPz - HGmt77jOy+lPttCHQVvvXmxrpXpZ29zHC7NIltyadWkNWVt1LstdkbUN4K6bc2srpTxpJ9AK9Zv8 - Os9POFAhrlLeH55pNaf2T7t/TRsH07YrYAZsK3bMQCl4IJN9SpI8avNWtK+Pcj1t7RxGvZV2jENs - 3+01tPP/SBuz8ODQA7rowQaxEDRLG2Lt9ZSicfRGtDdEuZ42uhCj30wbjVb2VbT5b2h/ffoJ3NcT - 39UFAAA= - headers: - apim-request-id: 7aed020c-0403-4a65-aa6a-46b4ca7363c4 + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc/802f779d-b2dc-4913-9047-920046e4ec88.txt","sourcePath":"https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/802f779d-b2dc-4913-9047-920046e4ec88.txt","createdDateTimeUtc":"2021-06-02T06:04:06.375382Z","lastActionDateTimeUtc":"2021-06-02T06:04:10.8794415Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed54-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc/6bcee54e-31e5-4428-b1c0-e5d9d897d37e.txt","sourcePath":"https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/6bcee54e-31e5-4428-b1c0-e5d9d897d37e.txt","createdDateTimeUtc":"2021-06-02T06:04:06.365826Z","lastActionDateTimeUtc":"2021-06-02T06:04:10.9443017Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed53-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetf89c48d6-f8a4-4a7a-9271-337c9d186cbc/233fc880-c7fb-46b1-aed8-9e647afc66c9.txt","sourcePath":"https://redacted.blob.core.windows.net/src42a4ded6-9568-45ab-b3be-d5b12d54121f/233fc880-c7fb-46b1-aed8-9e647afc66c9.txt","createdDateTimeUtc":"2021-06-02T06:04:06.3610009Z","lastActionDateTimeUtc":"2021-06-02T06:04:10.878159Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed52-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 32b0fe55-094e-476f-a7ff-ac167c2a6879 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:54:50 GMT - etag: '"E3F4AC33E6D65D6585BDF8A420D8C1864996063DCD3509582496AF0C427160D5"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:04:11 GMT + etag: '"456C393D192ADBD57439AF82B51A1CFC262885C073562D9384DB502F0FE0BD10"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7aed020c-0403-4a65-aa6a-46b4ca7363c4 + x-requestid: 32b0fe55-094e-476f-a7ff-ac167c2a6879 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2af98f92-69d0-45e7-9037-e920b32de88c/documents?$skip=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e33a99e3-35d2-4294-985b-3626d43365ad/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 33e2127a2ba6..f7bd70f2bad8 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:50 GMT + - Wed, 02 Jun 2021 05:53:38 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794?restype=container + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:50 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C792673FF82"' + - '"0x8D9258AC4E28F54"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 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: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794/57b904a9-7f1d-42cb-9ccb-e0bb691f51c9.txt + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b/8cec2f2a-6cdb-4f8e-9cbf-92ebafc867b2.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:50 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C7926800CCE"' + - '"0x8D9258AC4EE0F20"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 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: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794/60f63ca8-a06d-4c9c-8195-ffc57cb1acc4.txt + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b/5ac6619c-6960-4004-b792-927c2020beb5.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C79268BCEC4"' + - '"0x8D9258AC4F5FFCE"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 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: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794/484dc9b2-0f55-4459-86b2-d4bafd8cc4ae.txt + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b/355df92f-1687-4b00-bef0-faacfa2fd09c.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C7926940D9E"' + - '"0x8D9258AC4FE8CD5"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 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: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794/a584a070-735f-450f-a531-7bc31d03e793.txt + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b/252088a6-f373-41dd-b6d1-89ca8bd93347.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C79269D8548"' + - '"0x8D9258AC5093D27"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 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: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794/8a0b16b7-5bf0-441a-936f-38aff84f2f84.txt + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b/3e9eaba5-3a3c-4269-88fc-3a06f7bc9f7a.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C7926B6DE46"' + - '"0x8D9258AC5152632"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 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: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794/6f3568ea-c83e-4d4c-8b9d-7a0257891447.txt + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b/9149abd3-008b-46f6-b7d5-1ad2b8baf5e9.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C7926C2C755"' + - '"0x8D9258AC51F3A24"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 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: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794/c84ed3d4-94dd-4f61-8b63-e68737867fd3.txt + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b/89a67336-72d4-4a4c-9084-cea50b08f307.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C7926CADF23"' + - '"0x8D9258AC52B2333"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 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: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4a7a4017-2b36-4bcc-b068-97f5a88f4794/35a12a69-45a4-4320-afcf-9b98a2151cd0.txt + uri: https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b/1a1344a6-1c07-42ac-927a-941f6352cff1.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:38 GMT etag: - - '"0x8D91C7926D4089A"' + - '"0x8D9258AC53648C4"' last-modified: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetcbfd85cc-a253-4945-bc79-f98f8ce54a9c?restype=container + uri: https://redacted.blob.core.windows.net/target15580723-cfc9-4c38-b2f7-8d1bfce121bd?restype=container response: body: string: '' @@ -463,11 +463,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:54:51 GMT + - Wed, 02 Jun 2021 05:53:39 GMT etag: - - '"0x8D91C7926FCFEAF"' + - '"0x8D9258AC555B090"' last-modified: - - Fri, 21 May 2021 16:54:52 GMT + - Wed, 02 Jun 2021 05:53:39 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/src4a7a4017-2b36-4bcc-b068-97f5a88f4794?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetcbfd85cc-a253-4945-bc79-f98f8ce54a9c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf9afe05c-d76c-46d2-b8c3-a4c9220aa19b?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target15580723-cfc9-4c38-b2f7-8d1bfce121bd?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -487,7 +487,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -499,13 +499,13 @@ interactions: string: '' headers: apim-request-id: - - 3a93d39c-4ffd-4c70-b476-b00e1a3d3358 + - be0e155c-e4bf-4ca3-b10d-9af17a8b54b2 content-length: - '0' date: - - Fri, 21 May 2021 16:54:52 GMT + - Wed, 02 Jun 2021 05:53:39 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/24514f35-1632-49f6-bfc0-65372c766a06 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/82b79dc7-909c-41df-8eac-079a74b01698 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -516,7 +516,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3a93d39c-4ffd-4c70-b476-b00e1a3d3358 + - be0e155c-e4bf-4ca3-b10d-9af17a8b54b2 status: code: 202 message: Accepted @@ -529,26 +529,24 @@ interactions: - 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/24514f35-1632-49f6-bfc0-65372c766a06 + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/82b79dc7-909c-41df-8eac-079a74b01698 response: body: - string: '{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:52.2751627Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:40.2322445Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - b7ab70b2-8e55-4bd3-8a48-9e466f1a839e - cache-control: - - public,max-age=1 + - ef5450a7-5984-4d5f-a18d-bacb893b14b5 content-length: - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:54:52 GMT - etag: - - '"B620B51329157116D90C0DF116B4975595ECCD770DCFDD734436C4616B3248A4"' + - Wed, 02 Jun 2021 05:53:39 GMT set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -563,7 +561,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b7ab70b2-8e55-4bd3-8a48-9e466f1a839e + - ef5450a7-5984-4d5f-a18d-bacb893b14b5 status: code: 200 message: OK @@ -576,27 +574,29 @@ interactions: - 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/batches/24514f35-1632-49f6-bfc0-65372c766a06 + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/82b79dc7-909c-41df-8eac-079a74b01698 response: body: - string: '{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:52.4890178Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' headers: apim-request-id: - - c59cec68-a989-4615-bc5d-e45243187663 + - 5557809a-d5d2-449c-adb4-dcba6e72fe90 + cache-control: + - public,max-age=1 content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:54:52 GMT + - Wed, 02 Jun 2021 05:53:55 GMT + etag: + - '"90046B8BBAFBB05E286D0E099061B4556E70EC31E3DDD7D05BFE25827E9120D8"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -608,7 +608,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c59cec68-a989-4615-bc5d-e45243187663 + - 5557809a-d5d2-449c-adb4-dcba6e72fe90 status: code: 200 message: OK @@ -616,7 +616,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -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/batches/24514f35-1632-49f6-bfc0-65372c766a06 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/82b79dc7-909c-41df-8eac-079a74b01698 response: body: - string: '{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' + string: '{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' headers: apim-request-id: - - 7150fbfd-e444-449f-a648-626144adf8a4 + - cd0172a0-8ef2-4136-8697-76e05f95a2fd cache-control: - public,max-age=1 content-length: @@ -638,12 +638,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:06 GMT + - Wed, 02 Jun 2021 05:54:10 GMT etag: - - '"8B11626AC3A6F333BEB142E14F4712BBF83C27A8D90A47A8628F8A692CEB08B7"' + - '"90046B8BBAFBB05E286D0E099061B4556E70EC31E3DDD7D05BFE25827E9120D8"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -655,7 +655,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7150fbfd-e444-449f-a648-626144adf8a4 + - cd0172a0-8ef2-4136-8697-76e05f95a2fd 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 85b9c6238681..732b65f993ce 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d?restype=container + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:57 GMT etag: - - '"0x8D91C80CB9B3A8B"' + - '"0x8D9258B184F464B"' last-modified: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 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: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d/2fe0469b-6bc1-4f06-a973-1dcb4446f379.txt + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e/00682b07-b761-4593-b159-8ac116364b5d.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT etag: - - '"0x8D91C80CBA6EC73"' + - '"0x8D9258B18568CF4"' last-modified: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 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: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d/a0105ff8-d1e0-4953-a891-f228bfd68f9d.txt + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e/57ba0169-dfbd-4bfc-ab01-0ee083e9d2ce.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT etag: - - '"0x8D91C80CBAEDD31"' + - '"0x8D9258B185E568A"' last-modified: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 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: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d/f588b66d-2094-4684-ba04-58a953f2898e.txt + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e/7e6466cb-2c5c-4579-a70b-15e446c61f2e.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT etag: - - '"0x8D91C80CBB7DF86"' + - '"0x8D9258B18662024"' last-modified: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 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: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:59 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d/88da23fc-f268-4764-866c-42d7f1ff0ff9.txt + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e/718d1430-8e95-4515-801e-0e78953f0938.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT etag: - - '"0x8D91C80CBC01E72"' + - '"0x8D9258B186E37E3"' last-modified: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:59 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: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:59 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d/f868a7e2-7d86-4e9b-986c-1d32dd7a87bc.txt + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e/6bac9ebf-cb26-47f7-b048-725351db0b94.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT etag: - - '"0x8D91C80CBC85D4C"' + - '"0x8D9258B1876C4EE"' last-modified: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:59 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: - - Fri, 21 May 2021 17:49:35 GMT + - Wed, 02 Jun 2021 05:55:59 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d/efe6954e-94c6-4502-aeb2-1322cfdf5f4d.txt + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e/1d5d1b1f-45c5-4491-a14d-00bdca98e8a1.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT etag: - - '"0x8D91C80CBD13888"' + - '"0x8D9258B187FEE5E"' last-modified: - - Fri, 21 May 2021 17:49:35 GMT + - Wed, 02 Jun 2021 05:55:59 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: - - Fri, 21 May 2021 17:49:35 GMT + - Wed, 02 Jun 2021 05:55:59 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d/2749964d-62bf-46d3-99b8-4e4d044b4efc.txt + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e/ef74a35b-3e30-41ba-abe7-f13db9902570.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT etag: - - '"0x8D91C80CBDBE8DD"' + - '"0x8D9258B1897C06B"' last-modified: - - Fri, 21 May 2021 17:49:35 GMT + - Wed, 02 Jun 2021 05:55:59 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: - - Fri, 21 May 2021 17:49:35 GMT + - Wed, 02 Jun 2021 05:55:59 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d/e00ecbcc-d308-4dd4-ae03-c860f2dfa2d3.txt + uri: https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e/60abb2b2-9ce7-48a2-b2eb-b0674b55435e.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:58 GMT etag: - - '"0x8D91C80CBE38B69"' + - '"0x8D9258B189F3BCE"' last-modified: - - Fri, 21 May 2021 17:49:35 GMT + - Wed, 02 Jun 2021 05:55:59 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:49:35 GMT + - Wed, 02 Jun 2021 05:55:59 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetdae9f9d6-d870-42ff-beea-967b01031c6d?restype=container + uri: https://redacted.blob.core.windows.net/target2a3731eb-3b4a-45c1-b23f-de73cd5a5a48?restype=container response: body: string: '' @@ -463,11 +463,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:49:34 GMT + - Wed, 02 Jun 2021 05:55:59 GMT etag: - - '"0x8D91C80CC1592F0"' + - '"0x8D9258B18C2CA9E"' last-modified: - - Fri, 21 May 2021 17:49:35 GMT + - Wed, 02 Jun 2021 05:55:59 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -476,14 +476,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4b2c3602-2b23-4f4a-8e26-df549b21df7d?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetdae9f9d6-d870-42ff-beea-967b01031c6d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2ab8f2c7-4ad2-4dc6-b335-8bb03956203e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2a3731eb-3b4a-45c1-b23f-de73cd5a5a48?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '488' + - '482' Content-Type: - application/json User-Agent: @@ -494,19 +494,19 @@ interactions: body: string: '' headers: - apim-request-id: 0ea2fd4d-b54e-49b1-a2ef-5ec6c31c8cc1 + apim-request-id: d00d56b1-1e52-45db-b0eb-98ce16f3c3e2 content-length: '0' - date: Fri, 21 May 2021 17:49:35 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e2f8a035-8581-4fb8-8a84-2ed87c7af4be + date: Wed, 02 Jun 2021 05:55:59 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c1a90824-d9cc-4dc7-a40e-db0ae0d891ad set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0ea2fd4d-b54e-49b1-a2ef-5ec6c31c8cc1 + x-requestid: d00d56b1-1e52-45db-b0eb-98ce16f3c3e2 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - request: body: null headers: @@ -514,33 +514,26 @@ interactions: - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e2f8a035-8581-4fb8-8a84-2ed87c7af4be + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c1a90824-d9cc-4dc7-a40e-db0ae0d891ad response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFFiKVSvagnYOCjQdmo2h6USAbQESPRRB/r2SgXTOQhzv+I53 - CD14YDM4bHZWOeu0aoeLUw5dqwz3rqMOh/bCsAFKjML9RxmnMPG3UGFNY7RqrDL6pDvf7v3ObvfW - Gvumz4UZMcuBJMT5VcxWLAvKksvdMcqXYCpvq7tME6Zf8HeQKDiCbzYwYBhLWmVeiDjnVYf5M8Vr - eq5zlB/+r6oO4Uw8PtG17/2GCUk4VXFdk8fjD+b5N4MkAQAA + string: '{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.0637996Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 33912416-121a-4e3e-b3eb-c51c96ddb57c - cache-control: public,max-age=1 - content-encoding: gzip + apim-request-id: b1c08e7a-d7c6-4259-ac97-6e14771a50e5 content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:49:35 GMT - etag: '"065C4A042813C80B2132CD51A1561E1A0F35E15B9DF40BE0B8E809BA4DC9E729"' + date: Wed, 02 Jun 2021 05:55:59 GMT set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 33912416-121a-4e3e-b3eb-c51c96ddb57c + x-requestid: b1c08e7a-d7c6-4259-ac97-6e14771a50e5 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e2f8a035-8581-4fb8-8a84-2ed87c7af4be + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c1a90824-d9cc-4dc7-a40e-db0ae0d891ad - request: body: null headers: @@ -548,63 +541,53 @@ interactions: - 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/batches/e2f8a035-8581-4fb8-8a84-2ed87c7af4be + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c1a90824-d9cc-4dc7-a40e-db0ae0d891ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/4VzFEiyFCvainYOAjQd2o2R6VSAbQESPRRB/r2SgXTtQhzv+I53 - iAN4ID06lJ0VzjolzHh1wqEzQtPg+tDjaK4EOwiZkGl4q+MSZ/rgUFkttRLSCq0uqvfm6Du7P1qr - 7UF9VWbCwi+BY1r+ww57JV3fGdewwshrqXenxO+Mub5t7jrPmH/A34ET4wRe7mDEONW0ybKGQKVs - Oi7nnG75uS6JP+mvqjkBl0DTE936Xr8xY2DKTdy25PH4BYXt4wAkAQAA + string: '{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' headers: - apim-request-id: 94556ba9-13ad-449d-94f4-afb3a89cfd5f - content-encoding: gzip + apim-request-id: f7f3e540-1cf6-463b-90f0-1be348f621e5 + cache-control: public,max-age=1 content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:49:35 GMT + date: Wed, 02 Jun 2021 05:56:14 GMT + etag: '"550D2F8CD34D93C82AEA9C972408AE198C795380FFE1BB896F326BC1BCEF07DF"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 94556ba9-13ad-449d-94f4-afb3a89cfd5f + x-requestid: f7f3e540-1cf6-463b-90f0-1be348f621e5 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e2f8a035-8581-4fb8-8a84-2ed87c7af4be + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c1a90824-d9cc-4dc7-a40e-db0ae0d891ad - request: body: null headers: - Accept: - - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e2f8a035-8581-4fb8-8a84-2ed87c7af4be + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c1a90824-d9cc-4dc7-a40e-db0ae0d891ad response: body: - string: !!binary | - H4sIAAAAAAAEAIWMzW7CMBCE32XPGNlOTBzfKngAJOih3JbNhlrKj2QvB4R498ZR6bWX1ezMfPOE - 2EEAtr1HXTnlnTeq7q9eefS1stz5hhrs6yvDBigxCneH5ZzjyJ9CC2u1NUo7Zc3ZNKFuQ+W2rXPW - 7cxlYQbM8kES5+k/rN1a3Tq7awqWBeWel94eJ+Jh4K6Y93HE9IDwBJkFBwh+Az3GkgZdciLOedVx - Oqb5lt7vNMsXy0kwyW+Z/obLyrq3/8aEJJyKuK291+sHY1dPrCMBAAA= + string: '{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' headers: - apim-request-id: dd7f2e5e-730e-4e9b-9954-66b0a2a8d93c + apim-request-id: 005e2368-6d40-446d-88dc-652d36733aba cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:49:51 GMT - etag: '"A2EABCA73D98338E6E690F802AE2800869D4BA6E61FF2D1D67030FC7605EDBF4"' + date: Wed, 02 Jun 2021 05:56:20 GMT + etag: '"550D2F8CD34D93C82AEA9C972408AE198C795380FFE1BB896F326BC1BCEF07DF"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: dd7f2e5e-730e-4e9b-9954-66b0a2a8d93c + x-requestid: 005e2368-6d40-446d-88dc-652d36733aba status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e2f8a035-8581-4fb8-8a84-2ed87c7af4be + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c1a90824-d9cc-4dc7-a40e-db0ae0d891ad 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 f0e50fddff68..5db7160bed07 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:09 GMT + - Wed, 02 Jun 2021 05:51:56 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src19f82c33-5d69-4660-b12f-8b09e029a7da?restype=container + uri: https://redacted.blob.core.windows.net/srce8668f51-fb48-4c4e-b5d9-3db9da643732?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:08 GMT + - Wed, 02 Jun 2021 05:51:55 GMT etag: - - '"0x8D91C7931381281"' + - '"0x8D9258A87C37AE5"' last-modified: - - Fri, 21 May 2021 16:55:09 GMT + - Wed, 02 Jun 2021 05:51:56 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: - - Fri, 21 May 2021 16:55:09 GMT + - Wed, 02 Jun 2021 05:51:56 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src19f82c33-5d69-4660-b12f-8b09e029a7da/24e15133-0485-46ec-a9d7-84a2a12b5433.txt + uri: https://redacted.blob.core.windows.net/srce8668f51-fb48-4c4e-b5d9-3db9da643732/6e5d4701-4ff4-4dcc-b6e5-ecc87a711291.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 16:55:08 GMT + - Wed, 02 Jun 2021 05:51:55 GMT etag: - - '"0x8D91C793140B8A6"' + - '"0x8D9258A87CC4578"' last-modified: - - Fri, 21 May 2021 16:55:09 GMT + - Wed, 02 Jun 2021 05:51:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:09 GMT + - Wed, 02 Jun 2021 05:51:56 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetdffac478-b8a3-4f6f-9292-74b59c13bd24?restype=container + uri: https://redacted.blob.core.windows.net/target901bc860-36dc-476c-b843-3b657accbde0?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:09 GMT + - Wed, 02 Jun 2021 05:51:56 GMT etag: - - '"0x8D91C7931593E53"' + - '"0x8D9258A87ED31A1"' last-modified: - - Fri, 21 May 2021 16:55:09 GMT + - Wed, 02 Jun 2021 05:51:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src19f82c33-5d69-4660-b12f-8b09e029a7da?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetdffac478-b8a3-4f6f-9292-74b59c13bd24?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce8668f51-fb48-4c4e-b5d9-3db9da643732?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target901bc860-36dc-476c-b843-3b657accbde0?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -137,7 +137,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -149,544 +149,27 @@ interactions: string: '' headers: apim-request-id: - - d9fa560a-4645-4517-903c-c50df49f6e64 + - bdad7069-1a7f-4a61-abe4-daf44e590c61 content-length: - '0' date: - - Fri, 21 May 2021 16:55:09 GMT + - Wed, 02 Jun 2021 05:51:56 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - d9fa560a-4645-4517-903c-c50df49f6e64 - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:09.7136822Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - fc3c0541-7e05-462e-bd3c-43ad9e1fcfd3 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:09 GMT - etag: - - '"358BE08AB02BDD21CEEA3CE766A54D74F9F1681AD7FF5D04A381DED29BCFA833"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - fc3c0541-7e05-462e-bd3c-43ad9e1fcfd3 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:09.7136822Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 1ffe83da-e466-406e-a62e-fcf64040719a - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:09 GMT - etag: - - '"358BE08AB02BDD21CEEA3CE766A54D74F9F1681AD7FF5D04A381DED29BCFA833"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 1ffe83da-e466-406e-a62e-fcf64040719a - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 0a8146fd-caff-4c26-b759-42543142003d - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:10 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 0a8146fd-caff-4c26-b759-42543142003d - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 752d9085-ba65-4cc3-874e-060cf2f09946 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:11 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 752d9085-ba65-4cc3-874e-060cf2f09946 - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 8cc2546c-73ec-4c7c-9554-6ac1db38f92e - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:12 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 8cc2546c-73ec-4c7c-9554-6ac1db38f92e - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 6cdf3ffb-d596-41a0-98d9-ee3eeab287fe - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:13 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6cdf3ffb-d596-41a0-98d9-ee3eeab287fe - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 8215c403-908f-4c1b-ac69-047b7e7ac6b5 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:15 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/96658446-ca4f-4c79-8275-23b209c3c9e4 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 8215c403-908f-4c1b-ac69-047b7e7ac6b5 - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 15a06830-db8f-4bae-8d7c-f703321dc620 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:16 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 15a06830-db8f-4bae-8d7c-f703321dc620 + - bdad7069-1a7f-4a61-abe4-daf44e590c61 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 9fafdb26-31a1-4062-bcaa-fff434c86966 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:17 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9fafdb26-31a1-4062-bcaa-fff434c86966 - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 9fdf9a9a-1925-42df-9210-456030828c72 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:18 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9fdf9a9a-1925-42df-9210-456030828c72 - 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 - response: - body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - f7da0954-d58c-435b-8101-33c20e3e9d3d - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:19 GMT - etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - f7da0954-d58c-435b-8101-33c20e3e9d3d - status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -699,23 +182,23 @@ 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/96658446-ca4f-4c79-8275-23b209c3c9e4 response: body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 071f5a59-6aed-4428-a924-d2c7f43c7470 + - 10eb1349-6d60-4c7c-97d4-7ea008a30e67 cache-control: - public,max-age=1 content-length: - - '289' + - '291' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:20 GMT + - Wed, 02 Jun 2021 05:52:27 GMT etag: - - '"8A12CAA6B96D8AC90DED96CD3CBC01CA00003347F99299FF0D8B16B8BA6CB855"' + - '"044D24ABF8B7CB2FFED9BD8D27D4F818E608C0C06FF24BCF09DA3F3F8E74AB85"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -730,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 071f5a59-6aed-4428-a924-d2c7f43c7470 + - 10eb1349-6d60-4c7c-97d4-7ea008a30e67 status: code: 200 message: OK @@ -738,7 +221,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -746,23 +229,23 @@ 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/96658446-ca4f-4c79-8275-23b209c3c9e4/documents?$skip=0 response: body: - string: '{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target901bc860-36dc-476c-b843-3b657accbde0/6e5d4701-4ff4-4dcc-b6e5-ecc87a711291.txt","sourcePath":"https://redacted.blob.core.windows.net/srce8668f51-fb48-4c4e-b5d9-3db9da643732/6e5d4701-4ff4-4dcc-b6e5-ecc87a711291.txt","createdDateTimeUtc":"2021-06-02T05:52:01.196944Z","lastActionDateTimeUtc":"2021-06-02T05:52:06.0865356Z","status":"Succeeded","to":"es","progress":1,"id":"0007ece3-0000-0000-0000-000000000000","characterCharged":17}]}' headers: apim-request-id: - - bda2d554-89d7-4dc5-9f65-7414f4a12795 + - ea9be1b5-0b29-496c-8406-5e4d409e5de6 cache-control: - public,max-age=1 content-length: - - '292' + - '504' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 05:52:27 GMT etag: - - '"928BCADC4A2F309A427FFADC6B7977118CE7878A962DE305F88F2BCE9B6741C1"' + - '"C84A80A534EA1D0FF58B483A06F980E5FAEC380D900F867FDCD0BD19105593B8"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -777,7 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - bda2d554-89d7-4dc5-9f65-7414f4a12795 + - ea9be1b5-0b29-496c-8406-5e4d409e5de6 status: code: 200 message: OK @@ -793,23 +276,23 @@ 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/96658446-ca4f-4c79-8275-23b209c3c9e4/documents?$skip=0 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetdffac478-b8a3-4f6f-9292-74b59c13bd24/24e15133-0485-46ec-a9d7-84a2a12b5433.txt","sourcePath":"https://redacted.blob.core.windows.net/src19f82c33-5d69-4660-b12f-8b09e029a7da/24e15133-0485-46ec-a9d7-84a2a12b5433.txt","createdDateTimeUtc":"2021-05-21T16:55:10.6295548Z","lastActionDateTimeUtc":"2021-05-21T16:55:21.8939997Z","status":"Succeeded","to":"es","progress":1,"id":"0007a269-0000-0000-0000-000000000000","characterCharged":17}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target901bc860-36dc-476c-b843-3b657accbde0/6e5d4701-4ff4-4dcc-b6e5-ecc87a711291.txt","sourcePath":"https://redacted.blob.core.windows.net/srce8668f51-fb48-4c4e-b5d9-3db9da643732/6e5d4701-4ff4-4dcc-b6e5-ecc87a711291.txt","createdDateTimeUtc":"2021-06-02T05:52:01.196944Z","lastActionDateTimeUtc":"2021-06-02T05:52:06.0865356Z","status":"Succeeded","to":"es","progress":1,"id":"0007ece3-0000-0000-0000-000000000000","characterCharged":17}]}' headers: apim-request-id: - - 6c55eacf-c102-48b5-b9c0-c5a221f6bc6d + - 913ddaec-3a04-40cc-9997-31a8cb1fc13a cache-control: - public,max-age=1 content-length: - - '505' + - '504' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 05:52:27 GMT etag: - - '"DA48AD10AD690469FCE45A0133DE704E51B78D07A1FAACA795E38D3FFDFC23AA"' + - '"C84A80A534EA1D0FF58B483A06F980E5FAEC380D900F867FDCD0BD19105593B8"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -824,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6c55eacf-c102-48b5-b9c0-c5a221f6bc6d + - 913ddaec-3a04-40cc-9997-31a8cb1fc13a status: code: 200 message: OK @@ -840,23 +323,23 @@ 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/batches/9e256cfc-2029-4ca4-b4e6-13acbdb390b0/documents/0007a269-0000-0000-0000-000000000000 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/96658446-ca4f-4c79-8275-23b209c3c9e4/documents/0007ece3-0000-0000-0000-000000000000 response: body: - string: '{"path":"https://redacted.blob.core.windows.net/targetdffac478-b8a3-4f6f-9292-74b59c13bd24/24e15133-0485-46ec-a9d7-84a2a12b5433.txt","sourcePath":"https://redacted.blob.core.windows.net/src19f82c33-5d69-4660-b12f-8b09e029a7da/24e15133-0485-46ec-a9d7-84a2a12b5433.txt","createdDateTimeUtc":"2021-05-21T16:55:10.6295548Z","lastActionDateTimeUtc":"2021-05-21T16:55:21.8939997Z","status":"Succeeded","to":"es","progress":1,"id":"0007a269-0000-0000-0000-000000000000","characterCharged":17}' + string: '{"path":"https://redacted.blob.core.windows.net/target901bc860-36dc-476c-b843-3b657accbde0/6e5d4701-4ff4-4dcc-b6e5-ecc87a711291.txt","sourcePath":"https://redacted.blob.core.windows.net/srce8668f51-fb48-4c4e-b5d9-3db9da643732/6e5d4701-4ff4-4dcc-b6e5-ecc87a711291.txt","createdDateTimeUtc":"2021-06-02T05:52:01.196944Z","lastActionDateTimeUtc":"2021-06-02T05:52:06.0865356Z","status":"Succeeded","to":"es","progress":1,"id":"0007ece3-0000-0000-0000-000000000000","characterCharged":17}' headers: apim-request-id: - - 78145e64-5c0f-49f6-a6bb-7d9e763c2e42 + - ce0d090e-9ef5-4d78-b948-f82bbf4a33cd cache-control: - public,max-age=1 content-length: - - '493' + - '492' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 05:52:27 GMT etag: - - '"2EB75004635C175AFA1263F006CDD91C4C37D1B046B7DDD749E9D5BF2566AB65"' + - '"F4A1638E9D1810712C951D4725A09FB2C71292268D12127C64F0F96B3229CAA8"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -871,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 78145e64-5c0f-49f6-a6bb-7d9e763c2e42 + - ce0d090e-9ef5-4d78-b948-f82bbf4a33cd 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 75754f9a2842..2551e1aff161 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 06:10:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src33c88914-d83c-4180-b645-8b27f418d527?restype=container + uri: https://redacted.blob.core.windows.net/src7b699bbc-93f0-4be7-a47d-299b44ee3fac?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 06:10:19 GMT etag: - - '"0x8D91C79394ABB0B"' + - '"0x8D9258D195AE728"' last-modified: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 06:10:19 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: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 06:10:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src33c88914-d83c-4180-b645-8b27f418d527/e0b99218-9276-475d-a84f-832747e4f835.txt + uri: https://redacted.blob.core.windows.net/src7b699bbc-93f0-4be7-a47d-299b44ee3fac/a5346012-f4c3-4002-887a-1d594b38700d.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 06:10:19 GMT etag: - - '"0x8D91C79395D1887"' + - '"0x8D9258D19629D7E"' last-modified: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 06:10:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 06:10:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetfcf20e59-8c09-49c0-9382-75858f707550?restype=container + uri: https://redacted.blob.core.windows.net/targeta1276188-6153-4b6a-81f3-d59bf7112c2a?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:22 GMT + - Wed, 02 Jun 2021 06:10:19 GMT etag: - - '"0x8D91C79397F426A"' + - '"0x8D9258D1981A090"' last-modified: - - Fri, 21 May 2021 16:55:23 GMT + - Wed, 02 Jun 2021 06:10:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src33c88914-d83c-4180-b645-8b27f418d527?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfcf20e59-8c09-49c0-9382-75858f707550?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7b699bbc-93f0-4be7-a47d-299b44ee3fac?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta1276188-6153-4b6a-81f3-d59bf7112c2a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -144,53 +144,46 @@ interactions: body: string: '' headers: - apim-request-id: bcf7d41c-a28d-4dfd-b477-f2f452b434a0 + apim-request-id: 927ac812-e038-407e-b35b-3a2c816f9a41 content-length: '0' - date: Fri, 21 May 2021 16:55:23 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:10:19 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051 + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: bcf7d41c-a28d-4dfd-b477-f2f452b434a0 + x-requestid: 927ac812-e038-407e-b35b-3a2c816f9a41 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/cad86ad1-307f-425e-b339-a1d7aa833031 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NzaoCMQyF3yVrK/1xHO3uomsR1IXuYlq9hZkptJmFiO9uO6BrCYSTnHwnTwgO - LBC61RKdEka2N7HQjRdXY9YClWsRV8ZIo2AGlDyyd9vSjqH3J6bCaqmVkI3Q6qiWtmmsNnOjWlnq - UpgOM/8Rhzj8iC3WFcuMPOZyt4t8YEzlbd2OfY/pAfYJHBk7sHIGNwxdcavMI5HPedJh2Kd4T59x - iHz236i6IRzIdx90ytv8Y0Jin6q4T87r9QZmEu+aJAEAAA== + string: '{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: - apim-request-id: d6ef4573-e38d-4697-986e-e78691cdd975 + apim-request-id: abff6cbb-d99e-403e-ab9d-3be6e69e5142 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:23 GMT - etag: '"3D2B975AF0B3B600A2CECDE19037D92D203AB4C8D8FA185ADD752AFAA84D33B5"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:10:49 GMT + etag: '"A5FB5F632DEBACB2298D75B1510A9C3FFDEF6105F5B96E7AF1B0ECD6F4188957"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d6ef4573-e38d-4697-986e-e78691cdd975 + x-requestid: abff6cbb-d99e-403e-ab9d-3be6e69e5142 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051 - request: body: null headers: @@ -199,224 +192,27 @@ 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNMWsDMQyF/4vmuFhWLpd6K+1cCk2HdlNlJzHcncFWhhLy32sfpGsRiCc9fU9X - SAE8CIf9jgMasuPRbN0QzTfRo2EMI/OeyBLCBqRE1hheWjukOX6oNNZZh8YOxuEBd34YvKMHwtG2 - +mrMxFWfRFNe/se2zpJF6lhV1kttd69Z35VLe9u3l3nm8gP+CpqVJ/C4gSOnqbnedl8k1rrqtLyV - fCr3ccn6Gf+iOie8SJzu6Jr3fObCorF0cVqd2+0XD4XVoyQBAAA= - headers: - apim-request-id: 235b2a30-600d-476e-83be-1c8f703757ab - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:23 GMT - etag: '"748AD9290EDBFFB0D1BA3EB527714FF1F85278F8AA8E254AA6534A8411843B37"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 235b2a30-600d-476e-83be-1c8f703757ab - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 -- 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNMWsDMQyF/4vmuFhWLpd6K+1cCk2HdlNlJzHcncFWhhLy32sfpGsRiCc9fU9X - SAE8CIf9jgMasuPRbN0QzTfRo2EMI/OeyBLCBqRE1hheWjukOX6oNNZZh8YOxuEBd34YvKMHwtG2 - +mrMxFWfRFNe/se2zpJF6lhV1kttd69Z35VLe9u3l3nm8gP+CpqVJ/C4gSOnqbnedl8k1rrqtLyV - fCr3ccn6Gf+iOie8SJzu6Jr3fObCorF0cVqd2+0XD4XVoyQBAAA= - headers: - apim-request-id: f9c0f371-fc40-4dfd-8163-286be457b9fe - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:24 GMT - etag: '"748AD9290EDBFFB0D1BA3EB527714FF1F85278F8AA8E254AA6534A8411843B37"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: f9c0f371-fc40-4dfd-8163-286be457b9fe - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 -- 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7DMAyG3yXnZYqTpV1zQ/AACMYBbsbxSqQ2lRL3gKa9O2kFZ2TJ+u3//yz5 - plJUQRHGc4cRtDP9VZ+sZ/3p3KARYo94ds44UAdFhVE4PrV2STO/CTXWGgvaeG3hAl3wPlh3dNCb - Vh+NmbDKA0la8n+YP3a2O8EwbFgVlLW23Muac8rjtlrnGcu3Cjcli+CkAhzUFdPE7QWz+URc665T - fi7LWPaxpfIi7yyvgkV+w4SZePpD93uPX1iQhMsmxt25338AAVkdICEBAAA= - headers: - apim-request-id: dec43377-4cf5-431c-a16e-2ca8e9469528 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:25 GMT - etag: '"A3B951ACC76E89DB6F79CECD8A780C38269679E99EEECA439DA523E70483ED0C"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: dec43377-4cf5-431c-a16e-2ca8e9469528 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 -- 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPz07DMAzG38XnZcqfZi25IXgABOMAN+N4XaQ2lRL3gKa9O2kFZ2TJsv19P1u+ - QYoQgDAOJ4xGOd1fVGc9qy/nHhSa2CMOzmln4ABUGIXjc0vnNPO7UGOttkZpr6w5m1PwPlh3dKbX - LT4bM2GVR5K05P8wfxxs1652G1YFZa3N97rmnPK4jdZ5xvIN4QayCE4QzAEumCZuL+hNJ+Ja9zrl - l7KMZW+bKy/ywfImWOTXTJiJpz903/d0xYIkXLZi3JX7/QdI/xMSIQEAAA== + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targeta1276188-6153-4b6a-81f3-d59bf7112c2a/a5346012-f4c3-4002-887a-1d594b38700d.txt","sourcePath":"https://redacted.blob.core.windows.net/src7b699bbc-93f0-4be7-a47d-299b44ee3fac/a5346012-f4c3-4002-887a-1d594b38700d.txt","createdDateTimeUtc":"2021-06-02T06:10:22.1257854Z","lastActionDateTimeUtc":"2021-06-02T06:10:27.5954774Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed5d-0000-0000-0000-000000000000","characterCharged":17}]}' headers: - apim-request-id: b4a07c5a-1d72-4aaa-a9fc-106340f0e5a2 + apim-request-id: 68c17d88-5ddf-4262-9cfd-9c3c5081990e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:26 GMT - etag: '"CBD267AA09427588C196D9CFF9F984F3252EC2F41B8D6D627C07F01775C69CBA"' + date: Wed, 02 Jun 2021 06:10:50 GMT + etag: '"769E56C33892EDB33F7C942EAAFAD05EC68634FA22E22D6730934BEE8C29DC89"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b4a07c5a-1d72-4aaa-a9fc-106340f0e5a2 + x-requestid: 68c17d88-5ddf-4262-9cfd-9c3c5081990e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 -- 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPz07DMAzG38XnZcqfZi25IXgABOMAN+N4XaQ2lRL3gKa9O2kFZ2TJsv19P1u+ - QYoQgDAOJ4xGOd1fVGc9qy/nHhSa2CMOzmln4ABUGIXjc0vnNPO7UGOttkZpr6w5m1PwPlh3dKbX - LT4bM2GVR5K05P8wfxxs1652G1YFZa3N97rmnPK4jdZ5xvIN4QayCE4QzAEumCZuL+hNJ+Ja9zrl - l7KMZW+bKy/ywfImWOTXTJiJpz903/d0xYIkXLZi3JX7/QdI/xMSIQEAAA== - headers: - apim-request-id: be326a53-9995-4798-b7a4-cdbef6aed2f1 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:27 GMT - etag: '"CBD267AA09427588C196D9CFF9F984F3252EC2F41B8D6D627C07F01775C69CBA"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: be326a53-9995-4798-b7a4-cdbef6aed2f1 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 -- 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPz07DMAzG38XnZcqfZi25IXgABOMAN+N4XaQ2lRL3gKa9O2kFZ2TJsv19P1u+ - QYoQgDAOJ4xGOd1fVGc9qy/nHhSa2CMOzmln4ABUGIXjc0vnNPO7UGOttkZpr6w5m1PwPlh3dKbX - LT4bM2GVR5K05P8wfxxs1652G1YFZa3N97rmnPK4jdZ5xvIN4QayCE4QzAEumCZuL+hNJ+Ja9zrl - l7KMZW+bKy/ywfImWOTXTJiJpz903/d0xYIkXLZi3JX7/QdI/xMSIQEAAA== - headers: - apim-request-id: b2e094a6-f152-452f-be0e-b11766eb7c86 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:28 GMT - etag: '"CBD267AA09427588C196D9CFF9F984F3252EC2F41B8D6D627C07F01775C69CBA"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: b2e094a6-f152-452f-be0e-b11766eb7c86 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 -- 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNTWoDMQyF7+J1HCx7nJl6V9oDFJIu2p0qK4lhfsDWLELI3WMP7boIhPTe+6S7 - SlEFRRiHA0bQzvRn3VnP+se5F40Qe8TBOeNA7RRlRuH4XtspTfwpVFlrLGjjtYUTHIL3wbq9g97U - +q7MiEVeSdIy/4f5/WC7+rVrWBGUtdTccSVijhybuE4T5psKdyWL4KgC7NQZ01jdYJpfs6Vscpo/ - 8nLJ21qteZEvlqNglt8w4Uw8/qHbvbcrZiTh3IZLc6B/PJ7+Wyl9JAEAAA== - headers: - apim-request-id: 04f4456f-c25f-40bd-a4e1-11eb57441c89 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:29 GMT - etag: '"23DF7061E15BBE75DA3EEF99182325831407319B3B0F55DCA08D8E91F5826BCC"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 04f4456f-c25f-40bd-a4e1-11eb57441c89 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051/documents?$skip=0 - request: body: null headers: @@ -425,34 +221,27 @@ 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAJVRQU7DMBD8i891snbs2M4NwQOQKBcQB8feNBGhiewNRar6d1wkLlxQ9zCaHc1I - s9oz+/Tzhqx7PbPV08g6NhKtuavr97QmT1Po56WvfiAsCavTdIzLKVdHpJp8OiANYZCA2nEbwHHl - AnDXWMmNttoOBozWUCP0zklhuZOm5croyL1VA7eNNMqgGmyjK/oitmN52VLAx5vb5BSaJljrhOLR - NoErYYH3rdLc9tIMZY1amluqhISeMD4U2E8f+EyhVJIgBQfNpdiLttO6k7pqG20EyJeSmX2mu0DT - cvwv5ioA0crWXGOZPG25+J62EBAjxiLSUgTMha1pOSTMxSB2bIpFBgDjZet5IfAHfud6wuiTD4Tp - frx+qySFubxdvgEQFSef+QEAAA== + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targeta1276188-6153-4b6a-81f3-d59bf7112c2a/a5346012-f4c3-4002-887a-1d594b38700d.txt","sourcePath":"https://redacted.blob.core.windows.net/src7b699bbc-93f0-4be7-a47d-299b44ee3fac/a5346012-f4c3-4002-887a-1d594b38700d.txt","createdDateTimeUtc":"2021-06-02T06:10:22.1257854Z","lastActionDateTimeUtc":"2021-06-02T06:10:27.5954774Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed5d-0000-0000-0000-000000000000","characterCharged":17}]}' headers: - apim-request-id: 1241bd17-497c-4e4b-a01a-9a29bab52b64 + apim-request-id: 75d6dc10-2348-4edb-98f6-4207f1fb7e72 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:29 GMT - etag: '"165E031C28CD03FC41696F248348D4E27BA6E41B0F7BD456CFB7A703CC68E3BB"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:10:50 GMT + etag: '"769E56C33892EDB33F7C942EAAFAD05EC68634FA22E22D6730934BEE8C29DC89"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1241bd17-497c-4e4b-a01a-9a29bab52b64 + x-requestid: 75d6dc10-2348-4edb-98f6-4207f1fb7e72 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031/documents?$skip=0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051/documents?$skip=0 - request: body: null headers: @@ -461,32 +250,25 @@ 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/batches/cad86ad1-307f-425e-b339-a1d7aa833031/documents/0007a26a-0000-0000-0000-000000000000 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051/documents/0007ed5d-0000-0000-0000-000000000000 response: body: - string: !!binary | - H4sIAAAAAAAEAJVRQU7DMBD8S87ddO3YsZ0bggcgUS7cnPWGRJQmsrcqEuLvuEhcuKDuYTQ7mpFm - tZ/NFmVuhmYW2cqw37/lLUdZaDyuY/sDtGZuL8sprZfSnlj2EvMry0STRrYBPGEAEwghdF6Ds976 - yaGzFveMYwhaeQja9WCcTRC9mcB32hnHZvKdbeVDml1T1nMmfry5TcnUdeR9UAaS7wiM8ghjbyz4 - Ubuprslqd0sVyhyF00OFw/LOz0K1kkatAC1odVD9YO2gbdt31inULzVzjEXuSJb19F8stIiq1727 - xopEOZfqezoTMSdOVZS1Clwq2/L6mrlUg9o1S6oyIrqo+wiV4B/4nesJc8yRhPP9fP1WTSr39Q0b - q0y97QEAAA== + string: '{"path":"https://redacted.blob.core.windows.net/targeta1276188-6153-4b6a-81f3-d59bf7112c2a/a5346012-f4c3-4002-887a-1d594b38700d.txt","sourcePath":"https://redacted.blob.core.windows.net/src7b699bbc-93f0-4be7-a47d-299b44ee3fac/a5346012-f4c3-4002-887a-1d594b38700d.txt","createdDateTimeUtc":"2021-06-02T06:10:22.1257854Z","lastActionDateTimeUtc":"2021-06-02T06:10:27.5954774Z","status":"Succeeded","to":"es","progress":1,"id":"0007ed5d-0000-0000-0000-000000000000","characterCharged":17}' headers: - apim-request-id: f08065a4-1447-49d7-a454-51d4c1382c1c + apim-request-id: 9ba70860-d62d-40b1-81c3-9d75d9d82eaf cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:55:29 GMT - etag: '"DA162FF6EA86F0B4B025C839826CAB4C8FAA8FAA3EAC5AA33A652AA19761EFA8"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 06:10:50 GMT + etag: '"4EA37CAB4458D67D94E47B3402D714B9D7473257021A28FFECDF6C46FC7DCD15"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f08065a4-1447-49d7-a454-51d4c1382c1c + x-requestid: 9ba70860-d62d-40b1-81c3-9d75d9d82eaf status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cad86ad1-307f-425e-b339-a1d7aa833031/documents/0007a26a-0000-0000-0000-000000000000 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a4f47cf3-d066-4b66-a867-1815729c7051/documents/0007ed5d-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 67a9a0f15b5c..299c65e01407 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src304119c8-e7c8-492d-9a96-e5590c41b0f9?restype=container + uri: https://redacted.blob.core.windows.net/src8aa248ab-baf5-4e12-a36e-e65dac3d7d5e?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT etag: - - '"0x8D91C793DD6B203"' + - '"0x8D9258D889B7499"' last-modified: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 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: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src304119c8-e7c8-492d-9a96-e5590c41b0f9/b05a9483-59ac-47bd-8070-1f63f35c3e75.txt + uri: https://redacted.blob.core.windows.net/src8aa248ab-baf5-4e12-a36e-e65dac3d7d5e/225fe9a5-892f-4f1a-bd40-71137a8879d0.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT etag: - - '"0x8D91C793DF9E573"' + - '"0x8D9258D88A3BC3A"' last-modified: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 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: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src304119c8-e7c8-492d-9a96-e5590c41b0f9/e9fa04ec-5080-40d9-bd12-cab985d72049.txt + uri: https://redacted.blob.core.windows.net/src8aa248ab-baf5-4e12-a36e-e65dac3d7d5e/99756ec6-3b8b-4625-9a14-c9032f464d01.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT etag: - - '"0x8D91C793E046EAB"' + - '"0x8D9258D88B1EF93"' last-modified: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 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: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src304119c8-e7c8-492d-9a96-e5590c41b0f9/c86387fb-bf68-44c6-84cc-21ef362b6d4f.txt + uri: https://redacted.blob.core.windows.net/src8aa248ab-baf5-4e12-a36e-e65dac3d7d5e/1ccbe844-17c2-43cc-befc-91a0d85d8cc2.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT etag: - - '"0x8D91C793E0EF7EC"' + - '"0x8D9258D88B943E6"' last-modified: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 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: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src304119c8-e7c8-492d-9a96-e5590c41b0f9/49064d16-1bbf-4319-9919-55bc7c6d40fe.txt + uri: https://redacted.blob.core.windows.net/src8aa248ab-baf5-4e12-a36e-e65dac3d7d5e/7e86e669-c848-4d65-a820-df67e2fda864.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT etag: - - '"0x8D91C793E15FE13"' + - '"0x8D9258D88C0711F"' last-modified: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 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: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src304119c8-e7c8-492d-9a96-e5590c41b0f9/3385b398-b71d-405c-b300-fbdf4557bfbe.txt + uri: https://redacted.blob.core.windows.net/src8aa248ab-baf5-4e12-a36e-e65dac3d7d5e/6dffbc34-ea7d-407f-b629-97ad2e09a5e9.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT etag: - - '"0x8D91C793E1E6403"' + - '"0x8D9258D88C99A8B"' last-modified: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc490828e-7f65-4a07-bea0-ef6a91350c5a?restype=container + uri: https://redacted.blob.core.windows.net/target564ddb80-a170-4261-a179-ac8b02b08061?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT etag: - - '"0x8D91C793E3E1D5E"' + - '"0x8D9258D88E386DA"' last-modified: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src304119c8-e7c8-492d-9a96-e5590c41b0f9?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc490828e-7f65-4a07-bea0-ef6a91350c5a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8aa248ab-baf5-4e12-a36e-e65dac3d7d5e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target564ddb80-a170-4261-a179-ac8b02b08061?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -349,13 +349,13 @@ interactions: string: '' headers: apim-request-id: - - 54edcd90-6b88-4128-93ea-53e6e6d3f1f4 + - e40dc58c-6ef2-4a4e-aa71-dd6a1dbe4981 content-length: - '0' date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:26 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5a06cdcc-c9a5-438c-ba38-fb25828d0653 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/db0fd9de-ad02-44b5-8392-f6fbf97d72ff set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -366,7 +366,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 54edcd90-6b88-4128-93ea-53e6e6d3f1f4 + - e40dc58c-6ef2-4a4e-aa71-dd6a1dbe4981 status: code: 202 message: Accepted @@ -374,7 +374,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -382,26 +382,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/batches/5a06cdcc-c9a5-438c-ba38-fb25828d0653 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/db0fd9de-ad02-44b5-8392-f6fbf97d72ff response: body: - string: '{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:31.3026317Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 1ad59d58-d999-4371-ab93-f6158a0d3f7a + - 3d7184c9-2e99-45a0-9d0f-149c705cee23 cache-control: - public,max-age=1 content-length: - - '292' + - '293' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:56 GMT etag: - - '"7C585B8D2222F48E4D588D0BB958E93D5EF6AA63BE80A7FC121177C1020F922A"' + - '"F35A2D555B5B02BBE1E15C2C2A146CB489416680A45703A643752FFB7202CFFA"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -413,7 +413,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1ad59d58-d999-4371-ab93-f6158a0d3f7a + - 3d7184c9-2e99-45a0-9d0f-149c705cee23 status: code: 200 message: OK @@ -431,11 +431,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdbcfabc7-78b9-4a03-933a-4ed5b873e207?restype=container + uri: https://redacted.blob.core.windows.net/srce99901cd-18db-49d0-a7cd-2f9873f3fc92?restype=container response: body: string: '' @@ -443,11 +443,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:56 GMT etag: - - '"0x8D91C793E8E01CA"' + - '"0x8D9258D9B2737E4"' last-modified: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -475,11 +475,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdbcfabc7-78b9-4a03-933a-4ed5b873e207/a8943466-660c-4b89-8032-e90d41f6b563.txt + uri: https://redacted.blob.core.windows.net/srce99901cd-18db-49d0-a7cd-2f9873f3fc92/55d2b322-17df-4958-aa24-024c0ea7e0f9.txt response: body: string: '' @@ -489,11 +489,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:30 GMT + - Wed, 02 Jun 2021 06:13:56 GMT etag: - - '"0x8D91C793E9816F3"' + - '"0x8D9258D9B2FA6C5"' last-modified: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -525,11 +525,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdbcfabc7-78b9-4a03-933a-4ed5b873e207/b000a260-2413-4961-bdda-803c8ff67716.txt + uri: https://redacted.blob.core.windows.net/srce99901cd-18db-49d0-a7cd-2f9873f3fc92/ae2726e9-d059-4041-ab42-7d3793924eea.txt response: body: string: '' @@ -539,11 +539,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:56 GMT etag: - - '"0x8D91C793EA02EBE"' + - '"0x8D9258D9B3881FE"' last-modified: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -575,11 +575,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdbcfabc7-78b9-4a03-933a-4ed5b873e207/e69ddf0f-ff23-4af5-8e54-a6ce7a1f91c3.txt + uri: https://redacted.blob.core.windows.net/srce99901cd-18db-49d0-a7cd-2f9873f3fc92/59fad582-911b-48b6-ad82-21460c53eeed.txt response: body: string: '' @@ -589,11 +589,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:56 GMT etag: - - '"0x8D91C793EA7D13C"' + - '"0x8D9258D9B40C0D2"' last-modified: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -625,11 +625,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdbcfabc7-78b9-4a03-933a-4ed5b873e207/c928d35d-a846-4741-95fd-5a190c0444a6.txt + uri: https://redacted.blob.core.windows.net/srce99901cd-18db-49d0-a7cd-2f9873f3fc92/5f7701a1-b20f-45cc-9883-0b7fe566a22c.txt response: body: string: '' @@ -639,11 +639,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT etag: - - '"0x8D91C793EAEFE7D"' + - '"0x8D9258D9B4B22F2"' last-modified: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -675,11 +675,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdbcfabc7-78b9-4a03-933a-4ed5b873e207/e986f1e3-3f79-4c2f-a5d7-7c8b18852ba1.txt + uri: https://redacted.blob.core.windows.net/srce99901cd-18db-49d0-a7cd-2f9873f3fc92/80267814-ffb3-43fb-904a-424799919757.txt response: body: string: '' @@ -689,11 +689,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT etag: - - '"0x8D91C793EB679EB"' + - '"0x8D9258D9B5313A5"' last-modified: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -719,11 +719,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8ef89f2f-7e1f-4dcd-b4de-2ae5b57c1823?restype=container + uri: https://redacted.blob.core.windows.net/targetdae2668f-2288-4cae-8957-7bb0ccef58d4?restype=container response: body: string: '' @@ -731,11 +731,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT etag: - - '"0x8D91C793ECFA613"' + - '"0x8D9258D9B6CBD43"' last-modified: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:13:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -744,8 +744,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdbcfabc7-78b9-4a03-933a-4ed5b873e207?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8ef89f2f-7e1f-4dcd-b4de-2ae5b57c1823?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce99901cd-18db-49d0-a7cd-2f9873f3fc92?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetdae2668f-2288-4cae-8957-7bb0ccef58d4?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -767,16 +767,16 @@ interactions: string: '' headers: apim-request-id: - - 1d37b222-0083-47e8-aad3-bc13402e81c1 + - 1a26ca81-e799-497d-b5e3-c07e9b1bdae4 content-length: - '0' date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:13:57 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/0e6b1abc-2184-436a-bcf2-397af052cf18 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f49b8b7b-20c9-4f2c-913e-fc34c1754aac set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -784,7 +784,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1d37b222-0083-47e8-aad3-bc13402e81c1 + - 1a26ca81-e799-497d-b5e3-c07e9b1bdae4 status: code: 202 message: Accepted @@ -792,7 +792,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -800,26 +800,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/batches/0e6b1abc-2184-436a-bcf2-397af052cf18 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f49b8b7b-20c9-4f2c-913e-fc34c1754aac response: body: - string: '{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:32.0722144Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 8a600e4b-aef1-4b31-b701-cee6d5174298 + - d3312dca-def9-4f8f-a175-983df624c5d8 cache-control: - public,max-age=1 content-length: - - '291' + - '293' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:14:26 GMT etag: - - '"A2DD0F0AA8F2002141915805B23155A7C8F72DC90C031D710B350D367A92716C"' + - '"98375C13A328E04D50574848E183F2AABF7E1DFC253A3C2F24E78A57A431C5B2"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -831,7 +831,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 8a600e4b-aef1-4b31-b701-cee6d5174298 + - d3312dca-def9-4f8f-a175-983df624c5d8 status: code: 200 message: OK @@ -849,11 +849,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2376b723-3688-400e-8627-35b118df3aa1?restype=container + uri: https://redacted.blob.core.windows.net/srcdffee344-34e7-4792-ad0f-65003806f5bd?restype=container response: body: string: '' @@ -861,11 +861,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:14:47 GMT etag: - - '"0x8D91C793F0432B8"' + - '"0x8D9258DB9083BAB"' last-modified: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -893,11 +893,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2376b723-3688-400e-8627-35b118df3aa1/eaa5d3d5-769a-4ec6-909d-26137667c8fb.txt + uri: https://redacted.blob.core.windows.net/srcdffee344-34e7-4792-ad0f-65003806f5bd/a1d6c2d3-2808-451f-8f6a-fb509dd99adb.txt response: body: string: '' @@ -907,11 +907,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:14:47 GMT etag: - - '"0x8D91C793F0BAE43"' + - '"0x8D9258DB913FD90"' last-modified: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -943,11 +943,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2376b723-3688-400e-8627-35b118df3aa1/69a463e9-0c98-476e-8c30-5c7d3dd30d40.txt + uri: https://redacted.blob.core.windows.net/srcdffee344-34e7-4792-ad0f-65003806f5bd/36cf628a-5253-4c14-aae4-fc59ed64dc0a.txt response: body: string: '' @@ -957,11 +957,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:14:47 GMT etag: - - '"0x8D91C793F14FEC2"' + - '"0x8D9258DB91B51DE"' last-modified: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -993,11 +993,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2376b723-3688-400e-8627-35b118df3aa1/82c0d811-9fab-405e-a03f-9b70d224d194.txt + uri: https://redacted.blob.core.windows.net/srcdffee344-34e7-4792-ad0f-65003806f5bd/dc12cc75-61ad-400a-ae45-7792b07e6bbd.txt response: body: string: '' @@ -1007,11 +1007,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:14:47 GMT etag: - - '"0x8D91C793F1CA149"' + - '"0x8D9258DB922A635"' last-modified: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1043,11 +1043,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2376b723-3688-400e-8627-35b118df3aa1/c547b0c4-8f04-4bcc-a2b7-9c42648fb0cb.txt + uri: https://redacted.blob.core.windows.net/srcdffee344-34e7-4792-ad0f-65003806f5bd/d9dd79bb-635b-4727-9835-73dad947e92e.txt response: body: string: '' @@ -1057,11 +1057,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:14:47 GMT etag: - - '"0x8D91C793F2443D1"' + - '"0x8D9258DB92BA888"' last-modified: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1093,11 +1093,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src2376b723-3688-400e-8627-35b118df3aa1/d75d9c9f-49f4-4af0-b7b4-257a60a2908c.txt + uri: https://redacted.blob.core.windows.net/srcdffee344-34e7-4792-ad0f-65003806f5bd/557e615a-2e7e-49ba-8f54-50e5b65d5587.txt response: body: string: '' @@ -1107,11 +1107,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:31 GMT + - Wed, 02 Jun 2021 06:14:47 GMT etag: - - '"0x8D91C793F2C82B1"' + - '"0x8D9258DB9352019"' last-modified: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1137,11 +1137,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetd2dbc839-db38-469a-94ea-4f66ebc42c94?restype=container + uri: https://redacted.blob.core.windows.net/target87a73041-4134-407f-8fa5-2b1147d3bd8e?restype=container response: body: string: '' @@ -1149,11 +1149,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT etag: - - '"0x8D91C793F6F379A"' + - '"0x8D9258DB94F71CE"' last-modified: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:14:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1162,8 +1162,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2376b723-3688-400e-8627-35b118df3aa1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd2dbc839-db38-469a-94ea-4f66ebc42c94?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdffee344-34e7-4792-ad0f-65003806f5bd?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target87a73041-4134-407f-8fa5-2b1147d3bd8e?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1185,16 +1185,16 @@ interactions: string: '' headers: apim-request-id: - - a16887c7-3bce-4984-8443-ab29679c3f87 + - 875a1d2d-f01e-4263-af1c-216843add2c7 content-length: - '0' date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:14:47 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa126fb6-9e90-405a-b1de-7031097aee41 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -1202,7 +1202,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a16887c7-3bce-4984-8443-ab29679c3f87 + - 875a1d2d-f01e-4263-af1c-216843add2c7 status: code: 202 message: Accepted @@ -1210,7 +1210,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -1218,26 +1218,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/batches/fa126fb6-9e90-405a-b1de-7031097aee41 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0 response: body: - string: '{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:33.1374342Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 9462ca30-a4ae-43a8-a781-7da5c863df32 + - e9598be0-68c6-40fa-8fd1-8b7a6df1dc8e cache-control: - public,max-age=1 content-length: - - '292' + - '293' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:32 GMT + - Wed, 02 Jun 2021 06:15:17 GMT etag: - - '"0DAB77A68E1CB16FE8A1A3EDFBB07EFC232F0C8B8EB8B191C26DB94FE01B24C4"' + - '"43ABC0B2CF74393F903EAD61F0C251903A8A802B5A2920AE9DE42C3EBB2FCABC"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1249,7 +1249,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9462ca30-a4ae-43a8-a781-7da5c863df32 + - e9598be0-68c6-40fa-8fd1-8b7a6df1dc8e status: code: 200 message: OK @@ -1267,11 +1267,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99e92b82-58dd-4fd6-a4a8-9af515ed4335?restype=container + uri: https://redacted.blob.core.windows.net/src9a85ddb8-d76d-4d9a-b1e6-e4172495f3db?restype=container response: body: string: '' @@ -1279,11 +1279,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:17 GMT etag: - - '"0x8D91C793FB33EE2"' + - '"0x8D9258DCB9631C1"' last-modified: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1311,11 +1311,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99e92b82-58dd-4fd6-a4a8-9af515ed4335/3f997f06-2032-43fa-a85d-060d98109ca0.txt + uri: https://redacted.blob.core.windows.net/src9a85ddb8-d76d-4d9a-b1e6-e4172495f3db/2fd2f958-34fe-4c30-a8ea-fa24751c87ed.txt response: body: string: '' @@ -1325,11 +1325,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:17 GMT etag: - - '"0x8D91C793FBC32A5"' + - '"0x8D9258DCBA2F5E8"' last-modified: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1361,11 +1361,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99e92b82-58dd-4fd6-a4a8-9af515ed4335/8c2d3a60-34a8-4f9e-be8a-929b30771fea.txt + uri: https://redacted.blob.core.windows.net/src9a85ddb8-d76d-4d9a-b1e6-e4172495f3db/b2c3ca27-0d94-4a47-b8ef-522f0f11bb17.txt response: body: string: '' @@ -1375,11 +1375,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:17 GMT etag: - - '"0x8D91C793FC5F862"' + - '"0x8D9258DCBAA7154"' last-modified: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1411,11 +1411,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99e92b82-58dd-4fd6-a4a8-9af515ed4335/d2a09fa1-753b-4f22-8ede-5bee1ab7c553.txt + uri: https://redacted.blob.core.windows.net/src9a85ddb8-d76d-4d9a-b1e6-e4172495f3db/6f30e09a-a303-4433-b293-7c3f40cece0b.txt response: body: string: '' @@ -1425,11 +1425,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT etag: - - '"0x8D91C793FCD73CC"' + - '"0x8D9258DCBB2B031"' last-modified: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1461,11 +1461,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99e92b82-58dd-4fd6-a4a8-9af515ed4335/0fbd1e11-6b3e-4b24-aa34-27b8ec456e44.txt + uri: https://redacted.blob.core.windows.net/src9a85ddb8-d76d-4d9a-b1e6-e4172495f3db/b495a7c9-0f10-4c7f-8c50-236cccb1cb59.txt response: body: string: '' @@ -1475,11 +1475,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT etag: - - '"0x8D91C793FD58B97"' + - '"0x8D9258DCBBAC7F0"' last-modified: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1511,11 +1511,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src99e92b82-58dd-4fd6-a4a8-9af515ed4335/9f75b6b4-fbb2-4312-ad61-41b60307045e.txt + uri: https://redacted.blob.core.windows.net/src9a85ddb8-d76d-4d9a-b1e6-e4172495f3db/c6aad0c7-eb2a-46b9-b516-ba1b8798c7a1.txt response: body: string: '' @@ -1525,11 +1525,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT etag: - - '"0x8D91C793FDCB8D3"' + - '"0x8D9258DCBC3A325"' last-modified: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1555,11 +1555,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target67fe5ef1-52a8-4183-a618-ad2a8222245a?restype=container + uri: https://redacted.blob.core.windows.net/targeta67cf7e2-4039-4f91-a818-cd4ded118592?restype=container response: body: string: '' @@ -1567,11 +1567,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT etag: - - '"0x8D91C7940027B87"' + - '"0x8D9258DCBE230D6"' last-modified: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1580,8 +1580,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src99e92b82-58dd-4fd6-a4a8-9af515ed4335?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target67fe5ef1-52a8-4183-a618-ad2a8222245a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9a85ddb8-d76d-4d9a-b1e6-e4172495f3db?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta67cf7e2-4039-4f91-a818-cd4ded118592?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1591,7 +1591,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -1603,16 +1603,16 @@ interactions: string: '' headers: apim-request-id: - - 39c09e49-d4ae-4166-9088-940a6dc483e1 + - 4b6f52cb-95c4-49b0-a1f7-27a7509d8877 content-length: - '0' date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:18 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fcc1eb4e-5275-48db-b18b-eaf0608d0690 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/07f36a24-9854-43f3-a9dc-15203fe5c62a set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -1620,7 +1620,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 39c09e49-d4ae-4166-9088-940a6dc483e1 + - 4b6f52cb-95c4-49b0-a1f7-27a7509d8877 status: code: 202 message: Accepted @@ -1628,7 +1628,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -1636,26 +1636,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/batches/fcc1eb4e-5275-48db-b18b-eaf0608d0690 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/07f36a24-9854-43f3-a9dc-15203fe5c62a response: body: - string: '{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0980314Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 9223c42a-94d5-41aa-acc4-4453699035d4 + - 3ce462b7-b2f2-4b21-ab06-9e5f59917e00 cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:48 GMT etag: - - '"F752FB87DA76413CA12CAA4590259A78739FDCE79950295E38A4F42011B0F23C"' + - '"B1715C5242C3FB0C452F805C146050C9C650DBB76655EC451B8C6F4D57488EF8"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1667,7 +1667,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9223c42a-94d5-41aa-acc4-4453699035d4 + - 3ce462b7-b2f2-4b21-ab06-9e5f59917e00 status: code: 200 message: OK @@ -1685,11 +1685,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e9f7f00-d036-4b29-a15f-ceec357321df?restype=container + uri: https://redacted.blob.core.windows.net/srcd1b74708-57c6-42d4-8d30-a5b4d33dbedb?restype=container response: body: string: '' @@ -1697,11 +1697,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:49 GMT etag: - - '"0x8D91C79403CF218"' + - '"0x8D9258DDDFDB8CC"' last-modified: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1729,11 +1729,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e9f7f00-d036-4b29-a15f-ceec357321df/65423d9c-97b5-4fb6-98fc-6e0b94f294a2.txt + uri: https://redacted.blob.core.windows.net/srcd1b74708-57c6-42d4-8d30-a5b4d33dbedb/843bfe19-ca45-40f2-83a5-98295eaaca20.txt response: body: string: '' @@ -1743,11 +1743,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:49 GMT etag: - - '"0x8D91C794046D88A"' + - '"0x8D9258DDE0A8904"' last-modified: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1779,11 +1779,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e9f7f00-d036-4b29-a15f-ceec357321df/badaa110-f99a-451e-8b45-c8d639e4b3a4.txt + uri: https://redacted.blob.core.windows.net/srcd1b74708-57c6-42d4-8d30-a5b4d33dbedb/b52cee20-b419-4ca3-9175-2852f7becb68.txt response: body: string: '' @@ -1793,11 +1793,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:49 GMT etag: - - '"0x8D91C79404F3E83"' + - '"0x8D9258DDE12EEFF"' last-modified: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1829,11 +1829,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e9f7f00-d036-4b29-a15f-ceec357321df/7ed5fc75-34f9-47b5-8598-cd0046288b96.txt + uri: https://redacted.blob.core.windows.net/srcd1b74708-57c6-42d4-8d30-a5b4d33dbedb/3019ff89-06d9-47a9-a69f-82fa3bcf8d58.txt response: body: string: '' @@ -1843,11 +1843,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:49 GMT etag: - - '"0x8D91C7940577D62"' + - '"0x8D9258DDE1D782F"' last-modified: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1879,11 +1879,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e9f7f00-d036-4b29-a15f-ceec357321df/4d07f58e-1478-4b47-8739-c979aaa4d735.txt + uri: https://redacted.blob.core.windows.net/srcd1b74708-57c6-42d4-8d30-a5b4d33dbedb/a41186ff-accc-4b07-bc1a-1d2129f54e0d.txt response: body: string: '' @@ -1893,11 +1893,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:49 GMT etag: - - '"0x8D91C79405F1FEA"' + - '"0x8D9258DDE26EFC4"' last-modified: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1929,11 +1929,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e9f7f00-d036-4b29-a15f-ceec357321df/dbd22d1f-35d2-4fb9-9d5e-3e4d8b8437c6.txt + uri: https://redacted.blob.core.windows.net/srcd1b74708-57c6-42d4-8d30-a5b4d33dbedb/cb13e635-886a-45f2-8a54-2d05f69530da.txt response: body: string: '' @@ -1943,11 +1943,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:33 GMT + - Wed, 02 Jun 2021 06:15:49 GMT etag: - - '"0x8D91C7940675ECA"' + - '"0x8D9258DDE31EE3C"' last-modified: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1973,11 +1973,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target0003c3cc-a47b-4309-8ea0-f61fa93bb177?restype=container + uri: https://redacted.blob.core.windows.net/targetc4a269ac-3912-480b-b338-fd37cc6377d6?restype=container response: body: string: '' @@ -1985,11 +1985,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT etag: - - '"0x8D91C7940902C99"' + - '"0x8D9258DDE55D8F3"' last-modified: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1998,8 +1998,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src6e9f7f00-d036-4b29-a15f-ceec357321df?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0003c3cc-a47b-4309-8ea0-f61fa93bb177?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd1b74708-57c6-42d4-8d30-a5b4d33dbedb?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc4a269ac-3912-480b-b338-fd37cc6377d6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2009,7 +2009,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -2021,16 +2021,16 @@ interactions: string: '' headers: apim-request-id: - - 935dc6ca-b176-4e9b-a9ca-df9615b7e1ad + - 6fbcf084-5221-4559-8c3e-8664ad2cf188 content-length: - '0' date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:15:49 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c2c51ffc-78d1-4939-bef4-0520c86b4fac + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bd4369b1-1bd4-4c6e-ad45-338e6579899c set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -2038,7 +2038,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 935dc6ca-b176-4e9b-a9ca-df9615b7e1ad + - 6fbcf084-5221-4559-8c3e-8664ad2cf188 status: code: 202 message: Accepted @@ -2046,7 +2046,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -2054,13 +2054,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/batches/c2c51ffc-78d1-4939-bef4-0520c86b4fac + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bd4369b1-1bd4-4c6e-ad45-338e6579899c response: body: - string: '{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:35.0291044Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: apim-request-id: - - 18becaaa-4044-4b9d-9ab6-96f71b5f0d6a + - 51899a2d-43ad-4430-b4ed-4afa957231ae cache-control: - public,max-age=1 content-length: @@ -2068,9 +2068,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:16:19 GMT etag: - - '"FEBF7699DA0CA4B26ADD484C43F9D967C1CE85A4657D17E0DBC67F2D638EA6A6"' + - '"9FEC2A97F1E5E06CE79911590AC5564BAE495A19271ECE94B5C6A85443D3EECF"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 51899a2d-43ad-4430-b4ed-4afa957231ae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0 + response: + body: + string: '{"value":[{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=243&$maxpagesize=50"}' + headers: + apim-request-id: + - 2fad2f6d-9537-4d5f-8faa-6d3caef9e696 + cache-control: + - public,max-age=1 + content-length: + - '14819' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:16:19 GMT + etag: + - '"F3438AB151FF3B1C9D3615D87BE346DD708642E502967555ABE034A402E2A424"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2085,7 +2132,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 18becaaa-4044-4b9d-9ab6-96f71b5f0d6a + - 2fad2f6d-9537-4d5f-8faa-6d3caef9e696 status: code: 200 message: OK @@ -2101,23 +2148,215 @@ 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/batches?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=243&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=193&$maxpagesize=50"}' + headers: + apim-request-id: + - 820bc896-39cc-4180-99de-fe49a4d61274 + cache-control: + - public,max-age=1 + content-length: + - '14806' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:16:19 GMT + etag: + - '"1C729FB058C37847D062904EC2A773822E54D197DB30E600F0BCCB2A8E06E412"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 820bc896-39cc-4180-99de-fe49a4d61274 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=193&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=143&$maxpagesize=50"}' + headers: + apim-request-id: + - ee4cd41f-8bdf-43ba-85da-27ae640815b4 + cache-control: + - public,max-age=1 + content-length: + - '14779' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:16:20 GMT + etag: + - '"F839B5C02B32E606E112B22E447EDC664DB4155F7780FEE10A25CDB27324D1D2"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ee4cd41f-8bdf-43ba-85da-27ae640815b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=143&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=93&$maxpagesize=50"}' + headers: + apim-request-id: + - f1ecec0e-6eb6-4677-85b4-78978e816adc + cache-control: + - public,max-age=1 + content-length: + - '15311' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:16:20 GMT + etag: + - '"3014228D2E9E2059B6768B1C472FE32499375332FF3196EA9D91049CD6E0EEF1"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f1ecec0e-6eb6-4677-85b4-78978e816adc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=93&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","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/batches?$skip=250&$top=43&$maxpagesize=50"}' + headers: + apim-request-id: + - 549890cb-17c7-46af-bfc0-302c02b770a5 + cache-control: + - public,max-age=1 + content-length: + - '14779' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:16:20 GMT + etag: + - '"FD8AE3980B875078E870F7FCE2B5444017698FF0BCA634A3DF9622B185970DCE"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 549890cb-17c7-46af-bfc0-302c02b770a5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=43&$maxpagesize=50 response: body: - string: '{"value":[{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:35.0291044Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + string: '{"value":[{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' headers: apim-request-id: - - 680cd4a1-80ea-402a-869f-54fa86426e88 + - 655f9d21-d866-44f7-90c4-b93aeee24749 cache-control: - public,max-age=1 content-length: - - '6460' + - '12626' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:34 GMT + - Wed, 02 Jun 2021 06:16:20 GMT etag: - - '"EB4078659CBA316D0935C1A3D694CEA050AC8A4ECA2863FC0D23AAC39F1E7300"' + - '"BAACAF295148442A1BDDB93639C152DCE205F292B43320EFCCB4FE10A2552C5A"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2132,7 +2371,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 680cd4a1-80ea-402a-869f-54fa86426e88 + - 655f9d21-d866-44f7-90c4-b93aeee24749 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 index f78617c75662..313229d400b0 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:03:29 GMT + - Wed, 02 Jun 2021 06:27:28 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src96534215-7abf-418a-8988-2eebfb2dd00a?restype=container + uri: https://redacted.blob.core.windows.net/src9c98432a-3529-40f2-a09a-75741935dbd8?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:03:29 GMT + - Wed, 02 Jun 2021 06:27:28 GMT etag: - - '"0x8D91C82BD99BA0E"' + - '"0x8D9258F7F1EE857"' last-modified: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:29 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: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:29 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src96534215-7abf-418a-8988-2eebfb2dd00a/8e65e095-46a3-45f1-ab50-e8c4c73c0e4d.txt + uri: https://redacted.blob.core.windows.net/src9c98432a-3529-40f2-a09a-75741935dbd8/fada5e38-0736-4103-b142-35c801a1c7f0.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:28 GMT etag: - - '"0x8D91C82BDA46411"' + - '"0x8D9258F7F31791E"' last-modified: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:29 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: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:29 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src96534215-7abf-418a-8988-2eebfb2dd00a/1e084a02-980e-42cd-b94c-a99f198fff98.txt + uri: https://redacted.blob.core.windows.net/src9c98432a-3529-40f2-a09a-75741935dbd8/d45b114e-5802-4b32-9651-3852c7ac6501.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:28 GMT etag: - - '"0x8D91C82BDAB9156"' + - '"0x8D9258F7F3942B4"' last-modified: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:29 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:29 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target1ac1de20-8b6d-47d9-bcc7-6498fef498d1?restype=container + uri: https://redacted.blob.core.windows.net/target593c8958-3f65-4fee-9efe-cafa18830305?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:03:29 GMT + - Wed, 02 Jun 2021 06:27:29 GMT etag: - - '"0x8D91C82BDCCF593"' + - '"0x8D9258F7F560CF7"' last-modified: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:29 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src96534215-7abf-418a-8988-2eebfb2dd00a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1ac1de20-8b6d-47d9-bcc7-6498fef498d1?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9c98432a-3529-40f2-a09a-75741935dbd8?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target593c8958-3f65-4fee-9efe-cafa18830305?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -187,7 +187,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '488' Content-Type: - application/json User-Agent: @@ -199,16 +199,16 @@ interactions: string: '' headers: apim-request-id: - - d16147c4-b8a6-4883-b831-613c328cba46 + - 8278164d-ab0a-456b-94aa-772ccab1a6af content-length: - '0' date: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:29 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/3f3a0c95-0e8c-462d-9de8-082a64c692aa + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/511663cc-a546-4851-bf0b-4281de4a1203 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -216,7 +216,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d16147c4-b8a6-4883-b831-613c328cba46 + - 8278164d-ab0a-456b-94aa-772ccab1a6af status: code: 202 message: Accepted @@ -224,7 +224,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -232,23 +232,70 @@ 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/batches/3f3a0c95-0e8c-462d-9de8-082a64c692aa + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/511663cc-a546-4851-bf0b-4281de4a1203 response: body: - string: '{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:30.9587783Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 9cb535c4-222c-494c-b109-756c1cdf73ee + - 62f0f226-f1d6-4244-88b9-7a00a0b8d9ea cache-control: - public,max-age=1 content-length: - - '292' + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:27:34 GMT + etag: + - '"6A86F53460CCE80DFB842F9E866AE7368CDA3A53AD430FC592ACDE7F83B520BC"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 62f0f226-f1d6-4244-88b9-7a00a0b8d9ea + 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/batches/511663cc-a546-4851-bf0b-4281de4a1203 + response: + body: + string: '{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fe11fbad-59d6-44b1-8b75-1f0776835f60 + cache-control: + - public,max-age=1 + content-length: + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:35 GMT etag: - - '"8DFFDA520989790DBA3288F83ECF1B2F81C4BD604F6941DDEEDCD21593D7F6A7"' + - '"6A86F53460CCE80DFB842F9E866AE7368CDA3A53AD430FC592ACDE7F83B520BC"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -263,7 +310,54 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9cb535c4-222c-494c-b109-756c1cdf73ee + - fe11fbad-59d6-44b1-8b75-1f0776835f60 + 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/batches/511663cc-a546-4851-bf0b-4281de4a1203 + response: + body: + string: '{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: + - 3620218a-e752-44b8-9e0b-6b1121af09b6 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:27:36 GMT + etag: + - '"EE4B97FA79491BD92A523B7074B9AF029EA73BF13236AC5A8EEF0AC69840DDB3"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3620218a-e752-44b8-9e0b-6b1121af09b6 status: code: 200 message: OK @@ -281,11 +375,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd2d00824-8b43-458f-b8f5-4da03c066462?restype=container + uri: https://redacted.blob.core.windows.net/src90107da3-c1dc-4f14-8ce8-10a050d57a61?restype=container response: body: string: '' @@ -293,11 +387,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:36 GMT etag: - - '"0x8D91C82BE4A0CAC"' + - '"0x8D9258F8404DA0A"' last-modified: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -325,11 +419,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd2d00824-8b43-458f-b8f5-4da03c066462/f264374e-dbec-42bb-bcd7-af449dc0eced.txt + uri: https://redacted.blob.core.windows.net/src90107da3-c1dc-4f14-8ce8-10a050d57a61/2bef47d1-b741-40a0-9bcc-08e62457e9aa.txt response: body: string: '' @@ -339,11 +433,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:36 GMT etag: - - '"0x8D91C82BE592F2F"' + - '"0x8D9258F840C6A6D"' last-modified: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -375,11 +469,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd2d00824-8b43-458f-b8f5-4da03c066462/51911422-3d72-4fe5-99ec-b61bd60c1c98.txt + uri: https://redacted.blob.core.windows.net/src90107da3-c1dc-4f14-8ce8-10a050d57a61/45aa2617-b476-4b77-8215-d33bdf701818.txt response: body: string: '' @@ -389,11 +483,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:36 GMT etag: - - '"0x8D91C82BE64F12A"' + - '"0x8D9258F84140CEE"' last-modified: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -419,11 +513,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target3e869dea-e748-4617-9882-136b239f118d?restype=container + uri: https://redacted.blob.core.windows.net/target8d24782a-bd68-4397-a90e-9a3392789cda?restype=container response: body: string: '' @@ -431,11 +525,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:03:30 GMT + - Wed, 02 Jun 2021 06:27:36 GMT etag: - - '"0x8D91C82BE7E64E8"' + - '"0x8D9258F842AA5B8"' last-modified: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -444,8 +538,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd2d00824-8b43-458f-b8f5-4da03c066462?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3e869dea-e748-4617-9882-136b239f118d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src90107da3-c1dc-4f14-8ce8-10a050d57a61?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8d24782a-bd68-4397-a90e-9a3392789cda?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -467,16 +561,16 @@ interactions: string: '' headers: apim-request-id: - - 65fca922-8af7-45a4-b166-76e7bbec4391 + - 9adce493-3ead-4150-b99c-37ba3ca064c8 content-length: - '0' date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:36 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a48dee26-d8fb-46a2-b29b-21300e7a25d6 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1074d708-ba5b-4bab-a212-8ac891a5bc64 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -484,7 +578,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 65fca922-8af7-45a4-b166-76e7bbec4391 + - 9adce493-3ead-4150-b99c-37ba3ca064c8 status: code: 202 message: Accepted @@ -492,7 +586,54 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1074d708-ba5b-4bab-a212-8ac891a5bc64 + response: + body: + string: '{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:40.1843316Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9a86cfae-e46f-477a-8a05-201da7e2e539 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:27:42 GMT + etag: + - '"BD42CFB974C08D1AB8B28A75EE99918236E06637E55B9779864D123B2E585087"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9a86cfae-e46f-477a-8a05-201da7e2e539 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -500,23 +641,70 @@ 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/batches/a48dee26-d8fb-46a2-b29b-21300e7a25d6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1074d708-ba5b-4bab-a212-8ac891a5bc64 response: body: - string: '{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:31.8075444Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - d890ac61-d9da-4dc5-b321-78af1634f502 + - f07a3cd7-3c91-430f-a491-57b0edaef57a cache-control: - public,max-age=1 content-length: - - '291' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:43 GMT etag: - - '"467ECA900484A3AB6D10C73E4354362BC6EF8F934ACE98D4E59B4F543971536E"' + - '"A94696FB98448F90EA3B8676F97D81EF68FD8146FB4C9F06C8338DD8421056DC"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f07a3cd7-3c91-430f-a491-57b0edaef57a + 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/batches/1074d708-ba5b-4bab-a212-8ac891a5bc64 + response: + body: + string: '{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: + - 1935dfbb-e787-4f7c-9952-136b4917e6a4 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:27:44 GMT + etag: + - '"7161E66A6B5275619421E72EE1A1B65E444157FA43F8050DAF41B4B505851CA4"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -531,7 +719,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d890ac61-d9da-4dc5-b321-78af1634f502 + - 1935dfbb-e787-4f7c-9952-136b4917e6a4 status: code: 200 message: OK @@ -549,11 +737,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1d05d672-e5b0-467c-b2e4-508e27ef9ff8?restype=container + uri: https://redacted.blob.core.windows.net/src0d05e6ae-8234-47c7-a779-3b785b46b4a4?restype=container response: body: string: '' @@ -561,11 +749,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:44 GMT etag: - - '"0x8D91C82BEC66E68"' + - '"0x8D9258F88AB5A6B"' last-modified: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -593,11 +781,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1d05d672-e5b0-467c-b2e4-508e27ef9ff8/053ffe2d-5151-40d2-a709-be83b89bb504.txt + uri: https://redacted.blob.core.windows.net/src0d05e6ae-8234-47c7-a779-3b785b46b4a4/a10a3f8c-275c-48bb-8a58-2ac60afe2eb6.txt response: body: string: '' @@ -607,11 +795,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:44 GMT etag: - - '"0x8D91C82BECEC2E1"' + - '"0x8D9258F88B5942F"' last-modified: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -643,11 +831,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1d05d672-e5b0-467c-b2e4-508e27ef9ff8/5f86e2c1-fafc-417f-920d-2df1df7310e4.txt + uri: https://redacted.blob.core.windows.net/src0d05e6ae-8234-47c7-a779-3b785b46b4a4/07296d61-5425-412c-8ce7-0d8cdf3b2d9e.txt response: body: string: '' @@ -657,11 +845,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:03:31 GMT + - Wed, 02 Jun 2021 06:27:44 GMT etag: - - '"0x8D91C82BED6DAAF"' + - '"0x8D9258F88BCE87D"' last-modified: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -687,11 +875,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8d1d4f49-ba2b-4207-a81f-a7f6cec1d97b?restype=container + uri: https://redacted.blob.core.windows.net/target1a2ca57f-1b9c-4e46-8fd3-449435f3b916?restype=container response: body: string: '' @@ -699,11 +887,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:45 GMT etag: - - '"0x8D91C82BEFC884D"' + - '"0x8D9258F88DA846F"' last-modified: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -712,8 +900,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1d05d672-e5b0-467c-b2e4-508e27ef9ff8?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8d1d4f49-ba2b-4207-a81f-a7f6cec1d97b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0d05e6ae-8234-47c7-a779-3b785b46b4a4?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1a2ca57f-1b9c-4e46-8fd3-449435f3b916?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -723,7 +911,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -735,13 +923,13 @@ interactions: string: '' headers: apim-request-id: - - 3963b10b-6c25-4282-be0c-5f83c33a0da1 + - 587ea2fc-9021-49db-95c2-42dbb8e9a260 content-length: - '0' date: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:44 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4c7f5102-324f-4c56-ad91-6c391f25c76a + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8c550a34-1c79-4f44-ba69-b72a7bd83723 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -752,7 +940,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3963b10b-6c25-4282-be0c-5f83c33a0da1 + - 587ea2fc-9021-49db-95c2-42dbb8e9a260 status: code: 202 message: Accepted @@ -760,7 +948,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -768,23 +956,23 @@ 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/batches/4c7f5102-324f-4c56-ad91-6c391f25c76a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8c550a34-1c79-4f44-ba69-b72a7bd83723 response: body: - string: '{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:32.6065782Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - d7d8bb18-9bff-4b25-81c0-47e7dc65c932 + - 0894133e-ee3a-43a0-99f0-a3df5924e977 cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:50 GMT etag: - - '"B38098921255BECB630A2A7AEF5ACE16365B9B496853B193A9AE7CCE49CE33F1"' + - '"2300DF794AFEEAA0E41AA1D94214C2D30C7652C0DF69A55726061C8DEC33B9D7"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -799,7 +987,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d7d8bb18-9bff-4b25-81c0-47e7dc65c932 + - 0894133e-ee3a-43a0-99f0-a3df5924e977 status: code: 200 message: OK @@ -807,7 +995,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -815,23 +1003,23 @@ 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/batches?$skip=0&createdDateTimeUtcStart=2021-05-21T18%3A03%3A29.993434Z + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8c550a34-1c79-4f44-ba69-b72a7bd83723 response: body: - string: '{"value":[{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:32.6065782Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:31.924136Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:31.1973273Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}]}' + string: '{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - ff6094a6-c2a7-4989-a0bc-02b22fab3a9b + - 0f7269a3-f352-4725-b0dc-f62ba1a7de23 cache-control: - public,max-age=1 content-length: - - '888' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 18:03:32 GMT + - Wed, 02 Jun 2021 06:27:51 GMT etag: - - '"335436198BAC1CF043BEF2F46D1074AF1D5BC790777A0D851383596CACEF56E4"' + - '"B2CDFDDFC235965EB6B163072BCC67302D0BD2B41BBB4EBEBA9732792EA0A71B"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -846,7 +1034,54 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ff6094a6-c2a7-4989-a0bc-02b22fab3a9b + - 0f7269a3-f352-4725-b0dc-f62ba1a7de23 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&createdDateTimeUtcStart=2021-06-02T06%3A27%3A13.153711Z + response: + body: + string: '{"value":[{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}]}' + headers: + apim-request-id: + - d038f0bc-6baa-4869-a40b-e754d09bb542 + cache-control: + - public,max-age=1 + content-length: + - '890' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:27:51 GMT + etag: + - '"715EDD4577BE431F0215E64EB74BFC361EE50B9D3CCC75E8ABEFE32FCB3942A2"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d038f0bc-6baa-4869-a40b-e754d09bb542 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_before.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_created_before.yaml index c846e0637a5a..621be163ea6a 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:38 GMT + - Wed, 02 Jun 2021 06:27:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src43aa4322-e13d-46f0-9611-8130abcdec80?restype=container + uri: https://redacted.blob.core.windows.net/srccab9b659-4f66-484e-890d-cf31420b82fe?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:37 GMT + - Wed, 02 Jun 2021 06:27:51 GMT etag: - - '"0x8D91C7942C43484"' + - '"0x8D9258F8CD9638A"' last-modified: - - Fri, 21 May 2021 16:55:38 GMT + - Wed, 02 Jun 2021 06:27:52 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: - - Fri, 21 May 2021 16:55:38 GMT + - Wed, 02 Jun 2021 06:27:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src43aa4322-e13d-46f0-9611-8130abcdec80/e998f712-6977-4859-8b84-931a27905044.txt + uri: https://redacted.blob.core.windows.net/srccab9b659-4f66-484e-890d-cf31420b82fe/a4af5686-a275-48bb-b80e-6f8f387573d0.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:37 GMT + - Wed, 02 Jun 2021 06:27:51 GMT etag: - - '"0x8D91C7942CCC056"' + - '"0x8D9258F8CDFDA13"' last-modified: - - Fri, 21 May 2021 16:55:38 GMT + - Wed, 02 Jun 2021 06:27:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:38 GMT + - Wed, 02 Jun 2021 06:28:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf5443ccd-fa63-46da-b510-b0f8277cc490?restype=container + uri: https://redacted.blob.core.windows.net/target1e8947b1-8dc6-462f-9e77-c5f7727e0c53?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:38 GMT + - Wed, 02 Jun 2021 06:28:08 GMT etag: - - '"0x8D91C7942EA35C6"' + - '"0x8D9258F969458C8"' last-modified: - - Fri, 21 May 2021 16:55:38 GMT + - Wed, 02 Jun 2021 06:28:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src43aa4322-e13d-46f0-9611-8130abcdec80?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf5443ccd-fa63-46da-b510-b0f8277cc490?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccab9b659-4f66-484e-890d-cf31420b82fe?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1e8947b1-8dc6-462f-9e77-c5f7727e0c53?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -137,7 +137,7 @@ interactions: Connection: - keep-alive Content-Length: - - '488' + - '490' Content-Type: - application/json User-Agent: @@ -149,79 +149,32 @@ interactions: string: '' headers: apim-request-id: - - 1790a0a5-73dd-4c6a-8314-cba83a873ffc + - 2467bc19-cf30-41ac-b359-d3c632ddb76a content-length: - '0' date: - - Fri, 21 May 2021 16:55:39 GMT + - Wed, 02 Jun 2021 06:28:08 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/adaf054a-4e2f-4a0b-acec-7ee8e6536fe2 - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 1790a0a5-73dd-4c6a-8314-cba83a873ffc - 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/batches/adaf054a-4e2f-4a0b-acec-7ee8e6536fe2 - response: - body: - string: '{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.2708432Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 5d091e85-f5be-4c1d-8578-be2a81cbc518 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:39 GMT - etag: - - '"798EA6CF1E36793F55ECC30992E7B589310DE28DE89C2B534EEA39420DDF609A"' + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/11000a3d-3809-46ff-a371-2300a341bd0f set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 5d091e85-f5be-4c1d-8578-be2a81cbc518 + - 2467bc19-cf30-41ac-b359-d3c632ddb76a status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -229,23 +182,23 @@ 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/batches/adaf054a-4e2f-4a0b-acec-7ee8e6536fe2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/11000a3d-3809-46ff-a371-2300a341bd0f response: body: - string: '{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3797317Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 437a1681-279d-43dd-8d4d-a8b6e5a2781f + - f1799f4a-c644-435e-8739-62767ae81459 cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:39 GMT + - Wed, 02 Jun 2021 06:28:13 GMT etag: - - '"6394C4813DDF7A3F0503B285AF6D4FE7DF53DB9E88B9451F1EB499B062BC647B"' + - '"D40A1B921F8B020EDF72EEA97392328D4435BAC23BEC4E0498565E6822B7CB9D"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -260,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 437a1681-279d-43dd-8d4d-a8b6e5a2781f + - f1799f4a-c644-435e-8739-62767ae81459 status: code: 200 message: OK @@ -276,13 +229,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/batches/adaf054a-4e2f-4a0b-acec-7ee8e6536fe2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/11000a3d-3809-46ff-a371-2300a341bd0f response: body: - string: '{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 4ec8af0d-0c46-4afe-9136-439e42edb4d2 + - 31d95d88-9102-4974-b891-11e64db3667a cache-control: - public,max-age=1 content-length: @@ -290,9 +243,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:40 GMT + - Wed, 02 Jun 2021 06:28:14 GMT etag: - - '"F37A97A533B79E72BB762B257BDFF8FF8ABB209AAAB9D4EF1AF0F5C17BC83A2F"' + - '"D40A1B921F8B020EDF72EEA97392328D4435BAC23BEC4E0498565E6822B7CB9D"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -307,7 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4ec8af0d-0c46-4afe-9136-439e42edb4d2 + - 31d95d88-9102-4974-b891-11e64db3667a status: code: 200 message: OK @@ -323,13 +276,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/batches/adaf054a-4e2f-4a0b-acec-7ee8e6536fe2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/11000a3d-3809-46ff-a371-2300a341bd0f response: body: - string: '{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - dc00da91-0aee-4d06-9560-89ca6946a2f6 + - e9229eec-7c63-45ff-8270-fd75d2bfb116 cache-control: - public,max-age=1 content-length: @@ -337,9 +290,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:41 GMT + - Wed, 02 Jun 2021 06:28:16 GMT etag: - - '"8C6003436AFAB9F654409CD61BA67063147932A9ACC559E6D5847A4620EC6522"' + - '"AE6C9C2226EFB3BB519E2B23E2264EC85CE3FBE0D23C3BA7438E6EA52B1D9A5F"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -354,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - dc00da91-0aee-4d06-9560-89ca6946a2f6 + - e9229eec-7c63-45ff-8270-fd75d2bfb116 status: code: 200 message: OK @@ -372,11 +325,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:41 GMT + - Wed, 02 Jun 2021 06:28:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src674bd963-fa23-4a6d-90cc-8cf12d2f2711?restype=container + uri: https://redacted.blob.core.windows.net/src0804c4fd-6be2-42a2-abb1-8c3caecfc194?restype=container response: body: string: '' @@ -384,11 +337,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:40 GMT + - Wed, 02 Jun 2021 06:28:16 GMT etag: - - '"0x8D91C7944A48CAE"' + - '"0x8D9258F9B4340F4"' last-modified: - - Fri, 21 May 2021 16:55:41 GMT + - Wed, 02 Jun 2021 06:28:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -416,11 +369,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:41 GMT + - Wed, 02 Jun 2021 06:28:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src674bd963-fa23-4a6d-90cc-8cf12d2f2711/e7fe89c5-0aa1-423d-a7e5-c80207fa7958.txt + uri: https://redacted.blob.core.windows.net/src0804c4fd-6be2-42a2-abb1-8c3caecfc194/23ade53c-d820-4d67-976a-fd3d07e470f7.txt response: body: string: '' @@ -430,11 +383,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:41 GMT + - Wed, 02 Jun 2021 06:28:16 GMT etag: - - '"0x8D91C7944B9F5DD"' + - '"0x8D9258F9B4A59EA"' last-modified: - - Fri, 21 May 2021 16:55:41 GMT + - Wed, 02 Jun 2021 06:28:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -460,11 +413,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:41 GMT + - Wed, 02 Jun 2021 06:28:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target9b15157c-64ca-4aa3-92f9-5b1b5d7a64ac?restype=container + uri: https://redacted.blob.core.windows.net/target6d46711e-4109-4a81-a22a-4cb047a5ca33?restype=container response: body: string: '' @@ -472,11 +425,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:41 GMT + - Wed, 02 Jun 2021 06:28:16 GMT etag: - - '"0x8D91C7944EB0F18"' + - '"0x8D9258F9B668CF9"' last-modified: - - Fri, 21 May 2021 16:55:42 GMT + - Wed, 02 Jun 2021 06:28:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -485,8 +438,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src674bd963-fa23-4a6d-90cc-8cf12d2f2711?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9b15157c-64ca-4aa3-92f9-5b1b5d7a64ac?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0804c4fd-6be2-42a2-abb1-8c3caecfc194?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6d46711e-4109-4a81-a22a-4cb047a5ca33?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -496,7 +449,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -508,13 +461,13 @@ interactions: string: '' headers: apim-request-id: - - ae8a5282-b776-4085-841a-8a5a05748f91 + - 8ebd3384-e4c0-4af0-b465-e7c2205ceb45 content-length: - '0' date: - - Fri, 21 May 2021 16:55:42 GMT + - Wed, 02 Jun 2021 06:28:16 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/81546d3c-9e04-4ff2-8db8-33cfc37b9814 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f14f668b-ed23-465d-b15a-09a44aa7763f set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -525,7 +478,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ae8a5282-b776-4085-841a-8a5a05748f91 + - 8ebd3384-e4c0-4af0-b465-e7c2205ceb45 status: code: 202 message: Accepted @@ -533,7 +486,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -541,13 +494,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/batches/81546d3c-9e04-4ff2-8db8-33cfc37b9814 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f14f668b-ed23-465d-b15a-09a44aa7763f response: body: - string: '{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:42.3295782Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 50a7444c-99ec-425d-8528-fe6186252585 + - a9698b7b-b161-49ff-8d40-c8bd348bfa51 cache-control: - public,max-age=1 content-length: @@ -555,9 +508,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:42 GMT + - Wed, 02 Jun 2021 06:28:21 GMT etag: - - '"97C5AA741F0896D60EE8A67BA26C49FEB90C752FB2FFFF43CA071CCD2A3D7A8D"' + - '"ECC91640338CDFBCC84B45F333E37A74D5BE8776E3B821AC71F29073BFBE8CD7"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -572,7 +525,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 50a7444c-99ec-425d-8528-fe6186252585 + - a9698b7b-b161-49ff-8d40-c8bd348bfa51 status: code: 200 message: OK @@ -580,96 +533,173 @@ interactions: body: null headers: Accept: - - application/json + - application/xml 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/81546d3c-9e04-4ff2-8db8-33cfc37b9814 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:28:21 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src94a8809e-a478-48e5-b1b7-d8e0cf500954?restype=container response: body: - string: '{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:42.4243536Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 5a05a3b9-5ec4-4f28-bd68-95a1c4731f59 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:55:42 GMT + - Wed, 02 Jun 2021 06:28:21 GMT etag: - - '"6A8E44B549E1BDBCEA3B068D72BCC1449939C3406BB23E4C977F2F154B5AF85C"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5a05a3b9-5ec4-4f28-bd68-95a1c4731f59 + - '"0x8D9258F9EA28BEE"' + last-modified: + - Wed, 02 Jun 2021 06:28:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 06:28:22 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src94a8809e-a478-48e5-b1b7-d8e0cf500954/3e02093f-5fcd-4cc3-842e-03e084ee2071.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Wed, 02 Jun 2021 06:28:21 GMT + etag: + - '"0x8D9258F9EAA74D4"' + last-modified: + - Wed, 02 Jun 2021 06:28: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-08-04' + 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:28:22 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/target2a4ae7df-bedf-40fe-a851-42ffe5273f59?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 02 Jun 2021 06:28:22 GMT + etag: + - '"0x8D9258F9ECA8C5B"' + last-modified: + - Wed, 02 Jun 2021 06:28:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src94a8809e-a478-48e5-b1b7-d8e0cf500954?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2a4ae7df-bedf-40fe-a851-42ffe5273f59?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '482' + 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/81546d3c-9e04-4ff2-8db8-33cfc37b9814 + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: '{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - cf141955-41c3-4ecb-9c1f-4f9f54fe4403 - cache-control: - - public,max-age=1 + - 0200d710-a9eb-429d-8ea0-0fada7016264 content-length: - - '288' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:55:43 GMT - etag: - - '"203ED4DDECD0449BD840F73167F1D76902BC14F344278EF91EE11547A1ED9B00"' + - Wed, 02 Jun 2021 06:28:21 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - cf141955-41c3-4ecb-9c1f-4f9f54fe4403 + - 0200d710-a9eb-429d-8ea0-0fada7016264 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -682,26 +712,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/batches/81546d3c-9e04-4ff2-8db8-33cfc37b9814 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc response: body: - string: '{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - ee0a1f14-396e-48d3-8464-1e1ace3f64de + - 67f082c4-c6e2-4ed9-9d3a-7a64248aa8c8 cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:26 GMT etag: - - '"ED64BABC54DDA1D9EAD16C8C03155AA6D3A45AC719616E43BB46962C87427D27"' + - '"AAD279407C3151B103B5B6FE54A5700BE797965A71D60C54F33D7744AE7B85CF"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -713,7 +743,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ee0a1f14-396e-48d3-8464-1e1ace3f64de + - 67f082c4-c6e2-4ed9-9d3a-7a64248aa8c8 status: code: 200 message: OK @@ -731,11 +761,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdb402305-4e78-4c82-8de6-4c470548afda?restype=container + uri: https://redacted.blob.core.windows.net/src094bc1a7-befd-47ae-8cd0-64ef7ece61db?restype=container response: body: string: '' @@ -743,11 +773,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:27 GMT etag: - - '"0x8D91C79467FD962"' + - '"0x8D9258FA2116221"' last-modified: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -775,11 +805,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:28 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdb402305-4e78-4c82-8de6-4c470548afda/219cbf55-e013-4b8e-ba05-5b450211b0f7.txt + uri: https://redacted.blob.core.windows.net/src094bc1a7-befd-47ae-8cd0-64ef7ece61db/04415b31-d782-4fa1-9f05-613d2ef65233.txt response: body: string: '' @@ -789,11 +819,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:27 GMT etag: - - '"0x8D91C79468964BB"' + - '"0x8D9258FA21BA98D"' last-modified: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -819,11 +849,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:45 GMT + - Wed, 02 Jun 2021 06:28:28 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targeta0d4ccba-832f-47a6-a04c-d368228974b9?restype=container + uri: https://redacted.blob.core.windows.net/targetbb6547dd-a944-4328-8a5d-1c03d8ca3157?restype=container response: body: string: '' @@ -831,11 +861,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:27 GMT etag: - - '"0x8D91C7946B40CA8"' + - '"0x8D9258FA23F9CE5"' last-modified: - - Fri, 21 May 2021 16:55:45 GMT + - Wed, 02 Jun 2021 06:28:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -844,8 +874,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdb402305-4e78-4c82-8de6-4c470548afda?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta0d4ccba-832f-47a6-a04c-d368228974b9?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src094bc1a7-befd-47ae-8cd0-64ef7ece61db?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbb6547dd-a944-4328-8a5d-1c03d8ca3157?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -855,7 +885,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '490' Content-Type: - application/json User-Agent: @@ -867,16 +897,16 @@ interactions: string: '' headers: apim-request-id: - - 3328ff56-691d-4326-bd9a-4648005e8017 + - b4e3bb9a-6073-40e0-86f7-d87ed720bb2c content-length: - '0' date: - - Fri, 21 May 2021 16:55:44 GMT + - Wed, 02 Jun 2021 06:28:27 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5a28fc64-be31-4129-85e9-086471ed8f5d set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -884,7 +914,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3328ff56-691d-4326-bd9a-4648005e8017 + - b4e3bb9a-6073-40e0-86f7-d87ed720bb2c status: code: 202 message: Accepted @@ -892,7 +922,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -900,13 +930,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/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5a28fc64-be31-4129-85e9-086471ed8f5d response: body: - string: '{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:45.3081706Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 78d2d4da-c003-46ae-97d0-b753dfbb90c1 + - 943e418c-b6f8-4776-bcdd-59de26b017e6 cache-control: - public,max-age=1 content-length: @@ -914,12 +944,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:45 GMT + - Wed, 02 Jun 2021 06:28:32 GMT etag: - - '"734422AC4295C150F92273A23DCC180D5CA5E2568FB55D796409EA0C2BD2C6E7"' + - '"92317375855A7429130A711AE94C6B54B0380E7405E5B40ACD399FD8DEE1B709"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -931,7 +961,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 78d2d4da-c003-46ae-97d0-b753dfbb90c1 + - 943e418c-b6f8-4776-bcdd-59de26b017e6 status: code: 200 message: OK @@ -939,237 +969,173 @@ interactions: body: null headers: Accept: - - application/json + - application/xml 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:28:33 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src63de5699-dcb8-464c-b9cd-668bb85432fb?restype=container response: body: - string: '{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:45.3969337Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 5388f40d-03e7-46df-b7ae-ecc0aafe14b6 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:55:45 GMT + - Wed, 02 Jun 2021 06:28:32 GMT etag: - - '"8F6C229F83410A7636EAD8F3E42F6035E2A9E5358E59A9C580C7A4916A54B0E9"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5388f40d-03e7-46df-b7ae-ecc0aafe14b6 - status: - code: 200 - message: OK + - '"0x8D9258FA57C562B"' + last-modified: + - Wed, 02 Jun 2021 06:28:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' + status: + 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 06:28:33 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src63de5699-dcb8-464c-b9cd-668bb85432fb/b2f7cf6d-54b9-45bb-86d4-d49693f2e2ea.txt response: body: - string: '{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 5467b76e-0203-4d36-80ba-b96c64152e93 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:46 GMT + - Wed, 02 Jun 2021 06:28:33 GMT etag: - - '"15AC99C4C462B8BB45BA8247065DF4CA4ADE5573ABAA6C46F837D12AA71BC669"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5467b76e-0203-4d36-80ba-b96c64152e93 + - '"0x8D9258FA586E9C5"' + last-modified: + - Wed, 02 Jun 2021 06:28: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-08-04' 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:28:33 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/targetba073108-f786-4806-8ff0-48014acfc80c?restype=container response: body: - string: '{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 2a791127-4c3b-4e9c-b30c-981366037a6b - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:55:47 GMT + - Wed, 02 Jun 2021 06:28:33 GMT etag: - - '"15AC99C4C462B8BB45BA8247065DF4CA4ADE5573ABAA6C46F837D12AA71BC669"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 2a791127-4c3b-4e9c-b30c-981366037a6b + - '"0x8D9258FA5A47646"' + last-modified: + - Wed, 02 Jun 2021 06:28:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src63de5699-dcb8-464c-b9cd-668bb85432fb?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetba073108-f786-4806-8ff0-48014acfc80c?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: '{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - 0f65f1a9-72ea-4d90-af04-af42964418a7 - cache-control: - - public,max-age=1 + - 609f1298-d78b-452d-a60e-679b0976c831 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:55:48 GMT - etag: - - '"15AC99C4C462B8BB45BA8247065DF4CA4ADE5573ABAA6C46F837D12AA71BC669"' + - Wed, 02 Jun 2021 06:28:33 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/3e0acf6d-44f5-4d7a-a279-ffd893f72ae0 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 0f65f1a9-72ea-4d90-af04-af42964418a7 - 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/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 - response: - body: - string: '{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 39b5bedd-7b39-4a40-8019-170fef9d9889 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:49 GMT - etag: - - '"15AC99C4C462B8BB45BA8247065DF4CA4ADE5573ABAA6C46F837D12AA71BC669"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 39b5bedd-7b39-4a40-8019-170fef9d9889 + - 609f1298-d78b-452d-a60e-679b0976c831 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1182,13 +1148,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/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/3e0acf6d-44f5-4d7a-a279-ffd893f72ae0 response: body: - string: '{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 79dfc1fb-f478-4c44-a221-6dae1eadf70b + - c5af9dc5-856f-427c-9911-8c5381701c35 cache-control: - public,max-age=1 content-length: @@ -1196,9 +1162,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:50 GMT + - Wed, 02 Jun 2021 06:28:39 GMT etag: - - '"15AC99C4C462B8BB45BA8247065DF4CA4ADE5573ABAA6C46F837D12AA71BC669"' + - '"0E06CD8E691A3EF78ECF26D1DC6CDD3BAC5B3AF340056CED2BB29023563511F1"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1213,7 +1179,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 79dfc1fb-f478-4c44-a221-6dae1eadf70b + - c5af9dc5-856f-427c-9911-8c5381701c35 status: code: 200 message: OK @@ -1229,13 +1195,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/batches/6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/3e0acf6d-44f5-4d7a-a279-ffd893f72ae0 response: body: - string: '{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 463dc150-0529-476f-ab12-b31d3f416149 + - 9cd44902-1175-48a9-be5d-cd65126403d9 cache-control: - public,max-age=1 content-length: @@ -1243,12 +1209,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT etag: - - '"A3D2B2ED28E406A01FD69BE51D18DDE8B3308A8EBAD97332BC9B2AD1895C41F3"' + - '"7F27C47D1B3C222F11FD5A8D9E7B337F812B2C8B81BB05D03176277A380BC640"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1260,7 +1226,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 463dc150-0529-476f-ab12-b31d3f416149 + - 9cd44902-1175-48a9-be5d-cd65126403d9 status: code: 200 message: OK @@ -1278,11 +1244,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9a99fc38-426b-4e47-abf0-1c0abb086ee1?restype=container + uri: https://redacted.blob.core.windows.net/srce028dbdd-8444-4f35-9a9c-d9d7907a0f4a?restype=container response: body: string: '' @@ -1290,11 +1256,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:39 GMT etag: - - '"0x8D91C794AE32862"' + - '"0x8D9258FA987A2F6"' last-modified: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1322,11 +1288,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9a99fc38-426b-4e47-abf0-1c0abb086ee1/624c991a-8d35-4fca-9649-071979ac6a61.txt + uri: https://redacted.blob.core.windows.net/srce028dbdd-8444-4f35-9a9c-d9d7907a0f4a/55d04fa9-6a32-485c-883c-cd8e4cd319c4.txt response: body: string: '' @@ -1336,11 +1302,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:39 GMT etag: - - '"0x8D91C794AEB8EFF"' + - '"0x8D9258FA98FE615"' last-modified: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1366,11 +1332,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetb8dc6e1b-7344-49b3-b348-d41f3f508b06?restype=container + uri: https://redacted.blob.core.windows.net/target4198316a-ec0b-47c7-92f7-13c19dfbf881?restype=container response: body: string: '' @@ -1378,11 +1344,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT etag: - - '"0x8D91C794B0707A5"' + - '"0x8D9258FA9B09259"' last-modified: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1391,8 +1357,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9a99fc38-426b-4e47-abf0-1c0abb086ee1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb8dc6e1b-7344-49b3-b348-d41f3f508b06?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce028dbdd-8444-4f35-9a9c-d9d7907a0f4a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4198316a-ec0b-47c7-92f7-13c19dfbf881?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1414,16 +1380,16 @@ interactions: string: '' headers: apim-request-id: - - b89ce3e1-325e-4628-8bff-41a2adac25da + - 21cc24f1-5b26-4aae-adce-644b62209458 content-length: - '0' date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:40 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/dadfd012-d8ab-485c-8508-212c81d7b2c8 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5e78fd56-7bae-4be9-8d3f-fd9655a87bc3 set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -1431,7 +1397,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b89ce3e1-325e-4628-8bff-41a2adac25da + - 21cc24f1-5b26-4aae-adce-644b62209458 status: code: 202 message: Accepted @@ -1439,7 +1405,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -1447,26 +1413,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/batches/dadfd012-d8ab-485c-8508-212c81d7b2c8 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5e78fd56-7bae-4be9-8d3f-fd9655a87bc3 response: body: - string: '{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:52.5705664Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 308648c0-7167-4b06-96ea-1444c8131056 + - 382ed781-144e-4726-8e7d-b89bd09cd7fe cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:45 GMT etag: - - '"B8D38ED01BEBA7A6158C9652D65B5DF22D41C8B04DDADAC744D5F4E20E81299D"' + - '"A9DBE9A9F57392E33B2A191BF05F9B0180E78F505952A89778003E716EF7804B"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1478,7 +1444,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 308648c0-7167-4b06-96ea-1444c8131056 + - 382ed781-144e-4726-8e7d-b89bd09cd7fe status: code: 200 message: OK @@ -1486,220 +1452,79 @@ interactions: body: null headers: Accept: - - application/json + - application/xml 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dadfd012-d8ab-485c-8508-212c81d7b2c8 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:28:45 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/srcadb43d9f-48d0-49d9-96d5-4e2df90bd577?restype=container response: body: - string: '{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:52.6582887Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - abcee079-f877-4d35-bb66-c6097c1b3653 - cache-control: - - public,max-age=1 content-length: - - '291' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:55:52 GMT + - Wed, 02 Jun 2021 06:28:45 GMT etag: - - '"CF4B49E04CC9A37C6FD9EFCA0E91459ABF63B1C850A2DF12F15877C389BCC1E9"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - abcee079-f877-4d35-bb66-c6097c1b3653 + - '"0x8D9258FACEC3A0B"' + last-modified: + - Wed, 02 Jun 2021 06:28:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/dadfd012-d8ab-485c-8508-212c81d7b2c8 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 06:28:46 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/srcadb43d9f-48d0-49d9-96d5-4e2df90bd577/f0ec7e59-d252-433e-995c-8a711d89987f.txt response: body: - string: '{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - b46c744d-c3f6-41b2-b67a-94316aafdc7e - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:53 GMT - etag: - - '"598F64D30AA405F72B649EB6C9843C00884E28F5CE9457EB210A4C859720D277"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b46c744d-c3f6-41b2-b67a-94316aafdc7e - 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/batches/dadfd012-d8ab-485c-8508-212c81d7b2c8 - response: - body: - string: '{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - bd8a3a2c-4991-4112-b0e1-0a1b853f3728 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:54 GMT - etag: - - '"77C89B5806207E05F023662CA128E01276745C8FA35B389824A507CD0CE494AC"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - bd8a3a2c-4991-4112-b0e1-0a1b853f3728 - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:55:54 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/srce8cd6072-e483-4664-94b8-12403daa9423?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:55:54 GMT - etag: - - '"0x8D91C794C9DEFEA"' - last-modified: - - Fri, 21 May 2021 16:55:55 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:55:55 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/srce8cd6072-e483-4664-94b8-12403daa9423/01f73688-60d6-4e21-9898-00039d68f18e.txt - response: - body: - string: '' + string: '' headers: content-length: - '0' content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:55:54 GMT + - Wed, 02 Jun 2021 06:28:45 GMT etag: - - '"0x8D91C794CAF8A23"' + - '"0x8D9258FACF46E83"' last-modified: - - Fri, 21 May 2021 16:55:55 GMT + - Wed, 02 Jun 2021 06:28:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1725,11 +1550,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:55:55 GMT + - Wed, 02 Jun 2021 06:28:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target4ced7f27-f69c-4ee5-9b78-fb58a67fcf89?restype=container + uri: https://redacted.blob.core.windows.net/targetf48e4f03-de3d-4b47-9d1a-40ffc3bbba6c?restype=container response: body: string: '' @@ -1737,11 +1562,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:55:54 GMT + - Wed, 02 Jun 2021 06:28:46 GMT etag: - - '"0x8D91C794CD0F592"' + - '"0x8D9258FAD1BACA6"' last-modified: - - Fri, 21 May 2021 16:55:55 GMT + - Wed, 02 Jun 2021 06:28:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1750,8 +1575,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce8cd6072-e483-4664-94b8-12403daa9423?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4ced7f27-f69c-4ee5-9b78-fb58a67fcf89?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcadb43d9f-48d0-49d9-96d5-4e2df90bd577?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf48e4f03-de3d-4b47-9d1a-40ffc3bbba6c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1761,1586 +1586,39 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '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/batches - response: - body: - string: '' - headers: - apim-request-id: - - 9d961968-0090-4fd1-8ee5-8ae4ff5a5925 - content-length: - - '0' - date: - - Fri, 21 May 2021 16:55:55 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4dbf3ea1-647b-49c6-9841-75ce84305769 - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9d961968-0090-4fd1-8ee5-8ae4ff5a5925 - 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/batches/4dbf3ea1-647b-49c6-9841-75ce84305769 - response: - body: - string: '{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:55.5905103Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 7c3e6112-9a1e-4918-af1f-bd9ef4b39f93 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:55 GMT - etag: - - '"AC99ABD5239FE5DF32FE8130D6A9DE569BDAE6F6A12DC5665DFDB1AC9602CCDA"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 7c3e6112-9a1e-4918-af1f-bd9ef4b39f93 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4dbf3ea1-647b-49c6-9841-75ce84305769 - response: - body: - string: '{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:55.6783188Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a2e9c0f4-1a1b-4588-8fc3-19a0b29018c5 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:55 GMT - etag: - - '"A6878F0B26FB09A4566B9C64535A015D4D870D985CC833DEF3722879809BB46D"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a2e9c0f4-1a1b-4588-8fc3-19a0b29018c5 - 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/batches/4dbf3ea1-647b-49c6-9841-75ce84305769 - response: - body: - string: '{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 7ecacdbf-098c-4bc0-aea6-dd1fbb84c97a - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:56 GMT - etag: - - '"BE1B36652F4C4A9B61A627B0461607B67649BE72AE75BD595AA477D52A0A45F0"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 7ecacdbf-098c-4bc0-aea6-dd1fbb84c97a - 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/batches/4dbf3ea1-647b-49c6-9841-75ce84305769 - response: - body: - string: '{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - c348c58e-4ce3-4862-a5b8-9758d4c3e373 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:57 GMT - etag: - - '"59D3E256FD3704FB74A1B60FA14E474A61AAB7C15FC3722FC9C8B1A1D7E1B4FF"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - c348c58e-4ce3-4862-a5b8-9758d4c3e373 - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:55:58 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/srcef704788-211d-4604-b973-c01b54a10c25?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:55:58 GMT - etag: - - '"0x8D91C794E6CCDFD"' - last-modified: - - Fri, 21 May 2021 16:55:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:55:58 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/srcef704788-211d-4604-b973-c01b54a10c25/42204803-5d65-45c9-866a-7dcd6163bb47.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - mYgA0QpY6baiB+xZp8Hk+A== - date: - - Fri, 21 May 2021 16:55:58 GMT - etag: - - '"0x8D91C794E7A6455"' - last-modified: - - Fri, 21 May 2021 16:55: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-08-04' - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:55:58 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/target52740b5f-9dc6-45d2-a2c9-ce963ada8603?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:55:58 GMT - etag: - - '"0x8D91C794E9789B6"' - last-modified: - - Fri, 21 May 2021 16:55:58 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcef704788-211d-4604-b973-c01b54a10c25?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target52740b5f-9dc6-45d2-a2c9-ce963ada8603?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: - - 3c941c69-49e9-4e72-9ac7-423bdeb07742 - content-length: - - '0' - date: - - Fri, 21 May 2021 16:55:58 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/27d52c8f-e052-4fc0-8d3a-a704cb37f7eb - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3c941c69-49e9-4e72-9ac7-423bdeb07742 - 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/batches/27d52c8f-e052-4fc0-8d3a-a704cb37f7eb - response: - body: - string: '{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:58.6303153Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a62b24e0-26b5-4e9e-9ade-f5131c98df4b - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:58 GMT - etag: - - '"35119B36FCC049499996AF50E78C953BE77DD40AE15B602C72CBA7AA05A8CE03"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a62b24e0-26b5-4e9e-9ade-f5131c98df4b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/27d52c8f-e052-4fc0-8d3a-a704cb37f7eb - response: - body: - string: '{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:58.6303153Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ddb45bca-c2a0-42c9-becf-8e354c358c59 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:58 GMT - etag: - - '"35119B36FCC049499996AF50E78C953BE77DD40AE15B602C72CBA7AA05A8CE03"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ddb45bca-c2a0-42c9-becf-8e354c358c59 - 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/batches/27d52c8f-e052-4fc0-8d3a-a704cb37f7eb - response: - body: - string: '{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 608361d4-b6c5-4c70-9741-b5cac8c53066 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:55:59 GMT - etag: - - '"B9B11ECE4339BAE4D000E59C6D30FB1007DFF6C487967C5C24DD0938E8016FFB"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 608361d4-b6c5-4c70-9741-b5cac8c53066 - 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/batches/27d52c8f-e052-4fc0-8d3a-a704cb37f7eb - response: - body: - string: '{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - 6cead084-92cd-4956-a1d5-cd414ce834d8 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:00 GMT - etag: - - '"C4257329E157476F98257AD83C2BEE4832A9FEC894931E394713B3E4D5FC5905"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6cead084-92cd-4956-a1d5-cd414ce834d8 - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:56:00 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/srcbf8611e2-309c-4df2-a6ae-2b7dc2ecb2c7?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:00 GMT - etag: - - '"0x8D91C79503A6811"' - last-modified: - - Fri, 21 May 2021 16:56:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:56:01 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/srcbf8611e2-309c-4df2-a6ae-2b7dc2ecb2c7/52465011-da57-4f53-8bc6-45808f976f65.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - mYgA0QpY6baiB+xZp8Hk+A== - date: - - Fri, 21 May 2021 16:56:01 GMT - etag: - - '"0x8D91C7950445483"' - last-modified: - - Fri, 21 May 2021 16:56:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-content-crc64: - - NB4xBtawP6g= - x-ms-request-server-encrypted: - - 'true' - x-ms-version: - - '2020-08-04' - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:56:01 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/target50ec668a-8fa8-470d-9a2c-46265f4016c0?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:01 GMT - etag: - - '"0x8D91C79506F08F7"' - last-modified: - - Fri, 21 May 2021 16:56:01 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcbf8611e2-309c-4df2-a6ae-2b7dc2ecb2c7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target50ec668a-8fa8-470d-9a2c-46265f4016c0?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: - - f76bad37-205a-4759-9ac5-6bbbb060a4f2 - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:01 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e03b9160-77a3-424c-ad67-39102783ab52 - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - f76bad37-205a-4759-9ac5-6bbbb060a4f2 - 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/batches/e03b9160-77a3-424c-ad67-39102783ab52 - response: - body: - string: '{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:01.6560581Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 108c8ed9-9fd8-47e6-8f8d-7ba817ba0240 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:01 GMT - etag: - - '"206982B81CD4F1E40FAAA8D35544ED58F53144F5161DE80FAE7B300EE48AFDD3"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 108c8ed9-9fd8-47e6-8f8d-7ba817ba0240 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e03b9160-77a3-424c-ad67-39102783ab52 - response: - body: - string: '{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:01.732911Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 147227bc-2394-43bb-a360-e7b753c9c52e - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:01 GMT - etag: - - '"44B395789F3F3749FCB7FC8FDA24C66E7E06F95ECF201FB0A52FCCCA80BEFC3A"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 147227bc-2394-43bb-a360-e7b753c9c52e - 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/batches/e03b9160-77a3-424c-ad67-39102783ab52 - response: - body: - string: '{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 860a4f61-44d1-4841-978e-e15567923e2e - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:02 GMT - etag: - - '"829C0629EE3B5483C86ED8002FD4D972E56449A70968CB09A2D00CDE0E98C21A"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 860a4f61-44d1-4841-978e-e15567923e2e - 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/batches/e03b9160-77a3-424c-ad67-39102783ab52 - response: - body: - string: '{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 0ee0ef67-3605-40a1-8328-7a349ae6d5c0 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:03 GMT - etag: - - '"829C0629EE3B5483C86ED8002FD4D972E56449A70968CB09A2D00CDE0E98C21A"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 0ee0ef67-3605-40a1-8328-7a349ae6d5c0 - 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/batches/e03b9160-77a3-424c-ad67-39102783ab52 - response: - body: - string: '{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ad63ed2b-e701-437d-9d43-5d589c3ff4af - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:04 GMT - etag: - - '"829C0629EE3B5483C86ED8002FD4D972E56449A70968CB09A2D00CDE0E98C21A"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ad63ed2b-e701-437d-9d43-5d589c3ff4af - 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/batches/e03b9160-77a3-424c-ad67-39102783ab52 - response: - body: - string: '{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 5c60b9d3-5770-4fcd-a395-7db43b647fa4 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:05 GMT - etag: - - '"829C0629EE3B5483C86ED8002FD4D972E56449A70968CB09A2D00CDE0E98C21A"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5c60b9d3-5770-4fcd-a395-7db43b647fa4 - 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/batches/e03b9160-77a3-424c-ad67-39102783ab52 - response: - body: - string: '{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - 6b11ff34-35ac-44fe-8c30-f6c880c7b75e - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:07 GMT - etag: - - '"6A31E190F9B25600499C57BCBDC2BB24CC941DEC55F169E3AC31ACDA6116BB10"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6b11ff34-35ac-44fe-8c30-f6c880c7b75e - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:56:07 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src2f493e10-427f-4782-b943-c572b0e95738?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:07 GMT - etag: - - '"0x8D91C7953F58E8A"' - last-modified: - - Fri, 21 May 2021 16:56:07 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:56:07 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src2f493e10-427f-4782-b943-c572b0e95738/affe6e19-0155-40d3-bb3e-76e43e261e02.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - mYgA0QpY6baiB+xZp8Hk+A== - date: - - Fri, 21 May 2021 16:56:07 GMT - etag: - - '"0x8D91C7953FDEC77"' - last-modified: - - Fri, 21 May 2021 16:56: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-08-04' - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:56:07 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/target2485edc9-a532-4aba-9ca6-7a5c9470857d?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:07 GMT - etag: - - '"0x8D91C79542041C2"' - last-modified: - - Fri, 21 May 2021 16:56:07 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2f493e10-427f-4782-b943-c572b0e95738?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2485edc9-a532-4aba-9ca6-7a5c9470857d?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: - - 0321c3f5-2796-4783-8d3b-35c1a8085bb8 - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:07 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 0321c3f5-2796-4783-8d3b-35c1a8085bb8 - 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/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb - response: - body: - string: '{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:07.8272848Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 135171fd-eb5b-4ccc-a675-a04b42e08540 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:07 GMT - etag: - - '"F8CDA3EDE19CBD3F7E500F786CE09EC1FAD38BC9540B91B04E66D9D9FC2CBE91"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 135171fd-eb5b-4ccc-a675-a04b42e08540 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb - response: - body: - string: '{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:07.9295166Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 24fb1397-8b2f-4cdf-94c2-f7b4ad95c3da - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:07 GMT - etag: - - '"610CC3E0042633E9DC0F9ED0475F36A50E76279C0C73C8AAC5C08746977A6481"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 24fb1397-8b2f-4cdf-94c2-f7b4ad95c3da - 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/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb - response: - body: - string: '{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:07.9295166Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a585e0d8-dc3f-4b97-9c4d-b91aeba9ad9f - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:08 GMT - etag: - - '"610CC3E0042633E9DC0F9ED0475F36A50E76279C0C73C8AAC5C08746977A6481"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a585e0d8-dc3f-4b97-9c4d-b91aeba9ad9f - 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/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb - response: - body: - string: '{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 1b321411-0e7a-42cf-a011-03ef5d17abf4 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:09 GMT - etag: - - '"6890CA601A6F8FCE449FCE2FC6CD48CC6F6312F503F1456BE7D9BEEB1E9BEBD8"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 1b321411-0e7a-42cf-a011-03ef5d17abf4 - 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/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb - response: - body: - string: '{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 07a5250f-3c06-4eb1-9389-e2f18278e44a - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:10 GMT - etag: - - '"6890CA601A6F8FCE449FCE2FC6CD48CC6F6312F503F1456BE7D9BEEB1E9BEBD8"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 07a5250f-3c06-4eb1-9389-e2f18278e44a - 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/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb - response: - body: - string: '{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - af7078a2-71ea-4584-8050-b97abba4059e - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:11 GMT - etag: - - '"6890CA601A6F8FCE449FCE2FC6CD48CC6F6312F503F1456BE7D9BEEB1E9BEBD8"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - af7078a2-71ea-4584-8050-b97abba4059e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: '{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - ed6986b7-1768-4fc6-bc50-136e11955b93 - cache-control: - - public,max-age=1 + - d698b5de-93dc-49c7-9cc8-bf90456a18fc content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:56:12 GMT - etag: - - '"6890CA601A6F8FCE449FCE2FC6CD48CC6F6312F503F1456BE7D9BEEB1E9BEBD8"' + - Wed, 02 Jun 2021 06:28:46 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/88d78718-f019-4f04-955d-a5009d9e4245 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - ed6986b7-1768-4fc6-bc50-136e11955b93 + - d698b5de-93dc-49c7-9cc8-bf90456a18fc status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3353,23 +1631,23 @@ 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/batches/8b8106b5-6e48-4989-b8b5-db7946c1bacb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/88d78718-f019-4f04-955d-a5009d9e4245 response: body: - string: '{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - e234d386-41be-4efd-983b-55d85e3e5e72 + - da4a098a-fb41-45d5-b954-10b4262360fe cache-control: - public,max-age=1 content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:13 GMT + - Wed, 02 Jun 2021 06:28:51 GMT etag: - - '"6D047E205CC0AAD8A69098BB3B66ADD12293E1CE7759ABD4448778A2EF6C964F"' + - '"E364E4C4B67CA4680B0ACE54836E11328860F59DABC8472106DDE9122B17C5ED"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3384,7 +1662,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e234d386-41be-4efd-983b-55d85e3e5e72 + - da4a098a-fb41-45d5-b954-10b4262360fe status: code: 200 message: OK @@ -3402,11 +1680,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src44c2f2c4-a15b-47e7-b21a-bbffea77b1be?restype=container + uri: https://redacted.blob.core.windows.net/src9fbba506-930b-46c5-bcaa-d7137ec431d3?restype=container response: body: string: '' @@ -3414,11 +1692,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:13 GMT + - Wed, 02 Jun 2021 06:28:50 GMT etag: - - '"0x8D91C79585DCF57"' + - '"0x8D9258FB0547268"' last-modified: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3446,11 +1724,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src44c2f2c4-a15b-47e7-b21a-bbffea77b1be/236c8cdb-17a6-4ade-b1b6-78812c6df3b5.txt + uri: https://redacted.blob.core.windows.net/src9fbba506-930b-46c5-bcaa-d7137ec431d3/e175d1ed-20d0-4e2f-9969-b4e9801bfca1.txt response: body: string: '' @@ -3460,11 +1738,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:51 GMT etag: - - '"0x8D91C79586AEF98"' + - '"0x8D9258FB06183D9"' last-modified: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -3490,11 +1768,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:15 GMT + - Wed, 02 Jun 2021 06:28:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetb4f2bd70-22de-4545-a73d-ca17f1b67bd6?restype=container + uri: https://redacted.blob.core.windows.net/target8cb2ee8d-b943-4e9c-8e8c-8db84177239c?restype=container response: body: string: '' @@ -3502,11 +1780,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:51 GMT etag: - - '"0x8D91C79588CAE2A"' + - '"0x8D9258FB0817AAE"' last-modified: - - Fri, 21 May 2021 16:56:15 GMT + - Wed, 02 Jun 2021 06:28:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3515,8 +1793,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src44c2f2c4-a15b-47e7-b21a-bbffea77b1be?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb4f2bd70-22de-4545-a73d-ca17f1b67bd6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9fbba506-930b-46c5-bcaa-d7137ec431d3?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8cb2ee8d-b943-4e9c-8e8c-8db84177239c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -3526,7 +1804,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '488' Content-Type: - application/json User-Agent: @@ -3538,13 +1816,13 @@ interactions: string: '' headers: apim-request-id: - - 0223dc78-c8a1-4161-82d8-f6fd975f06c8 + - 36ebd58c-8dfe-42e9-add4-4ff3d990f9a9 content-length: - '0' date: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:51 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/12e9f99d-47c9-4f0e-a4bb-f5069f5790ac + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6f940a90-217b-4214-a0fe-192d98446f6a set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3555,7 +1833,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0223dc78-c8a1-4161-82d8-f6fd975f06c8 + - 36ebd58c-8dfe-42e9-add4-4ff3d990f9a9 status: code: 202 message: Accepted @@ -3563,7 +1841,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -3571,13 +1849,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/batches/12e9f99d-47c9-4f0e-a4bb-f5069f5790ac + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6f940a90-217b-4214-a0fe-192d98446f6a response: body: - string: '{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:15.2523353Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 7d497b3e-c73b-4f4b-9e54-37ece5417406 + - 7f17da1d-767e-4895-9c5d-acd108ed14ff cache-control: - public,max-age=1 content-length: @@ -3585,12 +1863,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:56 GMT etag: - - '"111B6264E79AF93296FE4D3AD1940EB3EBCE8B4602F5BD12746ECF6A2FC82E5C"' + - '"930DB53F280EA8D9C5F2C19878C16550D8B4C16A38D6B1269748EB243A01637F"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3602,7 +1880,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7d497b3e-c73b-4f4b-9e54-37ece5417406 + - 7f17da1d-767e-4895-9c5d-acd108ed14ff status: code: 200 message: OK @@ -3610,190 +1888,173 @@ interactions: body: null headers: Accept: - - application/json + - application/xml 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/12e9f99d-47c9-4f0e-a4bb-f5069f5790ac + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:28:57 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src2eb4fbeb-d9fb-467a-b307-a52c0c86c235?restype=container response: body: - string: '{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:15.3427959Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 710e7f2e-9a79-4585-a9ef-09d465ac7b8d - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:56:14 GMT + - Wed, 02 Jun 2021 06:28:57 GMT etag: - - '"A913EF78AF294604DEE3E7F8BF53E6AED6ABF91F27091D7B619EB25B8F410601"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 710e7f2e-9a79-4585-a9ef-09d465ac7b8d + - '"0x8D9258FB3D01778"' + last-modified: + - Wed, 02 Jun 2021 06:28:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/12e9f99d-47c9-4f0e-a4bb-f5069f5790ac + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 06:28:57 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src2eb4fbeb-d9fb-467a-b307-a52c0c86c235/ff442b48-4fa7-46c9-997b-eadd48abeb65.txt response: body: - string: '{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 216f39b9-1720-494a-a95c-5509fc01b8c0 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:16 GMT + - Wed, 02 Jun 2021 06:28:57 GMT etag: - - '"05825DA469D6C9F752D8E3D64D07A0855EAC3BBEB8212F72FEDE6163FD3DDD0C"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 216f39b9-1720-494a-a95c-5509fc01b8c0 + - '"0x8D9258FB3DB1E84"' + last-modified: + - Wed, 02 Jun 2021 06:28: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-08-04' 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/12e9f99d-47c9-4f0e-a4bb-f5069f5790ac + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:28:57 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/target410dadb3-c6ad-47a3-92da-16977474a2c9?restype=container response: body: - string: '{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 21090a07-2dff-451e-a072-098255f1e369 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:56:17 GMT + - Wed, 02 Jun 2021 06:28:57 GMT etag: - - '"05825DA469D6C9F752D8E3D64D07A0855EAC3BBEB8212F72FEDE6163FD3DDD0C"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 21090a07-2dff-451e-a072-098255f1e369 + - '"0x8D9258FB3F8C0BD"' + last-modified: + - Wed, 02 Jun 2021 06:28:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2eb4fbeb-d9fb-467a-b307-a52c0c86c235?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target410dadb3-c6ad-47a3-92da-16977474a2c9?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/12e9f99d-47c9-4f0e-a4bb-f5069f5790ac + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: '{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - db0e3642-7103-423c-b7b8-0c035917f9cb - cache-control: - - public,max-age=1 + - 086104f2-8fff-4a8e-bce6-9c8b7f7cfbb2 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:56:18 GMT - etag: - - '"05825DA469D6C9F752D8E3D64D07A0855EAC3BBEB8212F72FEDE6163FD3DDD0C"' + - Wed, 02 Jun 2021 06:28:57 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d386f9f9-ac85-410e-94e3-79eac5992714 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - db0e3642-7103-423c-b7b8-0c035917f9cb + - 086104f2-8fff-4a8e-bce6-9c8b7f7cfbb2 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3806,13 +2067,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/batches/12e9f99d-47c9-4f0e-a4bb-f5069f5790ac + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d386f9f9-ac85-410e-94e3-79eac5992714 response: body: - string: '{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - a235d8b8-448e-45c8-a899-eca529fbe31d + - 8995ef5f-0c47-4f9e-b88e-102986bda003 cache-control: - public,max-age=1 content-length: @@ -3820,9 +2081,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:19 GMT + - Wed, 02 Jun 2021 06:29:02 GMT etag: - - '"05825DA469D6C9F752D8E3D64D07A0855EAC3BBEB8212F72FEDE6163FD3DDD0C"' + - '"4BEA9E1B84E0EE62F67598B4D3A641AA46E5896C9545615265DD9AE1E69CA5F6"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3837,7 +2098,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a235d8b8-448e-45c8-a899-eca529fbe31d + - 8995ef5f-0c47-4f9e-b88e-102986bda003 status: code: 200 message: OK @@ -3853,13 +2114,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/batches/12e9f99d-47c9-4f0e-a4bb-f5069f5790ac + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d386f9f9-ac85-410e-94e3-79eac5992714 response: body: - string: '{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - a0c0d676-a881-4ee3-a404-afe30954de96 + - 633f91cc-1aeb-4978-b02b-0296375e2b4f cache-control: - public,max-age=1 content-length: @@ -3867,9 +2128,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:20 GMT + - Wed, 02 Jun 2021 06:29:03 GMT etag: - - '"D333E43183538D5795E801E46D9A44486A66FF4BB1391B82817E1E2D27B58F45"' + - '"E99FFEAA0DB814D2982F8315BBC478446938B3D4A8B96BAA800C4D4027AF9003"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3884,7 +2145,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a0c0d676-a881-4ee3-a404-afe30954de96 + - 633f91cc-1aeb-4978-b02b-0296375e2b4f status: code: 200 message: OK @@ -3902,11 +2163,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:20 GMT + - Wed, 02 Jun 2021 06:29:04 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca98072c5-23f3-4b0e-a3c0-e868926a7587?restype=container + uri: https://redacted.blob.core.windows.net/src851a0bd0-7279-4e43-bbd1-30be45a189d8?restype=container response: body: string: '' @@ -3914,11 +2175,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:03 GMT etag: - - '"0x8D91C795C1D11FB"' + - '"0x8D9258FB7CAE89B"' last-modified: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:04 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3946,11 +2207,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:04 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca98072c5-23f3-4b0e-a3c0-e868926a7587/e6e316d2-be0c-402d-853b-4ca848046eef.txt + uri: https://redacted.blob.core.windows.net/src851a0bd0-7279-4e43-bbd1-30be45a189d8/476c0dc7-730c-45bc-b418-8599e0878b86.txt response: body: string: '' @@ -3960,11 +2221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:03 GMT etag: - - '"0x8D91C795C25C048"' + - '"0x8D9258FB7D2B27D"' last-modified: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:04 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -3990,11 +2251,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:04 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8df93e68-9946-4882-b633-a31b5bca4c63?restype=container + uri: https://redacted.blob.core.windows.net/target2046eaac-7c0a-4b1e-a1a8-5f7bd11e02cd?restype=container response: body: string: '' @@ -4002,11 +2263,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:04 GMT etag: - - '"0x8D91C795C473DFC"' + - '"0x8D9258FB7EC8D1B"' last-modified: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:04 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -4015,8 +2276,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca98072c5-23f3-4b0e-a3c0-e868926a7587?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8df93e68-9946-4882-b633-a31b5bca4c63?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src851a0bd0-7279-4e43-bbd1-30be45a189d8?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2046eaac-7c0a-4b1e-a1a8-5f7bd11e02cd?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -4026,7 +2287,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '488' Content-Type: - application/json User-Agent: @@ -4038,13 +2299,13 @@ interactions: string: '' headers: apim-request-id: - - 8bb7c59c-4030-46cb-b04a-0bdc4ef6cf11 + - 7cb25570-95d2-40f1-b104-176e735c1c3c content-length: - '0' date: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:03 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/11634d81-7c57-4e01-a5cc-3f269ad8d8a6 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1bcb1fbb-d9c6-4aac-abc6-5da979f93c10 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4055,7 +2316,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 8bb7c59c-4030-46cb-b04a-0bdc4ef6cf11 + - 7cb25570-95d2-40f1-b104-176e735c1c3c status: code: 202 message: Accepted @@ -4063,7 +2324,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -4071,13 +2332,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/batches/11634d81-7c57-4e01-a5cc-3f269ad8d8a6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1bcb1fbb-d9c6-4aac-abc6-5da979f93c10 response: body: - string: '{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:21.5262351Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 78f2c51f-f7a9-4462-a4da-d48e83d5b62d + - 036afbd8-ed52-4f25-b359-b35668d0659c cache-control: - public,max-age=1 content-length: @@ -4085,9 +2346,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:08 GMT etag: - - '"491860877AC0C5BC068CB0D5BBCC0528D0D8E96D134C43A5A9FAB3F4D2078C99"' + - '"CAB8FA8E025C222C914DA7C7B7DF8EFF8C60182094804DA4ED2CEA5880D765E9"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4102,7 +2363,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 78f2c51f-f7a9-4462-a4da-d48e83d5b62d + - 036afbd8-ed52-4f25-b359-b35668d0659c status: code: 200 message: OK @@ -4118,23 +2379,23 @@ 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/batches/11634d81-7c57-4e01-a5cc-3f269ad8d8a6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&createdDateTimeUtcEnd=2021-06-02T06%3A28%3A40.301396Z response: body: - string: '{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:21.6083268Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","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/batches?$skip=50&$top=266&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z"}' headers: apim-request-id: - - 6eee7c19-1896-4bef-97b9-51300815e512 + - 84fb3622-9c23-4ba7-91b8-094d6e0e6a26 cache-control: - public,max-age=1 content-length: - - '292' + - '14857' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:21 GMT + - Wed, 02 Jun 2021 06:29:08 GMT etag: - - '"F1E39F97940C17B4F42FA2FF6D0E3A2ECDBB4559B41252F4F5A45BDF96D8CCAF"' + - '"B276F82ED5C23819AD1C634D4F8F254510B3AF96993051C3994FEB9C9EE7FE4F"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4149,7 +2410,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6eee7c19-1896-4bef-97b9-51300815e512 + - 84fb3622-9c23-4ba7-91b8-094d6e0e6a26 status: code: 200 message: OK @@ -4157,7 +2418,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -4165,23 +2426,23 @@ 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/batches/11634d81-7c57-4e01-a5cc-3f269ad8d8a6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=266&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z response: body: - string: '{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:21.6083268Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=216&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z"}' headers: apim-request-id: - - 3d5b9078-e55b-468a-a2a0-cbce80c8c06d + - 19259b84-4af3-4b85-85f1-3842849d0c53 cache-control: - public,max-age=1 content-length: - - '292' + - '14874' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:22 GMT + - Wed, 02 Jun 2021 06:29:09 GMT etag: - - '"F1E39F97940C17B4F42FA2FF6D0E3A2ECDBB4559B41252F4F5A45BDF96D8CCAF"' + - '"EACA59553B684AA928BBC0B07E73901EC33FDA3321C408850C506194DE68FED6"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4196,7 +2457,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3d5b9078-e55b-468a-a2a0-cbce80c8c06d + - 19259b84-4af3-4b85-85f1-3842849d0c53 status: code: 200 message: OK @@ -4204,7 +2465,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -4212,23 +2473,23 @@ 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/batches/11634d81-7c57-4e01-a5cc-3f269ad8d8a6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=216&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z response: body: - string: '{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=166&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z"}' headers: apim-request-id: - - a8219341-70f1-42ad-bd0c-9e39a942b61b + - cd473413-03bd-4e10-8d8d-d540fef56bdc cache-control: - public,max-age=1 content-length: - - '289' + - '14829' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:23 GMT + - Wed, 02 Jun 2021 06:29:09 GMT etag: - - '"B81C9D5610C9F3675BE5F68D40FDB4FE6C04CAAE359CF27699FA515539C87AB0"' + - '"D18332E6FCEE909CBED688EAF3600DF09CC17653736F720B8FC710E881E37B49"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4243,7 +2504,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a8219341-70f1-42ad-bd0c-9e39a942b61b + - cd473413-03bd-4e10-8d8d-d540fef56bdc status: code: 200 message: OK @@ -4251,7 +2512,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -4259,23 +2520,27 @@ 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/batches/11634d81-7c57-4e01-a5cc-3f269ad8d8a6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=166&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z response: body: - string: '{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=116&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z"}' headers: apim-request-id: - - 2f52a920-a2db-4c66-a447-585e83e4da83 + - cc083e7f-dbea-496c-a097-52d0f000dc08 cache-control: - public,max-age=1 content-length: - - '289' + - '15366' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:24 GMT + - Wed, 02 Jun 2021 06:29:09 GMT etag: - - '"B81C9D5610C9F3675BE5F68D40FDB4FE6C04CAAE359CF27699FA515539C87AB0"' + - '"1EDDB37C7A0882D39A7F8F8EBD079C23C0FBD7CC35218D22F3CA1AD71A92672A"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4290,7 +2555,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2f52a920-a2db-4c66-a447-585e83e4da83 + - cc083e7f-dbea-496c-a097-52d0f000dc08 status: code: 200 message: OK @@ -4298,7 +2563,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -4306,23 +2571,23 @@ 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/batches/11634d81-7c57-4e01-a5cc-3f269ad8d8a6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=116&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z response: body: - string: '{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"value":[{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=66&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z"}' headers: apim-request-id: - - 5603b573-7f22-44a2-b80b-ab10306cc225 + - 51252ff7-2e4e-4d63-a195-9569d381c8ec cache-control: - public,max-age=1 content-length: - - '292' + - '14829' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29:09 GMT etag: - - '"05AADBD440BDB8382879F5DE3020321D91E518D9C74AA5AA472D2BC2C3A268F7"' + - '"8D1B5EB4C184BA921D56CF44FF68E5F9725A1E24887280A2E31EE77E26E12D02"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4337,7 +2602,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5603b573-7f22-44a2-b80b-ab10306cc225 + - 51252ff7-2e4e-4d63-a195-9569d381c8ec status: code: 200 message: OK @@ -4353,23 +2618,23 @@ 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/batches?$skip=0&createdDateTimeUtcEnd=2021-05-21T16%3A55%3A58.032902Z + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=66&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z response: body: - string: '{"value":[{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + string: '{"value":[{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=16&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z"}' headers: apim-request-id: - - 25ad21de-aa05-401a-abd5-49f7a9217b51 + - 1398758a-41ca-4048-9837-ece4103a7da3 cache-control: - public,max-age=1 content-length: - - '8819' + - '14830' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29:09 GMT etag: - - '"89AD32F725780D652774237804780E3CB3E151539FE871298AFD1BD4632FFCC7"' + - '"5D29F3A0A6241626ECEB76DF4DC727FCD620B8A4839828E322E084F640326E4A"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4384,7 +2649,54 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 25ad21de-aa05-401a-abd5-49f7a9217b51 + - 1398758a-41ca-4048-9837-ece4103a7da3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=16&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T06:28:40.3013960Z + response: + body: + string: '{"value":[{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + headers: + apim-request-id: + - d81408f6-5b1b-4fca-91b3-0c15eecd9714 + cache-control: + - public,max-age=1 + content-length: + - '4717' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:29:09 GMT + etag: + - '"88D11007506FA73D82D8E235BEE935BA185EC60601017F09ACC6F63A11EF6BBD"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d81408f6-5b1b-4fca-91b3-0c15eecd9714 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_ids.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_ids.yaml index 908f37f3c986..4d5520626be5 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29:11 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src70f21b44-e798-427f-8816-038da74c948f?restype=container + uri: https://redacted.blob.core.windows.net/src5ba6b23a-066c-422c-826e-20725a37cc41?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29:10 GMT etag: - - '"0x8D91C795F858A39"' + - '"0x8D9258FBBFA0CEB"' last-modified: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29: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: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29:11 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src70f21b44-e798-427f-8816-038da74c948f/2278ba6e-7a8a-4af8-a409-f5aae488f15c.txt + uri: https://redacted.blob.core.windows.net/src5ba6b23a-066c-422c-826e-20725a37cc41/cff7ef09-dc0f-4bce-8cec-5749a22a6f57.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29:10 GMT etag: - - '"0x8D91C795F921484"' + - '"0x8D9258FBC03D7AB"' last-modified: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29: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: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:11 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src70f21b44-e798-427f-8816-038da74c948f/da39c88b-e541-4514-a9b2-83db9ff5a85c.txt + uri: https://redacted.blob.core.windows.net/src5ba6b23a-066c-422c-826e-20725a37cc41/04368642-8337-496d-8ed3-c3c97d46af18.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29:10 GMT etag: - - '"0x8D91C795FA503B4"' + - '"0x8D9258FBC0C3D9D"' last-modified: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:11 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetea7613c4-d974-46a2-b6fa-f5df5d9dc100?restype=container + uri: https://redacted.blob.core.windows.net/target463175da-c827-4620-a00a-4ed88322b983?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:26 GMT + - Wed, 02 Jun 2021 06:29:11 GMT etag: - - '"0x8D91C795FC421FC"' + - '"0x8D9258FBC240742"' last-modified: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src70f21b44-e798-427f-8816-038da74c948f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetea7613c4-d974-46a2-b6fa-f5df5d9dc100?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5ba6b23a-066c-422c-826e-20725a37cc41?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target463175da-c827-4620-a00a-4ed88322b983?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -187,7 +187,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -199,16 +199,16 @@ interactions: string: '' headers: apim-request-id: - - b3452f43-f6ea-4370-8fdf-8cc08dcb1513 + - 665f3b20-d521-4eeb-b4c5-148f9bfe286b content-length: - '0' date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:11 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a0a1011d-b2b4-4b03-8236-ce06593b7470 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c825d175-84c9-44bb-a250-7477b186b7d7 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -216,7 +216,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b3452f43-f6ea-4370-8fdf-8cc08dcb1513 + - 665f3b20-d521-4eeb-b4c5-148f9bfe286b status: code: 202 message: Accepted @@ -224,7 +224,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -232,23 +232,164 @@ 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/batches/a0a1011d-b2b4-4b03-8236-ce06593b7470 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c825d175-84c9-44bb-a250-7477b186b7d7 response: body: - string: '{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:27.6063349Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:12.222681Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - eca9157c-afd1-409e-8aae-d1b9c87d96a0 + - 8566cc8f-024c-4a31-8ad3-e5747d00fcc7 cache-control: - public,max-age=1 content-length: - - '292' + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:29:16 GMT + etag: + - '"7E713ABA706B0B97C7B5C75BA56088B63E4D405CE4D1398A1FC0E5963C9AD873"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8566cc8f-024c-4a31-8ad3-e5747d00fcc7 + 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/batches/c825d175-84c9-44bb-a250-7477b186b7d7 + response: + body: + string: '{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:12.222681Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1fa560d7-bad1-4b00-91f1-f8998be98008 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:29:17 GMT + etag: + - '"7E713ABA706B0B97C7B5C75BA56088B63E4D405CE4D1398A1FC0E5963C9AD873"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1fa560d7-bad1-4b00-91f1-f8998be98008 + 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/batches/c825d175-84c9-44bb-a250-7477b186b7d7 + response: + body: + string: '{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:12.222681Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 324ef0e7-6e82-46b4-8354-45186a5d5b7c + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:29:18 GMT + etag: + - '"7E713ABA706B0B97C7B5C75BA56088B63E4D405CE4D1398A1FC0E5963C9AD873"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 324ef0e7-6e82-46b4-8354-45186a5d5b7c + 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/batches/c825d175-84c9-44bb-a250-7477b186b7d7 + response: + body: + string: '{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 53e6d42c-f7ca-4eac-be7f-07d493015099 + cache-control: + - public,max-age=1 + content-length: + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:19 GMT etag: - - '"8AD31D639425135FBC7CDDAECF06F3DC2C2C4C26D832DC51D7E69C6C7316FAD6"' + - '"8067180E2E57E9EC91B12B7E5AB8862F6C94BC1D318B8B6CDEB3313C8DB5A39D"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -263,7 +404,54 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - eca9157c-afd1-409e-8aae-d1b9c87d96a0 + - 53e6d42c-f7ca-4eac-be7f-07d493015099 + 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/batches/c825d175-84c9-44bb-a250-7477b186b7d7 + response: + body: + string: '{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: + - 86433e85-0c5c-41c2-9fcd-d1f755d53bde + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:29:21 GMT + etag: + - '"4831107B213C5999F1464D8AC7B5F5E78AA5879AB2723063E699FA6BC05638CB"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 86433e85-0c5c-41c2-9fcd-d1f755d53bde status: code: 200 message: OK @@ -281,11 +469,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc89eeff3-66ed-4daa-b8af-a65a889ee7ff?restype=container + uri: https://redacted.blob.core.windows.net/srca241f711-87f5-46e5-82e8-2b4f9a2140ac?restype=container response: body: string: '' @@ -293,11 +481,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:22 GMT etag: - - '"0x8D91C7960220594"' + - '"0x8D9258FC25BF605"' last-modified: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -325,11 +513,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc89eeff3-66ed-4daa-b8af-a65a889ee7ff/e99450ed-a250-45f3-b7d8-4abb3828214d.txt + uri: https://redacted.blob.core.windows.net/srca241f711-87f5-46e5-82e8-2b4f9a2140ac/24bdc1d2-bbbf-4773-9093-4d27a067d8f9.txt response: body: string: '' @@ -339,11 +527,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:22 GMT etag: - - '"0x8D91C79602AEDEF"' + - '"0x8D9258FC2633DDC"' last-modified: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -375,11 +563,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc89eeff3-66ed-4daa-b8af-a65a889ee7ff/fc896f43-e99b-4111-a086-842d3f84aa41.txt + uri: https://redacted.blob.core.windows.net/srca241f711-87f5-46e5-82e8-2b4f9a2140ac/744272b8-2ae9-4eb3-9d24-6b315bc50f91.txt response: body: string: '' @@ -389,11 +577,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:22 GMT etag: - - '"0x8D91C796033A212"' + - '"0x8D9258FC26B2E90"' last-modified: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -419,11 +607,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf76845a4-ce91-4fdf-8e1e-800ab6927633?restype=container + uri: https://redacted.blob.core.windows.net/targetcd9f2b08-2203-40a4-9f2c-ed667160e5de?restype=container response: body: string: '' @@ -431,11 +619,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:21 GMT etag: - - '"0x8D91C79604EDDA5"' + - '"0x8D9258FC28B1E0D"' last-modified: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -444,8 +632,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc89eeff3-66ed-4daa-b8af-a65a889ee7ff?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf76845a4-ce91-4fdf-8e1e-800ab6927633?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca241f711-87f5-46e5-82e8-2b4f9a2140ac?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetcd9f2b08-2203-40a4-9f2c-ed667160e5de?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -467,16 +655,16 @@ interactions: string: '' headers: apim-request-id: - - f7313716-f79e-43eb-a1a8-e5580debfb93 + - 869f6caf-1b31-4771-ae49-12c98cbf5b39 content-length: - '0' date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:21 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/550d7bc1-bb77-4922-9df6-21ab03cd8366 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2169680d-f2b1-499e-9a26-50e940a1f19c set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -484,7 +672,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f7313716-f79e-43eb-a1a8-e5580debfb93 + - 869f6caf-1b31-4771-ae49-12c98cbf5b39 status: code: 202 message: Accepted @@ -492,7 +680,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -500,23 +688,23 @@ 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/batches/550d7bc1-bb77-4922-9df6-21ab03cd8366 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2169680d-f2b1-499e-9a26-50e940a1f19c response: body: - string: '{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:28.2648604Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 2638a12d-d5fa-49f7-a24b-33f71e99fca8 + - 88578478-af21-4242-9db5-5d0fd64e172e cache-control: - public,max-age=1 content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:27 GMT etag: - - '"5E8ACCE34B001C131A6C530B53E926D2208C5EC6669FCEF19A1964D32C67EFA3"' + - '"846BA3B8D993AF29642D58B523FB9BCBECE3E113426A82F15509471A3D248886"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -531,7 +719,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2638a12d-d5fa-49f7-a24b-33f71e99fca8 + - 88578478-af21-4242-9db5-5d0fd64e172e status: code: 200 message: OK @@ -549,11 +737,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src447f4e5f-d52c-46b8-9892-3bafe3b9b1e3?restype=container + uri: https://redacted.blob.core.windows.net/src9f663a80-b3ac-4e8e-a03a-b73bc9b055eb?restype=container response: body: string: '' @@ -561,11 +749,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:27 GMT etag: - - '"0x8D91C796084EAA1"' + - '"0x8D9258FC5E82596"' last-modified: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -593,11 +781,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:28 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src447f4e5f-d52c-46b8-9892-3bafe3b9b1e3/f01405f6-e1f0-45f4-a915-882bf875e703.txt + uri: https://redacted.blob.core.windows.net/src9f663a80-b3ac-4e8e-a03a-b73bc9b055eb/31e19053-e6ee-4c08-8bc0-39f0e29bd196.txt response: body: string: '' @@ -607,11 +795,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:27 GMT + - Wed, 02 Jun 2021 06:29:27 GMT etag: - - '"0x8D91C79608E0791"' + - '"0x8D9258FC5F08B66"' last-modified: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -643,11 +831,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:28 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src447f4e5f-d52c-46b8-9892-3bafe3b9b1e3/5c174e46-4d90-4120-a7e8-c1a9ff7e1953.txt + uri: https://redacted.blob.core.windows.net/src9f663a80-b3ac-4e8e-a03a-b73bc9b055eb/bd683e74-658a-423c-b8a5-899f29f36b1f.txt response: body: string: '' @@ -657,11 +845,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:27 GMT etag: - - '"0x8D91C796095D12C"' + - '"0x8D9258FC5F806D2"' last-modified: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -687,11 +875,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:28 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetbeab7e67-ccae-413d-8c13-fbd000066b6d?restype=container + uri: https://redacted.blob.core.windows.net/target1e4c4ec7-24bb-45e0-8e3d-29c3a3e08ef0?restype=container response: body: string: '' @@ -699,11 +887,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:27 GMT etag: - - '"0x8D91C7960B595BD"' + - '"0x8D9258FC617D8F1"' last-modified: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -712,8 +900,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src447f4e5f-d52c-46b8-9892-3bafe3b9b1e3?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbeab7e67-ccae-413d-8c13-fbd000066b6d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9f663a80-b3ac-4e8e-a03a-b73bc9b055eb?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1e4c4ec7-24bb-45e0-8e3d-29c3a3e08ef0?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -723,7 +911,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -735,13 +923,13 @@ interactions: string: '' headers: apim-request-id: - - 1ed50837-7eab-4a51-9118-37e87daeb1a9 + - e15e2f03-db90-4956-89d2-fb3305aba74a content-length: - '0' date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:28 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e6fcba87-649f-44d0-9a74-7f4b10a193f8 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a2d99f37-ea74-4026-bf86-a8a20de78870 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -752,7 +940,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1ed50837-7eab-4a51-9118-37e87daeb1a9 + - e15e2f03-db90-4956-89d2-fb3305aba74a status: code: 202 message: Accepted @@ -760,7 +948,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -768,13 +956,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/batches/e6fcba87-649f-44d0-9a74-7f4b10a193f8 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a2d99f37-ea74-4026-bf86-a8a20de78870 response: body: - string: '{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:28.9614932Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 2292d333-5c34-4304-9f3b-e6fb5a366933 + - 18aba5d5-0415-4f6b-b363-2234467d6aad cache-control: - public,max-age=1 content-length: @@ -782,9 +970,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:33 GMT etag: - - '"1AC0EA1717B07E593A0E3EE9AE1CAC85263C3AB4906BA0D53C5593F685CCE7BA"' + - '"161AFD55F0D20A7774DCF02FE13067AD58D1E4EAF056187C87DB304881263FB0"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -799,7 +987,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2292d333-5c34-4304-9f3b-e6fb5a366933 + - 18aba5d5-0415-4f6b-b363-2234467d6aad status: code: 200 message: OK @@ -815,23 +1003,23 @@ 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/batches?$skip=0&ids=a0a1011d-b2b4-4b03-8236-ce06593b7470,550d7bc1-bb77-4922-9df6-21ab03cd8366,e6fcba87-649f-44d0-9a74-7f4b10a193f8 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&ids=c825d175-84c9-44bb-a250-7477b186b7d7,2169680d-f2b1-499e-9a26-50e940a1f19c,a2d99f37-ea74-4026-bf86-a8a20de78870 response: body: - string: '{"value":[{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:28.9614932Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:28.4214654Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:27.7209701Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}]}' + string: '{"value":[{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}]}' headers: apim-request-id: - - 77cff5d6-b4f1-4137-be87-26d8720ce0d4 + - 2a4d2661-3ae8-4ae0-9559-763783094815 cache-control: - public,max-age=1 content-length: - - '890' + - '889' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:33 GMT etag: - - '"1CEF93B68713BAE6BD4783335B191C029A7DE1A4021AC39187BDDCAFAA176F79"' + - '"82D6336AECF03AD7E7F78B88EDE736E3A9D3F6242C68641F5CAB8C2BF242EB2C"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -846,7 +1034,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 77cff5d6-b4f1-4137-be87-26d8720ce0d4 + - 2a4d2661-3ae8-4ae0-9559-763783094815 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_status.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_status.yaml index 444065c04f8f..97ad67811028 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src37fcf892-0bd8-49ae-88d7-697d74dea0f7?restype=container + uri: https://redacted.blob.core.windows.net/srce262a7f7-f217-4c83-8e11-b88a581ed370?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:33 GMT etag: - - '"0x8D91C79610A783E"' + - '"0x8D9258FC97B25B4"' last-modified: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:34 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: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src37fcf892-0bd8-49ae-88d7-697d74dea0f7/1c2c48cb-9a3a-4794-9146-64ea44788fd5.txt + uri: https://redacted.blob.core.windows.net/srce262a7f7-f217-4c83-8e11-b88a581ed370/bb99b5b1-f39a-411c-a9a0-21bb84f1707c.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:28 GMT + - Wed, 02 Jun 2021 06:29:33 GMT etag: - - '"0x8D91C796116B191"' + - '"0x8D9258FC983F450"' last-modified: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetbca4f766-1d35-4eba-830c-ddfff50ccf7a?restype=container + uri: https://redacted.blob.core.windows.net/targetd3a9580b-9d84-4359-80a4-e3c488acdd7f?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:33 GMT etag: - - '"0x8D91C79613279C5"' + - '"0x8D9258FC99FCACF"' last-modified: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src37fcf892-0bd8-49ae-88d7-697d74dea0f7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbca4f766-1d35-4eba-830c-ddfff50ccf7a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce262a7f7-f217-4c83-8e11-b88a581ed370?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd3a9580b-9d84-4359-80a4-e3c488acdd7f?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -137,7 +137,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '488' Content-Type: - application/json User-Agent: @@ -149,79 +149,32 @@ interactions: string: '' headers: apim-request-id: - - 2381fe51-05c2-4407-b019-a99a6918a7e3 + - 17582982-5e1d-435d-8021-12e563ae0f8d content-length: - '0' date: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:34 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 2381fe51-05c2-4407-b019-a99a6918a7e3 - 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/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 - response: - body: - string: '{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:30.0458712Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 97b8faae-ca8c-44e6-a7ce-844761088897 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:29 GMT - etag: - - '"BFE09488A049B2F2AB2E99AFAB18285FB183011E8459C40ABC2BC6DA9E7554AD"' + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cd32d1f9-7fe1-4e7c-803c-074eb313b881 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 97b8faae-ca8c-44e6-a7ce-844761088897 + - 17582982-5e1d-435d-8021-12e563ae0f8d status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -229,13 +182,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/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cd32d1f9-7fe1-4e7c-803c-074eb313b881 response: body: - string: '{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:30.0458712Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - e9814c4e-d1e4-4589-a12b-83810efc53e2 + - 8e6ace61-65eb-482a-954c-6a383e0a009c cache-control: - public,max-age=1 content-length: @@ -243,9 +196,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:29 GMT + - Wed, 02 Jun 2021 06:29:39 GMT etag: - - '"BFE09488A049B2F2AB2E99AFAB18285FB183011E8459C40ABC2BC6DA9E7554AD"' + - '"096263851F3336916F7E7F51F060301761F25429C6E8DD61761B630946E2FBE5"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -260,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e9814c4e-d1e4-4589-a12b-83810efc53e2 + - 8e6ace61-65eb-482a-954c-6a383e0a009c status: code: 200 message: OK @@ -268,190 +221,173 @@ interactions: body: null headers: Accept: - - '*/*' + - application/xml 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:29:39 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src56c7de27-3096-4034-b4b1-36f4bb97ad08?restype=container response: body: - string: '{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:30.0458712Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - cdb6b0dd-0ee3-4cb0-93b9-44558969cf90 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:56:30 GMT + - Wed, 02 Jun 2021 06:29:39 GMT etag: - - '"BFE09488A049B2F2AB2E99AFAB18285FB183011E8459C40ABC2BC6DA9E7554AD"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - cdb6b0dd-0ee3-4cb0-93b9-44558969cf90 + - '"0x8D9258FCD0CA59E"' + last-modified: + - Wed, 02 Jun 2021 06:29:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 06:29:40 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src56c7de27-3096-4034-b4b1-36f4bb97ad08/8f707dfa-3c5f-41eb-abe3-9b3621e582fc.txt response: body: - string: '{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - a51bfb45-71b5-4254-b7b3-16e645405263 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:31 GMT + - Wed, 02 Jun 2021 06:29:39 GMT etag: - - '"4B1CF587725429C6B15023D6E7F21482C5A404A528B1DAB01401E0D0E37825C0"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a51bfb45-71b5-4254-b7b3-16e645405263 + - '"0x8D9258FCD19CEA6"' + last-modified: + - Wed, 02 Jun 2021 06:29: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-08-04' 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:29:40 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/target0a37032c-114f-41b1-a034-442aabe407c2?restype=container response: body: - string: '{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 16668ce3-a656-4faf-9734-d523ba4440a6 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:56:32 GMT + - Wed, 02 Jun 2021 06:29:39 GMT etag: - - '"4B1CF587725429C6B15023D6E7F21482C5A404A528B1DAB01401E0D0E37825C0"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 16668ce3-a656-4faf-9734-d523ba4440a6 + - '"0x8D9258FCD3D436C"' + last-modified: + - Wed, 02 Jun 2021 06:29:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src56c7de27-3096-4034-b4b1-36f4bb97ad08?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0a37032c-114f-41b1-a034-442aabe407c2?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: '{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - 559fb084-8540-4e9b-8c37-8144a8eec1f7 - cache-control: - - public,max-age=1 + - d8e4ce99-9b7b-41dc-bc73-09a984e89999 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:56:34 GMT - etag: - - '"4B1CF587725429C6B15023D6E7F21482C5A404A528B1DAB01401E0D0E37825C0"' + - Wed, 02 Jun 2021 06:29:39 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ae0cf555-37e1-4fed-a4ee-37385bd742a7 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 559fb084-8540-4e9b-8c37-8144a8eec1f7 + - d8e4ce99-9b7b-41dc-bc73-09a984e89999 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -464,13 +400,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/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ae0cf555-37e1-4fed-a4ee-37385bd742a7 response: body: - string: '{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 59c0b8c0-a818-4e80-85f0-49ef18bf727e + - 10e1bb91-1257-41ec-b3c1-72e68d824761 cache-control: - public,max-age=1 content-length: @@ -478,9 +414,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:35 GMT + - Wed, 02 Jun 2021 06:29:44 GMT etag: - - '"4B1CF587725429C6B15023D6E7F21482C5A404A528B1DAB01401E0D0E37825C0"' + - '"14F713ECCDF06D0864F8BF93207177EACF62A5DE674899040956D2F3892A2224"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -495,7 +431,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 59c0b8c0-a818-4e80-85f0-49ef18bf727e + - 10e1bb91-1257-41ec-b3c1-72e68d824761 status: code: 200 message: OK @@ -511,13 +447,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/batches/42ed2819-1b97-470e-b7d9-aa38c1762954 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ae0cf555-37e1-4fed-a4ee-37385bd742a7 response: body: - string: '{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 3f0a50a3-c68e-4546-8ce2-cac8668bea38 + - c1cef5c8-843f-4ada-8a3e-6b8e966c9cc4 cache-control: - public,max-age=1 content-length: @@ -525,9 +461,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:36 GMT + - Wed, 02 Jun 2021 06:29:46 GMT etag: - - '"48AA283B73D7618E9D960D62190670987715EED7BC3CD8E97ACB306A7E7D163A"' + - '"20B0EF9B6A29631F1F6EE7AF6EED5FE45D4CDBA19C63F7EBA6F6649FAAF599FD"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -542,7 +478,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3f0a50a3-c68e-4546-8ce2-cac8668bea38 + - c1cef5c8-843f-4ada-8a3e-6b8e966c9cc4 status: code: 200 message: OK @@ -560,11 +496,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:36 GMT + - Wed, 02 Jun 2021 06:29:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc99a9a01-d347-45e6-a740-cabae46f9037?restype=container + uri: https://redacted.blob.core.windows.net/src7e12cd6c-82e1-4f3f-bfd0-7fde93d14a07?restype=container response: body: string: '' @@ -572,11 +508,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:37 GMT + - Wed, 02 Jun 2021 06:29:46 GMT etag: - - '"0x8D91C7965A0BDC6"' + - '"0x8D9258FD1289941"' last-modified: - - Fri, 21 May 2021 16:56:37 GMT + - Wed, 02 Jun 2021 06:29:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -604,11 +540,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:56:37 GMT + - Wed, 02 Jun 2021 06:29:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc99a9a01-d347-45e6-a740-cabae46f9037/527a7b85-4a0d-40b3-b749-dfc25ea8a2bf.txt + uri: https://redacted.blob.core.windows.net/src7e12cd6c-82e1-4f3f-bfd0-7fde93d14a07/0484ec70-7b14-4042-bf8a-3348b9bad39c.txt response: body: string: '' @@ -618,11 +554,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:37 GMT + - Wed, 02 Jun 2021 06:29:46 GMT etag: - - '"0x8D91C7965AC2BE2"' + - '"0x8D9258FD1378F28"' last-modified: - - Fri, 21 May 2021 16:56:37 GMT + - Wed, 02 Jun 2021 06:29:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -648,11 +584,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:37 GMT + - Wed, 02 Jun 2021 06:29:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete6331492-a00c-49c8-8eb1-15feb69c62bb?restype=container + uri: https://redacted.blob.core.windows.net/target01f267d8-280c-4332-b138-7c74f3313b21?restype=container response: body: string: '' @@ -660,11 +596,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:37 GMT + - Wed, 02 Jun 2021 06:29:46 GMT etag: - - '"0x8D91C7965C76E81"' + - '"0x8D9258FD1566A91"' last-modified: - - Fri, 21 May 2021 16:56:37 GMT + - Wed, 02 Jun 2021 06:29:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -673,8 +609,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc99a9a01-d347-45e6-a740-cabae46f9037?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete6331492-a00c-49c8-8eb1-15feb69c62bb?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7e12cd6c-82e1-4f3f-bfd0-7fde93d14a07?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target01f267d8-280c-4332-b138-7c74f3313b21?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -684,7 +620,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -696,13 +632,13 @@ interactions: string: '' headers: apim-request-id: - - 585f03ca-100c-40b1-8964-109a02d0b79b + - 470a56fd-dbb4-40df-93bb-1b1c79cbbe0f content-length: - '0' date: - - Fri, 21 May 2021 16:56:36 GMT + - Wed, 02 Jun 2021 06:29:46 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c6e2010c-6c48-4bd0-9af7-5b6facde0400 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -713,7 +649,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 585f03ca-100c-40b1-8964-109a02d0b79b + - 470a56fd-dbb4-40df-93bb-1b1c79cbbe0f status: code: 202 message: Accepted @@ -721,7 +657,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -729,23 +665,23 @@ 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/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c6e2010c-6c48-4bd0-9af7-5b6facde0400 response: body: - string: '{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:37.461106Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - c4fded13-5ae9-41be-8135-a0985578ddc5 + - a6b247b0-16a8-4db0-8bc1-243c8aa5fd3c cache-control: - public,max-age=1 content-length: - - '290' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:36 GMT + - Wed, 02 Jun 2021 06:29:51 GMT etag: - - '"B1C7BE4C5E4EE86CADC069628B4F7A4F4A02B8127E8366D5D22880FC91D14AC0"' + - '"6611AE5E284F04B51101912BAF087AD4831D6537A4EFC55512A61BDAE9CEF886"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -760,7 +696,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c4fded13-5ae9-41be-8135-a0985578ddc5 + - a6b247b0-16a8-4db0-8bc1-243c8aa5fd3c status: code: 200 message: OK @@ -768,7 +704,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -776,1402 +712,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/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c6e2010c-6c48-4bd0-9af7-5b6facde0400 response: body: - string: '{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:37.5462291Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - f8bc021f-3750-4e10-abae-7a4b212331b0 + - cb1bdcc9-2e5c-4a62-acc2-174ff5d0c671 cache-control: - public,max-age=1 content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:36 GMT - etag: - - '"85FC49C3A5CBF5C67A28FB2246B5112EB3FE59F82F59688D4EBB3241152B82C7"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - f8bc021f-3750-4e10-abae-7a4b212331b0 - 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/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 - response: - body: - string: '{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:37.5462291Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 642093f7-bb3e-4f15-b1fd-1c80883ff8c2 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:37 GMT - etag: - - '"85FC49C3A5CBF5C67A28FB2246B5112EB3FE59F82F59688D4EBB3241152B82C7"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 642093f7-bb3e-4f15-b1fd-1c80883ff8c2 - 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/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 - response: - body: - string: '{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - cf1ea611-fa4d-41b6-8f56-a7e8d8fb9c99 - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:39 GMT - etag: - - '"967055C14D8C6BCAE709D12BD159DFB5C63C1E8085FD3FF7C6B2AE6A41E1F341"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - cf1ea611-fa4d-41b6-8f56-a7e8d8fb9c99 - 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/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 - response: - body: - string: '{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - d01415bd-34e1-44d4-9f9c-0ccb8a61a0dc - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:40 GMT - etag: - - '"967055C14D8C6BCAE709D12BD159DFB5C63C1E8085FD3FF7C6B2AE6A41E1F341"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - d01415bd-34e1-44d4-9f9c-0ccb8a61a0dc - 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/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 - response: - body: - string: '{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 74e5a04b-ca72-4e79-bf0c-207aa2f0127f - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:41 GMT - etag: - - '"967055C14D8C6BCAE709D12BD159DFB5C63C1E8085FD3FF7C6B2AE6A41E1F341"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 74e5a04b-ca72-4e79-bf0c-207aa2f0127f - 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/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 - response: - body: - string: '{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 6e96c408-b4ca-4cd1-9c5a-3148025d92ba - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:42 GMT - etag: - - '"967055C14D8C6BCAE709D12BD159DFB5C63C1E8085FD3FF7C6B2AE6A41E1F341"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6e96c408-b4ca-4cd1-9c5a-3148025d92ba - 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/batches/5ae10e3e-3c42-4bb1-8593-0648d565aa04 - response: - body: - string: '{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - 3c8ac178-6f7c-4c41-b400-42dd387ddce1 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:43 GMT - etag: - - '"7CB5EF0CE4B5946F46511838121D0B804CCC94CBA4289A446CF9DA27CA601129"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3c8ac178-6f7c-4c41-b400-42dd387ddce1 - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:56:44 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src4f7dba84-9fc1-4abc-80b4-498b1e1b81f7?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:44 GMT - etag: - - '"0x8D91C7969EFCC65"' - last-modified: - - Fri, 21 May 2021 16:56:44 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:56:44 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src4f7dba84-9fc1-4abc-80b4-498b1e1b81f7/74550694-c2f8-4b48-bc41-6c4a896046af.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - mYgA0QpY6baiB+xZp8Hk+A== - date: - - Fri, 21 May 2021 16:56:44 GMT - etag: - - '"0x8D91C7969F7BE27"' - last-modified: - - Fri, 21 May 2021 16: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-08-04' - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:56:44 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/target2809c881-ab6d-4617-9d95-dcd33d031a21?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:44 GMT - etag: - - '"0x8D91C796A14B42C"' - last-modified: - - Fri, 21 May 2021 16:56:44 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4f7dba84-9fc1-4abc-80b4-498b1e1b81f7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2809c881-ab6d-4617-9d95-dcd33d031a21?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: - - ba467ca6-d1e3-44fa-899b-9f9989ad720f - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:43 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ba467ca6-d1e3-44fa-899b-9f9989ad720f - 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/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - response: - body: - string: '{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:44.6587071Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 9e110fd1-2ef0-4314-bb52-bbac45786de6 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:43 GMT - etag: - - '"8AD98117426B920E6C95E10D9A6197E05A24A4B75FA0A303AFD703D3B75A5878"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9e110fd1-2ef0-4314-bb52-bbac45786de6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - response: - body: - string: '{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:44.7750062Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 4508a944-b353-4e87-a1fa-d799f2cf417e - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:43 GMT - etag: - - '"C1C71F675B81747683E7AC00CF0023CC1C4297A8B281132B6A80893A60E15F30"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 4508a944-b353-4e87-a1fa-d799f2cf417e - 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/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - response: - body: - string: '{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:44.7750062Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a4e3fe1a-2fc9-4004-a688-8c07b7894c1b - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:45 GMT - etag: - - '"C1C71F675B81747683E7AC00CF0023CC1C4297A8B281132B6A80893A60E15F30"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a4e3fe1a-2fc9-4004-a688-8c07b7894c1b - 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/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - response: - body: - string: '{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 234d0b9e-59a9-4bf0-b58d-b29022783be2 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:46 GMT - etag: - - '"A61F2DFC24C8381342C44D371C91C11F8CE7A64B2BE95DA23FFC6E0BF9A238FA"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 234d0b9e-59a9-4bf0-b58d-b29022783be2 - 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/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - response: - body: - string: '{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a65fa4b0-5ea5-4cf1-836f-6b15beca9e95 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:47 GMT - etag: - - '"A61F2DFC24C8381342C44D371C91C11F8CE7A64B2BE95DA23FFC6E0BF9A238FA"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a65fa4b0-5ea5-4cf1-836f-6b15beca9e95 - 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/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - response: - body: - string: '{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - fe18a0d6-0524-4a7b-ae94-e71f919cdd82 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:48 GMT - etag: - - '"A61F2DFC24C8381342C44D371C91C11F8CE7A64B2BE95DA23FFC6E0BF9A238FA"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - fe18a0d6-0524-4a7b-ae94-e71f919cdd82 - 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/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - response: - body: - string: '{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 2cbba4fd-8db3-44de-bd51-51730a3a89c5 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:49 GMT - etag: - - '"A61F2DFC24C8381342C44D371C91C11F8CE7A64B2BE95DA23FFC6E0BF9A238FA"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 2cbba4fd-8db3-44de-bd51-51730a3a89c5 - 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/batches/078eb78c-7bea-4e2c-b1c3-1204defc55e6 - response: - body: - string: '{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - 9a3ba1cc-abda-4227-ac8c-27db9a39109a - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:50 GMT - etag: - - '"1702A153509739754E38C5E2C733B9DF94E8914C42BAC53FFDFF98088EE5AAC8"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9a3ba1cc-abda-4227-ac8c-27db9a39109a - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:56:51 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src86344354-fda1-4ff9-bd72-29dca3c4ee2c?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:51 GMT - etag: - - '"0x8D91C796E3F9964"' - last-modified: - - Fri, 21 May 2021 16:56:51 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:56:51 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src86344354-fda1-4ff9-bd72-29dca3c4ee2c/4203030a-a112-451a-84d0-af60915cbfcc.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - mYgA0QpY6baiB+xZp8Hk+A== - date: - - Fri, 21 May 2021 16:56:51 GMT - etag: - - '"0x8D91C796E491E23"' - last-modified: - - Fri, 21 May 2021 16:56:51 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-content-crc64: - - NB4xBtawP6g= - x-ms-request-server-encrypted: - - 'true' - x-ms-version: - - '2020-08-04' - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:56:51 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/target90590056-29fd-478f-92b6-e1e5068947b2?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:51 GMT - etag: - - '"0x8D91C796E658968"' - last-modified: - - Fri, 21 May 2021 16:56:51 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src86344354-fda1-4ff9-bd72-29dca3c4ee2c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target90590056-29fd-478f-92b6-e1e5068947b2?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: - - 490759cb-c86e-4c20-877e-2fee0440f8b7 - content-length: - - '0' - date: - - Fri, 21 May 2021 16:56:50 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 490759cb-c86e-4c20-877e-2fee0440f8b7 - 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/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - response: - body: - string: '{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:51.9025285Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - e15e15f3-a5e7-4a4b-b009-c5c88d5223f9 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:51 GMT - etag: - - '"425407ADA6492F8495B0BC89A3273CEC38518CB258DFFD8423C2C72F2933FAAF"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - e15e15f3-a5e7-4a4b-b009-c5c88d5223f9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - response: - body: - string: '{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:51.9906184Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 3fec55d8-7b2c-4d1d-8db6-5835da0f7dce - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:51 GMT - etag: - - '"1A4C8DE6CB14A2DE780CFC6A016E1EA50CF260452716C7D5434F6F5859B8CAD2"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3fec55d8-7b2c-4d1d-8db6-5835da0f7dce - 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/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - response: - body: - string: '{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.090158Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a7de43a6-a7ed-4f25-9387-5ded38c9aa7d - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:52 GMT - etag: - - '"E9E00D27803FB6480C257770058D65212A8203F1F13E8CBB3C800DF1386E8F3B"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a7de43a6-a7ed-4f25-9387-5ded38c9aa7d - 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/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - response: - body: - string: '{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 6e8dd24d-89d6-4d45-8ea4-540e82b1eb02 - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:54 GMT - etag: - - '"36543E6FC6418B554A79696952FD505FC06D7933E0B4CAA3084CE15862C72A70"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6e8dd24d-89d6-4d45-8ea4-540e82b1eb02 - 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/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - response: - body: - string: '{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 649659be-bb32-4eba-bf0b-b0889e40f6c5 - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:55 GMT - etag: - - '"36543E6FC6418B554A79696952FD505FC06D7933E0B4CAA3084CE15862C72A70"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 649659be-bb32-4eba-bf0b-b0889e40f6c5 - 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/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - response: - body: - string: '{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 3d865c63-ce4a-42b2-a049-1a73801be04f - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:56 GMT - etag: - - '"36543E6FC6418B554A79696952FD505FC06D7933E0B4CAA3084CE15862C72A70"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3d865c63-ce4a-42b2-a049-1a73801be04f - 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/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - response: - body: - string: '{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 792f43fc-7366-41fa-a82c-85948792dfeb - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:56:57 GMT - etag: - - '"36543E6FC6418B554A79696952FD505FC06D7933E0B4CAA3084CE15862C72A70"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 792f43fc-7366-41fa-a82c-85948792dfeb - 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/batches/f2f974a7-7059-416b-9d5a-7030077ebc95 - response: - body: - string: '{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - c6368663-5a50-419e-a9b0-6f2662e27cb6 - cache-control: - - public,max-age=1 - content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:58 GMT + - Wed, 02 Jun 2021 06:29:52 GMT etag: - - '"C090C098E18B6D20325F7CE332D3FB01C6B8466C816EA304CFDEFB257A64827B"' + - '"8548A65B5A2D2331C641A29A55B0DCCC2ABEA96410A5DBA376F16B93E5D27445"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2183,7 +743,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c6368663-5a50-419e-a9b0-6f2662e27cb6 + - cb1bdcc9-2e5c-4a62-acc2-174ff5d0c671 status: code: 200 message: OK @@ -2201,11 +761,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:58 GMT + - Wed, 02 Jun 2021 06:29:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc48690f1-b6c8-4268-8253-436ba865476c?restype=container + uri: https://redacted.blob.core.windows.net/src52cc1286-9751-44ff-acf5-926dcceda0da?restype=container response: body: string: '' @@ -2213,11 +773,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:58 GMT + - Wed, 02 Jun 2021 06:29:52 GMT etag: - - '"0x8D91C797293C393"' + - '"0x8D9258FD53D2CFB"' last-modified: - - Fri, 21 May 2021 16:56:58 GMT + - Wed, 02 Jun 2021 06:29:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2245,11 +805,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:56:58 GMT + - Wed, 02 Jun 2021 06:29:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc48690f1-b6c8-4268-8253-436ba865476c/9f7f2757-b789-4c27-93a3-f4ef74e96915.txt + uri: https://redacted.blob.core.windows.net/src52cc1286-9751-44ff-acf5-926dcceda0da/edfda83f-bac0-475c-beab-a42ed13b4877.txt response: body: string: '' @@ -2259,11 +819,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:56:58 GMT + - Wed, 02 Jun 2021 06:29:52 GMT etag: - - '"0x8D91C79729CC832"' + - '"0x8D9258FD544AB15"' last-modified: - - Fri, 21 May 2021 16:56:58 GMT + - Wed, 02 Jun 2021 06:29:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2289,11 +849,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:56:58 GMT + - Wed, 02 Jun 2021 06:29:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target3d824325-6568-4425-920c-228b69ecfc5c?restype=container + uri: https://redacted.blob.core.windows.net/target73b61f78-6236-4fa9-b5d5-0ce86b40a4e7?restype=container response: body: string: '' @@ -2301,11 +861,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:56:59 GMT + - Wed, 02 Jun 2021 06:29:53 GMT etag: - - '"0x8D91C7972B92F07"' + - '"0x8D9258FD5619FF2"' last-modified: - - Fri, 21 May 2021 16:56:59 GMT + - Wed, 02 Jun 2021 06:29:54 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2314,8 +874,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc48690f1-b6c8-4268-8253-436ba865476c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3d824325-6568-4425-920c-228b69ecfc5c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src52cc1286-9751-44ff-acf5-926dcceda0da?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target73b61f78-6236-4fa9-b5d5-0ce86b40a4e7?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2325,7 +885,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -2337,16 +897,16 @@ interactions: string: '' headers: apim-request-id: - - 912b90bb-f14e-43d2-bf8b-d95f5505f327 + - 6924f8c3-189b-480f-928d-bbd33a91be9c content-length: - '0' date: - - Fri, 21 May 2021 16:56:59 GMT + - Wed, 02 Jun 2021 06:29:53 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/92790e6f-175b-4ce9-aa96-0b82f2fd0b4e + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cd283afb-1dfb-4b00-a707-2fb7019401a0 set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -2354,7 +914,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 912b90bb-f14e-43d2-bf8b-d95f5505f327 + - 6924f8c3-189b-480f-928d-bbd33a91be9c status: code: 202 message: Accepted @@ -2362,7 +922,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -2370,13 +930,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/batches/92790e6f-175b-4ce9-aa96-0b82f2fd0b4e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cd283afb-1dfb-4b00-a707-2fb7019401a0 response: body: - string: '{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:56:59.1772154Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - c6f7a1fb-d2c7-4669-9819-59812f5595ac + - 8e655430-42a8-4f1b-aaf1-3563016777cd cache-control: - public,max-age=1 content-length: @@ -2384,12 +944,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:56:59 GMT + - Wed, 02 Jun 2021 06:29:58 GMT etag: - - '"1DDDC3D7F51EE383EBF45598B7AEFE603442510EA7901891149E4582700E748B"' + - '"C913E57842111671B37A2F210DCA97C6DF9C2D68355F2F0670978DF62EBE2236"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2401,7 +961,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c6f7a1fb-d2c7-4669-9819-59812f5595ac + - 8e655430-42a8-4f1b-aaf1-3563016777cd status: code: 200 message: OK @@ -2409,190 +969,173 @@ interactions: body: null headers: Accept: - - application/json + - application/xml 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/92790e6f-175b-4ce9-aa96-0b82f2fd0b4e + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:29:59 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src8f35aaec-847e-46eb-b9f3-43dfdcd474f1?restype=container response: body: - string: '{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:56:59.2674282Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 3cd89a0a-f558-4764-bc78-61611be5ca02 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:56:59 GMT + - Wed, 02 Jun 2021 06:29:58 GMT etag: - - '"E8D3D245BFD0C6D26EC4044FB074A64E51C6CA8F0BD645F1EF20F69267D1AAC9"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3cd89a0a-f558-4764-bc78-61611be5ca02 + - '"0x8D9258FD896C3FA"' + last-modified: + - Wed, 02 Jun 2021 06:29:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/92790e6f-175b-4ce9-aa96-0b82f2fd0b4e + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 06:29:59 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src8f35aaec-847e-46eb-b9f3-43dfdcd474f1/ab08adae-8f3e-4d0e-b00e-a4a73b300698.txt response: body: - string: '{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - fee68e0e-f1bd-4e04-92b9-368bc038f711 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:00 GMT + - Wed, 02 Jun 2021 06:29:58 GMT etag: - - '"0137DD8A64BFE95919D2536FB56046C8B8D83D2FF682335E952DD4295BF16CE7"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - fee68e0e-f1bd-4e04-92b9-368bc038f711 + - '"0x8D9258FD8A2A279"' + last-modified: + - Wed, 02 Jun 2021 06:29: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-08-04' 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/92790e6f-175b-4ce9-aa96-0b82f2fd0b4e + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 06:29:59 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/target953d6e90-c123-43e2-b767-92e21e22d31e?restype=container response: body: - string: '{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 9deca744-7aaa-48f9-ac7c-73edfd947b07 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:57:01 GMT + - Wed, 02 Jun 2021 06:29:58 GMT etag: - - '"0137DD8A64BFE95919D2536FB56046C8B8D83D2FF682335E952DD4295BF16CE7"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9deca744-7aaa-48f9-ac7c-73edfd947b07 + - '"0x8D9258FD8C0D0F2"' + last-modified: + - Wed, 02 Jun 2021 06:29:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8f35aaec-847e-46eb-b9f3-43dfdcd474f1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target953d6e90-c123-43e2-b767-92e21e22d31e?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/92790e6f-175b-4ce9-aa96-0b82f2fd0b4e + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: '{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - 975dbfaf-a25e-40d5-91be-86279ce19c3f - cache-control: - - public,max-age=1 + - 0d9bac5c-1aac-4ecb-bf83-839abdc0e634 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 21 May 2021 16:57:02 GMT - etag: - - '"0137DD8A64BFE95919D2536FB56046C8B8D83D2FF682335E952DD4295BF16CE7"' + - Wed, 02 Jun 2021 06:29:59 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/afad7dd6-3567-4b66-88b7-9bd8beaf3899 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 975dbfaf-a25e-40d5-91be-86279ce19c3f + - 0d9bac5c-1aac-4ecb-bf83-839abdc0e634 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2605,23 +1148,23 @@ 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/batches/92790e6f-175b-4ce9-aa96-0b82f2fd0b4e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/afad7dd6-3567-4b66-88b7-9bd8beaf3899 response: body: - string: '{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - cf99c5b7-0175-4e59-b9bc-789bfbea6dd7 + - 9d4c36f4-57fc-44c5-9c83-3bb48e38e2fe cache-control: - public,max-age=1 content-length: - - '289' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:03 GMT + - Wed, 02 Jun 2021 06:30:04 GMT etag: - - '"0137DD8A64BFE95919D2536FB56046C8B8D83D2FF682335E952DD4295BF16CE7"' + - '"BC7BBF7E917AE4B7D26D1946827FE4AA97AC7AE4F364ED74F8330606689DB739"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2636,54 +1179,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cf99c5b7-0175-4e59-b9bc-789bfbea6dd7 - 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/batches/92790e6f-175b-4ce9-aa96-0b82f2fd0b4e - response: - body: - string: '{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - 7be25ff5-8f21-4924-bd35-dfc287f2fba2 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 16:57:04 GMT - etag: - - '"C4A0924F739F01E5101E4FD9740134F6B6AECBFB6CF8E527448D2CFF69C6441B"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 7be25ff5-8f21-4924-bd35-dfc287f2fba2 + - 9d4c36f4-57fc-44c5-9c83-3bb48e38e2fe status: code: 200 message: OK @@ -2701,11 +1197,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:04 GMT + - Wed, 02 Jun 2021 06:30:04 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src59529813-8e8c-40f9-b238-14af131475ea?restype=container + uri: https://redacted.blob.core.windows.net/src398f7254-598b-4b50-ab7c-16045b4314df?restype=container response: body: string: '' @@ -2713,11 +1209,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:04 GMT + - Wed, 02 Jun 2021 06:30:04 GMT etag: - - '"0x8D91C7976485822"' + - '"0x8D9258FDBF8DBCC"' last-modified: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:05 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2745,11 +1241,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:05 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src59529813-8e8c-40f9-b238-14af131475ea/6645a1fc-7257-4e9e-a830-6d67d1bb2de7.txt + uri: https://redacted.blob.core.windows.net/src398f7254-598b-4b50-ab7c-16045b4314df/78f31064-5e79-4642-8377-3e5177ba4640.txt response: body: string: '' @@ -2759,11 +1255,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:04 GMT + - Wed, 02 Jun 2021 06:30:04 GMT etag: - - '"0x8D91C7976543CE4"' + - '"0x8D9258FDC01AB82"' last-modified: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:05 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2789,11 +1285,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:25 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf8f89033-02ab-4823-a825-ac3953381de6?restype=container + uri: https://redacted.blob.core.windows.net/target61053766-e716-46b1-bfb2-4fc77a75f788?restype=container response: body: string: '' @@ -2801,11 +1297,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:04 GMT + - Wed, 02 Jun 2021 06:30:25 GMT etag: - - '"0x8D91C7976730EDC"' + - '"0x8D9258FE86F7931"' last-modified: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2814,8 +1310,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src59529813-8e8c-40f9-b238-14af131475ea?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf8f89033-02ab-4823-a825-ac3953381de6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src398f7254-598b-4b50-ab7c-16045b4314df?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target61053766-e716-46b1-bfb2-4fc77a75f788?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2825,7 +1321,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '484' Content-Type: - application/json User-Agent: @@ -2837,16 +1333,16 @@ interactions: string: '' headers: apim-request-id: - - cf47f573-c433-4c2e-a873-4add6c084969 + - 5d2d6aac-39fa-4789-aac9-2f2f47ccc34f content-length: - '0' date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:25 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/59b903a7-d7d4-455c-8abc-88c5c2ce8276 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/47768932-bffa-4741-9ba2-a20dee4f3f1a set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -2854,7 +1350,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cf47f573-c433-4c2e-a873-4add6c084969 + - 5d2d6aac-39fa-4789-aac9-2f2f47ccc34f status: code: 202 message: Accepted @@ -2862,7 +1358,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -2870,13 +1366,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/batches/59b903a7-d7d4-455c-8abc-88c5c2ce8276 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/47768932-bffa-4741-9ba2-a20dee4f3f1a response: body: - string: '{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:05.4130773Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:26.6973232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 73a6343b-b65d-4608-96d8-e1219067da4f + - 670a9395-9e4f-4992-a285-6645724cf3d3 cache-control: - public,max-age=1 content-length: @@ -2884,12 +1380,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT etag: - - '"E9DFB4DA46453A8A7EEB7B1E368445831F2772496F8F163658DF0D0B01943232"' + - '"EC097F2B86FBA72A6FC685BC2234FF0979DE0F4C92C56375CEF40CAED9802245"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2901,7 +1397,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 73a6343b-b65d-4608-96d8-e1219067da4f + - 670a9395-9e4f-4992-a285-6645724cf3d3 status: code: 200 message: OK @@ -2919,11 +1415,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1ee5b1a4-4e9f-45db-9a3c-d99e088a31a7?restype=container + uri: https://redacted.blob.core.windows.net/srcbc79110b-e2ac-4f59-8048-e35f20a0798d?restype=container response: body: string: '' @@ -2931,11 +1427,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:30 GMT etag: - - '"0x8D91C7976A3E48E"' + - '"0x8D9258FEBA7BA44"' last-modified: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2963,11 +1459,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1ee5b1a4-4e9f-45db-9a3c-d99e088a31a7/92bbdab3-9d7e-47cb-b51d-3ff5e521b004.txt + uri: https://redacted.blob.core.windows.net/srcbc79110b-e2ac-4f59-8048-e35f20a0798d/4a0c5761-1ac2-4574-ae0e-09a8bd0604e7.txt response: body: string: '' @@ -2977,11 +1473,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT etag: - - '"0x8D91C7976AD1B96"' + - '"0x8D9258FEBB1421C"' last-modified: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -3007,11 +1503,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc301b724-48b9-4fed-b1e4-5afc78181b78?restype=container + uri: https://redacted.blob.core.windows.net/target43684bea-17ac-49c5-9b7a-0e8996e0e814?restype=container response: body: string: '' @@ -3019,11 +1515,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:30 GMT etag: - - '"0x8D91C7976CDD62B"' + - '"0x8D9258FEBD2F689"' last-modified: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3032,8 +1528,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1ee5b1a4-4e9f-45db-9a3c-d99e088a31a7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc301b724-48b9-4fed-b1e4-5afc78181b78?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcbc79110b-e2ac-4f59-8048-e35f20a0798d?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target43684bea-17ac-49c5-9b7a-0e8996e0e814?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -3043,7 +1539,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -3055,16 +1551,16 @@ interactions: string: '' headers: apim-request-id: - - afea7f9c-442e-4d3a-a25a-90f39fa70003 + - ec35c460-a640-4095-ba96-6d50ba33bad7 content-length: - '0' date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:31 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a0b01977-b933-43d7-9a32-32354b0ee0ac + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bcfdeec9-e7df-4392-8374-8aac9e868741 set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -3072,7 +1568,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - afea7f9c-442e-4d3a-a25a-90f39fa70003 + - ec35c460-a640-4095-ba96-6d50ba33bad7 status: code: 202 message: Accepted @@ -3080,7 +1576,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -3088,13 +1584,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/batches/a0b01977-b933-43d7-9a32-32354b0ee0ac + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bcfdeec9-e7df-4392-8374-8aac9e868741 response: body: - string: '{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:06.0246653Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:33.7523683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 00156d73-4381-4bdb-81e3-0eb5840913ba + - 74bb32b9-7ef0-46e3-95d6-b077e500df36 cache-control: - public,max-age=1 content-length: @@ -3102,9 +1598,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:36 GMT etag: - - '"0487CC4DB0FAA7D01C714FD13518E4F9F4C95B8CAE5976255B02C2B00AEA0FF2"' + - '"156009E7EB654079503828DC52CECB44C323AD6CD62329209131FDB097D7BAF9"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3119,7 +1615,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 00156d73-4381-4bdb-81e3-0eb5840913ba + - 74bb32b9-7ef0-46e3-95d6-b077e500df36 status: code: 200 message: OK @@ -3137,11 +1633,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd3451264-2b8f-4463-bc20-1d3d6eaf9f61?restype=container + uri: https://redacted.blob.core.windows.net/src6d0a1663-4a00-490e-8673-2528ded15c29?restype=container response: body: string: '' @@ -3149,11 +1645,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:36 GMT etag: - - '"0x8D91C79770639CD"' + - '"0x8D9258FEF159901"' last-modified: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3181,11 +1677,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd3451264-2b8f-4463-bc20-1d3d6eaf9f61/c0356823-e221-42b8-bcb7-40d0045e2046.txt + uri: https://redacted.blob.core.windows.net/src6d0a1663-4a00-490e-8673-2528ded15c29/f4fedf15-f5c0-45c4-96ab-2278d18020a0.txt response: body: string: '' @@ -3195,11 +1691,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:05 GMT + - Wed, 02 Jun 2021 06:30:36 GMT etag: - - '"0x8D91C7977108380"' + - '"0x8D9258FEF320A3F"' last-modified: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -3225,11 +1721,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target759a066b-64f6-4491-8893-12bd599ee6ba?restype=container + uri: https://redacted.blob.core.windows.net/target92556b21-266b-40c2-8150-aa1f6c1997a5?restype=container response: body: string: '' @@ -3237,11 +1733,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:37 GMT etag: - - '"0x8D91C79772FD07E"' + - '"0x8D9258FEF4EAC31"' last-modified: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3250,8 +1746,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd3451264-2b8f-4463-bc20-1d3d6eaf9f61?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target759a066b-64f6-4491-8893-12bd599ee6ba?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src6d0a1663-4a00-490e-8673-2528ded15c29?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target92556b21-266b-40c2-8150-aa1f6c1997a5?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -3273,13 +1769,13 @@ interactions: string: '' headers: apim-request-id: - - 28d67368-76de-4915-b276-fce37a78dbff + - 66b4d94a-7f55-4615-a431-c5ebaa85769a content-length: - '0' date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:37 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/cf14aff8-335d-4396-a3e6-038937324753 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3290,7 +1786,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 28d67368-76de-4915-b276-fce37a78dbff + - 66b4d94a-7f55-4615-a431-c5ebaa85769a status: code: 202 message: Accepted @@ -3298,7 +1794,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -3306,13 +1802,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/batches/cf14aff8-335d-4396-a3e6-038937324753 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0 response: body: - string: '{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:06.6638235Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:40.7849292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - a33ff542-db0b-4dfd-9e42-508029afe69d + - 088f73a0-3577-476d-9cd6-ed2785b7b228 cache-control: - public,max-age=1 content-length: @@ -3320,9 +1816,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:42 GMT etag: - - '"DF9A024203D2A3C1EB93FA77CD5220CDE00EFEFF5FFBF6350430E63618E6B1A8"' + - '"A7D005689BDAFD2CF3806A27878DFFDAC6050E6A63118B4D68C33277B5E5E623"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3337,7 +1833,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a33ff542-db0b-4dfd-9e42-508029afe69d + - 088f73a0-3577-476d-9cd6-ed2785b7b228 status: code: 200 message: OK @@ -3355,11 +1851,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:42 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4978075b-bdf9-490f-87bb-2f92134e6e91?restype=container + uri: https://redacted.blob.core.windows.net/src5bb3d50f-df04-46d3-b249-35127ac6e149?restype=container response: body: string: '' @@ -3367,11 +1863,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:42 GMT etag: - - '"0x8D91C7977616EA7"' + - '"0x8D9258FF2923659"' last-modified: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3399,11 +1895,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4978075b-bdf9-490f-87bb-2f92134e6e91/dd8a26cd-1b1e-4328-85ec-8ad790cf8bd8.txt + uri: https://redacted.blob.core.windows.net/src5bb3d50f-df04-46d3-b249-35127ac6e149/8e05972f-2b37-46ef-a299-387b779ac188.txt response: body: string: '' @@ -3413,11 +1909,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:42 GMT etag: - - '"0x8D91C79776A73D7"' + - '"0x8D9258FF29A1595"' last-modified: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:43 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -3443,11 +1939,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target511346e5-debe-49b7-b3f7-fb703ab40c75?restype=container + uri: https://redacted.blob.core.windows.net/target14b5637b-4b83-4a0f-8f28-c3b883eba509?restype=container response: body: string: '' @@ -3455,11 +1951,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:42 GMT etag: - - '"0x8D91C797790A6EA"' + - '"0x8D9258FF2B22E64"' last-modified: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:43 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3468,8 +1964,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4978075b-bdf9-490f-87bb-2f92134e6e91?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target511346e5-debe-49b7-b3f7-fb703ab40c75?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5bb3d50f-df04-46d3-b249-35127ac6e149?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target14b5637b-4b83-4a0f-8f28-c3b883eba509?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -3491,13 +1987,13 @@ interactions: string: '' headers: apim-request-id: - - 6c12b06f-0ff3-43d1-a910-c78b41c21106 + - 522b3b20-1284-46da-8eea-48fcc5ae0217 content-length: - '0' date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:43 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/1d61d4b7-6bae-46b5-99b4-6b25d5aa7111 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3508,7 +2004,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6c12b06f-0ff3-43d1-a910-c78b41c21106 + - 522b3b20-1284-46da-8eea-48fcc5ae0217 status: code: 202 message: Accepted @@ -3516,7 +2012,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -3524,13 +2020,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/batches/1d61d4b7-6bae-46b5-99b4-6b25d5aa7111 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1 response: body: - string: '{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:07.3013207Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:43.7656237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 1a2b4f41-1eef-4d0f-bd0e-64fae20bb0e9 + - 83982bb2-283c-42b3-a2cd-7abff01a9eb2 cache-control: - public,max-age=1 content-length: @@ -3538,9 +2034,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT etag: - - '"6873A8383F38D70D4578670D822817815B000C1E4A5FDA20D402C5BC154B6305"' + - '"48069AA483E4CE4A5DB90DF56F9D70038C52C40E52DC7A939005577B0E5D40C4"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3555,7 +2051,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1a2b4f41-1eef-4d0f-bd0e-64fae20bb0e9 + - 83982bb2-283c-42b3-a2cd-7abff01a9eb2 status: code: 200 message: OK @@ -3573,11 +2069,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src68516b15-7ad2-44ef-8ddc-60a42cb0b656?restype=container + uri: https://redacted.blob.core.windows.net/srcea6033b8-35d1-4dfc-8abb-ad03dffa04a1?restype=container response: body: string: '' @@ -3585,11 +2081,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:48 GMT etag: - - '"0x8D91C7977C60C61"' + - '"0x8D9258FF5EA0E44"' last-modified: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3617,11 +2113,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src68516b15-7ad2-44ef-8ddc-60a42cb0b656/40016c7d-3d7e-40bd-ab41-c1c792802515.txt + uri: https://redacted.blob.core.windows.net/srcea6033b8-35d1-4dfc-8abb-ad03dffa04a1/9a574923-e1f3-4b42-b7ba-f45dfa4189fe.txt response: body: string: '' @@ -3631,11 +2127,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:06 GMT + - Wed, 02 Jun 2021 06:30:48 GMT etag: - - '"0x8D91C7977D29773"' + - '"0x8D9258FF5F462D9"' last-modified: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -3661,11 +2157,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetd08e8e63-c57c-4e86-8dbb-359b78325823?restype=container + uri: https://redacted.blob.core.windows.net/target8f85e011-8de8-4acc-9bdf-58a4f6d52806?restype=container response: body: string: '' @@ -3673,11 +2169,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT etag: - - '"0x8D91C7977F7671C"' + - '"0x8D9258FF61FE3A6"' last-modified: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3686,8 +2182,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src68516b15-7ad2-44ef-8ddc-60a42cb0b656?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd08e8e63-c57c-4e86-8dbb-359b78325823?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcea6033b8-35d1-4dfc-8abb-ad03dffa04a1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8f85e011-8de8-4acc-9bdf-58a4f6d52806?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -3697,7 +2193,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -3709,13 +2205,13 @@ interactions: string: '' headers: apim-request-id: - - 60f5f12d-1ebe-4421-acc8-c7f0dcc5e748 + - 7e0990eb-41ad-4ea2-8eba-d689704f904f content-length: - '0' date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:48 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/61fc8f49-1145-4cb1-89e7-99bcb565eb57 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/228d5464-6bcf-4902-a1f2-285eba30ab17 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3726,7 +2222,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 60f5f12d-1ebe-4421-acc8-c7f0dcc5e748 + - 7e0990eb-41ad-4ea2-8eba-d689704f904f status: code: 202 message: Accepted @@ -3734,7 +2230,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -3742,13 +2238,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/batches/61fc8f49-1145-4cb1-89e7-99bcb565eb57 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/228d5464-6bcf-4902-a1f2-285eba30ab17 response: body: - string: '{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:07.9543623Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:50.8251541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 324f1b88-ff10-4ba2-999d-dfbfc4d1e849 + - e01603f0-07a7-4c81-98e1-51203f3bdb7b cache-control: - public,max-age=1 content-length: @@ -3756,9 +2252,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:53 GMT etag: - - '"70AE04AD1E656512C1B4734601CB8AFF0AC873C936C314C8829FA5EE06BE52B4"' + - '"07336FDD11BC3D2BE1F80F6FD9ED53755E00328F2BE8E290945C1F988C2772F0"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3773,7 +2269,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 324f1b88-ff10-4ba2-999d-dfbfc4d1e849 + - e01603f0-07a7-4c81-98e1-51203f3bdb7b status: code: 200 message: OK @@ -3791,19 +2287,19 @@ 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/batches/59b903a7-d7d4-455c-8abc-88c5c2ce8276 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/47768932-bffa-4741-9ba2-a20dee4f3f1a response: body: - string: '{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 05fa45f4-658a-4eae-a809-2c4493ac7ec3 + - ef432f65-13e1-41c2-99f9-142a3da58206 content-length: - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:54 GMT set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3818,7 +2314,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 05fa45f4-658a-4eae-a809-2c4493ac7ec3 + - ef432f65-13e1-41c2-99f9-142a3da58206 status: code: 200 message: OK @@ -3836,19 +2332,19 @@ 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/batches/a0b01977-b933-43d7-9a32-32354b0ee0ac + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bcfdeec9-e7df-4392-8374-8aac9e868741 response: body: - string: '{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - e9dba117-4476-4974-95dc-0ea6d8ed4704 + - dcfd7442-e3a1-41a3-b3c3-96503372587e content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:54 GMT set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3863,7 +2359,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e9dba117-4476-4974-95dc-0ea6d8ed4704 + - dcfd7442-e3a1-41a3-b3c3-96503372587e status: code: 200 message: OK @@ -3881,19 +2377,19 @@ 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/batches/cf14aff8-335d-4396-a3e6-038937324753 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0 response: body: - string: '{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - faf9eeec-6613-44fb-9796-898f9c1c66e1 + - bc5628af-2358-47e9-998b-7825394176db content-length: - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:07 GMT + - Wed, 02 Jun 2021 06:30:54 GMT set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3908,7 +2404,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - faf9eeec-6613-44fb-9796-898f9c1c66e1 + - bc5628af-2358-47e9-998b-7825394176db status: code: 200 message: OK @@ -3926,19 +2422,19 @@ 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/batches/1d61d4b7-6bae-46b5-99b4-6b25d5aa7111 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1 response: body: - string: '{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.3749382Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - a03f6314-e64b-45b0-8f2a-55412c48aecc + - 2a6e44c8-64bf-421b-a8be-f6b5647c702e content-length: - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:08 GMT + - Wed, 02 Jun 2021 06:30:54 GMT set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3953,7 +2449,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a03f6314-e64b-45b0-8f2a-55412c48aecc + - 2a6e44c8-64bf-421b-a8be-f6b5647c702e status: code: 200 message: OK @@ -3971,19 +2467,19 @@ 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/batches/61fc8f49-1145-4cb1-89e7-99bcb565eb57 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/228d5464-6bcf-4902-a1f2-285eba30ab17 response: body: - string: '{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4551831Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - eb3fe0c0-b7bb-43f8-94fe-6db88c83a1b4 + - 7cf293b0-e3ef-45f5-9515-4dd1111dc719 content-length: - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:08 GMT + - Wed, 02 Jun 2021 06:30:54 GMT set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -3998,7 +2494,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - eb3fe0c0-b7bb-43f8-94fe-6db88c83a1b4 + - 7cf293b0-e3ef-45f5-9515-4dd1111dc719 status: code: 200 message: OK @@ -4017,20 +2513,20 @@ interactions: uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&statuses=Cancelled response: body: - string: '{"value":[{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}]}' + string: '{"value":[{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}]}' headers: apim-request-id: - - 0c676213-10e6-4453-a5ab-7f52bd2ba85d + - 2ddadaaf-afc3-4a72-bcd8-264ae609b3d5 cache-control: - public,max-age=1 content-length: - - '303' + - '2931' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:18 GMT + - Wed, 02 Jun 2021 06:31:04 GMT etag: - - '"EA86893324667005F445582A249316D10C8F3C7960A452FD0B9A023016C04777"' + - '"20EDBF6FD42BDB560E13C3A0E582DDA1F9BAFBFA4B3290332A7A29732EABEDD7"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -4045,7 +2541,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0c676213-10e6-4453-a5ab-7f52bd2ba85d + - 2ddadaaf-afc3-4a72-bcd8-264ae609b3d5 status: code: 200 message: OK 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 index f477fd7572ed..f4de9a3d3d38 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src33074351-12ed-4596-892a-5e89c5d08fcb?restype=container + uri: https://redacted.blob.core.windows.net/srcca5c18d7-c9a9-41d1-a5bf-9ce184de7dbf?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 GMT etag: - - '"0x8D91C797EC257D0"' + - '"0x8D92590062592A6"' last-modified: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 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: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src33074351-12ed-4596-892a-5e89c5d08fcb/c3f2f251-5ee5-47a3-8f90-f7627d7c6227.txt + uri: https://redacted.blob.core.windows.net/srcca5c18d7-c9a9-41d1-a5bf-9ce184de7dbf/325c82f4-9778-420a-a8aa-81439302c510.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 GMT etag: - - '"0x8D91C797ECBC5F5"' + - '"0x8D92590062EED67"' last-modified: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 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: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src33074351-12ed-4596-892a-5e89c5d08fcb/cf371810-b355-463a-b68d-7a521772e33f.txt + uri: https://redacted.blob.core.windows.net/srcca5c18d7-c9a9-41d1-a5bf-9ce184de7dbf/57a8f97c-90bd-4f23-b37e-359999405c53.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 GMT etag: - - '"0x8D91C797ED42BEE"' + - '"0x8D925900637A187"' last-modified: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target905df058-7d33-4b31-8c68-9d51356d5b81?restype=container + uri: https://redacted.blob.core.windows.net/targetfc0213f5-abf3-49d1-9651-55be59b50c62?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:15 GMT etag: - - '"0x8D91C797EF9072A"' + - '"0x8D925900655762B"' last-modified: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src33074351-12ed-4596-892a-5e89c5d08fcb?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target905df058-7d33-4b31-8c68-9d51356d5b81?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcca5c18d7-c9a9-41d1-a5bf-9ce184de7dbf?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfc0213f5-abf3-49d1-9651-55be59b50c62?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -199,13 +199,13 @@ interactions: string: '' headers: apim-request-id: - - ce1aa10b-8423-4f16-9f95-27a237e74dc8 + - 6e5713f4-c44c-4213-8c74-25c117ba4a5e content-length: - '0' date: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:16 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/36e10ef1-941e-4fb8-b400-ef3a1ae900bc + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/866aec00-32f8-48e1-b5e7-ec0ce7415922 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -216,7 +216,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ce1aa10b-8423-4f16-9f95-27a237e74dc8 + - 6e5713f4-c44c-4213-8c74-25c117ba4a5e status: code: 202 message: Accepted @@ -224,7 +224,148 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/866aec00-32f8-48e1-b5e7-ec0ce7415922 + response: + body: + string: '{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:16.6326663Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - bd554033-b01a-42b6-b912-05ff45cde19e + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:21 GMT + etag: + - '"C954C92BA8DDBBB192A3E9F8CA6B627EDD1831C48CBF6E4BC6730E8AE7C58B47"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bd554033-b01a-42b6-b912-05ff45cde19e + 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/batches/866aec00-32f8-48e1-b5e7-ec0ce7415922 + response: + body: + string: '{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:16.6326663Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3edd7ca1-5f1f-4e00-bee5-05875639f474 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:22 GMT + etag: + - '"C954C92BA8DDBBB192A3E9F8CA6B627EDD1831C48CBF6E4BC6730E8AE7C58B47"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3edd7ca1-5f1f-4e00-bee5-05875639f474 + 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/batches/866aec00-32f8-48e1-b5e7-ec0ce7415922 + response: + body: + string: '{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:16.6326663Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 7b58850d-5ba7-41b1-82d9-3f763b68a5f4 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:23 GMT + etag: + - '"C954C92BA8DDBBB192A3E9F8CA6B627EDD1831C48CBF6E4BC6730E8AE7C58B47"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7b58850d-5ba7-41b1-82d9-3f763b68a5f4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -232,13 +373,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/batches/36e10ef1-941e-4fb8-b400-ef3a1ae900bc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/866aec00-32f8-48e1-b5e7-ec0ce7415922 response: body: - string: '{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:20.1035997Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:16.6326663Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - bd9bc4ff-c306-4934-b331-8baa201116f4 + - 45ef84cb-cdeb-4602-b88d-d01cec3f5dea cache-control: - public,max-age=1 content-length: @@ -246,9 +387,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:19 GMT + - Wed, 02 Jun 2021 06:31:24 GMT etag: - - '"477BD035CD1EF170D7874297FB42A62B75DC1A9E231DBC3424B1CC2371A86AD1"' + - '"C954C92BA8DDBBB192A3E9F8CA6B627EDD1831C48CBF6E4BC6730E8AE7C58B47"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 45ef84cb-cdeb-4602-b88d-d01cec3f5dea + 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/batches/866aec00-32f8-48e1-b5e7-ec0ce7415922 + response: + body: + string: '{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - b602cce2-bace-4293-a84c-71ede04b54f9 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:25 GMT + etag: + - '"4C2D2BE849B7B5A6483A0663C7492D6E23C53D5B063A79D8681F6FC244A1A40E"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -263,7 +451,54 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - bd9bc4ff-c306-4934-b331-8baa201116f4 + - b602cce2-bace-4293-a84c-71ede04b54f9 + 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/batches/866aec00-32f8-48e1-b5e7-ec0ce7415922 + response: + body: + string: '{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: + - 0b228f13-a637-498c-9e83-9ba3e9dbe48f + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:26 GMT + etag: + - '"84872769A9C2ACD6C3D59AEA7CBE087EA41692E4CF324AAE527999EB69399244"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0b228f13-a637-498c-9e83-9ba3e9dbe48f status: code: 200 message: OK @@ -281,11 +516,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src614dbc21-4c26-413e-80af-7535e81ebe83?restype=container + uri: https://redacted.blob.core.windows.net/srce49425da-77d1-4907-aab1-cf8620884e0b?restype=container response: body: string: '' @@ -293,11 +528,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:26 GMT etag: - - '"0x8D91C797F691848"' + - '"0x8D925900D0290B7"' last-modified: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -325,11 +560,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src614dbc21-4c26-413e-80af-7535e81ebe83/f3969564-9992-4390-84e3-096541a865a7.txt + uri: https://redacted.blob.core.windows.net/srce49425da-77d1-4907-aab1-cf8620884e0b/777f1cf3-ed5a-4fd3-9fcc-5c46580d271c.txt response: body: string: '' @@ -339,11 +574,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:26 GMT etag: - - '"0x8D91C797F70FDEE"' + - '"0x8D925900D0F0CC0"' last-modified: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -375,11 +610,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src614dbc21-4c26-413e-80af-7535e81ebe83/e99b0fb2-b020-4aed-86ae-5e0b7217f064.txt + uri: https://redacted.blob.core.windows.net/srce49425da-77d1-4907-aab1-cf8620884e0b/8c15ec00-ff91-4909-be76-1586c45e979b.txt response: body: string: '' @@ -389,11 +624,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:26 GMT etag: - - '"0x8D91C797F7BD550"' + - '"0x8D925900D16610E"' last-modified: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -419,11 +654,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete93ac4b0-034f-4ff3-8ce5-d35c85dc2c5c?restype=container + uri: https://redacted.blob.core.windows.net/target90a33ac5-045b-42ad-bbd2-0ad67ddd5218?restype=container response: body: string: '' @@ -431,11 +666,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT etag: - - '"0x8D91C797F9935F8"' + - '"0x8D925900D338584"' last-modified: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -444,8 +679,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src614dbc21-4c26-413e-80af-7535e81ebe83?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete93ac4b0-034f-4ff3-8ce5-d35c85dc2c5c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce49425da-77d1-4907-aab1-cf8620884e0b?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target90a33ac5-045b-42ad-bbd2-0ad67ddd5218?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -467,16 +702,16 @@ interactions: string: '' headers: apim-request-id: - - 914a6c71-cfd3-4091-8761-76a34ea5ac2e + - 736bc8e8-ea3f-49d8-ae5c-fbfd55675283 content-length: - '0' date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:27 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/864e6fc8-52b4-41fa-8be6-653647c6b2fe + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/395da32f-25c1-4fb3-94b5-3001923e1bd9 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -484,7 +719,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 914a6c71-cfd3-4091-8761-76a34ea5ac2e + - 736bc8e8-ea3f-49d8-ae5c-fbfd55675283 status: code: 202 message: Accepted @@ -492,7 +727,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -500,13 +735,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/batches/864e6fc8-52b4-41fa-8be6-653647c6b2fe + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/395da32f-25c1-4fb3-94b5-3001923e1bd9 response: body: - string: '{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:20.7712594Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - a1fad991-562d-4054-826d-d0140d11c533 + - b05ae514-cd95-4340-8ef0-abae69ad8363 cache-control: - public,max-age=1 content-length: @@ -514,12 +749,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:32 GMT etag: - - '"84337D48B27CD4C151F5FEB3899AF6736A03AAF18B688F002969F77237180C4A"' + - '"57CD68E3A8AC6E533425C6468775CA360881B7D07F82B279ED00E355BBCBBC9D"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -531,7 +766,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a1fad991-562d-4054-826d-d0140d11c533 + - b05ae514-cd95-4340-8ef0-abae69ad8363 status: code: 200 message: OK @@ -549,11 +784,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src01dd13e2-2142-4c3a-91de-2f2485da4119?restype=container + uri: https://redacted.blob.core.windows.net/srca54870cf-d5f2-4fcf-8f8c-7830660b717c?restype=container response: body: string: '' @@ -561,11 +796,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:32 GMT etag: - - '"0x8D91C797FCD0228"' + - '"0x8D92590106B29B4"' last-modified: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -593,11 +828,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src01dd13e2-2142-4c3a-91de-2f2485da4119/cceefcf8-5a80-44ce-9966-71381786ca77.txt + uri: https://redacted.blob.core.windows.net/srca54870cf-d5f2-4fcf-8f8c-7830660b717c/2f7ffbaa-f8d2-4b96-89ff-c016bdc8d567.txt response: body: string: '' @@ -607,11 +842,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:32 GMT etag: - - '"0x8D91C797FD6D73D"' + - '"0x8D92590107542F9"' last-modified: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -643,11 +878,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src01dd13e2-2142-4c3a-91de-2f2485da4119/41bf6594-0a10-44da-9feb-923dbdefd90a.txt + uri: https://redacted.blob.core.windows.net/srca54870cf-d5f2-4fcf-8f8c-7830660b717c/5b506453-fe2f-48c9-89bc-c7cadfc56813.txt response: body: string: '' @@ -657,11 +892,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:32 GMT etag: - - '"0x8D91C797FE2E76B"' + - '"0x8D92590107DD00D"' last-modified: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -687,11 +922,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetbbc2ea91-0650-402f-b7e7-434527253494?restype=container + uri: https://redacted.blob.core.windows.net/targetd3f32580-221f-4991-8545-704e017bbc8d?restype=container response: body: string: '' @@ -699,11 +934,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:32 GMT etag: - - '"0x8D91C7980039163"' + - '"0x8D92590109A2442"' last-modified: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -712,8 +947,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src01dd13e2-2142-4c3a-91de-2f2485da4119?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbbc2ea91-0650-402f-b7e7-434527253494?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca54870cf-d5f2-4fcf-8f8c-7830660b717c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd3f32580-221f-4991-8545-704e017bbc8d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -735,16 +970,16 @@ interactions: string: '' headers: apim-request-id: - - 1ad440f2-4f4c-41e5-ab48-74a0ebadaeb8 + - 9953baf9-64b6-4d27-8450-92a9a64db707 content-length: - '0' date: - - Fri, 21 May 2021 16:57:20 GMT + - Wed, 02 Jun 2021 06:31:33 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5002212-cd7d-4d91-b805-c5f209bf378a + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/20dacd12-831b-43e1-a075-20b55c0c05f8 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -752,10 +987,57 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1ad440f2-4f4c-41e5-ab48-74a0ebadaeb8 + - 9953baf9-64b6-4d27-8450-92a9a64db707 status: code: 202 message: Accepted +- 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/batches/20dacd12-831b-43e1-a075-20b55c0c05f8 + response: + body: + string: '{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: + - 332511d4-b26c-4338-a4d0-e4d89b77120f + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:38 GMT + etag: + - '"03EE6E8101F32E95B13517F516C17FED535CA7F04BE7EBEF87C4739AB23CDDB4"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 332511d4-b26c-4338-a4d0-e4d89b77120f + status: + code: 200 + message: OK - request: body: null headers: @@ -768,23 +1050,24 @@ 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/batches/f5002212-cd7d-4d91-b805-c5f209bf378a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc response: body: - string: '{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:21.48952Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=287&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' headers: apim-request-id: - - cecf8f50-96fd-4f36-91af-8da818fe8bcd + - 07f39bbc-b1a2-49e2-9272-04fa90fc975c cache-control: - public,max-age=1 content-length: - - '290' + - '14832' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:38 GMT etag: - - '"D82A86DF51D09C14463289C26A2E2C0D48666D7E03C64A7B850967ED105AA583"' + - '"16D3817AB84C71CC177BC6A2BC8667EFE0F83A7F7DA654CE2F5A7D8790FC6A83"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -799,7 +1082,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cecf8f50-96fd-4f36-91af-8da818fe8bcd + - 07f39bbc-b1a2-49e2-9272-04fa90fc975c status: code: 200 message: OK @@ -815,24 +1098,220 @@ 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/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=287&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","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/batches?$skip=100&$top=237&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 7173206d-4401-4373-b77a-9f8f9f59e017 + cache-control: + - public,max-age=1 + content-length: + - '14811' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:38 GMT + etag: + - '"65AC6FF7ED1426AE88A9FECB4B45AAC08AB79AD4C3F4BF8236291A32BC374DCB"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7173206d-4401-4373-b77a-9f8f9f59e017 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=237&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=187&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 3238744b-5209-4466-baea-77e4687c7223 + cache-control: + - public,max-age=1 + content-length: + - '15349' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:38 GMT + etag: + - '"7C97A66523A6D803B85A82C1706FD183F0B19FCE8B81C7B0168F93BA8C7BEB62"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3238744b-5209-4466-baea-77e4687c7223 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=187&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=137&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 23c933c0-69f6-43bc-a8d7-ebc0037517b7 + cache-control: + - public,max-age=1 + content-length: + - '14809' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:38 GMT + etag: + - '"46410AAF157A776E35FF9D549E617715404A400AD6AD6943663E2198FED56049"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 23c933c0-69f6-43bc-a8d7-ebc0037517b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=137&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=87&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - fdced143-532b-4cd1-a07b-61442ddf3ad0 + cache-control: + - public,max-age=1 + content-length: + - '14847' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:39 GMT + etag: + - '"BBCD2282140C8870335405E424C20DC31A52D01D25B1B889A05575CF8BA09CEE"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fdced143-532b-4cd1-a07b-61442ddf3ad0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=87&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc response: body: - string: '{"value":[{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:20.2860396Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:20.8692628Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=1&$maxpagesize=50&$orderBy=createdDateTimeUtc + string: '{"value":[{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=37&$maxpagesize=50&$orderBy=createdDateTimeUtc asc"}' headers: apim-request-id: - - e75485f0-6522-471d-8666-5d81024e8407 + - 08287e02-ef6f-430d-b317-c660fa02e364 cache-control: - public,max-age=1 content-length: - - '14830' + - '14843' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:39 GMT etag: - - '"2ED4C4DAEF66CB13FEDE5EDDFF565E7734A5E25035938CF8083B67189339E673"' + - '"EADBD09381CA7397DC4374BF1739C40BC918A41376B611B6C7AAC499D20559B8"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -847,7 +1326,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e75485f0-6522-471d-8666-5d81024e8407 + - 08287e02-ef6f-430d-b317-c660fa02e364 status: code: 200 message: OK @@ -863,23 +1342,23 @@ 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/batches?$skip=50&$top=1&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=37&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc response: body: - string: '{"value":[{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:21.716705Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}]}' + string: '{"value":[{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}]}' headers: apim-request-id: - - a7ca024c-c081-432c-8dcb-0e24bcac0843 + - c1e52aa3-7616-40ea-9e8b-4fcf2325cded cache-control: - public,max-age=1 content-length: - - '303' + - '10847' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:39 GMT etag: - - '"5CF64A3BF068F172C34BD770D46A874D46C59318C0DC6D12ED77BF048360DE40"' + - '"19851807893A3C602E88A730358F00AB928DE3B44D50ECCE4CF91F3530C6CFCE"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -894,7 +1373,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a7ca024c-c081-432c-8dcb-0e24bcac0843 + - c1e52aa3-7616-40ea-9e8b-4fcf2325cded status: code: 200 message: OK 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 index cb7b61a93b29..300c543efc87 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src8130675b-43c6-464c-ae54-521d3907f9e9?restype=container + uri: https://redacted.blob.core.windows.net/src077fdf8a-4ee2-4687-a73b-d23ce0eb034c?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:39 GMT etag: - - '"0x8D91C798080401A"' + - '"0x8D92590149E44A1"' last-modified: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 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: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src8130675b-43c6-464c-ae54-521d3907f9e9/b85c262d-7301-40d4-97f1-777218d606c7.txt + uri: https://redacted.blob.core.windows.net/src077fdf8a-4ee2-4687-a73b-d23ce0eb034c/2666ef1c-99eb-499a-9194-ee46a2c817cc.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:39 GMT etag: - - '"0x8D91C79808A4295"' + - '"0x8D9259014A779A9"' last-modified: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 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: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src8130675b-43c6-464c-ae54-521d3907f9e9/99b665b2-f61c-4faa-ab24-a8ae4033d764.txt + uri: https://redacted.blob.core.windows.net/src077fdf8a-4ee2-4687-a73b-d23ce0eb034c/b9224c88-8e74-48da-a856-a9d2ccb874c5.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:21 GMT + - Wed, 02 Jun 2021 06:31:39 GMT etag: - - '"0x8D91C798092A896"' + - '"0x8D9259014AF1C2D"' last-modified: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc5c1ef6e-3894-4215-8788-3f2d550ac1ba?restype=container + uri: https://redacted.blob.core.windows.net/target6eb85973-bc0e-4243-b80d-f0bdc96287e7?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:39 GMT etag: - - '"0x8D91C7980B1109E"' + - '"0x8D9259014D30395"' last-modified: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8130675b-43c6-464c-ae54-521d3907f9e9?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc5c1ef6e-3894-4215-8788-3f2d550ac1ba?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src077fdf8a-4ee2-4687-a73b-d23ce0eb034c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6eb85973-bc0e-4243-b80d-f0bdc96287e7?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -187,7 +187,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -199,16 +199,16 @@ interactions: string: '' headers: apim-request-id: - - 1347f08c-b7f0-40dc-bd83-0369f22a91c8 + - f3f7d638-94e7-4d14-b08d-e4607708ea33 content-length: - '0' date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:40 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d218438b-9224-4075-a97a-6bf3dda81d48 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/623049da-86bc-4ed0-8bd0-573ce173bd09 set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -216,7 +216,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1347f08c-b7f0-40dc-bd83-0369f22a91c8 + - f3f7d638-94e7-4d14-b08d-e4607708ea33 status: code: 202 message: Accepted @@ -224,7 +224,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -232,13 +232,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/batches/d218438b-9224-4075-a97a-6bf3dda81d48 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/623049da-86bc-4ed0-8bd0-573ce173bd09 response: body: - string: '{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:22.8142434Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - eba56c99-2406-4b44-9b05-903dfac0ed69 + - 20772a03-4264-4c7d-ba91-a51b405520d0 cache-control: - public,max-age=1 content-length: @@ -246,12 +246,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:45 GMT etag: - - '"4BA1AECD96AA5F17416D364249E2367400EC0B4D47427461653A911B021788E1"' + - '"258BBEE9AC64585923D1D9392377B91FEC2885DFB59DA2AAB04ED33434169E45"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -263,7 +263,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - eba56c99-2406-4b44-9b05-903dfac0ed69 + - 20772a03-4264-4c7d-ba91-a51b405520d0 status: code: 200 message: OK @@ -281,11 +281,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src16e281c2-1f96-4b51-83bb-b64f0f88bdee?restype=container + uri: https://redacted.blob.core.windows.net/srcbdfaf6be-b3fe-4f29-b1d2-f8cc1002829c?restype=container response: body: string: '' @@ -293,11 +293,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:45 GMT etag: - - '"0x8D91C7981064339"' + - '"0x8D925901819E849"' last-modified: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -325,11 +325,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src16e281c2-1f96-4b51-83bb-b64f0f88bdee/18dd4560-8e58-4da6-b562-1e3ffac33bda.txt + uri: https://redacted.blob.core.windows.net/srcbdfaf6be-b3fe-4f29-b1d2-f8cc1002829c/c273755d-1236-4524-a74d-a78f3eb1eea6.txt response: body: string: '' @@ -339,11 +339,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:45 GMT etag: - - '"0x8D91C7981113E73"' + - '"0x8D925901820ED69"' last-modified: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -375,11 +375,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src16e281c2-1f96-4b51-83bb-b64f0f88bdee/574c90c4-1060-46d4-834b-ee90493e4b48.txt + uri: https://redacted.blob.core.windows.net/srcbdfaf6be-b3fe-4f29-b1d2-f8cc1002829c/2a9d265c-90ea-4b01-9a58-c41ac191977c.txt response: body: string: '' @@ -389,11 +389,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:45 GMT etag: - - '"0x8D91C7981192F1C"' + - '"0x8D92590182868D1"' last-modified: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -419,11 +419,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target46852e99-643e-4586-9007-c5ad140caf0f?restype=container + uri: https://redacted.blob.core.windows.net/target7b549c94-465d-49e8-b21b-42b9d14b457c?restype=container response: body: string: '' @@ -431,11 +431,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:45 GMT etag: - - '"0x8D91C798133C0E8"' + - '"0x8D925901846F7FD"' last-modified: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -444,8 +444,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src16e281c2-1f96-4b51-83bb-b64f0f88bdee?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target46852e99-643e-4586-9007-c5ad140caf0f?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcbdfaf6be-b3fe-4f29-b1d2-f8cc1002829c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7b549c94-465d-49e8-b21b-42b9d14b457c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -455,7 +455,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -467,16 +467,16 @@ interactions: string: '' headers: apim-request-id: - - 9f039e18-2ed6-4879-893b-c513a28cdebd + - 7404cc62-6343-4ef6-9586-415d4ca41d60 content-length: - '0' date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:45 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5c78fc17-42b3-4c74-9116-4884e562c539 set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -484,7 +484,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9f039e18-2ed6-4879-893b-c513a28cdebd + - 7404cc62-6343-4ef6-9586-415d4ca41d60 status: code: 202 message: Accepted @@ -492,7 +492,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -500,26 +500,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/batches/6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5c78fc17-42b3-4c74-9116-4884e562c539 response: body: - string: '{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.4620889Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 837eb529-273d-41a4-af93-b13b6b6ef285 + - 5725afb4-d7b0-4da5-9ea6-17fdddf10591 cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:22 GMT + - Wed, 02 Jun 2021 06:31:50 GMT etag: - - '"C05B576B220BA9FB74F584DBAE874D163022842787E3A891C29F5D62E8F663D2"' + - '"6863908993B10B562538FE6D663FE803AF5BD1F427ADAB5BA1D2CC927894E99B"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -531,7 +531,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 837eb529-273d-41a4-af93-b13b6b6ef285 + - 5725afb4-d7b0-4da5-9ea6-17fdddf10591 status: code: 200 message: OK @@ -549,11 +549,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src195f30c2-67bb-4f46-9dcd-35aa9c3fafcc?restype=container + uri: https://redacted.blob.core.windows.net/srce8a35937-2a1a-4a22-bbc0-b0c5f7f000d8?restype=container response: body: string: '' @@ -561,11 +561,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT etag: - - '"0x8D91C79816AC71F"' + - '"0x8D925901B8C3286"' last-modified: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -593,11 +593,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src195f30c2-67bb-4f46-9dcd-35aa9c3fafcc/129e760f-8694-4c8a-ae88-718306bb2559.txt + uri: https://redacted.blob.core.windows.net/srce8a35937-2a1a-4a22-bbc0-b0c5f7f000d8/4b70c86a-6def-454f-9a0d-2674ce40bc6f.txt response: body: string: '' @@ -607,11 +607,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT etag: - - '"0x8D91C798174A644"' + - '"0x8D925901B955711"' last-modified: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -643,11 +643,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src195f30c2-67bb-4f46-9dcd-35aa9c3fafcc/2ced6096-e8ff-4399-98fa-15dbb0f23533.txt + uri: https://redacted.blob.core.windows.net/srce8a35937-2a1a-4a22-bbc0-b0c5f7f000d8/f88c031b-d90b-4083-9d17-f2e721d880e0.txt response: body: string: '' @@ -657,11 +657,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT etag: - - '"0x8D91C79817C48CF"' + - '"0x8D925901B9C5D29"' last-modified: - - Fri, 21 May 2021 16:57:23 GMT + - Wed, 02 Jun 2021 06:31:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -687,11 +687,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target3fb5f429-7dbc-4cc5-a9ad-7423277cef86?restype=container + uri: https://redacted.blob.core.windows.net/targetc0deea68-d036-4cad-b864-f69249f8aff2?restype=container response: body: string: '' @@ -699,11 +699,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:31:51 GMT etag: - - '"0x8D91C798D40FAE3"' + - '"0x8D925901BBA90A3"' last-modified: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:31:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -712,8 +712,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src195f30c2-67bb-4f46-9dcd-35aa9c3fafcc?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3fb5f429-7dbc-4cc5-a9ad-7423277cef86?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce8a35937-2a1a-4a22-bbc0-b0c5f7f000d8?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc0deea68-d036-4cad-b864-f69249f8aff2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -723,7 +723,7 @@ interactions: Connection: - keep-alive Content-Length: - - '490' + - '486' Content-Type: - application/json User-Agent: @@ -735,16 +735,16 @@ interactions: string: '' headers: apim-request-id: - - c3b63810-9ced-400d-83da-3978f01dc795 + - caf4770e-9d95-4c41-80bf-9c193b76060f content-length: - '0' date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:31:51 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7603a0a7-81c6-4537-bf22-0df52663ea6b + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b9089f05-bcb1-4641-b735-8f98dc8adb1f set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -752,10 +752,57 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c3b63810-9ced-400d-83da-3978f01dc795 + - caf4770e-9d95-4c41-80bf-9c193b76060f status: code: 202 message: Accepted +- 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/batches/b9089f05-bcb1-4641-b735-8f98dc8adb1f + response: + body: + string: '{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: + - d00da2cd-d16c-416c-b345-b00570f5383f + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:56 GMT + etag: + - '"7C66A1270D00816076E76EC6A40039E977C211728326F56256A82149DB5F7570"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d00da2cd-d16c-416c-b345-b00570f5383f + status: + code: 200 + message: OK - request: body: null headers: @@ -768,23 +815,24 @@ 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/batches/7603a0a7-81c6-4537-bf22-0df52663ea6b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc response: body: - string: '{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:43.6918193Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","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/batches?$skip=50&$top=290&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' headers: apim-request-id: - - 026f9156-233d-4f08-b338-ba5b6f5d6ba9 + - ab04ffcf-b4f4-43e3-bec6-96c6b4ac140d cache-control: - public,max-age=1 content-length: - - '291' + - '14817' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:31:56 GMT etag: - - '"7E055B29AA7EBF99A4BE20ECB7A6456C9175E2F2303BCF794AE6B92E63D27DEC"' + - '"AA0F99330A16F8A10BDB29BD5469CAC21BAC29A08DB19EE19183182093EA21E5"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -799,7 +847,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 026f9156-233d-4f08-b338-ba5b6f5d6ba9 + - ab04ffcf-b4f4-43e3-bec6-96c6b4ac140d status: code: 200 message: OK @@ -815,24 +863,220 @@ 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/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=290&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","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/batches?$skip=100&$top=240&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 4e0d2442-a1b7-4802-aa33-b7593e039ee6 + cache-control: + - public,max-age=1 + content-length: + - '14855' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:56 GMT + etag: + - '"1C53E6874F614DCA1FAEC59E89D3905ACB10D81DB0D8DAF07309D2180E4AB6AA"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4e0d2442-a1b7-4802-aa33-b7593e039ee6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=240&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=190&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - b2da8040-bfbd-4a02-b968-b2daa929af53 + cache-control: + - public,max-age=1 + content-length: + - '14836' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:56 GMT + etag: + - '"2C34C55FE086F3C78148C412CCA0C305CD7B84C0C284123E0DF3654B09F06A4D"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b2da8040-bfbd-4a02-b968-b2daa929af53 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=190&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","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/batches?$skip=200&$top=140&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - cb3864af-92c6-414f-adc4-a8480fcf6615 + cache-control: + - public,max-age=1 + content-length: + - '14814' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:56 GMT + etag: + - '"666C7A5D7E3DCA5D33DFC6F9A52C1BFE78594756BF47340B8382A36F4C0E182D"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cb3864af-92c6-414f-adc4-a8480fcf6615 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=140&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=90&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - d44b423f-3c70-4a47-aab5-930918c00847 + cache-control: + - public,max-age=1 + content-length: + - '15341' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:31:57 GMT + etag: + - '"5691CAAB03007DE3D3F2F5138B3A52AD5CE13F4C0F64875B034778A7E75D4D3C"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d44b423f-3c70-4a47-aab5-930918c00847 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=90&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc response: body: - string: '{"value":[{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:43.8419307Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","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/batches?$skip=50&$top=4&$maxpagesize=50&$orderBy=createdDateTimeUtc + string: '{"value":[{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=40&$maxpagesize=50&$orderBy=createdDateTimeUtc desc"}' headers: apim-request-id: - - e15fa373-33d6-49b5-a647-38d677d2c42a + - 4a5aabe8-26cb-479b-a6dc-9175629df737 cache-control: - public,max-age=1 content-length: - - '14825' + - '14812' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:31:57 GMT etag: - - '"DC9524FE8D8558A1128BDE84D9B7FC0BDD1DB822FC0BAAEE67A2C340175E395C"' + - '"A6CE3B389DDF1C441BA71CBA2A8B9DD011746D2FD7805BA63F550E6D16F383DF"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -847,7 +1091,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e15fa373-33d6-49b5-a647-38d677d2c42a + - 4a5aabe8-26cb-479b-a6dc-9175629df737 status: code: 200 message: OK @@ -863,23 +1107,23 @@ 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/batches?$skip=50&$top=4&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=40&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc response: body: - string: '{"value":[{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + string: '{"value":[{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' headers: apim-request-id: - - e3f42b45-b4f2-472e-b3d2-786505038a4b + - 0eec5af7-9e4d-4216-aed5-a3b0fd2a132e cache-control: - public,max-age=1 content-length: - - '1187' + - '11748' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:31:57 GMT etag: - - '"1AB2C9BA07504BE09589404C9319742DE2CEB6AE9DF0ABC1D31C629FB60599DA"' + - '"650A7E697E6BF4A9DFA3DD5B1BD6F3077AB416C2C0D2FC7D88FE6F8088DC82CC"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -894,7 +1138,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e3f42b45-b4f2-472e-b3d2-786505038a4b + - 0eec5af7-9e4d-4216-aed5-a3b0fd2a132e status: code: 200 message: OK 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 index cc90d713730e..d2a7e3f4c84e 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src611cd1c9-70cb-4044-8fc0-cbb757bf26e4?restype=container + uri: https://redacted.blob.core.windows.net/src513030fd-654c-40a6-beb6-c8c352e0ddc8?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:18:19 GMT etag: - - '"0x8D91C798DB7E060"' + - '"0x8D9258E37B515DF"' last-modified: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:19 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: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src611cd1c9-70cb-4044-8fc0-cbb757bf26e4/6fbcb999-a404-43c1-a1f6-9ab44c1a591b.txt + uri: https://redacted.blob.core.windows.net/src513030fd-654c-40a6-beb6-c8c352e0ddc8/132dad67-75ad-4ae9-9df7-6f5224743423.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:18:19 GMT etag: - - '"0x8D91C798DC64D96"' + - '"0x8D9258E37C10502"' last-modified: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:20 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: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src611cd1c9-70cb-4044-8fc0-cbb757bf26e4/1290e1e5-596a-415f-8663-5587be3da2fc.txt + uri: https://redacted.blob.core.windows.net/src513030fd-654c-40a6-beb6-c8c352e0ddc8/d9b26e9b-321d-42b2-8207-70eb8aa1f0f8.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:43 GMT + - Wed, 02 Jun 2021 06:18:19 GMT etag: - - '"0x8D91C798DD25DBB"' + - '"0x8D9258E37C8F5B9"' last-modified: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target60165b79-4cdf-4547-8dd6-671da5eec9d8?restype=container + uri: https://redacted.blob.core.windows.net/target0030df43-d570-4bc8-b729-6259ca552e22?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:19 GMT etag: - - '"0x8D91C798DEF04E6"' + - '"0x8D9258E37E7F7B1"' last-modified: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src611cd1c9-70cb-4044-8fc0-cbb757bf26e4?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target60165b79-4cdf-4547-8dd6-671da5eec9d8?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src513030fd-654c-40a6-beb6-c8c352e0ddc8?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0030df43-d570-4bc8-b729-6259ca552e22?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -187,7 +187,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -199,13 +199,13 @@ interactions: string: '' headers: apim-request-id: - - 0444da64-96ac-4dcf-a268-b42363dee758 + - 0d78eadc-e32f-47f3-a4ed-ee8eaaf36b0b content-length: - '0' date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:19 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e4d12c3b-0350-4483-a02b-81e287315f30 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -216,7 +216,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0444da64-96ac-4dcf-a268-b42363dee758 + - 0d78eadc-e32f-47f3-a4ed-ee8eaaf36b0b status: code: 202 message: Accepted @@ -224,7 +224,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -232,13 +232,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/batches/e4d12c3b-0350-4483-a02b-81e287315f30 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c response: body: - string: '{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.0576178Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 5191cc4d-1b88-4b40-9d3b-9a2bd5a2a6ea + - 6318dc66-90c2-46ff-81de-2f74c5da3b19 cache-control: - public,max-age=1 content-length: @@ -246,9 +246,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:50 GMT etag: - - '"91FFD20BA965F3188A51C1AEF16F53A6EC3F955B38CAAFFE19AEFF61FE7A75BF"' + - '"A068733D3774145347D857CB9F6713ADC1C9BCD27B05F3B2F0E1935150222767"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -263,7 +263,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5191cc4d-1b88-4b40-9d3b-9a2bd5a2a6ea + - 6318dc66-90c2-46ff-81de-2f74c5da3b19 status: code: 200 message: OK @@ -281,11 +281,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca34b2daf-02d9-4d00-8f17-54bf4d1ed953?restype=container + uri: https://redacted.blob.core.windows.net/src19f3bf50-1837-444b-8166-8a5fc155e12a?restype=container response: body: string: '' @@ -293,11 +293,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:50 GMT etag: - - '"0x8D91C798E4AA017"' + - '"0x8D9258E4A3C4CD5"' last-modified: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -325,11 +325,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca34b2daf-02d9-4d00-8f17-54bf4d1ed953/a391928b-6ca4-4d74-8414-1ad7e9191bbf.txt + uri: https://redacted.blob.core.windows.net/src19f3bf50-1837-444b-8166-8a5fc155e12a/a1c085ee-aad0-4868-a661-469e0024bf44.txt response: body: string: '' @@ -339,11 +339,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:50 GMT etag: - - '"0x8D91C798E56C14D"' + - '"0x8D9258E4A4489D7"' last-modified: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -375,11 +375,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca34b2daf-02d9-4d00-8f17-54bf4d1ed953/65be6292-389b-45a4-8594-800be42afc2f.txt + uri: https://redacted.blob.core.windows.net/src19f3bf50-1837-444b-8166-8a5fc155e12a/614ce085-4378-4043-b4f1-059fb589150f.txt response: body: string: '' @@ -389,11 +389,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:50 GMT etag: - - '"0x8D91C798E5E8AD6"' + - '"0x8D9258E4A4AF3A0"' last-modified: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -419,11 +419,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target213cf988-46bd-427a-8367-1a4c552b2162?restype=container + uri: https://redacted.blob.core.windows.net/target525e9c4f-73b5-4981-b684-c5160ca812d5?restype=container response: body: string: '' @@ -431,11 +431,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:44 GMT + - Wed, 02 Jun 2021 06:18:51 GMT etag: - - '"0x8D91C798E7F8694"' + - '"0x8D9258E4A6B4DDB"' last-modified: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -444,8 +444,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca34b2daf-02d9-4d00-8f17-54bf4d1ed953?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target213cf988-46bd-427a-8367-1a4c552b2162?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src19f3bf50-1837-444b-8166-8a5fc155e12a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target525e9c4f-73b5-4981-b684-c5160ca812d5?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -467,13 +467,13 @@ interactions: string: '' headers: apim-request-id: - - f167d6e6-dcc5-40b0-8908-a329141af8d1 + - 539ed7d4-a41f-4e43-b1e5-e7d8b9d46d8e content-length: - '0' date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:18:50 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b33fcd4d-a036-40b0-89fc-c6cefd44fce3 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/37f3b433-4b63-4542-888c-71ce6e071922 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -484,7 +484,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f167d6e6-dcc5-40b0-8908-a329141af8d1 + - 539ed7d4-a41f-4e43-b1e5-e7d8b9d46d8e status: code: 202 message: Accepted @@ -492,7 +492,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -500,23 +500,23 @@ 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/batches/b33fcd4d-a036-40b0-89fc-c6cefd44fce3 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/37f3b433-4b63-4542-888c-71ce6e071922 response: body: - string: '{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.800785Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 02bf75a1-c689-495e-882d-e982d0635918 + - 8a8e15bb-b0a0-477a-b558-95535d53fa34 cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:19:20 GMT etag: - - '"3FBC3DC7D8BE26F02455EF93098A86F4CCE4F67694FCE96D5EB097C4DA9D1E3C"' + - '"53E1EC0DE3D4F5239F09971341EFB85E9205F5D0D311CF8756A5E7E10340F4FD"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -531,7 +531,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 02bf75a1-c689-495e-882d-e982d0635918 + - 8a8e15bb-b0a0-477a-b558-95535d53fa34 status: code: 200 message: OK @@ -549,11 +549,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:19:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0305064e-7f37-444a-8d9a-a9e06560e8b3?restype=container + uri: https://redacted.blob.core.windows.net/src4ce89ac5-72a8-4c42-a4c6-e26c9c226ffb?restype=container response: body: string: '' @@ -561,11 +561,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:19:20 GMT etag: - - '"0x8D91C798EBC1A1B"' + - '"0x8D9258E5C9729E4"' last-modified: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -593,11 +593,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0305064e-7f37-444a-8d9a-a9e06560e8b3/40ac4015-f871-48ec-a76e-f1334002fb01.txt + uri: https://redacted.blob.core.windows.net/src4ce89ac5-72a8-4c42-a4c6-e26c9c226ffb/88fc1e1c-e9cf-4432-ace5-ce3624484f26.txt response: body: string: '' @@ -607,11 +607,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:19:20 GMT etag: - - '"0x8D91C798EC6FCBB"' + - '"0x8D9258E5CA38FDF"' last-modified: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -643,11 +643,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0305064e-7f37-444a-8d9a-a9e06560e8b3/7a078582-e027-4583-ba93-079d0b6b4b06.txt + uri: https://redacted.blob.core.windows.net/src4ce89ac5-72a8-4c42-a4c6-e26c9c226ffb/af8c193e-ce53-45e6-bf6d-fc1fd6449216.txt response: body: string: '' @@ -657,11 +657,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:19:21 GMT etag: - - '"0x8D91C798ED0E9A4"' + - '"0x8D9258E5CAABD1D"' last-modified: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -687,11 +687,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf1002ce4-7e7a-4024-aa6d-02b3417ad5fe?restype=container + uri: https://redacted.blob.core.windows.net/target12ccefc8-3371-4d2c-a4f4-37896a76adbe?restype=container response: body: string: '' @@ -699,11 +699,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:21 GMT etag: - - '"0x8D91C798EEFAA0D"' + - '"0x8D9258E5CCC5E8A"' last-modified: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -712,8 +712,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0305064e-7f37-444a-8d9a-a9e06560e8b3?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf1002ce4-7e7a-4024-aa6d-02b3417ad5fe?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4ce89ac5-72a8-4c42-a4c6-e26c9c226ffb?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target12ccefc8-3371-4d2c-a4f4-37896a76adbe?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -723,7 +723,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -735,13 +735,13 @@ interactions: string: '' headers: apim-request-id: - - e266d4f0-4e9d-43a3-a81e-85ab3618e76e + - 1ca25d70-1b6e-42a6-9522-71e3f36ff98d content-length: - '0' date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:19:21 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/82efb736-34f7-4b91-892b-74e6d30e4b7b + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8e51ebfe-1453-4a5b-aa2b-969a6cca7f05 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -752,7 +752,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e266d4f0-4e9d-43a3-a81e-85ab3618e76e + - 1ca25d70-1b6e-42a6-9522-71e3f36ff98d status: code: 202 message: Accepted @@ -760,7 +760,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -768,13 +768,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/batches/82efb736-34f7-4b91-892b-74e6d30e4b7b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8e51ebfe-1453-4a5b-aa2b-969a6cca7f05 response: body: - string: '{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.5047717Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 73156c8b-69c8-48e9-8f11-c2d968cccbd6 + - 2f7cb4cf-d216-4eb1-b57a-47f08a98513e cache-control: - public,max-age=1 content-length: @@ -782,9 +782,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:45 GMT + - Wed, 02 Jun 2021 06:19:52 GMT etag: - - '"E8B55E3ABAE7D05B30E4DA202821288FB18D49593578D1D8732E0F30C85D41F8"' + - '"A55F059F05DE9BBA75843D28821CD107D9D4C167D3FCCC9D0BEE95D65C43BFD1"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -799,7 +799,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 73156c8b-69c8-48e9-8f11-c2d968cccbd6 + - 2f7cb4cf-d216-4eb1-b57a-47f08a98513e status: code: 200 message: OK @@ -817,11 +817,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6f84041d-903f-45ff-8402-2c63c36b2211?restype=container + uri: https://redacted.blob.core.windows.net/src06b1da61-225f-4c21-9a46-4f8d996e2015?restype=container response: body: string: '' @@ -829,11 +829,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:51 GMT etag: - - '"0x8D91C798F26BF64"' + - '"0x8D9258E6EEFB8BF"' last-modified: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -861,11 +861,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6f84041d-903f-45ff-8402-2c63c36b2211/44602ba3-b4ec-41d9-8f31-5ce7f90e195e.txt + uri: https://redacted.blob.core.windows.net/src06b1da61-225f-4c21-9a46-4f8d996e2015/7f93a5d5-ad9c-418e-ae7b-0932af3be72e.txt response: body: string: '' @@ -875,11 +875,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT etag: - - '"0x8D91C798F2ED24C"' + - '"0x8D9258E6EFC0513"' last-modified: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -911,11 +911,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6f84041d-903f-45ff-8402-2c63c36b2211/8b6ef04e-dbfc-4ae7-88ff-b9df1fe74958.txt + uri: https://redacted.blob.core.windows.net/src06b1da61-225f-4c21-9a46-4f8d996e2015/51300d89-9884-4e01-b8a5-58cb18c3eb87.txt response: body: string: '' @@ -925,11 +925,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT etag: - - '"0x8D91C798F35D871"' + - '"0x8D9258E6F04B93C"' last-modified: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -955,11 +955,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target596c3f5f-d573-42d6-96ad-a48c826a5454?restype=container + uri: https://redacted.blob.core.windows.net/target2988c004-cc39-4b0c-9683-87c5edc8f697?restype=container response: body: string: '' @@ -967,11 +967,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT etag: - - '"0x8D91C798F5197C3"' + - '"0x8D9258E6F3044AB"' last-modified: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:19:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -980,8 +980,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src6f84041d-903f-45ff-8402-2c63c36b2211?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target596c3f5f-d573-42d6-96ad-a48c826a5454?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src06b1da61-225f-4c21-9a46-4f8d996e2015?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2988c004-cc39-4b0c-9683-87c5edc8f697?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -991,7 +991,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -1003,13 +1003,13 @@ interactions: string: '' headers: apim-request-id: - - c2771699-587e-4792-b49a-8fc1a2a9b6d0 + - 3f96ac93-cbc5-4d2f-a9f0-1c8d43189852 content-length: - '0' date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:19:52 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/12c24550-7149-4358-9ffa-7d06207d7c1a + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/455b3f25-338b-4e72-ae9d-cc900887259c set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1020,7 +1020,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c2771699-587e-4792-b49a-8fc1a2a9b6d0 + - 3f96ac93-cbc5-4d2f-a9f0-1c8d43189852 status: code: 202 message: Accepted @@ -1028,7 +1028,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -1036,23 +1036,23 @@ 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/batches/12c24550-7149-4358-9ffa-7d06207d7c1a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/455b3f25-338b-4e72-ae9d-cc900887259c response: body: - string: '{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.134577Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - e496d387-c912-4019-a7f6-832c3bff54af + - 35bb55dd-4f29-4313-8bdd-7cc18837b68e cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:20:22 GMT etag: - - '"7B5324C6789B262812FF7007B7817FF2082CD2662C688F282AD2B40F36E871F9"' + - '"18835558C4F57D7A44AF9FAE910B4EFE2200DA47C1333C7E2C901B1E119482EE"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1067,7 +1067,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e496d387-c912-4019-a7f6-832c3bff54af + - 35bb55dd-4f29-4313-8bdd-7cc18837b68e status: code: 200 message: OK @@ -1085,11 +1085,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfd6d8e36-73c1-409e-b6a6-bba448e4764d?restype=container + uri: https://redacted.blob.core.windows.net/srce28033df-dc0d-4848-a6cf-c8314e7e7064?restype=container response: body: string: '' @@ -1097,11 +1097,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT etag: - - '"0x8D91C798F81E860"' + - '"0x8D9258E814BA09F"' last-modified: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1129,11 +1129,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfd6d8e36-73c1-409e-b6a6-bba448e4764d/c951c292-6e96-4da1-8920-617149a44d09.txt + uri: https://redacted.blob.core.windows.net/srce28033df-dc0d-4848-a6cf-c8314e7e7064/41ff3518-589b-49a7-ac26-33220337298e.txt response: body: string: '' @@ -1143,11 +1143,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT etag: - - '"0x8D91C798F8A226B"' + - '"0x8D9258E8154EFAB"' last-modified: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1179,11 +1179,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfd6d8e36-73c1-409e-b6a6-bba448e4764d/bf1f531f-965f-4924-abee-2d1aece26ce5.txt + uri: https://redacted.blob.core.windows.net/srce28033df-dc0d-4848-a6cf-c8314e7e7064/c6833978-cb20-4a21-9bb7-0391b3579d57.txt response: body: string: '' @@ -1193,11 +1193,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT etag: - - '"0x8D91C798F91EC08"' + - '"0x8D9258E815D0772"' last-modified: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1223,11 +1223,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target1e945d0e-28da-43e7-908d-714d6461a0d1?restype=container + uri: https://redacted.blob.core.windows.net/targeta3488e19-9a2d-443a-bf5e-7662ad4a0eaa?restype=container response: body: string: '' @@ -1235,11 +1235,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:46 GMT + - Wed, 02 Jun 2021 06:20:23 GMT etag: - - '"0x8D91C798FAE7A0B"' + - '"0x8D9258E81778DBA"' last-modified: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1248,8 +1248,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfd6d8e36-73c1-409e-b6a6-bba448e4764d?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1e945d0e-28da-43e7-908d-714d6461a0d1?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce28033df-dc0d-4848-a6cf-c8314e7e7064?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta3488e19-9a2d-443a-bf5e-7662ad4a0eaa?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1259,7 +1259,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '484' Content-Type: - application/json User-Agent: @@ -1271,13 +1271,13 @@ interactions: string: '' headers: apim-request-id: - - 34ba1ced-b4f4-4c41-9378-e50dbb5aa40f + - 6bd1fce5-f081-4102-b81b-db364e615070 content-length: - '0' date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:22 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/014b3340-8642-47f1-86bd-ae66fd2963b2 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/10aa6ae4-6629-46a6-b837-9f2fb350e378 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1288,10 +1288,57 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 34ba1ced-b4f4-4c41-9378-e50dbb5aa40f + - 6bd1fce5-f081-4102-b81b-db364e615070 status: code: 202 message: Accepted +- 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/batches/10aa6ae4-6629-46a6-b837-9f2fb350e378 + response: + body: + string: '{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: + - 7f27e45b-276b-4465-b181-491a326aadc6 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:53 GMT + etag: + - '"99A9DB189159B3DD87FEF0EEE0F9907843AA4536B460916C6DABDE75C7FACD03"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7f27e45b-276b-4465-b181-491a326aadc6 + status: + code: 200 + message: OK - request: body: null headers: @@ -1304,23 +1351,23 @@ 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/batches/014b3340-8642-47f1-86bd-ae66fd2963b2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$maxpagesize=2 response: body: - string: '{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7356825Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=2&$top=296&$maxpagesize=2"}' headers: apim-request-id: - - ab96e745-f34c-4891-a1f7-7af0a1c42837 + - 9c205442-fb2b-47bc-94f8-267ccb558143 cache-control: - public,max-age=1 content-length: - - '292' + - '722' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"8E776B93264B5F5BE4C86A06D1E82A27BEB00690001EDD389DB57E8AC7C14CDE"' + - '"51E51A4CDDC67317814A309F0974072E469B7F4A888FFDB73069938D010FD995"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1335,7 +1382,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ab96e745-f34c-4891-a1f7-7af0a1c42837 + - 9c205442-fb2b-47bc-94f8-267ccb558143 status: code: 200 message: OK @@ -1351,23 +1398,23 @@ 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/batches?$skip=0&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=2&$top=296&$maxpagesize=2 response: body: - string: '{"value":[{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8349768Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","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/batches?$skip=2&$top=57&$maxpagesize=2"}' + string: '{"value":[{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=4&$top=294&$maxpagesize=2"}' headers: apim-request-id: - - 793d5e5f-8e38-40f9-98ed-6ecaf6a749c3 + - 5aeb41fd-496f-4b0b-90f4-e106f7dad462 cache-control: - public,max-age=1 content-length: - - '719' + - '723' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"FCE6F05FA1792DC5C8E139FD16F5010A386775E25DBE0AABA59221436D7E858F"' + - '"4C521BE186BEB31A8E4E9D3F08859B393A0DABB814FBADDB65A6B0D20E4303CB"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1382,7 +1429,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 793d5e5f-8e38-40f9-98ed-6ecaf6a749c3 + - 5aeb41fd-496f-4b0b-90f4-e106f7dad462 status: code: 200 message: OK @@ -1398,23 +1445,23 @@ 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/batches?$skip=2&$top=57&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=4&$top=294&$maxpagesize=2 response: body: - string: '{"value":[{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","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/batches?$skip=4&$top=55&$maxpagesize=2"}' + string: '{"value":[{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","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/batches?$skip=6&$top=292&$maxpagesize=2"}' headers: apim-request-id: - - 1c1d211e-c4fb-49b5-a07f-f88d28fe4c96 + - 34f8dbc7-f5f0-459b-a7d3-299c61987f47 cache-control: - public,max-age=1 content-length: - - '716' + - '723' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"F3B6A23DD010C76665A430932DF19FC05C1866996DCD7E622C229CFA1C5CDF75"' + - '"3D42CA1640EEB8A73EC319D49763F79C4E9801677ED8B53C6827C51709F263B7"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1429,7 +1476,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1c1d211e-c4fb-49b5-a07f-f88d28fe4c96 + - 34f8dbc7-f5f0-459b-a7d3-299c61987f47 status: code: 200 message: OK @@ -1445,23 +1492,23 @@ 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/batches?$skip=4&$top=55&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=6&$top=292&$maxpagesize=2 response: body: - string: '{"value":[{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","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/batches?$skip=6&$top=53&$maxpagesize=2"}' + string: '{"value":[{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","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/batches?$skip=8&$top=290&$maxpagesize=2"}' headers: apim-request-id: - - e66737e5-c449-4fd0-81ba-a4da53d266cc + - cbd05af5-c75b-4741-a3ce-a8fd9b281058 cache-control: - public,max-age=1 content-length: - - '715' + - '724' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"B715B98FB869E9D9FC8A62ACF85626B22248DAC34C3DBD49236E1459EB86BA19"' + - '"990847A432BD90E656FFFEA90D85C164F3A00D10C4B48171A2108E58CCB49621"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1476,7 +1523,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e66737e5-c449-4fd0-81ba-a4da53d266cc + - cbd05af5-c75b-4741-a3ce-a8fd9b281058 status: code: 200 message: OK @@ -1492,23 +1539,23 @@ 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/batches?$skip=6&$top=53&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=8&$top=290&$maxpagesize=2 response: body: - string: '{"value":[{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=8&$top=51&$maxpagesize=2"}' + string: '{"value":[{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","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/batches?$skip=10&$top=288&$maxpagesize=2"}' headers: apim-request-id: - - 06a19f08-1faf-4ef4-9ed4-6b6b018c8889 + - d9de519c-f8b7-4aec-94d5-0ff440e39dd0 cache-control: - public,max-age=1 content-length: - - '721' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"C3015EE1A1E187DC2368D60C43FE521B78476BF9D7A4D1929F3E229BD31DBEC3"' + - '"DF69C84D7E45D5CF3706ED4148B042F81D9CC338BA19B234003157E225DDADD9"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1523,7 +1570,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 06a19f08-1faf-4ef4-9ed4-6b6b018c8889 + - d9de519c-f8b7-4aec-94d5-0ff440e39dd0 status: code: 200 message: OK @@ -1539,23 +1586,23 @@ 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/batches?$skip=8&$top=51&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=10&$top=288&$maxpagesize=2 response: body: - string: '{"value":[{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=10&$top=49&$maxpagesize=2"}' + string: '{"value":[{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=12&$top=286&$maxpagesize=2"}' headers: apim-request-id: - - 71bf7db2-856d-4a56-94c9-894dbef31ab8 + - 4dff6ac0-3e49-4570-9b5c-b6c36e5a012a cache-control: - public,max-age=1 content-length: - - '723' + - '724' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"E2F0CB97DA2136FE8535AD96443E0DEAE6AD186C0876B71498A17086F2E00D9F"' + - '"CBB28AE783CF1D16C3EE5E6482E91FAC6ABA3470E31AD706045B8B9E82B57D5A"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1570,7 +1617,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 71bf7db2-856d-4a56-94c9-894dbef31ab8 + - 4dff6ac0-3e49-4570-9b5c-b6c36e5a012a status: code: 200 message: OK @@ -1586,23 +1633,23 @@ 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/batches?$skip=10&$top=49&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=12&$top=286&$maxpagesize=2 response: body: - string: '{"value":[{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","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/batches?$skip=12&$top=47&$maxpagesize=2"}' + string: '{"value":[{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=14&$top=284&$maxpagesize=2"}' headers: apim-request-id: - - 2304938d-1f90-439d-80e2-d25db93276ef + - 8ecf175f-c1a5-45cb-8723-46b4089b6102 cache-control: - public,max-age=1 content-length: - - '722' + - '724' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"98207A01438097723F67BDAB628732A4B297B6C50E8B3DAE73C27F06741F70C8"' + - '"C16E17449CC20A4664CDA8B9A5C6345F3E0894036211269360D36BF6BFEF96B4"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1617,7 +1664,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2304938d-1f90-439d-80e2-d25db93276ef + - 8ecf175f-c1a5-45cb-8723-46b4089b6102 status: code: 200 message: OK @@ -1633,23 +1680,23 @@ 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/batches?$skip=12&$top=47&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=14&$top=284&$maxpagesize=2 response: body: - string: '{"value":[{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","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/batches?$skip=14&$top=45&$maxpagesize=2"}' + string: '{"value":[{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=16&$top=282&$maxpagesize=2"}' headers: apim-request-id: - - 3c895eab-f60b-46cd-b7b2-19b2a2e6ab3b + - 6b32c2dc-da42-4869-8c58-4b890558b0de cache-control: - public,max-age=1 content-length: - - '721' + - '723' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"5D04C9CADA7CC99334514A81C0AA72E039B8FB78D35A4F5CF4F430CDADC3A82D"' + - '"EE7891DD41B48B88684C9E485A20962072B9D529119395A6DFEE00057696D2B8"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1664,7 +1711,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3c895eab-f60b-46cd-b7b2-19b2a2e6ab3b + - 6b32c2dc-da42-4869-8c58-4b890558b0de status: code: 200 message: OK @@ -1680,23 +1727,23 @@ 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/batches?$skip=14&$top=45&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=16&$top=282&$maxpagesize=2 response: body: - string: '{"value":[{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","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/batches?$skip=16&$top=43&$maxpagesize=2"}' + string: '{"value":[{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","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/batches?$skip=18&$top=280&$maxpagesize=2"}' headers: apim-request-id: - - d6d21ea1-63b5-4962-a911-edb3bf5f22a2 + - 4ed620f9-05ee-49f1-b930-8cb44bf7ee22 cache-control: - public,max-age=1 content-length: - - '721' + - '725' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"30C1C59A1ADA1C8E291F484B43629D6BC35C534A158020B889285005592E7438"' + - '"543BE042FD155C8DB671CAF08CAA3C4CFE86636EB892244938F9AB4962B7E708"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1711,7 +1758,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d6d21ea1-63b5-4962-a911-edb3bf5f22a2 + - 4ed620f9-05ee-49f1-b930-8cb44bf7ee22 status: code: 200 message: OK @@ -1727,23 +1774,23 @@ 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/batches?$skip=16&$top=43&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=18&$top=280&$maxpagesize=2 response: body: - string: '{"value":[{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=18&$top=41&$maxpagesize=2"}' + string: '{"value":[{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","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/batches?$skip=20&$top=278&$maxpagesize=2"}' headers: apim-request-id: - - cfc7a3ea-eb92-436f-af7e-5636ab1ac5ed + - aa8c4f03-b214-41b3-819d-92a5d00b7f51 cache-control: - public,max-age=1 content-length: - - '722' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"784BE953EFB8097C092613E1E1BEAF6D4B2CB97A623E1DFB59CDC1F0E33E2171"' + - '"9D9518A514E26B2217DB4D264A1A3B63CB878ADF756F54F28F175B58348A32DE"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1758,7 +1805,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cfc7a3ea-eb92-436f-af7e-5636ab1ac5ed + - aa8c4f03-b214-41b3-819d-92a5d00b7f51 status: code: 200 message: OK @@ -1774,23 +1821,23 @@ 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/batches?$skip=18&$top=41&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=20&$top=278&$maxpagesize=2 response: body: - string: '{"value":[{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=20&$top=39&$maxpagesize=2"}' + string: '{"value":[{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","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/batches?$skip=22&$top=276&$maxpagesize=2"}' headers: apim-request-id: - - 3b8ddf79-18c5-4502-8f89-831c54d99e86 + - ed254320-d151-4735-a0aa-a8233bd84b92 cache-control: - public,max-age=1 content-length: - - '722' + - '727' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:53 GMT etag: - - '"F8C65932D8C9E5195F1461D3C742834C43972A5E80C5C321F23A47573C3542BC"' + - '"8ACDDF32883B671B25BFF820979933615D63B8A5299FBAFB01CB441CE1EE73D5"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1805,7 +1852,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3b8ddf79-18c5-4502-8f89-831c54d99e86 + - ed254320-d151-4735-a0aa-a8233bd84b92 status: code: 200 message: OK @@ -1821,23 +1868,23 @@ 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/batches?$skip=20&$top=39&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=22&$top=276&$maxpagesize=2 response: body: - string: '{"value":[{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=22&$top=37&$maxpagesize=2"}' + string: '{"value":[{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","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/batches?$skip=24&$top=274&$maxpagesize=2"}' headers: apim-request-id: - - 467e6523-51b3-4b36-9a46-314cd8df93a7 + - 8232984f-b623-45ed-ab35-9bc760527281 cache-control: - public,max-age=1 content-length: - - '723' + - '729' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:47 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"016940867F3CE835DE6E7B884F81F400FF2AE4BF8C8439C445E0FB9D7D3EC2E8"' + - '"F406B499EF7A8DC13A8F828C7BA9EA515559E4E2CE8F23454B67CD668CDDBD49"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1852,7 +1899,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 467e6523-51b3-4b36-9a46-314cd8df93a7 + - 8232984f-b623-45ed-ab35-9bc760527281 status: code: 200 message: OK @@ -1868,23 +1915,23 @@ 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/batches?$skip=22&$top=37&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=24&$top=274&$maxpagesize=2 response: body: - string: '{"value":[{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=24&$top=35&$maxpagesize=2"}' + string: '{"value":[{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","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/batches?$skip=26&$top=272&$maxpagesize=2"}' headers: apim-request-id: - - 8807d412-0dea-43ca-8d34-3e2f1e613ee5 + - 0bbc799d-1960-4295-844f-d5c36feb6077 cache-control: - public,max-age=1 content-length: - - '723' + - '730' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"7D807A8BF53304674BF8FDA4EA153075984014FEB64971147A672AC79270ED8E"' + - '"4F4919F1573432D57C7E9FF3DBE9CAAED758B33662A330F0EFFC7B6E343CF801"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1899,7 +1946,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 8807d412-0dea-43ca-8d34-3e2f1e613ee5 + - 0bbc799d-1960-4295-844f-d5c36feb6077 status: code: 200 message: OK @@ -1915,23 +1962,23 @@ 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/batches?$skip=24&$top=35&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=26&$top=272&$maxpagesize=2 response: body: - string: '{"value":[{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=26&$top=33&$maxpagesize=2"}' + string: '{"value":[{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","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/batches?$skip=28&$top=270&$maxpagesize=2"}' headers: apim-request-id: - - 5ed346ce-8a93-494f-9b67-adbfc21fbe81 + - 49e09d76-3f72-4db2-8d8c-7e8b0dd6f3fa cache-control: - public,max-age=1 content-length: - - '723' + - '725' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"C925B9BBAAE3E1DE11EFB4ABF9DC8A491F874BE07BA2A49E07880CF6DC60ED75"' + - '"7B571813AA5E0A802B4830A01108D8CC03CA7327DDFECB36052735B0B19AC21C"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1946,7 +1993,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5ed346ce-8a93-494f-9b67-adbfc21fbe81 + - 49e09d76-3f72-4db2-8d8c-7e8b0dd6f3fa status: code: 200 message: OK @@ -1962,23 +2009,23 @@ 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/batches?$skip=26&$top=33&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=28&$top=270&$maxpagesize=2 response: body: - string: '{"value":[{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=28&$top=31&$maxpagesize=2"}' + string: '{"value":[{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","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/batches?$skip=30&$top=268&$maxpagesize=2"}' headers: apim-request-id: - - cc9af2ca-f197-4054-a5ae-ac1ee022c8cc + - df809c14-7b66-4f83-98c5-e083481969d4 cache-control: - public,max-age=1 content-length: - - '723' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"2CBBFC2E08A455B48BD50CB5D32351DA7909C89C87DF2B4BD5825F429148522C"' + - '"AB677234391EA8C6B9A63BBCA5C300B9AA64A4F22CBE713064B622ACA603C4AA"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1993,7 +2040,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cc9af2ca-f197-4054-a5ae-ac1ee022c8cc + - df809c14-7b66-4f83-98c5-e083481969d4 status: code: 200 message: OK @@ -2009,23 +2056,23 @@ 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/batches?$skip=28&$top=31&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=30&$top=268&$maxpagesize=2 response: body: - string: '{"value":[{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=30&$top=29&$maxpagesize=2"}' + string: '{"value":[{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","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/batches?$skip=32&$top=266&$maxpagesize=2"}' headers: apim-request-id: - - a0eb404c-8424-4199-a031-35e63aa9a479 + - ecb723d6-dc99-4ea5-879f-81071ab775fc cache-control: - public,max-age=1 content-length: - - '723' + - '722' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"146A15320E830128C1C62C54C82D86EAC251CC048DB0B9C86FCF1F2CB0543BF4"' + - '"D8FEE59774F0C836416A1E76C4D6E56C1357FD75C64FCD6EF39C1592F9786DF2"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2040,7 +2087,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a0eb404c-8424-4199-a031-35e63aa9a479 + - ecb723d6-dc99-4ea5-879f-81071ab775fc status: code: 200 message: OK @@ -2056,13 +2103,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/batches?$skip=30&$top=29&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=32&$top=266&$maxpagesize=2 response: body: - string: '{"value":[{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=32&$top=27&$maxpagesize=2"}' + string: '{"value":[{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","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/batches?$skip=34&$top=264&$maxpagesize=2"}' headers: apim-request-id: - - 61a05f85-ded6-4e4f-b9ae-d83b14a7da2e + - 8b76721a-d081-4c63-ac1f-756777997a23 cache-control: - public,max-age=1 content-length: @@ -2070,9 +2117,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"14CBB14FC1D9933A2EB0FF70275E70EA1D6DA11D0657F9DD2F99CDEBCA77F6EB"' + - '"A530FBA01B436CC21E963CA6911D1E0F54AF2E21ACE3F6B19DC8ADA0F1645CFE"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2087,7 +2134,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 61a05f85-ded6-4e4f-b9ae-d83b14a7da2e + - 8b76721a-d081-4c63-ac1f-756777997a23 status: code: 200 message: OK @@ -2103,13 +2150,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/batches?$skip=32&$top=27&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=34&$top=264&$maxpagesize=2 response: body: - string: '{"value":[{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=34&$top=25&$maxpagesize=2"}' + string: '{"value":[{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","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/batches?$skip=36&$top=262&$maxpagesize=2"}' headers: apim-request-id: - - 7f2b1afe-770f-4607-9426-db2fa9e809a1 + - 39f23051-2e11-480e-a6b7-33d11792fc0f cache-control: - public,max-age=1 content-length: @@ -2117,9 +2164,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"951F324A2C6B6647E44CE69D99925B9646A4968166DBB5D83F759664160665A9"' + - '"FDE0847C17BECCAF3EB5EC3FBE783E4071DA0D091128A8AD747DB1A754A77B15"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2134,7 +2181,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7f2b1afe-770f-4607-9426-db2fa9e809a1 + - 39f23051-2e11-480e-a6b7-33d11792fc0f status: code: 200 message: OK @@ -2150,23 +2197,23 @@ 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/batches?$skip=34&$top=25&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=36&$top=262&$maxpagesize=2 response: body: - string: '{"value":[{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=36&$top=23&$maxpagesize=2"}' + string: '{"value":[{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","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/batches?$skip=38&$top=260&$maxpagesize=2"}' headers: apim-request-id: - - 52b735c1-92f1-456d-8e41-d3558437966b + - 5d50f3b7-d720-405d-be41-37a580a88cd3 cache-control: - public,max-age=1 content-length: - - '723' + - '722' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"852C0F8E24FD2A228BCEA9B81E50946DF5E2E3ACD4811FF7DD40AE378EE787E6"' + - '"6DCEB2063AEE96CB8E4D0D906BF5EA1957B264D5537BF9BB195F7E65F785FC81"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2181,7 +2228,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 52b735c1-92f1-456d-8e41-d3558437966b + - 5d50f3b7-d720-405d-be41-37a580a88cd3 status: code: 200 message: OK @@ -2197,23 +2244,23 @@ 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/batches?$skip=36&$top=23&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=38&$top=260&$maxpagesize=2 response: body: - string: '{"value":[{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","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/batches?$skip=38&$top=21&$maxpagesize=2"}' + string: '{"value":[{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=40&$top=258&$maxpagesize=2"}' headers: apim-request-id: - - 006894e9-7eb5-47db-99d2-a0708eba821f + - 7c2bfea1-065b-4937-92fb-e81e839ee13e cache-control: - public,max-age=1 content-length: - - '724' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"E6091B5F37243E878E825FE1BCB36FA7C4123577ADCEB0EEF82494576721A08E"' + - '"8B648161CCA2E79592466E0E4AF5BE7197FFA5C9E3809732D5115EE382EB91A2"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2228,7 +2275,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 006894e9-7eb5-47db-99d2-a0708eba821f + - 7c2bfea1-065b-4937-92fb-e81e839ee13e status: code: 200 message: OK @@ -2244,23 +2291,23 @@ 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/batches?$skip=38&$top=21&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=40&$top=258&$maxpagesize=2 response: body: - string: '{"value":[{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","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/batches?$skip=40&$top=19&$maxpagesize=2"}' + string: '{"value":[{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","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/batches?$skip=42&$top=256&$maxpagesize=2"}' headers: apim-request-id: - - 4b894172-adf4-4ff1-b7ab-6105ceb36ae2 + - 712ed570-cc7c-47dc-a588-6ff4b76c56e0 cache-control: - public,max-age=1 content-length: - - '723' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:54 GMT etag: - - '"9E6A5432E37C3CD04D946A3DCD5D8DC4B6D1028768159C064AE07C0C8D12D9F3"' + - '"9DCE829A9465E990F0176CD42994EF1688EB24653733147B27B32504CBE5AE54"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2275,7 +2322,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4b894172-adf4-4ff1-b7ab-6105ceb36ae2 + - 712ed570-cc7c-47dc-a588-6ff4b76c56e0 status: code: 200 message: OK @@ -2291,23 +2338,23 @@ 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/batches?$skip=40&$top=19&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=42&$top=256&$maxpagesize=2 response: body: - string: '{"value":[{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","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/batches?$skip=42&$top=17&$maxpagesize=2"}' + string: '{"value":[{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","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/batches?$skip=44&$top=254&$maxpagesize=2"}' headers: apim-request-id: - - 63d24c65-a545-42e9-8390-d2810a610aa7 + - c54389c1-57c4-411c-aed0-43b4c76abc87 cache-control: - public,max-age=1 content-length: - - '724' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:55 GMT etag: - - '"DA5B557C46776B8C6D432520A9E37F654F086F575DC958DF8C3C308D30865CB9"' + - '"E322B18008EB7FC019750D69DC3D762D60315E3053405C291099D99EF18744BA"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2322,7 +2369,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 63d24c65-a545-42e9-8390-d2810a610aa7 + - c54389c1-57c4-411c-aed0-43b4c76abc87 status: code: 200 message: OK @@ -2338,23 +2385,23 @@ 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/batches?$skip=42&$top=17&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=44&$top=254&$maxpagesize=2 response: body: - string: '{"value":[{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=44&$top=15&$maxpagesize=2"}' + string: '{"value":[{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=46&$top=252&$maxpagesize=2"}' headers: apim-request-id: - - 40ee9eed-d6ac-45d2-b8f9-874ce00bf087 + - c4b0bf61-f956-405b-a1d9-5f6f92350c03 cache-control: - public,max-age=1 content-length: - - '723' + - '725' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:48 GMT + - Wed, 02 Jun 2021 06:20:55 GMT etag: - - '"32A2D1C31B4668283434C0597C8A409CC3F2C5EE289E6FE7E347B33569AA2202"' + - '"44EE10C6BE703EBA5BE7EE7F14379F4BC8CDEA50E96851BA84B400A6042ABD75"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2369,7 +2416,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 40ee9eed-d6ac-45d2-b8f9-874ce00bf087 + - c4b0bf61-f956-405b-a1d9-5f6f92350c03 status: code: 200 message: OK @@ -2385,23 +2432,23 @@ 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/batches?$skip=44&$top=15&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=46&$top=252&$maxpagesize=2 response: body: - string: '{"value":[{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","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/batches?$skip=46&$top=13&$maxpagesize=2"}' + string: '{"value":[{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=48&$top=250&$maxpagesize=2"}' headers: apim-request-id: - - 687724e6-f8c1-4a9a-95a8-d8669bf01f4d + - da69f7bc-b319-432a-be2e-4e7c0a8836f3 cache-control: - public,max-age=1 content-length: - - '723' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:49 GMT + - Wed, 02 Jun 2021 06:20:55 GMT etag: - - '"7A07C5784516EAFD99332C5504EE28B906E38404E662927271B4A173F974A34F"' + - '"30EC1501718C1AE8975EB6C3F1452959DEC317105D420D719E845DF0DB89A88A"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2416,7 +2463,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 687724e6-f8c1-4a9a-95a8-d8669bf01f4d + - da69f7bc-b319-432a-be2e-4e7c0a8836f3 status: code: 200 message: OK @@ -2432,23 +2479,23 @@ 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/batches?$skip=46&$top=13&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=48&$top=250&$maxpagesize=2 response: body: - string: '{"value":[{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","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/batches?$skip=48&$top=11&$maxpagesize=2"}' + string: '{"value":[{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=248&$maxpagesize=2"}' headers: apim-request-id: - - ff48a836-0a0e-4289-afbd-4cbe1c656a14 + - c5199591-093b-4909-9da6-cfb942b067b9 cache-control: - public,max-age=1 content-length: - - '725' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:49 GMT + - Wed, 02 Jun 2021 06:20:55 GMT etag: - - '"2D90CDEC637BD518920AE4E7279165F4965EB16FFE6C1D72D9B723FD9E32825F"' + - '"43EEA7489C6CF778E76C2ECDEE23882CC8C7F5292218DB270FE3C35E47C7693B"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2463,7 +2510,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ff48a836-0a0e-4289-afbd-4cbe1c656a14 + - c5199591-093b-4909-9da6-cfb942b067b9 status: code: 200 message: OK @@ -2479,23 +2526,23 @@ 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/batches?$skip=48&$top=11&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=248&$maxpagesize=2 response: body: - string: '{"value":[{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","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/batches?$skip=50&$top=9&$maxpagesize=2"}' + string: '{"value":[{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=52&$top=246&$maxpagesize=2"}' headers: apim-request-id: - - 22dc2a70-1b8b-4d71-9e23-17e7a8f16eea + - 4f6aa500-3ecf-4c41-b894-769ede93a0d9 cache-control: - public,max-age=1 content-length: - - '725' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:49 GMT + - Wed, 02 Jun 2021 06:20:55 GMT etag: - - '"03880D786A02A0BEC994DB5B04FB4C2108FEC1280F86DF81901B5FED96908B96"' + - '"082405AA20F1BCC8F00A912E113AB736B375360C6770C85F1039D3ED68B50B91"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2510,7 +2557,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 22dc2a70-1b8b-4d71-9e23-17e7a8f16eea + - 4f6aa500-3ecf-4c41-b894-769ede93a0d9 status: code: 200 message: OK @@ -2526,13 +2573,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/batches?$skip=50&$top=9&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=52&$top=246&$maxpagesize=2 response: body: - string: '{"value":[{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","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/batches?$skip=52&$top=7&$maxpagesize=2"}' + string: '{"value":[{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=54&$top=244&$maxpagesize=2"}' headers: apim-request-id: - - ef2e1245-e733-48c9-9e47-37a418dec969 + - 217972b5-ba03-4583-8eaa-0aedc54dd45e cache-control: - public,max-age=1 content-length: @@ -2540,9 +2587,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:49 GMT + - Wed, 02 Jun 2021 06:20:55 GMT etag: - - '"A26AA0699739961F3E6A69AC09996F82B4E8C2F99D4EA090E8A6FBA4D62C55B6"' + - '"78C7889CC424C2CEEE012560FBEF8DA29245A307911897B63C6182C7DFED7E14"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2557,7 +2604,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ef2e1245-e733-48c9-9e47-37a418dec969 + - 217972b5-ba03-4583-8eaa-0aedc54dd45e status: code: 200 message: OK @@ -2573,13 +2620,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/batches?$skip=52&$top=7&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=54&$top=244&$maxpagesize=2 response: body: - string: '{"value":[{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","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/batches?$skip=54&$top=5&$maxpagesize=2"}' + string: '{"value":[{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","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/batches?$skip=56&$top=242&$maxpagesize=2"}' headers: apim-request-id: - - 67fd2793-a8b9-4720-bbf5-69147e3edbd6 + - c2326210-10f6-4575-8150-3c937e873eeb cache-control: - public,max-age=1 content-length: @@ -2587,9 +2634,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:49 GMT + - Wed, 02 Jun 2021 06:20:55 GMT etag: - - '"CED6CF2FD1EC0E4B0615A9568EBDB36DAD16CE90718BFEC3639DAF16C1EDC29F"' + - '"08D28E3449AB3BC3465DDBF3E91A866FC2CDD4CC6F24FF9C1EC7FD6B0DC95620"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2604,7 +2651,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 67fd2793-a8b9-4720-bbf5-69147e3edbd6 + - c2326210-10f6-4575-8150-3c937e873eeb status: code: 200 message: OK @@ -2620,23 +2667,23 @@ 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/batches?$skip=54&$top=5&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=56&$top=242&$maxpagesize=2 response: body: - string: '{"value":[{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","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/batches?$skip=56&$top=3&$maxpagesize=2"}' + string: '{"value":[{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","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/batches?$skip=58&$top=240&$maxpagesize=2"}' headers: apim-request-id: - - 12c75c4c-60f9-4bbf-b14f-e9fe3d52f98c + - b996d8d9-13c7-47bc-860c-7cb71ad50cab cache-control: - public,max-age=1 content-length: - - '724' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:49 GMT + - Wed, 02 Jun 2021 06:20:55 GMT etag: - - '"1BCB088B2E432A038C4B8C8E6253E2BD992AE4194519ABD74A1FE124BC32850E"' + - '"132B4E216C4A540B527CC74F89E01FDFC7A303ADD373E9308869811135CC0576"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2651,7 +2698,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 12c75c4c-60f9-4bbf-b14f-e9fe3d52f98c + - b996d8d9-13c7-47bc-860c-7cb71ad50cab status: code: 200 message: OK @@ -2667,23 +2714,117 @@ 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/batches?$skip=56&$top=3&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=58&$top=240&$maxpagesize=2 response: body: - string: '{"value":[{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","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/batches?$skip=58&$top=1&$maxpagesize=2"}' + string: '{"value":[{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","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/batches?$skip=60&$top=238&$maxpagesize=2"}' headers: apim-request-id: - - 2b895341-70fe-4e40-9292-be96a2c718c7 + - 342de842-2a6f-44b5-aa0b-d5ed02a004ad cache-control: - public,max-age=1 content-length: - - '724' + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:55 GMT + etag: + - '"8F342D887DD9B2F571526ECC6E84BAD821ACBE527E0067B05099CA01EC38C2C0"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 342de842-2a6f-44b5-aa0b-d5ed02a004ad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=60&$top=238&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","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/batches?$skip=62&$top=236&$maxpagesize=2"}' + headers: + apim-request-id: + - 19b64c98-6095-479d-b895-6908142741bb + cache-control: + - public,max-age=1 + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"05426F3692121F607D8F9C7713A7777CA1D9A779173F7E7EF4C97350CE8478E8"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 19b64c98-6095-479d-b895-6908142741bb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=62&$top=236&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","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/batches?$skip=64&$top=234&$maxpagesize=2"}' + headers: + apim-request-id: + - 8371cc15-7c09-4e46-a128-b322bef7877a + cache-control: + - public,max-age=1 + content-length: + - '729' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:49 GMT + - Wed, 02 Jun 2021 06:20:56 GMT etag: - - '"D7F81777A0C727E7BD0A9F45EF605A83A8E9DF9F1C91C3C2A11D775A8C6CA555"' + - '"42DA9E1BDD52B7FBAD6A5F05D8D7A4F2EF6699A6E99F0AAF519B68B2470A60BB"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2698,7 +2839,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2b895341-70fe-4e40-9292-be96a2c718c7 + - 8371cc15-7c09-4e46-a128-b322bef7877a status: code: 200 message: OK @@ -2714,23 +2855,23 @@ 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/batches?$skip=58&$top=1&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=64&$top=234&$maxpagesize=2 response: body: - string: '{"value":[{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + string: '{"value":[{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","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/batches?$skip=66&$top=232&$maxpagesize=2"}' headers: apim-request-id: - - b7b49164-a020-489d-acc7-fa021520d464 + - 7b8d01b3-b9cc-40a5-a11f-28ba87dddabc cache-control: - public,max-age=1 content-length: - - '305' + - '726' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:49 GMT + - Wed, 02 Jun 2021 06:20:56 GMT etag: - - '"DB6C354A17489376A208113070DDF17F9CBCC4C1C9700835E11921CFD69CF51A"' + - '"FACD4780A1D344EF4D5D088775D123018289987806FCE39419043AE8DBA69790"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2745,7 +2886,5463 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b7b49164-a020-489d-acc7-fa021520d464 + - 7b8d01b3-b9cc-40a5-a11f-28ba87dddabc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=66&$top=232&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","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/batches?$skip=68&$top=230&$maxpagesize=2"}' + headers: + apim-request-id: + - 4944070e-441f-49c7-bcc9-be4b3908fbe0 + cache-control: + - public,max-age=1 + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"E3F27B4D1E8DFBF409E63981FAED27969C5D82FF81F53B8944839CA69DFCF204"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4944070e-441f-49c7-bcc9-be4b3908fbe0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=68&$top=230&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","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/batches?$skip=70&$top=228&$maxpagesize=2"}' + headers: + apim-request-id: + - 2326a102-2769-48cb-b87b-0d656f5fc7de + cache-control: + - public,max-age=1 + content-length: + - '726' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"A267BC3C6B29125DCFCF8C09EC836020A4D42E6DD106A833248DDF9A8E025F29"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2326a102-2769-48cb-b87b-0d656f5fc7de + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=70&$top=228&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","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/batches?$skip=72&$top=226&$maxpagesize=2"}' + headers: + apim-request-id: + - 3b4c8111-0937-48ad-a3af-8dd9f73d764c + cache-control: + - public,max-age=1 + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"B3E7C343362716DE9085453483753646FB0C8F2A6EBD7614FF923B6B2DCA591F"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3b4c8111-0937-48ad-a3af-8dd9f73d764c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=72&$top=226&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","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/batches?$skip=74&$top=224&$maxpagesize=2"}' + headers: + apim-request-id: + - 8c6dc25c-c64c-4bd6-91fc-9ffe0650b1e5 + cache-control: + - public,max-age=1 + content-length: + - '726' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"DED956607870CD4FA5366263F6D7017B4B6C0FCBDA377544C74C0C549281A93D"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8c6dc25c-c64c-4bd6-91fc-9ffe0650b1e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=74&$top=224&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=76&$top=222&$maxpagesize=2"}' + headers: + apim-request-id: + - adc20f6a-1675-4cf9-abd8-30b4497702ce + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"E2E07288FA3BF7FF1EBEE49B7E8C3DEDCA92BEE2C8C165FCE55DCE273B3709FC"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - adc20f6a-1675-4cf9-abd8-30b4497702ce + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=76&$top=222&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=78&$top=220&$maxpagesize=2"}' + headers: + apim-request-id: + - 81add1c3-c355-431e-9759-5f5cf1cd7880 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"9062B5C8F8ED707B39825F88BF7F295E2B314EF95C1AAD4F4263DBA3B0494EE1"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 81add1c3-c355-431e-9759-5f5cf1cd7880 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=78&$top=220&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=80&$top=218&$maxpagesize=2"}' + headers: + apim-request-id: + - 0c8e21e4-7c52-44d7-aec4-383c3077f002 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"743A0A6D2D5A48AA628359B1DEC9A0EE03736C438F5ED12B04647F3E835560B9"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0c8e21e4-7c52-44d7-aec4-383c3077f002 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=80&$top=218&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=82&$top=216&$maxpagesize=2"}' + headers: + apim-request-id: + - 30666b35-d303-49f1-a1da-e849de48cd84 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"96AA75DC2D88EB23905FCB69D6BDAE86E0E0FCA6DB3FF4D74C868A5193A45D8B"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 30666b35-d303-49f1-a1da-e849de48cd84 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=82&$top=216&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=84&$top=214&$maxpagesize=2"}' + headers: + apim-request-id: + - 59659aaf-e08d-4559-bc0c-74337b4773d7 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"E5868F4CDCE5E48AB5E8DAB69DFC903E7187858CAC7A27DB99E4A6684CA74904"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 59659aaf-e08d-4559-bc0c-74337b4773d7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=84&$top=214&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=86&$top=212&$maxpagesize=2"}' + headers: + apim-request-id: + - 5b1a2cfe-ddc1-4622-881f-5b9513d423b6 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:56 GMT + etag: + - '"C30D5D409533EB24B4E53A69F94854B8C293714C003720A90A4C63AAAA52725E"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5b1a2cfe-ddc1-4622-881f-5b9513d423b6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=86&$top=212&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=88&$top=210&$maxpagesize=2"}' + headers: + apim-request-id: + - bc9eddce-e7be-4a7d-8be4-071d5790193c + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"611BDADF4BE3816AD327331F0CFD418EF8EAE6E3A8FFBBAFD630DF71BC9544CB"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bc9eddce-e7be-4a7d-8be4-071d5790193c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=88&$top=210&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=90&$top=208&$maxpagesize=2"}' + headers: + apim-request-id: + - c5431bdb-575e-45e7-be69-a951d5fcff4d + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"CE2D548504DEAA6FCA2C1D5928CB6CB3ABFB6E77A4249090762D432DB0FDD4C8"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c5431bdb-575e-45e7-be69-a951d5fcff4d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=90&$top=208&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=92&$top=206&$maxpagesize=2"}' + headers: + apim-request-id: + - aaf8a78f-16fc-4ce1-87ab-329f5aa895ac + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"0406B9E488FEBD3F22CAC5BC8FE05F7060CF46BFF51D6BE40C0BCB12865D6AAD"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - aaf8a78f-16fc-4ce1-87ab-329f5aa895ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=92&$top=206&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=94&$top=204&$maxpagesize=2"}' + headers: + apim-request-id: + - c9276ff2-60a7-40ad-8c1c-7f811869eb8b + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"34B28B12B43EEE7BA1481FF9CB2A36CDD4AB1BB38E624775C779F033BF459346"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9276ff2-60a7-40ad-8c1c-7f811869eb8b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=94&$top=204&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=96&$top=202&$maxpagesize=2"}' + headers: + apim-request-id: + - a4aa3f6a-cc23-4f7b-ad50-b80306fd4909 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"146B5BBE1D74AB2BDB87B0591F1F656F3F877DE6FBD31DF57708F8D5336EAB97"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a4aa3f6a-cc23-4f7b-ad50-b80306fd4909 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=96&$top=202&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=98&$top=200&$maxpagesize=2"}' + headers: + apim-request-id: + - 436dcbef-e7e9-4d2f-a380-658e40210140 + cache-control: + - public,max-age=1 + content-length: + - '722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"DE2312C5536C3FFF14CC74DE13D1583995CBA6FF40E6F1E36ED2E5D191D12D19"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 436dcbef-e7e9-4d2f-a380-658e40210140 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=98&$top=200&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=198&$maxpagesize=2"}' + headers: + apim-request-id: + - 22407c6a-00b5-43be-bf00-cb6b70c311ff + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"853CAC7CEF50883D31984226CAD8A36C615CF84439AB05B0383941BBBC9CF676"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 22407c6a-00b5-43be-bf00-cb6b70c311ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=198&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=102&$top=196&$maxpagesize=2"}' + headers: + apim-request-id: + - e5f821db-a964-4172-a418-1bbd79a607e6 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"3199E8BB71739B818A60562C1BA2310499DACA10E6425F8717B21D1DBA2C45D5"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5f821db-a964-4172-a418-1bbd79a607e6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=102&$top=196&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=104&$top=194&$maxpagesize=2"}' + headers: + apim-request-id: + - d049e242-189d-4d0e-a552-76535af89e00 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"DCD58DE7804F5B73185C7C9A94A77D6782B351E18180FD6DD3ABACA37DB28FF6"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d049e242-189d-4d0e-a552-76535af89e00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=104&$top=194&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=106&$top=192&$maxpagesize=2"}' + headers: + apim-request-id: + - a59d893b-7944-4c1c-b234-24965578b37a + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"763FD822BF1D996CBE8E5357FDB51C253A564F3B07BF9E3C572072078A94B639"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a59d893b-7944-4c1c-b234-24965578b37a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=106&$top=192&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=108&$top=190&$maxpagesize=2"}' + headers: + apim-request-id: + - ac9bc3de-b080-4ae9-b1cd-6d7251f833c6 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"40DD24D3988BBC6FD905888CD2161588FC9B981C9C2417E8234FB83A383C7759"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ac9bc3de-b080-4ae9-b1cd-6d7251f833c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=108&$top=190&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=110&$top=188&$maxpagesize=2"}' + headers: + apim-request-id: + - 03e1cf79-dee3-4e5c-ba0e-fc403a9e462c + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:57 GMT + etag: + - '"574146BC93F9712428A833308442C05748DAFBA6DE72E2DC452A351D51D236DD"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 03e1cf79-dee3-4e5c-ba0e-fc403a9e462c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=110&$top=188&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=112&$top=186&$maxpagesize=2"}' + headers: + apim-request-id: + - 1d710530-7eb2-4b58-8525-93f000863efa + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"081CB21E0393889637AF751F116ED835EB87848403DAAC89C5F208799E2C2803"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1d710530-7eb2-4b58-8525-93f000863efa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=112&$top=186&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=114&$top=184&$maxpagesize=2"}' + headers: + apim-request-id: + - a44d9e3d-7425-4b0f-b026-a73e82e46f9f + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"AB657CB1B56AA1940AE9BA357B6500365348E5A5E475210B797FD9BEEF768F7C"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a44d9e3d-7425-4b0f-b026-a73e82e46f9f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=114&$top=184&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=116&$top=182&$maxpagesize=2"}' + headers: + apim-request-id: + - d6b76d05-93b7-40e9-be96-fa1fb202ecb3 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"8AA93D27FAE6E175D52ACBD8FCF9295A83C37E6DDA8A66E84466415866FCA7F3"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d6b76d05-93b7-40e9-be96-fa1fb202ecb3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=116&$top=182&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=118&$top=180&$maxpagesize=2"}' + headers: + apim-request-id: + - e5efb60f-afcd-4a38-8b3d-18ef590009f6 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"69DF8CAA46C3370275FA192AB0A5FAC4976059097AB9A84A98A1500D73290A6F"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5efb60f-afcd-4a38-8b3d-18ef590009f6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=118&$top=180&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=120&$top=178&$maxpagesize=2"}' + headers: + apim-request-id: + - 8835254c-c962-4ccd-a9cf-3c3b5f46fd2d + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"92F962146B98941C753012D5AE397C204C90218954B4027FA1A7AE1B707EA9EE"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8835254c-c962-4ccd-a9cf-3c3b5f46fd2d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=120&$top=178&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=122&$top=176&$maxpagesize=2"}' + headers: + apim-request-id: + - e67d6df8-6e3e-451f-be21-74f2b4b64ef4 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"7198E79500DF12CEC9D3285EE4B87DD8E7C18E5E3384582C4D00DFE6DC6FABAD"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e67d6df8-6e3e-451f-be21-74f2b4b64ef4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=122&$top=176&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=124&$top=174&$maxpagesize=2"}' + headers: + apim-request-id: + - bffcda66-04d5-4590-bdb0-7806893a9df3 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"BBD859E6617E885CD96F0648CE38E72D0D8BD29EEF265D190D2EC1EBCC9C2B83"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bffcda66-04d5-4590-bdb0-7806893a9df3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=124&$top=174&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=126&$top=172&$maxpagesize=2"}' + headers: + apim-request-id: + - 76df0fbf-339d-42de-98bb-7794eafd1b2e + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"42B5501CA81F17134B4AD6EE7057EBC110FE6DEB05909FB129F974828448FF3C"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 76df0fbf-339d-42de-98bb-7794eafd1b2e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=126&$top=172&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=128&$top=170&$maxpagesize=2"}' + headers: + apim-request-id: + - 6c47ab8c-6830-4d56-9833-c7d6bc0ed9c6 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"C58F82BE2320D7576855CC7DBA0D6A64297CE415774D8FCB8E3E854D83D321B1"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6c47ab8c-6830-4d56-9833-c7d6bc0ed9c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=128&$top=170&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=130&$top=168&$maxpagesize=2"}' + headers: + apim-request-id: + - 8c8fb3a9-39ec-4157-ac2e-59df90ce6fb0 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"04B240D20AC9D129B932545F3916280F6358510D7DCCBCB3221F041788017CC8"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8c8fb3a9-39ec-4157-ac2e-59df90ce6fb0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=130&$top=168&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=132&$top=166&$maxpagesize=2"}' + headers: + apim-request-id: + - e9244c42-59b8-47eb-a392-a14bb394386a + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:58 GMT + etag: + - '"671EC5C47D5D918DDFCCA326F65F1234D2DBA70F52EFF71D7AF9029E1F01AF41"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e9244c42-59b8-47eb-a392-a14bb394386a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=132&$top=166&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=134&$top=164&$maxpagesize=2"}' + headers: + apim-request-id: + - 4ce97f29-7980-48bd-8a2c-b77fd317d9f7 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"DE48952416605AAAC4A8718C846A284496AB608B2C6EC6A00D984FC214921D8E"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4ce97f29-7980-48bd-8a2c-b77fd317d9f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=134&$top=164&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=136&$top=162&$maxpagesize=2"}' + headers: + apim-request-id: + - 95a30abf-15bc-4b3e-81bf-1a8da304910b + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"1C430A77F6CA23B39FFF597459EB0885522ACC2C4D3C001082CECA14C71A7997"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 95a30abf-15bc-4b3e-81bf-1a8da304910b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=136&$top=162&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=138&$top=160&$maxpagesize=2"}' + headers: + apim-request-id: + - 0b02d59b-6095-4672-96b2-e5cbed914b5f + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"E94A39A5738658AE8324949D6B348B0F9F1B50D1EB8D02E58C1E851CD8633471"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0b02d59b-6095-4672-96b2-e5cbed914b5f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=138&$top=160&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=140&$top=158&$maxpagesize=2"}' + headers: + apim-request-id: + - 1bbb15f0-aa44-42e0-8c28-4e9079c01127 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"6861973A9F7B17513F665653C7022541DB4F8A166980A113207E1FD4FCB85E26"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1bbb15f0-aa44-42e0-8c28-4e9079c01127 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=140&$top=158&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=142&$top=156&$maxpagesize=2"}' + headers: + apim-request-id: + - d6b3341a-1fa5-43cf-b92c-159c958317b4 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"DCC3E759E774BEF95FAA8307524E420F39504D92FAC71CE4BC45B8766D660ABE"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d6b3341a-1fa5-43cf-b92c-159c958317b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=142&$top=156&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=144&$top=154&$maxpagesize=2"}' + headers: + apim-request-id: + - 61e0c2b0-1468-4101-9c72-2679a2b1b8c6 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"C49B5A169AA199B907CD9BAC2B2895C1DBC3889D53DA73A8468E78D9C260924B"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 61e0c2b0-1468-4101-9c72-2679a2b1b8c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=144&$top=154&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=146&$top=152&$maxpagesize=2"}' + headers: + apim-request-id: + - e93e2795-e123-43e2-ae55-5b12d99a915b + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"B98D7185E89B44224D4859C74F9022FB7206E59D3182D79815D66F35F1FF65D8"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e93e2795-e123-43e2-ae55-5b12d99a915b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=146&$top=152&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=148&$top=150&$maxpagesize=2"}' + headers: + apim-request-id: + - 2f5c15ba-3215-4fd3-a96e-671bf4214914 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"39A52AA9BE5D6C2F325EEAA053A4CBB195C1F1346804CE122CCDF2998791A527"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2f5c15ba-3215-4fd3-a96e-671bf4214914 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=148&$top=150&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","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/batches?$skip=150&$top=148&$maxpagesize=2"}' + headers: + apim-request-id: + - 1ff3d89c-1774-456d-a8ad-8f8bdc7b8f98 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"8810C2EF88F17DF4734B021ACCC8278D230FE50B7A53831A895E2186570DBFB7"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1ff3d89c-1774-456d-a8ad-8f8bdc7b8f98 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=148&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=152&$top=146&$maxpagesize=2"}' + headers: + apim-request-id: + - aa95520c-22fd-469e-802f-022588aeac48 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"9D8FD461AA14342F52C7EF3449F57D5232987356F2C00208955D01378E8FDE82"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - aa95520c-22fd-469e-802f-022588aeac48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=152&$top=146&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=154&$top=144&$maxpagesize=2"}' + headers: + apim-request-id: + - 47e59a66-e628-452f-8742-c80ab64e6774 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:20:59 GMT + etag: + - '"E452FC6D159A283FAD963C9F2705283F097555CFCEC46FE080C9DA1F30420498"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 47e59a66-e628-452f-8742-c80ab64e6774 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=154&$top=144&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=156&$top=142&$maxpagesize=2"}' + headers: + apim-request-id: + - 2f85bf5d-8f69-49d0-a028-c1aa10539573 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"0D4569EC5FA7AD50B2F21E0F147B8AAA246E1FA0EBFD3799B7632493B006D84A"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2f85bf5d-8f69-49d0-a028-c1aa10539573 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=156&$top=142&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","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/batches?$skip=158&$top=140&$maxpagesize=2"}' + headers: + apim-request-id: + - c3991fb9-16ca-4e50-b76a-2483f1840ac7 + cache-control: + - public,max-age=1 + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"87373240FBCD6A7605B22D178FBD04959AF657033A2ECB79DEBED34CB7AD9DCC"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c3991fb9-16ca-4e50-b76a-2483f1840ac7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=158&$top=140&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","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/batches?$skip=160&$top=138&$maxpagesize=2"}' + headers: + apim-request-id: + - 61ccc7aa-2a3a-4c60-838d-32eef570f3e4 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"395996FAAA2112A243F4D040795D3E28C6922E2D9CB852CC90D26D73E2C81948"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 61ccc7aa-2a3a-4c60-838d-32eef570f3e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=160&$top=138&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=162&$top=136&$maxpagesize=2"}' + headers: + apim-request-id: + - 6fab2bdd-a2de-4eec-a632-c63897ab6e73 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"FEB5974512EF76B4F33009CC3365AF88FFA34BE3E890795190BE91E2D02C9911"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6fab2bdd-a2de-4eec-a632-c63897ab6e73 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=162&$top=136&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","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/batches?$skip=164&$top=134&$maxpagesize=2"}' + headers: + apim-request-id: + - 5051723c-2f27-45fa-a097-5269e9199a0d + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"B861E32A5EBA578C4FCB469C8283E6A931EA1E4F407DACE0F98C47875E0E5855"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5051723c-2f27-45fa-a097-5269e9199a0d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=164&$top=134&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","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/batches?$skip=166&$top=132&$maxpagesize=2"}' + headers: + apim-request-id: + - 853a1e6d-f4fa-4e75-8413-30a01c0315e7 + cache-control: + - public,max-age=1 + content-length: + - '717' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"1203AFD0D35FF388935E2C6FF74FAB0F82CC8AB0DDD277F6979E56B7C6EE025E"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 853a1e6d-f4fa-4e75-8413-30a01c0315e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=166&$top=132&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=168&$top=130&$maxpagesize=2"}' + headers: + apim-request-id: + - 64f031b4-5bda-454d-a05e-376c0792ecdb + cache-control: + - public,max-age=1 + content-length: + - '998' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"79F02BE982C6DCFD9F7F945CEFAC903B0E149511FFACF25D0BA3C7A9CBD48621"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 64f031b4-5bda-454d-a05e-376c0792ecdb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=168&$top=130&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=170&$top=128&$maxpagesize=2"}' + headers: + apim-request-id: + - e8d3ecc8-d9d2-4ad1-97e3-746de4a05022 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"EB6ED0EC6F479FDC7ED2ECB54924C6252E29F5D15C1D1C909C2E4D72EFD8E376"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e8d3ecc8-d9d2-4ad1-97e3-746de4a05022 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=170&$top=128&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=172&$top=126&$maxpagesize=2"}' + headers: + apim-request-id: + - ebd4cf53-ca44-46ac-8f45-29306548c2ec + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"79D0DD3F6BCA1648A154D7F112DE36B6212CD7774E7D5E720DFBD73ADA8E068B"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ebd4cf53-ca44-46ac-8f45-29306548c2ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=172&$top=126&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","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/batches?$skip=174&$top=124&$maxpagesize=2"}' + headers: + apim-request-id: + - d9af7b46-54e3-436f-8618-a88b2f9e59f7 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"031801FBCD353550AB15C7B08799B0C35F354C4513E4144C805D982468363CAE"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d9af7b46-54e3-436f-8618-a88b2f9e59f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=174&$top=124&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","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/batches?$skip=176&$top=122&$maxpagesize=2"}' + headers: + apim-request-id: + - 241257e5-53bf-4ecf-9194-a3c4da498330 + cache-control: + - public,max-age=1 + content-length: + - '717' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"E28D87AE3B569C7FD88A6842531DAEF2DA0DE118DBF4A7268F54D8CD25F45479"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 241257e5-53bf-4ecf-9194-a3c4da498330 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=176&$top=122&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=178&$top=120&$maxpagesize=2"}' + headers: + apim-request-id: + - 0c06d4df-8fa7-4f37-95b0-97919e9cc1d9 + cache-control: + - public,max-age=1 + content-length: + - '999' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:00 GMT + etag: + - '"78FC4C7718FDA641D81D8B7B28EB7028BA7CFF05D2EF1D8642DB6E45B9167F48"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0c06d4df-8fa7-4f37-95b0-97919e9cc1d9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=178&$top=120&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=180&$top=118&$maxpagesize=2"}' + headers: + apim-request-id: + - fce09bf6-2247-4436-a49a-7b57296ec684 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"B477C68DA1F8B1EA449C0213947F92B731092F9883BAA10835B015C9DE8D72AD"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fce09bf6-2247-4436-a49a-7b57296ec684 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=180&$top=118&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=182&$top=116&$maxpagesize=2"}' + headers: + apim-request-id: + - 54e0e4e0-930e-4805-b9e7-fa71ace43d54 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"5355000C721F89D45A024A516FF784A05F9BAD3FD0DC518904F958EFBC710056"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 54e0e4e0-930e-4805-b9e7-fa71ace43d54 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=182&$top=116&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=184&$top=114&$maxpagesize=2"}' + headers: + apim-request-id: + - 5832b3db-dc2d-4165-b8ad-d43654ddf76f + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"EB976DA4BA6070D691F0744276A63F1A09C6B61F93F324C62C82DA8912EBBDA8"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5832b3db-dc2d-4165-b8ad-d43654ddf76f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=184&$top=114&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=186&$top=112&$maxpagesize=2"}' + headers: + apim-request-id: + - e223e345-9569-49da-98d6-63ebf0721904 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"6A99A19291F293BAB3FC6A5857222CBAC6179F65AE489A9B4DAEE1440ED475E5"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e223e345-9569-49da-98d6-63ebf0721904 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=186&$top=112&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=188&$top=110&$maxpagesize=2"}' + headers: + apim-request-id: + - 174852e5-6a1a-4042-8a13-82ec88a80eee + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"BF2B5440169AA62C142AFD84F0968374BB0131421CB0D29554FD4C91E883C4D8"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 174852e5-6a1a-4042-8a13-82ec88a80eee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=188&$top=110&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=190&$top=108&$maxpagesize=2"}' + headers: + apim-request-id: + - 9fafb2e0-f972-4d75-a322-1ac6dc989bb2 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"310E0FBFE5DE27CC0998FDB65AA1B0C5B3BE22202400788C546EBD4B8FBDFA80"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9fafb2e0-f972-4d75-a322-1ac6dc989bb2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=190&$top=108&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=192&$top=106&$maxpagesize=2"}' + headers: + apim-request-id: + - 903cd0aa-cfc1-4a9a-8292-7b8061c6cc7f + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"87EAA881D927BDA8DCD041E769D4BF3C7B23D319E9B36D10B2FBFC09ED3A3399"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 903cd0aa-cfc1-4a9a-8292-7b8061c6cc7f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=192&$top=106&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=194&$top=104&$maxpagesize=2"}' + headers: + apim-request-id: + - feb4abec-80ce-4758-b298-ff6ac9603f70 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"3451252CD2675D8E25104F620B83FA740706A9E88ACFA165AD4A5595CD6DA44E"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - feb4abec-80ce-4758-b298-ff6ac9603f70 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=194&$top=104&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=196&$top=102&$maxpagesize=2"}' + headers: + apim-request-id: + - 7f5a79c8-1e96-42b1-b9f3-ed5b522779db + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"2C0DF8DFF4A4F9110D153B02FE443CDB18764CA90DD882E69B2BD63667D10085"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7f5a79c8-1e96-42b1-b9f3-ed5b522779db + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=196&$top=102&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=198&$top=100&$maxpagesize=2"}' + headers: + apim-request-id: + - 738287bb-70ec-431b-9d15-16dcb409b35f + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"668A511BAADCF0275DB16C22F3243C37F67BDC3C5DC8290838FC8B748BD9CB5C"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 738287bb-70ec-431b-9d15-16dcb409b35f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=198&$top=100&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","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/batches?$skip=200&$top=98&$maxpagesize=2"}' + headers: + apim-request-id: + - a8566fd2-5769-4eaa-affd-2e900a0178f8 + cache-control: + - public,max-age=1 + content-length: + - '722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"3F232842B1E6F159C4261918C69C910EA1B8F9AAAF9414435709BAED3905FA36"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a8566fd2-5769-4eaa-affd-2e900a0178f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=98&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","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/batches?$skip=202&$top=96&$maxpagesize=2"}' + headers: + apim-request-id: + - 7996b2b9-ff7e-4ae9-8147-e0171d02041b + cache-control: + - public,max-age=1 + content-length: + - '721' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:01 GMT + etag: + - '"5412158E05B3911D7B3A6FC514FEC6D1148B9F1250102500515B4CC580497F68"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7996b2b9-ff7e-4ae9-8147-e0171d02041b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=202&$top=96&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=204&$top=94&$maxpagesize=2"}' + headers: + apim-request-id: + - 57ba63a0-7f7f-4755-ae80-57614bccb244 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"7F1F1F9E2F6AFB5AB2F6622B269FFE9C8C7644697F023151D41E3EE828D61431"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 57ba63a0-7f7f-4755-ae80-57614bccb244 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=204&$top=94&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=206&$top=92&$maxpagesize=2"}' + headers: + apim-request-id: + - 2ac510a2-fbb3-4913-83d3-70dde189b975 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"5EE2B307A8632713138CC322331447FADDE6B40DD26EEAE57800B2CEFDC55E44"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2ac510a2-fbb3-4913-83d3-70dde189b975 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=206&$top=92&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=208&$top=90&$maxpagesize=2"}' + headers: + apim-request-id: + - 2922b398-a3e5-4280-bd82-4e150b711889 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"9406D70F445FC4F74993808A5BDD80B35D0F8135B19927A9F0DAF5A58CBF982E"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2922b398-a3e5-4280-bd82-4e150b711889 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=208&$top=90&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=210&$top=88&$maxpagesize=2"}' + headers: + apim-request-id: + - b37cc811-7017-41a4-84a0-280167fa0ccb + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"9EEFD95416FD207B5F1E0E13A0F96493A2F8DA177D980B30CA1200C1240C615F"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b37cc811-7017-41a4-84a0-280167fa0ccb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=210&$top=88&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=212&$top=86&$maxpagesize=2"}' + headers: + apim-request-id: + - 37e9f55b-426f-4155-91d8-3e1307a6727a + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"F49C0074A2AC59642AEEE12C9DC5F459AA77393896EB196ADCA14B707F3DE563"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 37e9f55b-426f-4155-91d8-3e1307a6727a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=212&$top=86&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=214&$top=84&$maxpagesize=2"}' + headers: + apim-request-id: + - dc6a581b-dd4e-4068-8361-11cfe114c33f + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"F8FF7BB96289E3588980689E713D38853B9A52231C0EBABBA3A84E563E7CFC1F"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dc6a581b-dd4e-4068-8361-11cfe114c33f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=214&$top=84&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=216&$top=82&$maxpagesize=2"}' + headers: + apim-request-id: + - d075d967-5e17-40d2-a003-ebbca369540d + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"D6EDD802B15DEF61BA5FAA749B24A9F3533869B369AAFE4E69ED5214C232D479"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d075d967-5e17-40d2-a003-ebbca369540d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=216&$top=82&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=218&$top=80&$maxpagesize=2"}' + headers: + apim-request-id: + - 9b90fd98-091b-4d09-a60d-661174dedbb0 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"680585189D4D27F4FF4C58A2BEAF9D17C1EFB707CAA4CD2300A827CB7CE975C6"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9b90fd98-091b-4d09-a60d-661174dedbb0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=218&$top=80&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=220&$top=78&$maxpagesize=2"}' + headers: + apim-request-id: + - 743e20fa-3270-46dd-a806-3fc6ad8366dd + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"EE8BC8610D88B833027AA2D73E1847FD0924670714B90B4A0F14C9E57593F781"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 743e20fa-3270-46dd-a806-3fc6ad8366dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=220&$top=78&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=222&$top=76&$maxpagesize=2"}' + headers: + apim-request-id: + - 5cd85e55-96ca-4bf0-97ba-285215d38abf + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"4444B8D2F65DC4868BBC0BB6E90CC59405542A168CA23ADB2D8C931BB8730B6A"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5cd85e55-96ca-4bf0-97ba-285215d38abf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=222&$top=76&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=224&$top=74&$maxpagesize=2"}' + headers: + apim-request-id: + - 06701013-1733-405a-83d7-4f38da5fe695 + cache-control: + - public,max-age=1 + content-length: + - '722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"65DEBE61EEC3B0A15E98E690FB7123AF034299A3F53A4A23041A6B00B1712CDC"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 06701013-1733-405a-83d7-4f38da5fe695 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=224&$top=74&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","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/batches?$skip=226&$top=72&$maxpagesize=2"}' + headers: + apim-request-id: + - 0cfe6250-7c3a-4da1-921c-253f13c2a6d9 + cache-control: + - public,max-age=1 + content-length: + - '726' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"C1B99A50503CF311017BE69FE615A1C659AB8BC2AFB4983518BF511BF4CC21E9"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0cfe6250-7c3a-4da1-921c-253f13c2a6d9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=226&$top=72&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","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/batches?$skip=228&$top=70&$maxpagesize=2"}' + headers: + apim-request-id: + - b2fa7679-afb2-4ed3-8baf-672ffd870a09 + cache-control: + - public,max-age=1 + content-length: + - '726' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:02 GMT + etag: + - '"660B455C2EACEBB02CC925E31F161B64B25F4B3E22EEE1D3F7A3BDB7CBF78ED1"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b2fa7679-afb2-4ed3-8baf-672ffd870a09 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=228&$top=70&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=230&$top=68&$maxpagesize=2"}' + headers: + apim-request-id: + - 206819ec-2b34-4dc3-b23e-b81a03d2efed + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"A855D4DB6637E767A66FB7B443EE615F485A38E12F755E531BB0C3E527EA56BE"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 206819ec-2b34-4dc3-b23e-b81a03d2efed + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=230&$top=68&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=232&$top=66&$maxpagesize=2"}' + headers: + apim-request-id: + - aa387255-e81b-4be9-b624-fc93d54d86c0 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"C00C2CF087D2988D0CA17A0313E2146254335413DA313C6F008FE0F929CD6B7C"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - aa387255-e81b-4be9-b624-fc93d54d86c0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=232&$top=66&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=234&$top=64&$maxpagesize=2"}' + headers: + apim-request-id: + - 65f96916-55f7-498b-9f24-4d0adab090b1 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"A71446F3B885DE2B8343E24AB72CC190F1637B282CD4D482DC5859ECC640B791"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 65f96916-55f7-498b-9f24-4d0adab090b1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=234&$top=64&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=236&$top=62&$maxpagesize=2"}' + headers: + apim-request-id: + - 9032ce8a-386f-4408-8c0d-8ff9dda45a6d + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"02369CA324895FA25AFDED06A5A193E23A4FB95B72B4507E25E1740ABB911169"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9032ce8a-386f-4408-8c0d-8ff9dda45a6d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=236&$top=62&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=238&$top=60&$maxpagesize=2"}' + headers: + apim-request-id: + - 7bd7cef6-df1e-4fe1-9199-d09619e16f5b + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"B99CDD5C02D039F6DCC31251030A083021523731677219AAD236EB169C4EE5DD"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7bd7cef6-df1e-4fe1-9199-d09619e16f5b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=238&$top=60&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=240&$top=58&$maxpagesize=2"}' + headers: + apim-request-id: + - d95bf8f9-b071-40df-9bea-fa93e31d5dd1 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"21C20A59957CC013E46445F9F786FFE5E681E8012442C4CA63E2FF123A6E9C93"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d95bf8f9-b071-40df-9bea-fa93e31d5dd1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=240&$top=58&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=242&$top=56&$maxpagesize=2"}' + headers: + apim-request-id: + - 5b4bebac-e03b-48b4-afc8-bafc940e33f4 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"33CAD8E76035FFD43810E7BE673BE0A2EDD41E0A6160EFFED5F175C114E0C69C"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5b4bebac-e03b-48b4-afc8-bafc940e33f4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=242&$top=56&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=244&$top=54&$maxpagesize=2"}' + headers: + apim-request-id: + - 85865c75-2e69-41ed-9992-b1a5a53e7ae3 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"2E448EA8552F66EF0BF980A7646D2854C2C9E909ED3F1720C328C90E181F450A"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 85865c75-2e69-41ed-9992-b1a5a53e7ae3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=244&$top=54&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=246&$top=52&$maxpagesize=2"}' + headers: + apim-request-id: + - 03e7a66e-cb97-4957-b617-8eb8b4b3c818 + cache-control: + - public,max-age=1 + content-length: + - '722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"AAA6B6F384A17294B4A29DA05723BC0406EF8DD8E1E95390FA5BF4D0419D772F"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 03e7a66e-cb97-4957-b617-8eb8b4b3c818 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=246&$top=52&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=248&$top=50&$maxpagesize=2"}' + headers: + apim-request-id: + - 7d90c431-7139-4917-91c1-5b32938413ef + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"5B99D3C6087A57FFAB7CABC7DF2C8CFF549D883CB70B736535E1E66168540C82"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7d90c431-7139-4917-91c1-5b32938413ef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=248&$top=50&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=48&$maxpagesize=2"}' + headers: + apim-request-id: + - ddc2f21f-7221-430c-9ecf-2c0b1c62bc4e + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"DB781C0DAA285E71A87562F18C37C021D807D4FD67979BBA97164B70F786ED51"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ddc2f21f-7221-430c-9ecf-2c0b1c62bc4e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=48&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","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/batches?$skip=252&$top=46&$maxpagesize=2"}' + headers: + apim-request-id: + - 5013b39d-ece5-43b8-96d8-8d74f7ccac20 + cache-control: + - public,max-age=1 + content-length: + - '722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"FF5199ED2599FF26CA736FAFA57EAAF8A05623D7B921F5085CB7E37B09A8515F"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5013b39d-ece5-43b8-96d8-8d74f7ccac20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=252&$top=46&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","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/batches?$skip=254&$top=44&$maxpagesize=2"}' + headers: + apim-request-id: + - a3f168a2-011e-4960-a54a-13d10bd5677e + cache-control: + - public,max-age=1 + content-length: + - '722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:04 GMT + etag: + - '"4B756EC64869B9D6B1F6A3B84017B3B87DE853EF1D4BC254B0C3163E5247F2FD"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a3f168a2-011e-4960-a54a-13d10bd5677e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=254&$top=44&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=256&$top=42&$maxpagesize=2"}' + headers: + apim-request-id: + - eb4f2a88-577f-46c4-99f7-27e9ed1e3a40 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"D04D5B34B15C94F5BC668D1BC4E131FDFA4D3C45860F0DFA7B706AE23E6BA75B"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eb4f2a88-577f-46c4-99f7-27e9ed1e3a40 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=256&$top=42&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=258&$top=40&$maxpagesize=2"}' + headers: + apim-request-id: + - 29972dbb-81b1-453a-91c8-8b619cb69cb3 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"A32CF06FB280216A04CC2664D69301C7C6C22B0D92688AA0F798091C48460460"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 29972dbb-81b1-453a-91c8-8b619cb69cb3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=258&$top=40&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=260&$top=38&$maxpagesize=2"}' + headers: + apim-request-id: + - 4a2eaf95-4be7-4dd7-a0a3-6b86a5c89328 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"D06D06B5EBF78B9116F744AC3A117DE4C961EE8ECA0958A214CDC05B3CC4EF58"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4a2eaf95-4be7-4dd7-a0a3-6b86a5c89328 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=260&$top=38&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=262&$top=36&$maxpagesize=2"}' + headers: + apim-request-id: + - 9b20b233-79d3-46db-a237-58b021cb90df + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"ACD555A6AD00A2CDA254C8C281E393C814A01D4FD073BAA3E42139A86E9E6F85"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9b20b233-79d3-46db-a237-58b021cb90df + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=262&$top=36&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=264&$top=34&$maxpagesize=2"}' + headers: + apim-request-id: + - b9243489-ba35-4f92-9bce-c2d1ca0af945 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"6E1A0A3B2A170FCC63E352F5C8FCA2C9BF43321D99FE2CDC963BE76ACB717645"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b9243489-ba35-4f92-9bce-c2d1ca0af945 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=264&$top=34&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=266&$top=32&$maxpagesize=2"}' + headers: + apim-request-id: + - dbc45285-4029-459e-8678-241e75ce2977 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"B51E2C4AC16F412B59C33E2640EBDDEB88D8CB0A86DF6F0B07A0CBA00E2CAEA5"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dbc45285-4029-459e-8678-241e75ce2977 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=266&$top=32&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=268&$top=30&$maxpagesize=2"}' + headers: + apim-request-id: + - 4e6f5fee-dea6-488e-a934-4faa0a5f3e01 + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"9816FFE724AB8C8B49A98827F870C14D8492C6C6D5E39E882107A6C59C6841C6"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4e6f5fee-dea6-488e-a934-4faa0a5f3e01 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=268&$top=30&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=270&$top=28&$maxpagesize=2"}' + headers: + apim-request-id: + - e00ce6b5-f921-44e8-9cb5-a231a73b7c7f + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"E86F16FD7122DE8699D24E7023C79A012AC084FD83217A0CA6D37FEA5E87BCBA"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e00ce6b5-f921-44e8-9cb5-a231a73b7c7f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=270&$top=28&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=272&$top=26&$maxpagesize=2"}' + headers: + apim-request-id: + - 3fcdc6d7-2dbd-44a8-b98e-87613f8135e7 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"389AFD8ECCA04BD690A2D2926171DA349B4D6168D7F368335658C1C2ED298ED4"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3fcdc6d7-2dbd-44a8-b98e-87613f8135e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=272&$top=26&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=274&$top=24&$maxpagesize=2"}' + headers: + apim-request-id: + - 7dcb3c52-c044-43b2-9e96-cfe707caa68d + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"5A143644D876AED848E9347F2ABD959499174E52504613B9747F62D4466132B9"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7dcb3c52-c044-43b2-9e96-cfe707caa68d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=274&$top=24&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=276&$top=22&$maxpagesize=2"}' + headers: + apim-request-id: + - 9c315ae5-dea5-4081-8066-5486df80818e + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"5297D28C47F2B6DA8FBB3BFE61EAE57846F21F73B85BE72AFA211B0EA48927F7"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9c315ae5-dea5-4081-8066-5486df80818e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=276&$top=22&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","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/batches?$skip=278&$top=20&$maxpagesize=2"}' + headers: + apim-request-id: + - 548ea4a0-92be-415b-a3e9-013b9f09aa8f + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:05 GMT + etag: + - '"FB5A49285CF563947CD0331BDAB887EAA03D16037483AAE2CCCDB5E1A7EFA367"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 548ea4a0-92be-415b-a3e9-013b9f09aa8f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=278&$top=20&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","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/batches?$skip=280&$top=18&$maxpagesize=2"}' + headers: + apim-request-id: + - fec5e5ee-5f87-4542-a398-ff10a9266fff + cache-control: + - public,max-age=1 + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"33EBFAA854A6178C8D677520B4264CC13B1E3FC3403A7745F5545C680D3DAEB7"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fec5e5ee-5f87-4542-a398-ff10a9266fff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=280&$top=18&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=282&$top=16&$maxpagesize=2"}' + headers: + apim-request-id: + - a1f81f31-4781-4957-90c6-4fdf27186450 + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"2BE6770170EB736EAC68F29DDB4E22581D09C40E1ABA93B7A17557150C417E0B"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1f81f31-4781-4957-90c6-4fdf27186450 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=282&$top=16&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","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/batches?$skip=284&$top=14&$maxpagesize=2"}' + headers: + apim-request-id: + - 2c17dc11-bcd7-4d1a-bde4-6d906b63f9b9 + cache-control: + - public,max-age=1 + content-length: + - '723' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"B1C67AF4C195EA14D356DE4D7B5DFE3CA527008C609C2021A60D47C8F92B7B17"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2c17dc11-bcd7-4d1a-bde4-6d906b63f9b9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=284&$top=14&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","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/batches?$skip=286&$top=12&$maxpagesize=2"}' + headers: + apim-request-id: + - 2a955278-1dea-4eba-8cdc-95763be361f2 + cache-control: + - public,max-age=1 + content-length: + - '726' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"B6EF7996158AF500D9B2801D88BFD6E2BC530E460CB0767ACBB6B927235399F8"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2a955278-1dea-4eba-8cdc-95763be361f2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=286&$top=12&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","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/batches?$skip=288&$top=10&$maxpagesize=2"}' + headers: + apim-request-id: + - 065e8b64-552f-4f9f-adaa-44ab4669ddbb + cache-control: + - public,max-age=1 + content-length: + - '726' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"CF632E8632883CD66BF5FB7358FDFC0F2E96550FF904048AF8389E55F781EFE7"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 065e8b64-552f-4f9f-adaa-44ab4669ddbb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=288&$top=10&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","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/batches?$skip=290&$top=8&$maxpagesize=2"}' + headers: + apim-request-id: + - 0b6a4189-0cba-40c8-aec2-6779979fa0bc + cache-control: + - public,max-age=1 + content-length: + - '728' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"AABA1C83C67A38CDF4C875A8B30EFE1709C9438EFF459485C205E312E5695B46"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0b6a4189-0cba-40c8-aec2-6779979fa0bc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=290&$top=8&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","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/batches?$skip=292&$top=6&$maxpagesize=2"}' + headers: + apim-request-id: + - 66dcfa20-14d0-42eb-9ff9-7052bf4c62da + cache-control: + - public,max-age=1 + content-length: + - '726' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"9526CD664ACCD990E164FC46F9AC7E624687362ADE1D2750149CFDB5FB67ABF4"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 66dcfa20-14d0-42eb-9ff9-7052bf4c62da + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=292&$top=6&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","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/batches?$skip=294&$top=4&$maxpagesize=2"}' + headers: + apim-request-id: + - c866bfe1-a9cb-4fd4-a1e6-9d212ae11e32 + cache-control: + - public,max-age=1 + content-length: + - '726' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"A8613C8F4DE753E1B9681BD2CE074282EF213C15D8F799CAC479BA377187ECED"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c866bfe1-a9cb-4fd4-a1e6-9d212ae11e32 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=294&$top=4&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","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/batches?$skip=296&$top=2&$maxpagesize=2"}' + headers: + apim-request-id: + - ce7d3742-7b24-4188-905c-233fd060cd8a + cache-control: + - public,max-age=1 + content-length: + - '725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"23CB4E3D428BB2264C57B80581EB04F4F9EB7F7333FA8C1510EBBB92882D599D"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ce7d3742-7b24-4188-905c-233fd060cd8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=296&$top=2&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + headers: + apim-request-id: + - 7468c2dc-18cb-41b1-b935-d776d9f8bd90 + cache-control: + - public,max-age=1 + content-length: + - '599' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:21:06 GMT + etag: + - '"921CECCDF97A35F7B82C9298743BB273D5816A694D05BDD8AD3F2C70FFB500B3"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7468c2dc-18cb-41b1-b935-d776d9f8bd90 status: code: 200 message: OK 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 index bb6918d301ee..6db4748395c8 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src874c96cb-0000-44ac-93f2-c5df74befb68?restype=container + uri: https://redacted.blob.core.windows.net/src955c963e-d0d7-4536-8719-3c3262ffa7bd?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:13 GMT etag: - - '"0x8D91C7991806F47"' + - '"0x8D9258E9F9470D4"' last-modified: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 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: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src874c96cb-0000-44ac-93f2-c5df74befb68/bdfb7712-6786-44ec-9dcc-eb98c51a7e47.txt + uri: https://redacted.blob.core.windows.net/src955c963e-d0d7-4536-8719-3c3262ffa7bd/6e67c974-fe96-4a29-867f-45217e39859c.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:13 GMT etag: - - '"0x8D91C7991898448"' + - '"0x8D9258E9F9F94EA"' last-modified: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 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: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src874c96cb-0000-44ac-93f2-c5df74befb68/510c8078-cf14-4466-bd91-5c4e4a8ac4f0.txt + uri: https://redacted.blob.core.windows.net/src955c963e-d0d7-4536-8719-3c3262ffa7bd/890ec3b0-60bc-4c11-a11e-a03a4648cc04.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 GMT etag: - - '"0x8D91C799190D8A0"' + - '"0x8D9258E9FAED9F0"' last-modified: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target18e809a7-909b-499a-ab76-440dbf7ba811?restype=container + uri: https://redacted.blob.core.windows.net/target93677f1b-44e7-4609-8fa3-c291a96e37b9?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:50 GMT + - Wed, 02 Jun 2021 06:21:14 GMT etag: - - '"0x8D91C7991ABDB18"' + - '"0x8D9258E9FCDC0A1"' last-modified: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src874c96cb-0000-44ac-93f2-c5df74befb68?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target18e809a7-909b-499a-ab76-440dbf7ba811?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src955c963e-d0d7-4536-8719-3c3262ffa7bd?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target93677f1b-44e7-4609-8fa3-c291a96e37b9?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -187,7 +187,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -199,13 +199,13 @@ interactions: string: '' headers: apim-request-id: - - 65522248-7348-4f1e-99f6-20407dc49e74 + - 1729f566-2f3b-40cc-a08a-a7b18de8cb3d content-length: - '0' date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:15 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c45ece1e-a587-44b7-8110-eefe290ac732 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1c99372a-914c-4c66-aa27-9e7b41400d66 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -216,7 +216,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 65522248-7348-4f1e-99f6-20407dc49e74 + - 1729f566-2f3b-40cc-a08a-a7b18de8cb3d status: code: 202 message: Accepted @@ -224,7 +224,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -232,13 +232,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/batches/c45ece1e-a587-44b7-8110-eefe290ac732 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1c99372a-914c-4c66-aa27-9e7b41400d66 response: body: - string: '{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:51.3560618Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 3fc0c4a7-ebec-4030-8025-c4e60222cb64 + - 4cee0fdc-570c-40b0-b3b5-7fb5f4bfb1b0 cache-control: - public,max-age=1 content-length: @@ -246,12 +246,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:44 GMT etag: - - '"6E3131EEDA1DBEE8BEB3C28A0CF2CD927B6F8D8B15AC9CE32C5F94769AB8B41E"' + - '"279BF109AB0AB508F68D98C8C794847EDED268DCB5FAC590F8E38865611C7A8D"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -263,7 +263,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3fc0c4a7-ebec-4030-8025-c4e60222cb64 + - 4cee0fdc-570c-40b0-b3b5-7fb5f4bfb1b0 status: code: 200 message: OK @@ -281,11 +281,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srce74e1ac4-ad01-4176-ac3e-3a57dd5d8b7d?restype=container + uri: https://redacted.blob.core.windows.net/src72cd5017-0089-4314-9b2c-b5c1cafb2acc?restype=container response: body: string: '' @@ -293,11 +293,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT etag: - - '"0x8D91C79920E7C75"' + - '"0x8D9258EB24D8C57"' last-modified: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -325,11 +325,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srce74e1ac4-ad01-4176-ac3e-3a57dd5d8b7d/55ea79d2-acc3-412c-b007-eb6300e7c7d9.txt + uri: https://redacted.blob.core.windows.net/src72cd5017-0089-4314-9b2c-b5c1cafb2acc/1abee335-95ff-4e15-b0eb-b4ff9247eaf7.txt response: body: string: '' @@ -339,11 +339,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT etag: - - '"0x8D91C7992190D5D"' + - '"0x8D9258EB256E3CD"' last-modified: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -375,11 +375,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srce74e1ac4-ad01-4176-ac3e-3a57dd5d8b7d/313d4b61-4001-4f9a-b67c-6e744bac0070.txt + uri: https://redacted.blob.core.windows.net/src72cd5017-0089-4314-9b2c-b5c1cafb2acc/f92fc374-3e53-4619-812d-215267ce5edc.txt response: body: string: '' @@ -389,11 +389,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT etag: - - '"0x8D91C79922432FA"' + - '"0x8D9258EB25EAD67"' last-modified: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -419,11 +419,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target08e0f6ce-093e-4be2-9630-a2e274c3cbd6?restype=container + uri: https://redacted.blob.core.windows.net/target653d49da-fa29-40b0-b929-193b2a015642?restype=container response: body: string: '' @@ -431,11 +431,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:21:45 GMT etag: - - '"0x8D91C79924917CF"' + - '"0x8D9258EB27A8DC1"' last-modified: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:21:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -444,8 +444,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce74e1ac4-ad01-4176-ac3e-3a57dd5d8b7d?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target08e0f6ce-093e-4be2-9630-a2e274c3cbd6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src72cd5017-0089-4314-9b2c-b5c1cafb2acc?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target653d49da-fa29-40b0-b929-193b2a015642?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -467,16 +467,16 @@ interactions: string: '' headers: apim-request-id: - - 836b1260-7a6c-4a6e-8bbb-5430ab14e99d + - b182c906-5665-471a-8ac8-b5b849ceb7e1 content-length: - '0' date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:21:45 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/256cf99c-ab58-434d-9cf4-10a94adaabae + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a6d8171c-c94f-4673-ae9c-0f673b7abe89 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -484,7 +484,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 836b1260-7a6c-4a6e-8bbb-5430ab14e99d + - b182c906-5665-471a-8ac8-b5b849ceb7e1 status: code: 202 message: Accepted @@ -492,7 +492,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -500,26 +500,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/batches/256cf99c-ab58-434d-9cf4-10a94adaabae + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a6d8171c-c94f-4673-ae9c-0f673b7abe89 response: body: - string: '{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1416173Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - e41a7049-a417-43fe-bc9e-0db6d454fe1d + - db714ffe-a4b9-452c-8659-bf2152000a06 cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:15 GMT etag: - - '"0ED09CF0CF29A45F2606B183B03D4544978F863A153E168F7463E963B1E70BDD"' + - '"DFF24CF83BC38F3E3C6394379E8D0A79FBFEA4D1F4B31601716B9EBE073674AD"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -531,7 +531,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e41a7049-a417-43fe-bc9e-0db6d454fe1d + - db714ffe-a4b9-452c-8659-bf2152000a06 status: code: 200 message: OK @@ -549,11 +549,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src48899586-700a-4738-adbe-51808e40e878?restype=container + uri: https://redacted.blob.core.windows.net/srcf76a36dd-cb89-4ef2-98d4-573f91399a8c?restype=container response: body: string: '' @@ -561,11 +561,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:22:15 GMT etag: - - '"0x8D91C799283FF71"' + - '"0x8D9258EC4BC489F"' last-modified: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -593,11 +593,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src48899586-700a-4738-adbe-51808e40e878/0d6d4af4-a20a-4ae3-bec7-d45ca25d8063.txt + uri: https://redacted.blob.core.windows.net/srcf76a36dd-cb89-4ef2-98d4-573f91399a8c/f0915d30-5eab-418e-b4f3-247c91e3340e.txt response: body: string: '' @@ -607,11 +607,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:15 GMT etag: - - '"0x8D91C79928C56AC"' + - '"0x8D9258EC4C90022"' last-modified: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -643,11 +643,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src48899586-700a-4738-adbe-51808e40e878/0243d9cb-2d94-48df-acd7-ff8c1def871f.txt + uri: https://redacted.blob.core.windows.net/srcf76a36dd-cb89-4ef2-98d4-573f91399a8c/7a8d23fb-7215-4d6d-981b-3a4367185cd4.txt response: body: string: '' @@ -657,11 +657,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:15 GMT etag: - - '"0x8D91C799294BCA5"' + - '"0x8D9258EC4D2026C"' last-modified: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -687,11 +687,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete832178f-0ed1-4f8c-9706-92958e9e26c1?restype=container + uri: https://redacted.blob.core.windows.net/target3875ba03-5a36-4ab2-b5f2-97d54f78effb?restype=container response: body: string: '' @@ -699,11 +699,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:51 GMT + - Wed, 02 Jun 2021 06:22:16 GMT etag: - - '"0x8D91C7992B70B97"' + - '"0x8D9258EC4EB3451"' last-modified: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -712,8 +712,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src48899586-700a-4738-adbe-51808e40e878?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete832178f-0ed1-4f8c-9706-92958e9e26c1?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf76a36dd-cb89-4ef2-98d4-573f91399a8c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3875ba03-5a36-4ab2-b5f2-97d54f78effb?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -723,7 +723,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -735,16 +735,16 @@ interactions: string: '' headers: apim-request-id: - - cf96e04f-1a36-4e5c-babe-a28011e7304e + - e1423883-d696-47c2-85a8-43a843f6e18f content-length: - '0' date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:16 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/be091f2d-0c5e-4ed2-8c4f-db95ff144ac3 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -752,7 +752,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cf96e04f-1a36-4e5c-babe-a28011e7304e + - e1423883-d696-47c2-85a8-43a843f6e18f status: code: 202 message: Accepted @@ -760,7 +760,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -768,13 +768,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/batches/f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/be091f2d-0c5e-4ed2-8c4f-db95ff144ac3 response: body: - string: '{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.8533998Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - ba855a05-1195-4884-97a7-ed992777c76f + - 1369f108-101d-4576-b371-bf4edfd666c5 cache-control: - public,max-age=1 content-length: @@ -782,12 +782,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:46 GMT etag: - - '"F7F027AB3045362EA411277A110887C0D4BB66F3D5E9972742F81AFBC0112531"' + - '"2B7A814B07ECB972F2F2087787FD5F4471EC4CFCC68274A44453806381ED6070"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -799,7 +799,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ba855a05-1195-4884-97a7-ed992777c76f + - 1369f108-101d-4576-b371-bf4edfd666c5 status: code: 200 message: OK @@ -817,11 +817,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccaaa2055-89ac-4439-aa81-3b346a5354fd?restype=container + uri: https://redacted.blob.core.windows.net/srcf290eaad-ddde-4218-a4dd-f93bb319c144?restype=container response: body: string: '' @@ -829,11 +829,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:46 GMT etag: - - '"0x8D91C7992F34F68"' + - '"0x8D9258ED7163D4F"' last-modified: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:22:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -861,11 +861,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:22:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccaaa2055-89ac-4439-aa81-3b346a5354fd/df4c7c1f-3471-48b1-b025-e70327530e51.txt + uri: https://redacted.blob.core.windows.net/srcf290eaad-ddde-4218-a4dd-f93bb319c144/5d82524c-691e-4b5e-89d6-7cf528308275.txt response: body: string: '' @@ -875,11 +875,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:47 GMT etag: - - '"0x8D91C7992FBCE9C"' + - '"0x8D9258ED7304519"' last-modified: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:22:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -911,11 +911,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:22:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccaaa2055-89ac-4439-aa81-3b346a5354fd/da1dc248-e642-42e1-91be-75cec4009d68.txt + uri: https://redacted.blob.core.windows.net/srcf290eaad-ddde-4218-a4dd-f93bb319c144/dbb2f97e-9891-4852-8243-5523c9305277.txt response: body: string: '' @@ -925,11 +925,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:47 GMT etag: - - '"0x8D91C7993043488"' + - '"0x8D9258ED73D3FB1"' last-modified: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:22:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -955,11 +955,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:22:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target96121d3f-93ec-498a-98ba-a966a3d7463f?restype=container + uri: https://redacted.blob.core.windows.net/target037df650-d494-463e-96b1-77cc523ae592?restype=container response: body: string: '' @@ -967,11 +967,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:52 GMT + - Wed, 02 Jun 2021 06:22:47 GMT etag: - - '"0x8D91C7993270C46"' + - '"0x8D9258ED75C9263"' last-modified: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:22:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -980,8 +980,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccaaa2055-89ac-4439-aa81-3b346a5354fd?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target96121d3f-93ec-498a-98ba-a966a3d7463f?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf290eaad-ddde-4218-a4dd-f93bb319c144?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target037df650-d494-463e-96b1-77cc523ae592?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -991,7 +991,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -1003,16 +1003,16 @@ interactions: string: '' headers: apim-request-id: - - 1fe9a7a5-7dad-4409-ab2f-e15410eed131 + - 61bc21f3-4598-4540-891f-5865b4ba373c content-length: - '0' date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:22:46 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/11556860-fd22-4a37-b7f4-e4d28d060b49 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e5e62427-f4e5-4dd0-bf56-054c82989581 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -1020,7 +1020,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1fe9a7a5-7dad-4409-ab2f-e15410eed131 + - 61bc21f3-4598-4540-891f-5865b4ba373c status: code: 202 message: Accepted @@ -1028,7 +1028,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -1036,13 +1036,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/batches/11556860-fd22-4a37-b7f4-e4d28d060b49 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e5e62427-f4e5-4dd0-bf56-054c82989581 response: body: - string: '{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.5761847Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 4c697561-8d0b-4c7b-926a-5901843edadd + - 62e5b55f-1293-40fd-a2d2-82eb3ebe6a06 cache-control: - public,max-age=1 content-length: @@ -1050,12 +1050,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:17 GMT etag: - - '"4CBAC8B4EAFB5161F50758DD5DE0F904891B19BB73FA42BA12D017B91D1E3364"' + - '"FCCE2605F3B4E1E4D107A6275A4EFF09DD1042FBDF9540CA2643AB69C572C712"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1067,7 +1067,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4c697561-8d0b-4c7b-926a-5901843edadd + - 62e5b55f-1293-40fd-a2d2-82eb3ebe6a06 status: code: 200 message: OK @@ -1085,11 +1085,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src11b0449c-5a90-4dce-a3d8-cae537f3d8e1?restype=container + uri: https://redacted.blob.core.windows.net/srcb28c312e-e15f-41bf-980c-3410f1c322fc?restype=container response: body: string: '' @@ -1097,11 +1097,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:17 GMT etag: - - '"0x8D91C7993609649"' + - '"0x8D9258EE9A85F68"' last-modified: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1129,11 +1129,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src11b0449c-5a90-4dce-a3d8-cae537f3d8e1/99895815-78ae-40f8-801f-34917b0b77e8.txt + uri: https://redacted.blob.core.windows.net/srcb28c312e-e15f-41bf-980c-3410f1c322fc/79e8bcf3-4f69-4be6-9867-449de4dd1ea6.txt response: body: string: '' @@ -1143,11 +1143,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:17 GMT etag: - - '"0x8D91C7993705093"' + - '"0x8D9258EE9B3C9E8"' last-modified: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1179,11 +1179,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src11b0449c-5a90-4dce-a3d8-cae537f3d8e1/3a8facb0-b7d9-47db-86be-55e9af0f21a4.txt + uri: https://redacted.blob.core.windows.net/srcb28c312e-e15f-41bf-980c-3410f1c322fc/0bb48185-13e1-4712-b912-766b78f5726c.txt response: body: string: '' @@ -1193,11 +1193,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:17 GMT etag: - - '"0x8D91C79937CFD14"' + - '"0x8D9258EE9BD688E"' last-modified: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1223,11 +1223,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target3683832c-fba7-4212-8c8a-81200da07d2f?restype=container + uri: https://redacted.blob.core.windows.net/target7fa92c6c-5ea9-42a3-a71b-ba9c531be227?restype=container response: body: string: '' @@ -1235,11 +1235,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:53 GMT + - Wed, 02 Jun 2021 06:23:18 GMT etag: - - '"0x8D91C79939D4BE0"' + - '"0x8D9258EE9E98F7E"' last-modified: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1248,8 +1248,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src11b0449c-5a90-4dce-a3d8-cae537f3d8e1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3683832c-fba7-4212-8c8a-81200da07d2f?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb28c312e-e15f-41bf-980c-3410f1c322fc?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7fa92c6c-5ea9-42a3-a71b-ba9c531be227?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1259,7 +1259,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -1271,16 +1271,16 @@ interactions: string: '' headers: apim-request-id: - - fc7ac1ab-bb52-418a-80a3-6041d94cefe7 + - 9aa5a30a-39b0-40fb-9c03-028babbae160 content-length: - '0' date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:18 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/956a1130-92c4-425f-8775-73a60b6a605c + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b96e7c8c-2efb-45e9-a754-bb310eb7276b set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -1288,7 +1288,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - fc7ac1ab-bb52-418a-80a3-6041d94cefe7 + - 9aa5a30a-39b0-40fb-9c03-028babbae160 status: code: 202 message: Accepted @@ -1296,7 +1296,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -1304,26 +1304,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/batches/956a1130-92c4-425f-8775-73a60b6a605c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b96e7c8c-2efb-45e9-a754-bb310eb7276b response: body: - string: '{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.3595989Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 16e08143-9540-4c9b-aa69-c8d1fda902f6 + - c9452594-2928-4559-b012-920d21658049 cache-control: - public,max-age=1 content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:48 GMT etag: - - '"4B67B028FB3A64C66F5D0F99BE41106587E9466ED8F5921E11CFE2142414CD57"' + - '"B51230E023067DB86358849262568E0EFCEC5F5ACD60E4D963E6CE9CE8571043"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1335,7 +1335,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 16e08143-9540-4c9b-aa69-c8d1fda902f6 + - c9452594-2928-4559-b012-920d21658049 status: code: 200 message: OK @@ -1353,11 +1353,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f2ec4bf-685d-4c95-882f-2446eea109f6?restype=container + uri: https://redacted.blob.core.windows.net/src313a28d0-ccf1-4261-a34d-2346acacf58e?restype=container response: body: string: '' @@ -1365,11 +1365,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:48 GMT etag: - - '"0x8D91C7993D4C4FB"' + - '"0x8D9258EFC07DDD2"' last-modified: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1397,11 +1397,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f2ec4bf-685d-4c95-882f-2446eea109f6/0604ed62-82a4-4ed1-a58f-fd0cd5f58d0e.txt + uri: https://redacted.blob.core.windows.net/src313a28d0-ccf1-4261-a34d-2346acacf58e/28724b8f-31c4-4956-b092-5cd4082f8ea2.txt response: body: string: '' @@ -1411,11 +1411,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:48 GMT etag: - - '"0x8D91C7993E0650B"' + - '"0x8D9258EFC13936E"' last-modified: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1447,11 +1447,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f2ec4bf-685d-4c95-882f-2446eea109f6/4d0b034c-2105-49f2-9ab0-956c18065718.txt + uri: https://redacted.blob.core.windows.net/src313a28d0-ccf1-4261-a34d-2346acacf58e/f57cdcb2-c0fb-4ab4-8656-8ab655ba885e.txt response: body: string: '' @@ -1461,11 +1461,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:48 GMT etag: - - '"0x8D91C7993EB8A9C"' + - '"0x8D9258EFC1B35EB"' last-modified: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1491,11 +1491,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target7a2d606b-5ad1-4d57-b7b4-9cff2cf6f6d2?restype=container + uri: https://redacted.blob.core.windows.net/target390f449c-526d-43ad-8ddb-46f02a74ca8c?restype=container response: body: string: '' @@ -1503,11 +1503,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT etag: - - '"0x8D91C799407C079"' + - '"0x8D9258EFC361E65"' last-modified: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1516,8 +1516,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1f2ec4bf-685d-4c95-882f-2446eea109f6?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7a2d606b-5ad1-4d57-b7b4-9cff2cf6f6d2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src313a28d0-ccf1-4261-a34d-2346acacf58e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target390f449c-526d-43ad-8ddb-46f02a74ca8c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1539,16 +1539,16 @@ interactions: string: '' headers: apim-request-id: - - 333b353d-f442-4624-927a-e20e65ca771e + - 8d5bf1a5-3b20-4166-9d4a-f7d47368873e content-length: - '0' date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:23:49 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6a0b47a5-1280-45e5-84cd-4b3d662a3f85 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0059556e-4270-4204-bdb5-d87881f3d47b set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -1556,7 +1556,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 333b353d-f442-4624-927a-e20e65ca771e + - 8d5bf1a5-3b20-4166-9d4a-f7d47368873e status: code: 202 message: Accepted @@ -1564,7 +1564,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -1572,13 +1572,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/batches/6a0b47a5-1280-45e5-84cd-4b3d662a3f85 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0059556e-4270-4204-bdb5-d87881f3d47b response: body: - string: '{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.0597187Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 90cfd342-a1a7-493b-958b-157f87ff6ce7 + - c856923c-7bbc-4a41-91ad-cade472cdd0a cache-control: - public,max-age=1 content-length: @@ -1586,12 +1586,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:19 GMT etag: - - '"310D0BF369593D3B6354F5072FA6876ED4A0619B65B874248C22A21E459AF90F"' + - '"F79A651236DCA38BBDBB6C63D1229D5E35A1F0B71AB5104C6C263C5743E7464A"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1603,7 +1603,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 90cfd342-a1a7-493b-958b-157f87ff6ce7 + - c856923c-7bbc-4a41-91ad-cade472cdd0a status: code: 200 message: OK @@ -1621,11 +1621,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc66a95e0-79a6-4c0a-be54-3225db14f050?restype=container + uri: https://redacted.blob.core.windows.net/src79dd58b6-d05d-42fa-9f9f-6502b95de8e5?restype=container response: body: string: '' @@ -1633,11 +1633,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:24:19 GMT etag: - - '"0x8D91C7994398D23"' + - '"0x8D9258F0E5811AF"' last-modified: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1665,11 +1665,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc66a95e0-79a6-4c0a-be54-3225db14f050/f0083570-9820-4e07-9450-13ba0f356cda.txt + uri: https://redacted.blob.core.windows.net/src79dd58b6-d05d-42fa-9f9f-6502b95de8e5/72346546-3de6-43d0-8c69-0787301b160c.txt response: body: string: '' @@ -1679,11 +1679,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:24:19 GMT etag: - - '"0x8D91C799442BB48"' + - '"0x8D9258F0E5F8344"' last-modified: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1715,11 +1715,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc66a95e0-79a6-4c0a-be54-3225db14f050/348211ca-9ec6-49d8-97eb-39952afa0fbf.txt + uri: https://redacted.blob.core.windows.net/src79dd58b6-d05d-42fa-9f9f-6502b95de8e5/2e882e3c-690f-4be9-9520-6d1e7ea25a8f.txt response: body: string: '' @@ -1729,11 +1729,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:54 GMT + - Wed, 02 Jun 2021 06:24:20 GMT etag: - - '"0x8D91C79944E2F19"' + - '"0x8D9258F0E66FEA7"' last-modified: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1759,11 +1759,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targeta532c895-54e8-4939-a048-5b41fc721c0c?restype=container + uri: https://redacted.blob.core.windows.net/targetc55f9203-0eb6-4168-868e-9eb35e1800eb?restype=container response: body: string: '' @@ -1771,11 +1771,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:19 GMT etag: - - '"0x8D91C79946F05AF"' + - '"0x8D9258F0E867ACB"' last-modified: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1784,8 +1784,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc66a95e0-79a6-4c0a-be54-3225db14f050?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta532c895-54e8-4939-a048-5b41fc721c0c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src79dd58b6-d05d-42fa-9f9f-6502b95de8e5?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc55f9203-0eb6-4168-868e-9eb35e1800eb?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1795,7 +1795,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -1807,16 +1807,16 @@ interactions: string: '' headers: apim-request-id: - - b7f727e9-5114-42e0-a8f1-53b588ab9092 + - 9af9d5ef-db3d-4d9c-9c4e-15999f91cfed content-length: - '0' date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:20 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/3ba142b1-513b-4d57-a901-9704ca2c327b set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -1824,7 +1824,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b7f727e9-5114-42e0-a8f1-53b588ab9092 + - 9af9d5ef-db3d-4d9c-9c4e-15999f91cfed status: code: 202 message: Accepted @@ -1832,7 +1832,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -1840,13 +1840,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/batches/3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/3ba142b1-513b-4d57-a901-9704ca2c327b response: body: - string: '{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.7272179Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 909ca30e-bf35-4ce6-bfb6-7f1c16093074 + - 2559965e-3c8a-4178-bdb7-7f76c478693c cache-control: - public,max-age=1 content-length: @@ -1854,9 +1854,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:50 GMT etag: - - '"DC3EBE4576B1575FE9CF0D56E64C02972920F52F264D2C933137B9931DA04593"' + - '"2D1A81461ACDFB4E131D888C79C2E9A4CE9E53279EE01C9F8F36BAE26238C0FD"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -1871,7 +1871,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 909ca30e-bf35-4ce6-bfb6-7f1c16093074 + - 2559965e-3c8a-4178-bdb7-7f76c478693c status: code: 200 message: OK @@ -1889,11 +1889,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src81ce54e3-8292-4e1b-b929-e95223413f1f?restype=container + uri: https://redacted.blob.core.windows.net/src71a01d61-6d85-496b-9401-031cc36bd1d2?restype=container response: body: string: '' @@ -1901,11 +1901,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:50 GMT etag: - - '"0x8D91C7994A94A12"' + - '"0x8D9258F20B89716"' last-modified: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:24:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1933,11 +1933,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:24:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src81ce54e3-8292-4e1b-b929-e95223413f1f/45c70267-fe46-4ea5-9764-c02261c9cd94.txt + uri: https://redacted.blob.core.windows.net/src71a01d61-6d85-496b-9401-031cc36bd1d2/f37d809a-0afa-4d33-8484-2b50d7f3a517.txt response: body: string: '' @@ -1947,11 +1947,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:50 GMT etag: - - '"0x8D91C7994B58F59"' + - '"0x8D9258F20C4A4E6"' last-modified: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:24:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1983,11 +1983,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:24:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src81ce54e3-8292-4e1b-b929-e95223413f1f/7c4cf6be-516a-46c3-a643-e2c4eca8d7d6.txt + uri: https://redacted.blob.core.windows.net/src71a01d61-6d85-496b-9401-031cc36bd1d2/ed9bbfa2-b316-4ea3-9e33-5c79c38ec44c.txt response: body: string: '' @@ -1997,11 +1997,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:50 GMT etag: - - '"0x8D91C7994BDA730"' + - '"0x8D9258F20CDF562"' last-modified: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:24:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2027,11 +2027,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:24:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetddeef742-9b3a-42d5-a939-936194025829?restype=container + uri: https://redacted.blob.core.windows.net/target5c05f449-abf7-4134-b1ab-7ea210808a80?restype=container response: body: string: '' @@ -2039,11 +2039,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:55 GMT + - Wed, 02 Jun 2021 06:24:50 GMT etag: - - '"0x8D91C7994D7B8B5"' + - '"0x8D9258F20F2EB02"' last-modified: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:24:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2052,8 +2052,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src81ce54e3-8292-4e1b-b929-e95223413f1f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetddeef742-9b3a-42d5-a939-936194025829?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src71a01d61-6d85-496b-9401-031cc36bd1d2?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5c05f449-abf7-4134-b1ab-7ea210808a80?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2063,7 +2063,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '492' Content-Type: - application/json User-Agent: @@ -2075,13 +2075,13 @@ interactions: string: '' headers: apim-request-id: - - 4d020698-0b6c-46d5-9091-48dc283a2b55 + - 0701fb1b-e808-405f-a650-bda3425ac581 content-length: - '0' date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:24:51 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7f619d5d-ff7d-41d5-95ea-00977b441de7 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9489ef1e-74db-4b81-aec5-5b713b9e26a9 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2092,7 +2092,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4d020698-0b6c-46d5-9091-48dc283a2b55 + - 0701fb1b-e808-405f-a650-bda3425ac581 status: code: 202 message: Accepted @@ -2100,7 +2100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -2108,13 +2108,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/batches/7f619d5d-ff7d-41d5-95ea-00977b441de7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9489ef1e-74db-4b81-aec5-5b713b9e26a9 response: body: - string: '{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.3959248Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 4a8d6b47-e3ad-4d62-8ae0-11196b0f4c36 + - 24265030-4959-4c48-99d6-a4aa901c9542 cache-control: - public,max-age=1 content-length: @@ -2122,9 +2122,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT etag: - - '"ED17125FC9C6089EEAF654DCE549B914A2D460FD742F07DF101D1A010CD2DD46"' + - '"52478A1071674AE89D6B73BA147F1EF61712302D435EA18397878F25F904B3F4"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2139,7 +2139,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4a8d6b47-e3ad-4d62-8ae0-11196b0f4c36 + - 24265030-4959-4c48-99d6-a4aa901c9542 status: code: 200 message: OK @@ -2157,11 +2157,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca8e15523-3c2d-44f6-9560-fe629e9b6479?restype=container + uri: https://redacted.blob.core.windows.net/srccd4157d5-b279-4525-90d6-33880f7e932f?restype=container response: body: string: '' @@ -2169,11 +2169,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT etag: - - '"0x8D91C79950A26D8"' + - '"0x8D9258F3319505B"' last-modified: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2201,11 +2201,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca8e15523-3c2d-44f6-9560-fe629e9b6479/8cf7fda3-6e8b-446b-9b85-77883199b8d8.txt + uri: https://redacted.blob.core.windows.net/srccd4157d5-b279-4525-90d6-33880f7e932f/435d352d-5292-4462-bb2f-784883f9d543.txt response: body: string: '' @@ -2215,11 +2215,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT etag: - - '"0x8D91C799512DBA9"' + - '"0x8D9258F33261CA2"' last-modified: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2251,11 +2251,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca8e15523-3c2d-44f6-9560-fe629e9b6479/4b9d3ada-8e29-46b6-acf7-6f62496b6313.txt + uri: https://redacted.blob.core.windows.net/srccd4157d5-b279-4525-90d6-33880f7e932f/9e9c446b-9d04-4ac5-b70b-fcffdac7db85.txt response: body: string: '' @@ -2265,11 +2265,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT etag: - - '"0x8D91C79951ACC5E"' + - '"0x8D9258F3333DAB8"' last-modified: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2295,11 +2295,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target9049a4f1-f18a-47e3-8496-f8190fa46af4?restype=container + uri: https://redacted.blob.core.windows.net/targetad20535b-4f48-47cb-b687-99e77e88c8d2?restype=container response: body: string: '' @@ -2307,11 +2307,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:21 GMT etag: - - '"0x8D91C79953AF5D7"' + - '"0x8D9258F33578196"' last-modified: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2320,8 +2320,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca8e15523-3c2d-44f6-9560-fe629e9b6479?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9049a4f1-f18a-47e3-8496-f8190fa46af4?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccd4157d5-b279-4525-90d6-33880f7e932f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetad20535b-4f48-47cb-b687-99e77e88c8d2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2331,7 +2331,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -2343,13 +2343,13 @@ interactions: string: '' headers: apim-request-id: - - df6da861-0fdf-41e8-a001-87215f4a4336 + - 672d9b5b-9243-4a84-a079-e4bfd79b20fa content-length: - '0' date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:22 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a1885abf-1fc7-4563-af6e-a827c1ed9212 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c82fd91c-9a2b-4246-aeec-cddaef911a14 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2360,7 +2360,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - df6da861-0fdf-41e8-a001-87215f4a4336 + - 672d9b5b-9243-4a84-a079-e4bfd79b20fa status: code: 202 message: Accepted @@ -2368,7 +2368,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -2376,26 +2376,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/batches/a1885abf-1fc7-4563-af6e-a827c1ed9212 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c82fd91c-9a2b-4246-aeec-cddaef911a14 response: body: - string: '{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:57.054413Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - d311a10a-4825-43d6-917e-b1760fc20e9e + - d68e8b1e-3901-4f36-a978-34ca9c0e2a30 cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:51 GMT etag: - - '"186707D55EDA4A4CD17D30CDA2EF5CFAEF10143057AE4E4572728C87F63F2E4C"' + - '"693B56233EAF858832A86879E6B81EC1084F3CE617D896304228E01D8052044F"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2407,7 +2407,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d311a10a-4825-43d6-917e-b1760fc20e9e + - d68e8b1e-3901-4f36-a978-34ca9c0e2a30 status: code: 200 message: OK @@ -2425,11 +2425,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfdf76ea0-6641-4b0d-a136-956420615935?restype=container + uri: https://redacted.blob.core.windows.net/src600f8d23-b61c-4cc7-816f-df2d17b7085c?restype=container response: body: string: '' @@ -2437,11 +2437,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:52 GMT etag: - - '"0x8D91C79956D33EC"' + - '"0x8D9258F45A19DF6"' last-modified: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2469,11 +2469,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfdf76ea0-6641-4b0d-a136-956420615935/d59a2f17-1b14-43d1-ab92-c63bda585893.txt + uri: https://redacted.blob.core.windows.net/src600f8d23-b61c-4cc7-816f-df2d17b7085c/d78c5dd1-d802-4db3-9b2c-b97830a06a50.txt response: body: string: '' @@ -2483,11 +2483,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:52 GMT etag: - - '"0x8D91C799575F572"' + - '"0x8D9258F45ACFD36"' last-modified: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2519,11 +2519,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfdf76ea0-6641-4b0d-a136-956420615935/a188a0f6-1f42-49db-b3ae-b96749b5518e.txt + uri: https://redacted.blob.core.windows.net/src600f8d23-b61c-4cc7-816f-df2d17b7085c/cb436b76-b216-49c1-91ba-69817168b736.txt response: body: string: '' @@ -2533,11 +2533,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:56 GMT + - Wed, 02 Jun 2021 06:25:52 GMT etag: - - '"0x8D91C79957ED0A4"' + - '"0x8D9258F45B58A46"' last-modified: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2563,11 +2563,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target35baf9f4-2b55-49e3-9287-01cfc27e9c56?restype=container + uri: https://redacted.blob.core.windows.net/target767dc6d6-645f-4399-91c9-fe2e903128b2?restype=container response: body: string: '' @@ -2575,11 +2575,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:52 GMT etag: - - '"0x8D91C79959E6B82"' + - '"0x8D9258F45D64292"' last-modified: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2588,8 +2588,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfdf76ea0-6641-4b0d-a136-956420615935?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target35baf9f4-2b55-49e3-9287-01cfc27e9c56?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src600f8d23-b61c-4cc7-816f-df2d17b7085c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target767dc6d6-645f-4399-91c9-fe2e903128b2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2599,7 +2599,7 @@ interactions: Connection: - keep-alive Content-Length: - - '482' + - '488' Content-Type: - application/json User-Agent: @@ -2611,16 +2611,16 @@ interactions: string: '' headers: apim-request-id: - - c6456cf4-9221-41a4-a282-18c07593584b + - 9fda445c-bae7-4fa1-a86b-a760dfa02059 content-length: - '0' date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:25:53 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c36c2bc2-3619-4157-9e35-0a3a75d07f45 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cc22ccf1-a409-4dff-9bec-f8b9aaea5f27 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -2628,7 +2628,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c6456cf4-9221-41a4-a282-18c07593584b + - 9fda445c-bae7-4fa1-a86b-a760dfa02059 status: code: 202 message: Accepted @@ -2636,7 +2636,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -2644,13 +2644,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/batches/c36c2bc2-3619-4157-9e35-0a3a75d07f45 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cc22ccf1-a409-4dff-9bec-f8b9aaea5f27 response: body: - string: '{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:57.7063173Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: apim-request-id: - - 1defd430-9068-47b0-ac5a-a97b54fc3f62 + - be06e524-14a3-440c-a65f-77069f7c9f1f cache-control: - public,max-age=1 content-length: @@ -2658,9 +2658,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:26:23 GMT etag: - - '"A9B7B0D505555045DBF7DE62133F1CFF6D2AEEED7D6DE2473F3EB54E38EE2F0F"' + - '"CC55A59886C9EECAA8217DDEC045BEA60D442E6BCCB31F7BA3008627A01F53B2"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - be06e524-14a3-440c-a65f-77069f7c9f1f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0 + response: + body: + string: '{"value":[{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=258&$maxpagesize=50"}' + headers: + apim-request-id: + - 569cf1da-c396-4fcf-84a3-33e39ff2e7ba + cache-control: + - public,max-age=1 + content-length: + - '14802' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:23 GMT + etag: + - '"D80B2014B5075FD65FE81DF3EE9B38EE1F808D26FF64D40A7440908145FE4948"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2675,7 +2722,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1defd430-9068-47b0-ac5a-a97b54fc3f62 + - 569cf1da-c396-4fcf-84a3-33e39ff2e7ba status: code: 200 message: OK @@ -2691,23 +2738,215 @@ 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/batches?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=258&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=208&$maxpagesize=50"}' + headers: + apim-request-id: + - cd8364ae-b4e2-42aa-9d82-117fffb5dee8 + cache-control: + - public,max-age=1 + content-length: + - '14825' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:23 GMT + etag: + - '"348753079BA21C55F0B82DC29B90FA98D36AF5B426513726EFF2DF840B8227F6"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cd8364ae-b4e2-42aa-9d82-117fffb5dee8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=208&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=158&$maxpagesize=50"}' + headers: + apim-request-id: + - 9a71c7a9-d26f-4c88-9d32-77c1f3232ac0 + cache-control: + - public,max-age=1 + content-length: + - '14777' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:23 GMT + etag: + - '"E6AA43840BF3600DE40E6C5C5D9D6E5157C02E25C1582E6061048AA3AA40A94E"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9a71c7a9-d26f-4c88-9d32-77c1f3232ac0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=158&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=108&$maxpagesize=50"}' + headers: + apim-request-id: + - bf84152d-c9cf-4a78-8db2-bda60997c628 + cache-control: + - public,max-age=1 + content-length: + - '15316' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:23 GMT + etag: + - '"CE7F8E4423847FFA32154B1CA00F834E8BB92C2CDBE2ACAD3CA1C6374AF27843"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bf84152d-c9cf-4a78-8db2-bda60997c628 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=108&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=58&$maxpagesize=50"}' + headers: + apim-request-id: + - 956fccae-43d2-45d4-aa63-27034500bb4a + cache-control: + - public,max-age=1 + content-length: + - '14779' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:24 GMT + etag: + - '"6B5126D524520CA32635DA978514DB10DBABBAC571DB13DBFD65672D3F150F5C"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 956fccae-43d2-45d4-aa63-27034500bb4a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=58&$maxpagesize=50 response: body: - string: '{"value":[{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:57.812724Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:57.5434292Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:57.5280015Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","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/batches?$skip=50&$top=19&$maxpagesize=50"}' + string: '{"value":[{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","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/batches?$skip=300&$top=8&$maxpagesize=50"}' headers: apim-request-id: - - 34ae11ad-cb06-4181-8b20-7cc5c568d896 + - 6a01da3b-c606-4a67-84c8-45a1a00fc8ee cache-control: - public,max-age=1 content-length: - - '14763' + - '14787' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:26:24 GMT etag: - - '"A7D9A254CDF977BD731494BAA821701F22029A3D1708399A57FCCFA56A86BF1F"' + - '"99FA062F2CB66F8D26D1DC2746AEE0BF7971422F23150AE36C94F4D6791DF8D4"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2722,7 +2961,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 34ae11ad-cb06-4181-8b20-7cc5c568d896 + - 6a01da3b-c606-4a67-84c8-45a1a00fc8ee status: code: 200 message: OK @@ -2738,23 +2977,23 @@ 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/batches?$skip=50&$top=19&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=8&$maxpagesize=50 response: body: - string: '{"value":[{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + string: '{"value":[{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' headers: apim-request-id: - - 807a2d33-e57e-4447-9281-c5053109035b + - bbf39a7e-9838-48f5-983b-c797e6056d00 cache-control: - public,max-age=1 content-length: - - '5597' + - '2365' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:26:24 GMT etag: - - '"1254E81A56FC55503AE36B3F06C4AB5A0C13414D847638C9B062E4B4F00499A8"' + - '"D41E7BB7114B16AA5AC4A0A19763685861A5EF069DFF958E119CD0D2628692D3"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2769,7 +3008,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 807a2d33-e57e-4447-9281-c5053109035b + - bbf39a7e-9838-48f5-983b-c797e6056d00 status: code: 200 message: OK @@ -2788,20 +3027,20 @@ interactions: uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=5 response: body: - string: '{"value":[{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","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/batches?$skip=55&$top=14&$maxpagesize=50"}' + string: '{"value":[{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=55&$top=253&$maxpagesize=50"}' headers: apim-request-id: - - c8b85bb9-1cdc-49d6-aa8e-c0f5a8bcd860 + - 0255775b-90e7-4cd8-8499-3ed36898215d cache-control: - public,max-age=1 content-length: - - '14777' + - '14807' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 06:26:24 GMT etag: - - '"EE96DA2F237B8B2E5F462908FEABE0ED9225EA2CBE52E3FDDF11FC7C1B17F615"' + - '"17ECBB5F28CCAFA374EFB0B112B59113AD30A1BB6A8394C834D2EC9F33986F48"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2816,7 +3055,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c8b85bb9-1cdc-49d6-aa8e-c0f5a8bcd860 + - 0255775b-90e7-4cd8-8499-3ed36898215d status: code: 200 message: OK @@ -2832,23 +3071,23 @@ 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/batches?$skip=55&$top=14&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=55&$top=253&$maxpagesize=50 response: body: - string: '{"value":[{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + string: '{"value":[{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=105&$top=203&$maxpagesize=50"}' headers: apim-request-id: - - 1e5244f6-633d-489f-9837-7aef27f5a457 + - 1933d721-7ee5-486a-8c2c-32176f3e6587 cache-control: - public,max-age=1 content-length: - - '4132' + - '14821' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 06:26:24 GMT etag: - - '"439F6F71C93BF527478C5453D3B687B83A356496802DA116840759DB2F24C6E2"' + - '"478802A0EB4902F3654829524DA9D2CD9EA4168F915015CFCE5D501B97E9ABCF"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -2863,7 +3102,246 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1e5244f6-633d-489f-9837-7aef27f5a457 + - 1933d721-7ee5-486a-8c2c-32176f3e6587 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=105&$top=203&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=155&$top=153&$maxpagesize=50"}' + headers: + apim-request-id: + - 20ab9a56-d1a7-465b-8d99-77ce84924018 + cache-control: + - public,max-age=1 + content-length: + - '14775' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:24 GMT + etag: + - '"69BAC50CBE57B0068A19163081B60D0C68B2295211459DE29AFB6E960A1B03D7"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 20ab9a56-d1a7-465b-8d99-77ce84924018 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=155&$top=153&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=205&$top=103&$maxpagesize=50"}' + headers: + apim-request-id: + - 880dc532-ad99-449c-814d-5da5b566f8a7 + cache-control: + - public,max-age=1 + content-length: + - '15317' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:24 GMT + etag: + - '"9469A8CE7749910C4902C126FA1AA7009FB13602C714C84D7324B66BB84DDFEA"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 880dc532-ad99-449c-814d-5da5b566f8a7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=205&$top=103&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=255&$top=53&$maxpagesize=50"}' + headers: + apim-request-id: + - c9ce1db5-540d-4be7-b7bd-c6476d3ae8c7 + cache-control: + - public,max-age=1 + content-length: + - '14779' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:25 GMT + etag: + - '"0031EE916F118D8498D70D52BBBD4B0E3E5840C255204144C5A5FED9C2CC65A3"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9ce1db5-540d-4be7-b7bd-c6476d3ae8c7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=255&$top=53&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","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/batches?$skip=305&$top=3&$maxpagesize=50"}' + headers: + apim-request-id: + - b9e65cd3-d364-40d6-b294-eaeeab7063fc + cache-control: + - public,max-age=1 + content-length: + - '14795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:25 GMT + etag: + - '"350FADA2A0DB27014B34BEE01F8A5A491F9B18353138C5915F65906FCA451D86"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b9e65cd3-d364-40d6-b294-eaeeab7063fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=305&$top=3&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + headers: + apim-request-id: + - 1c79ffeb-62e3-4be4-a9a4-8314fb3d8e92 + cache-control: + - public,max-age=1 + content-length: + - '893' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:26:25 GMT + etag: + - '"548DBC7C4B0044230F6C527FE69544CD14D9E008CF8F00CD39DCD7DB8DB3A4F0"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c79ffeb-62e3-4be4-a9a4-8314fb3d8e92 status: code: 200 message: OK 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 3068c0f0105c..6d67138928fd 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src78c5754a-29e2-4805-827a-cb4dd77c0ec7?restype=container + uri: https://redacted.blob.core.windows.net/srcfe5f8570-cc9e-49ee-9c2e-6209cc3eb821?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 15:30:47 GMT etag: - - '"0x8D91C79963CF4FA"' + - '"0x8D925DB6530C539"' last-modified: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 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: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src78c5754a-29e2-4805-827a-cb4dd77c0ec7/a7ad5ea8-c097-4497-8928-789d89649a43.txt + uri: https://redacted.blob.core.windows.net/srcfe5f8570-cc9e-49ee-9c2e-6209cc3eb821/cbda7440-f53c-4ea9-8c1e-aa0a8e43a010.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:57 GMT + - Wed, 02 Jun 2021 15:30:47 GMT etag: - - '"0x8D91C7996444075"' + - '"0x8D925DB6541F217"' last-modified: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 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: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src78c5754a-29e2-4805-827a-cb4dd77c0ec7/c7e69009-ee5f-4cd6-8ebe-e1db2a146025.txt + uri: https://redacted.blob.core.windows.net/srcfe5f8570-cc9e-49ee-9c2e-6209cc3eb821/39e47377-d001-479c-b3c2-6197f529bf87.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT etag: - - '"0x8D91C79964AD153"' + - '"0x8D925DB65491F55"' last-modified: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 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: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src78c5754a-29e2-4805-827a-cb4dd77c0ec7/e31d2c6a-41b9-4a2c-98a0-de278ced5026.txt + uri: https://redacted.blob.core.windows.net/srcfe5f8570-cc9e-49ee-9c2e-6209cc3eb821/d3d2d982-f3ae-42df-b230-eb12f31fbf5f.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT etag: - - '"0x8D91C799650ECF2"' + - '"0x8D925DB6550C1DA"' last-modified: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 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: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src78c5754a-29e2-4805-827a-cb4dd77c0ec7/d52d4350-27a6-4421-856f-d002b81172e8.txt + uri: https://redacted.blob.core.windows.net/srcfe5f8570-cc9e-49ee-9c2e-6209cc3eb821/5e4b6420-d187-401d-9178-efa83b14cb78.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT etag: - - '"0x8D91C799657A4E9"' + - '"0x8D925DB655900B2"' last-modified: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 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: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src78c5754a-29e2-4805-827a-cb4dd77c0ec7/db473131-0c23-47e7-b875-419c2ae4a151.txt + uri: https://redacted.blob.core.windows.net/srcfe5f8570-cc9e-49ee-9c2e-6209cc3eb821/d10993bc-7005-48ce-a055-387ede45c28f.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT etag: - - '"0x8D91C79965E0EBF"' + - '"0x8D925DB65658610"' last-modified: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -301,11 +301,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetd009e2f5-ac30-4e1b-a6b2-b53a24fe5dd6?restype=container + uri: https://redacted.blob.core.windows.net/target707875f9-2e8b-41d0-9b4a-be2dcb5c9aaf?restype=container response: body: string: '' @@ -313,11 +313,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:58 GMT + - Wed, 02 Jun 2021 15:30:47 GMT etag: - - '"0x8D91C7996791440"' + - '"0x8D925DB6584845F"' last-modified: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:30:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -326,8 +326,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src78c5754a-29e2-4805-827a-cb4dd77c0ec7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd009e2f5-ac30-4e1b-a6b2-b53a24fe5dd6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfe5f8570-cc9e-49ee-9c2e-6209cc3eb821?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target707875f9-2e8b-41d0-9b4a-be2dcb5c9aaf?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -344,53 +344,46 @@ interactions: body: string: '' headers: - apim-request-id: 5b6e29d1-86dc-422f-bfeb-6f99d476b2eb + apim-request-id: 2a48dac4-ea73-4fc6-9d35-d3f7ba75c50d content-length: '0' - date: Fri, 21 May 2021 16:57:59 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/64b9d713-9c6e-458e-9b83-ac6ffa78eafb - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:30:48 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/952041da-4da4-43c8-a8f3-8e1742f2beb9 + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5b6e29d1-86dc-422f-bfeb-6f99d476b2eb + x-requestid: 2a48dac4-ea73-4fc6-9d35-d3f7ba75c50d status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/64b9d713-9c6e-458e-9b83-ac6ffa78eafb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/952041da-4da4-43c8-a8f3-8e1742f2beb9 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFFiOJdvainYuAjQd2o2m6USAbQESPRRB/r2SgXTuQhzv+I53 - 8CM4sM3Qj60+qZ4sq8Z0rPqhOykkO03YdozTAAegyCg8vuVx8Qt/CmW2rmqtKqNqfdHWmdaZ/lg3 - 2nat/s7MjEleSHxY/4uZgiVB2VK+ew/yIRjz2+Juy4LxB9wdJAjO4KoDTOjnnBaZNiJOadd+Pcdw - jc91DfLFf1XFIVyJ5ye6973eMCIJxyKue/J4/ALb181lJAEAAA== + string: '{"id":"952041da-4da4-43c8-a8f3-8e1742f2beb9","createdDateTimeUtc":"2021-06-02T15:30:48.630454Z","lastActionDateTimeUtc":"2021-06-02T15:30:52.4630271Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: - apim-request-id: e172703f-652a-43e0-9778-026dd1a20bdc + apim-request-id: 24b3b222-ad62-401e-9954-76e8f59f78bd cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:57:59 GMT - etag: '"B970328997C194F11FEF4EEFBD0A38B6C115F599B778972CF37876069F75A2AD"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:31:18 GMT + etag: '"BA738C18BF7E95C8663F8B7E3C3AB9C3D9EC05AAFCB6D73486B0A0BDBF137C83"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e172703f-652a-43e0-9778-026dd1a20bdc + x-requestid: 24b3b222-ad62-401e-9954-76e8f59f78bd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/64b9d713-9c6e-458e-9b83-ac6ffa78eafb + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/952041da-4da4-43c8-a8f3-8e1742f2beb9 - request: body: null headers: @@ -405,11 +398,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f902c9c-6daf-466b-9967-5e5a57bbf14a?restype=container + uri: https://redacted.blob.core.windows.net/srca9206702-f7d7-40e6-b58d-8d48f87f27a8?restype=container response: body: string: '' @@ -417,11 +410,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:18 GMT etag: - - '"0x8D91C7996BA2BC6"' + - '"0x8D925DB78352DA2"' last-modified: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -449,11 +442,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f902c9c-6daf-466b-9967-5e5a57bbf14a/1a4e16f7-622d-4f39-bd8d-5412db272a17.txt + uri: https://redacted.blob.core.windows.net/srca9206702-f7d7-40e6-b58d-8d48f87f27a8/5ceab69b-1b79-4208-b3b3-d86fd3d0f9b6.txt response: body: string: '' @@ -463,11 +456,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:18 GMT etag: - - '"0x8D91C7996C40F35"' + - '"0x8D925DB78414CF6"' last-modified: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -499,11 +492,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f902c9c-6daf-466b-9967-5e5a57bbf14a/34129965-b776-4e70-8b74-adb449b8f7c0.txt + uri: https://redacted.blob.core.windows.net/srca9206702-f7d7-40e6-b58d-8d48f87f27a8/6cce5097-1e6d-47fe-a584-74fe1de26efd.txt response: body: string: '' @@ -513,11 +506,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:18 GMT etag: - - '"0x8D91C7996CD5FB4"' + - '"0x8D925DB784A9D77"' last-modified: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -549,11 +542,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f902c9c-6daf-466b-9967-5e5a57bbf14a/d044ec32-9a8d-47d4-8f5f-d37f265f4298.txt + uri: https://redacted.blob.core.windows.net/srca9206702-f7d7-40e6-b58d-8d48f87f27a8/597144ae-56ab-403f-95d2-b8832eeb4b58.txt response: body: string: '' @@ -563,11 +556,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:18 GMT etag: - - '"0x8D91C7996D57787"' + - '"0x8D925DB7858F7E9"' last-modified: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -599,11 +592,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f902c9c-6daf-466b-9967-5e5a57bbf14a/34cc895c-bb99-418e-8d0e-e42c5681c71e.txt + uri: https://redacted.blob.core.windows.net/srca9206702-f7d7-40e6-b58d-8d48f87f27a8/400bd865-636b-450d-bf70-1f6dd4dc9949.txt response: body: string: '' @@ -613,11 +606,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:18 GMT etag: - - '"0x8D91C7996DDDD84"' + - '"0x8D925DB7861FA3C"' last-modified: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -649,11 +642,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1f902c9c-6daf-466b-9967-5e5a57bbf14a/da1b866f-d465-40be-9d50-2ed22eaf6e57.txt + uri: https://redacted.blob.core.windows.net/srca9206702-f7d7-40e6-b58d-8d48f87f27a8/7bf3f60b-c53d-417f-ad6b-43f5ddd6707b.txt response: body: string: '' @@ -663,11 +656,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:18 GMT etag: - - '"0x8D91C7996E866C0"' + - '"0x8D925DB786A602E"' last-modified: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -693,11 +686,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target2b7cdb1d-306d-488e-b46d-83d76b0049ad?restype=container + uri: https://redacted.blob.core.windows.net/target3b40b0ab-2f8a-4794-aabf-8085805f5c5c?restype=container response: body: string: '' @@ -705,11 +698,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT etag: - - '"0x8D91C799703C0A5"' + - '"0x8D925DB78887E41"' last-modified: - - Fri, 21 May 2021 16:57:59 GMT + - Wed, 02 Jun 2021 15:31:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -718,14 +711,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1f902c9c-6daf-466b-9967-5e5a57bbf14a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2b7cdb1d-306d-488e-b46d-83d76b0049ad?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca9206702-f7d7-40e6-b58d-8d48f87f27a8?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3b40b0ab-2f8a-4794-aabf-8085805f5c5c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '488' + - '482' Content-Type: - application/json User-Agent: @@ -736,53 +729,46 @@ interactions: body: string: '' headers: - apim-request-id: 35ec4fe9-3aef-4cd4-962b-80f688dc6594 + apim-request-id: c2b05408-650f-4e99-9cfb-7ffc35fd2cb1 content-length: '0' - date: Fri, 21 May 2021 16:57:59 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/ad3d9a3f-f215-468e-806a-30acef584a94 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:31:19 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/037a7fa0-4dc3-4883-8f79-a92aa2b1bf20 + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 35ec4fe9-3aef-4cd4-962b-80f688dc6594 + x-requestid: c2b05408-650f-4e99-9cfb-7ffc35fd2cb1 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/ad3d9a3f-f215-468e-806a-30acef584a94 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/037a7fa0-4dc3-4883-8f79-a92aa2b1bf20 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVMiy5SjagnQuCjQdmo2g6USAbQESPRRB/r2SgXTOQhzv+I53 - CAN4wKEdDtiOajSNVV3vWDndo2o1Eo/WdXjoYAeUGIWH9zLOYeZvocIabRqlrTLNuem9dV7rN22c - bfv9pTATZjmShLi8iO1NxbKgrLncfUT5EkzlbXXXecb0C/4OEgUn8HoHI4appFXmlYhz3nRYPlO8 - pue6RPnh/6rqEC7E0xPd+k43TEjCqYrrljwef3Qu0lYkAQAA + string: '{"id":"037a7fa0-4dc3-4883-8f79-a92aa2b1bf20","createdDateTimeUtc":"2021-06-02T15:31:20.0453083Z","lastActionDateTimeUtc":"2021-06-02T15:31:23.4805698Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: - apim-request-id: 8d813d82-99fc-48de-841e-4e00e5dd72be + apim-request-id: e17fc7b8-7e72-45ad-b9cc-180f323d2154 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:57:59 GMT - etag: '"F7AD7014EA93B5D474617C3A4DD63CA234291526041979F5EB31819015381E49"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:31:49 GMT + etag: '"73675C5F458830D738009AAFF689FB5B15BA463DF601A29D826A717166E410C4"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8d813d82-99fc-48de-841e-4e00e5dd72be + x-requestid: e17fc7b8-7e72-45ad-b9cc-180f323d2154 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/ad3d9a3f-f215-468e-806a-30acef584a94 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/037a7fa0-4dc3-4883-8f79-a92aa2b1bf20 - request: body: null headers: @@ -797,11 +783,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src536ae238-7aa7-47d8-ba2b-c3ea9f9d95ff?restype=container + uri: https://redacted.blob.core.windows.net/srced096d89-1448-4562-8096-42f5fbcf958f?restype=container response: body: string: '' @@ -809,11 +795,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:49 GMT etag: - - '"0x8D91C7997302B94"' + - '"0x8D925DB8AE83389"' last-modified: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -841,11 +827,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src536ae238-7aa7-47d8-ba2b-c3ea9f9d95ff/2e2dd0d6-7172-457f-a146-baf2ddb2d456.txt + uri: https://redacted.blob.core.windows.net/srced096d89-1448-4562-8096-42f5fbcf958f/005f387a-f0a4-4db0-9ae8-9b67e422f921.txt response: body: string: '' @@ -855,11 +841,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:49 GMT etag: - - '"0x8D91C799738DF6D"' + - '"0x8D925DB8AF14105"' last-modified: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -891,11 +877,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src536ae238-7aa7-47d8-ba2b-c3ea9f9d95ff/c847e160-39a3-466e-9d74-8965d126deaa.txt + uri: https://redacted.blob.core.windows.net/srced096d89-1448-4562-8096-42f5fbcf958f/1a20fda0-e061-4833-9cf8-87b5dc9df4a1.txt response: body: string: '' @@ -905,11 +891,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT etag: - - '"0x8D91C799740D026"' + - '"0x8D925DB8AF8BC68"' last-modified: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -941,11 +927,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src536ae238-7aa7-47d8-ba2b-c3ea9f9d95ff/a1f9fbd9-bfea-4997-831c-535497c3a111.txt + uri: https://redacted.blob.core.windows.net/srced096d89-1448-4562-8096-42f5fbcf958f/e58045d9-40db-4745-8e04-d9eaa102b68b.txt response: body: string: '' @@ -955,11 +941,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT etag: - - '"0x8D91C799749361E"' + - '"0x8D925DB8B02822C"' last-modified: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -991,11 +977,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src536ae238-7aa7-47d8-ba2b-c3ea9f9d95ff/1ac1ac5f-c0a7-4857-a6af-c47d94510f06.txt + uri: https://redacted.blob.core.windows.net/srced096d89-1448-4562-8096-42f5fbcf958f/ca6ae9da-2a7b-4a0b-96cc-af1108801c83.txt response: body: string: '' @@ -1005,11 +991,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT etag: - - '"0x8D91C7997508A76"' + - '"0x8D925DB8B0AC10D"' last-modified: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1041,11 +1027,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src536ae238-7aa7-47d8-ba2b-c3ea9f9d95ff/c1a61b43-c54c-4301-a3cf-b6f690f6e7f8.txt + uri: https://redacted.blob.core.windows.net/srced096d89-1448-4562-8096-42f5fbcf958f/3c416583-ecf6-4718-9f16-1d861fcc6660.txt response: body: string: '' @@ -1055,11 +1041,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT etag: - - '"0x8D91C7997587B2B"' + - '"0x8D925DB8B174670"' last-modified: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1085,11 +1071,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target0a278b06-805d-4d76-bde7-543700c4d047?restype=container + uri: https://redacted.blob.core.windows.net/targetcf3dcd20-cfba-4842-a034-bb634f6307ca?restype=container response: body: string: '' @@ -1097,11 +1083,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:50 GMT etag: - - '"0x8D91C79976FC3A4"' + - '"0x8D925DB8B39F23F"' last-modified: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:31:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1110,8 +1096,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src536ae238-7aa7-47d8-ba2b-c3ea9f9d95ff?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0a278b06-805d-4d76-bde7-543700c4d047?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srced096d89-1448-4562-8096-42f5fbcf958f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetcf3dcd20-cfba-4842-a034-bb634f6307ca?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1128,53 +1114,46 @@ interactions: body: string: '' headers: - apim-request-id: 3c4647a1-7b4f-4204-a70e-8dc61e9c1ef8 + apim-request-id: 8222d86c-6cda-46c8-b9bf-92527e4eadfa content-length: '0' - date: Fri, 21 May 2021 16:58:00 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6e7410c9-3876-4bbc-b6ef-f67d82d17e1b - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:31:50 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f32e8631-bc29-48a4-94f1-de98861fa26b + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3c4647a1-7b4f-4204-a70e-8dc61e9c1ef8 + x-requestid: 8222d86c-6cda-46c8-b9bf-92527e4eadfa status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/6e7410c9-3876-4bbc-b6ef-f67d82d17e1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f32e8631-bc29-48a4-94f1-de98861fa26b response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMU/EMAyF/4vnC0py16RkQzAjJI4BNtd1j0htIyXugE7330kqHTOL9fyev+cr - xBECOPYno+lRHXvv1GkYSA2OJzU5P/Z2NJ7NAAegzCg8vtRxjgt/CFXWamuU7pQ1Z+NC1wetH/zR - Gm26r8rMWOSJJKb1n5htVBGUrdSz1yTvgrl+be62LJh/IFxBkuAMQR9gwjjXtMmyEXEpu47rW06X - fF/XJJ/8V9UcwpV4vqN73/M3ZiTh3MRlT263X3wwjdUjAQAA + string: '{"id":"f32e8631-bc29-48a4-94f1-de98861fa26b","createdDateTimeUtc":"2021-06-02T15:31:51.3977201Z","lastActionDateTimeUtc":"2021-06-02T15:31:58.5898438Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: - apim-request-id: 6af18c18-3e54-4690-8571-e5b5c905dada + apim-request-id: 506f3c31-ca07-40b2-a703-fc51e6658245 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:00 GMT - etag: '"9059AB69E041913FA8E6EEA64B1ABA5E1FF9F5AED9993C30AAF3BCA0143A4989"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:32:21 GMT + etag: '"642EF1262C656760652EE84AB151610480DDF5B6F15D85AEA6A6A628CEBA7D36"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6af18c18-3e54-4690-8571-e5b5c905dada + x-requestid: 506f3c31-ca07-40b2-a703-fc51e6658245 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6e7410c9-3876-4bbc-b6ef-f67d82d17e1b + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f32e8631-bc29-48a4-94f1-de98861fa26b - request: body: null headers: @@ -1189,11 +1168,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:32:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccd8ff1da-59f6-4e86-a292-e0288a3a1f99?restype=container + uri: https://redacted.blob.core.windows.net/srceb148a45-9602-4529-80ad-6ec9c475ed29?restype=container response: body: string: '' @@ -1201,11 +1180,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:32:21 GMT etag: - - '"0x8D91C79979BC513"' + - '"0x8D925DB9D8012BF"' last-modified: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:32:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1233,11 +1212,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccd8ff1da-59f6-4e86-a292-e0288a3a1f99/0c35ff3c-ecec-4622-894e-c1dcc7f0e5e7.txt + uri: https://redacted.blob.core.windows.net/srceb148a45-9602-4529-80ad-6ec9c475ed29/cfbe3699-d958-4c69-a226-1c316e9b96ee.txt response: body: string: '' @@ -1247,11 +1226,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:32:21 GMT etag: - - '"0x8D91C7997A34D85"' + - '"0x8D925DB9D876692"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1283,11 +1262,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccd8ff1da-59f6-4e86-a292-e0288a3a1f99/d992214b-ba16-48a2-a0b2-f2463660153a.txt + uri: https://redacted.blob.core.windows.net/srceb148a45-9602-4529-80ad-6ec9c475ed29/d07820cb-eb62-43c9-9ba6-1721a6bd2724.txt response: body: string: '' @@ -1297,11 +1276,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:32:21 GMT etag: - - '"0x8D91C7997AC4FDF"' + - '"0x8D925DB9D8E6CBB"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1333,11 +1312,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccd8ff1da-59f6-4e86-a292-e0288a3a1f99/ed9781d2-5dd1-4a24-8725-25fba30b3a8c.txt + uri: https://redacted.blob.core.windows.net/srceb148a45-9602-4529-80ad-6ec9c475ed29/0fa0d66d-509e-4908-a0ee-a7f562b0c178.txt response: body: string: '' @@ -1347,11 +1326,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:32:21 GMT etag: - - '"0x8D91C7997B5A066"' + - '"0x8D925DB9D94FD98"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1383,11 +1362,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccd8ff1da-59f6-4e86-a292-e0288a3a1f99/eb8cf2dc-be83-42be-893f-2552fd56201b.txt + uri: https://redacted.blob.core.windows.net/srceb148a45-9602-4529-80ad-6ec9c475ed29/b3cae60e-32e5-45d7-ac69-171a7808218f.txt response: body: string: '' @@ -1397,11 +1376,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:32:21 GMT etag: - - '"0x8D91C7997BC7F80"' + - '"0x8D925DB9D9BDCA8"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1433,11 +1412,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srccd8ff1da-59f6-4e86-a292-e0288a3a1f99/f5e75f47-e826-4d4b-9d71-c1f2f9820e6c.txt + uri: https://redacted.blob.core.windows.net/srceb148a45-9602-4529-80ad-6ec9c475ed29/4a41c5a2-497c-460d-aeae-828bb7a46007.txt response: body: string: '' @@ -1447,11 +1426,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:00 GMT + - Wed, 02 Jun 2021 15:32:21 GMT etag: - - '"0x8D91C7997C50C91"' + - '"0x8D925DB9DA4DEF8"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1477,11 +1456,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetaeb113bd-7649-466a-8d7b-41ccea0f4aea?restype=container + uri: https://redacted.blob.core.windows.net/targetb7c634f5-810b-4b48-a06a-e17ef1abee13?restype=container response: body: string: '' @@ -1489,11 +1468,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT etag: - - '"0x8D91C7997E682F6"' + - '"0x8D925DB9DC3E380"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1502,14 +1481,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccd8ff1da-59f6-4e86-a292-e0288a3a1f99?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetaeb113bd-7649-466a-8d7b-41ccea0f4aea?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srceb148a45-9602-4529-80ad-6ec9c475ed29?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb7c634f5-810b-4b48-a06a-e17ef1abee13?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -1520,53 +1499,46 @@ interactions: body: string: '' headers: - apim-request-id: 477fbc44-d3fc-4e0c-acf1-4f3afaca14b4 + apim-request-id: 1c1500c6-ca22-47e2-8ec2-3501f69c8658 content-length: '0' - date: Fri, 21 May 2021 16:58:01 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5301a198-71d7-49f7-b0f6-f086a47764a8 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:32:21 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6932315e-6bda-408a-a072-d5a13492cbae + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 477fbc44-d3fc-4e0c-acf1-4f3afaca14b4 + x-requestid: 1c1500c6-ca22-47e2-8ec2-3501f69c8658 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/5301a198-71d7-49f7-b0f6-f086a47764a8 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6932315e-6bda-408a-a072-d5a13492cbae response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMY/CMAyF/4tnguLQNCUbghmddNxwbL40hUhtIyXucEL890sqwXyL9fyev+cH - hB4s6J1Ewn0nDPZGNPvBiB85tGKQXUuNMW1DHWzAJU/s+1MZlzD5L3aFVVKhkFoovGBrdWclbjWi - MlpdCzNS5oPjEOf/YrpimYmXXO7OkT+ZUnlb3WWaKP2CfQBHphGs3MBAYSxplXlxzue86jB/pHhL - r3WO/O3fVdVxNDs/vtC173inRI59quK2Js/nH3rOQZUkAQAA + string: '{"id":"6932315e-6bda-408a-a072-d5a13492cbae","createdDateTimeUtc":"2021-06-02T15:32:22.5094146Z","lastActionDateTimeUtc":"2021-06-02T15:32:23.8496169Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' headers: - apim-request-id: ebc81cbe-0bae-4f8f-b103-54567c2642e1 + apim-request-id: cf4f01de-01f6-43bc-bd98-2576622bafb3 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:01 GMT - etag: '"9AE40DED1E267D21D2AEFDA7581C00023185E7DDD2267E9AC23BA65F10A73E79"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:32:52 GMT + etag: '"E4B2A9115A0BDBC8FA7930D692EBCDDB914C228D9AA9D84110BD0E2A7EDE7820"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ebc81cbe-0bae-4f8f-b103-54567c2642e1 + x-requestid: cf4f01de-01f6-43bc-bd98-2576622bafb3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5301a198-71d7-49f7-b0f6-f086a47764a8 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6932315e-6bda-408a-a072-d5a13492cbae - request: body: null headers: @@ -1581,11 +1553,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src29ab6fdb-3a08-4682-96a2-f18fedfd1a7e?restype=container + uri: https://redacted.blob.core.windows.net/src2b087926-1f1d-432f-a289-772f3d24d989?restype=container response: body: string: '' @@ -1593,11 +1565,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:52 GMT etag: - - '"0x8D91C799811DA7E"' + - '"0x8D925DBB015E450"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1625,11 +1597,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src29ab6fdb-3a08-4682-96a2-f18fedfd1a7e/69d4a08a-cd48-4222-86a2-88f36e4d2988.txt + uri: https://redacted.blob.core.windows.net/src2b087926-1f1d-432f-a289-772f3d24d989/91078f1e-afea-465c-bc8f-bdb8b955a887.txt response: body: string: '' @@ -1639,11 +1611,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT etag: - - '"0x8D91C79981A8F4F"' + - '"0x8D925DBB0209A38"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1675,11 +1647,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src29ab6fdb-3a08-4682-96a2-f18fedfd1a7e/3420d086-948c-4c53-b4df-e815ca3aba14.txt + uri: https://redacted.blob.core.windows.net/src2b087926-1f1d-432f-a289-772f3d24d989/7670c8ae-35a2-4062-9079-aad439ea86dd.txt response: body: string: '' @@ -1689,11 +1661,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT etag: - - '"0x8D91C799821E395"' + - '"0x8D925DBB02B236D"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1725,11 +1697,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src29ab6fdb-3a08-4682-96a2-f18fedfd1a7e/898594c2-8b57-4ebd-be87-3d8510e356ab.txt + uri: https://redacted.blob.core.windows.net/src2b087926-1f1d-432f-a289-772f3d24d989/1b0eb7b3-acc9-4507-a58b-390c0e34f363.txt response: body: string: '' @@ -1739,11 +1711,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT etag: - - '"0x8D91C79982BD070"' + - '"0x8D925DBB0336245"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1775,11 +1747,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src29ab6fdb-3a08-4682-96a2-f18fedfd1a7e/b1a4c43a-579d-45a0-bc3a-f4722ba3a284.txt + uri: https://redacted.blob.core.windows.net/src2b087926-1f1d-432f-a289-772f3d24d989/3a21f0b6-8bb5-4f3b-8292-902b28529518.txt response: body: string: '' @@ -1789,11 +1761,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT etag: - - '"0x8D91C799834ABAC"' + - '"0x8D925DBB03B52F4"' last-modified: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1825,11 +1797,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:02 GMT + - Wed, 02 Jun 2021 15:32:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src29ab6fdb-3a08-4682-96a2-f18fedfd1a7e/04a4a23c-8fc7-4e47-bdfc-9c1efd4fca3a.txt + uri: https://redacted.blob.core.windows.net/src2b087926-1f1d-432f-a289-772f3d24d989/f827d422-ad11-4ee0-989e-fa5e9cc43230.txt response: body: string: '' @@ -1839,11 +1811,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:32:53 GMT etag: - - '"0x8D91C79983D11AD"' + - '"0x8D925DBB043E004"' last-modified: - - Fri, 21 May 2021 16:58:02 GMT + - Wed, 02 Jun 2021 15:32:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1869,11 +1841,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:02 GMT + - Wed, 02 Jun 2021 15:33:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target5f068dc4-dc8a-4551-b2e0-f74599583a68?restype=container + uri: https://redacted.blob.core.windows.net/target2a5c1740-4362-435f-819d-3c91c07fe18b?restype=container response: body: string: '' @@ -1881,11 +1853,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:01 GMT + - Wed, 02 Jun 2021 15:33:10 GMT etag: - - '"0x8D91C79985BFFF1"' + - '"0x8D925DBBA9C98ED"' last-modified: - - Fri, 21 May 2021 16:58:02 GMT + - Wed, 02 Jun 2021 15:33:10 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1894,14 +1866,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src29ab6fdb-3a08-4682-96a2-f18fedfd1a7e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5f068dc4-dc8a-4551-b2e0-f74599583a68?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2b087926-1f1d-432f-a289-772f3d24d989?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2a5c1740-4362-435f-819d-3c91c07fe18b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -1912,19 +1884,79 @@ interactions: body: string: '' headers: - apim-request-id: 7a634e94-a408-4ec8-8cca-bac3b2814446 + apim-request-id: f9e4ec03-1c8d-4890-b047-0c4554b3c61c content-length: '0' - date: Fri, 21 May 2021 16:58:02 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/31320985-9f4c-4bf8-a66e-1a89016849c6 + date: Wed, 02 Jun 2021 15:33:10 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0bcccc81-50c4-4930-b8c7-8166cd494fd0 set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7a634e94-a408-4ec8-8cca-bac3b2814446 + x-requestid: f9e4ec03-1c8d-4890-b047-0c4554b3c61c status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches +- 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/batches/0bcccc81-50c4-4930-b8c7-8166cd494fd0 + response: + body: + string: '{"id":"0bcccc81-50c4-4930-b8c7-8166cd494fd0","createdDateTimeUtc":"2021-06-02T15:33:11.144037Z","lastActionDateTimeUtc":"2021-06-02T15:33:14.3246317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: b2de3d2d-ed90-40f1-83c9-cd6556fb2c6c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:33:42 GMT + etag: '"4575F52745F9213D8ECE482813C554192271A71F8245412715C9650EA92654BB"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b2de3d2d-ed90-40f1-83c9-cd6556fb2c6c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0bcccc81-50c4-4930-b8c7-8166cd494fd0 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0 + response: + body: + string: '{"value":[{"id":"0bcccc81-50c4-4930-b8c7-8166cd494fd0","createdDateTimeUtc":"2021-06-02T15:33:11.144037Z","lastActionDateTimeUtc":"2021-06-02T15:33:14.3246317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6932315e-6bda-408a-a072-d5a13492cbae","createdDateTimeUtc":"2021-06-02T15:32:22.5094146Z","lastActionDateTimeUtc":"2021-06-02T15:32:23.8496169Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f32e8631-bc29-48a4-94f1-de98861fa26b","createdDateTimeUtc":"2021-06-02T15:31:51.3977201Z","lastActionDateTimeUtc":"2021-06-02T15:31:58.5898438Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"037a7fa0-4dc3-4883-8f79-a92aa2b1bf20","createdDateTimeUtc":"2021-06-02T15:31:20.0453083Z","lastActionDateTimeUtc":"2021-06-02T15:31:23.4805698Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"952041da-4da4-43c8-a8f3-8e1742f2beb9","createdDateTimeUtc":"2021-06-02T15:30:48.630454Z","lastActionDateTimeUtc":"2021-06-02T15:30:52.4630271Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"58d95d16-9284-48bd-ace3-dd961197bcde","createdDateTimeUtc":"2021-06-02T07:07:21.3198845Z","lastActionDateTimeUtc":"2021-06-02T07:07:22.583496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72d34ce8-d861-4d6c-a410-d6337f303948","createdDateTimeUtc":"2021-06-02T07:07:14.7915463Z","lastActionDateTimeUtc":"2021-06-02T07:07:15.5245593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70081137-fe6d-466f-953e-2670c8f5e6da","createdDateTimeUtc":"2021-06-02T07:07:08.454661Z","lastActionDateTimeUtc":"2021-06-02T07:07:10.4666065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"113ad1aa-d9f6-4b15-a610-267b51c8a138","createdDateTimeUtc":"2021-06-02T07:06:40.2876379Z","lastActionDateTimeUtc":"2021-06-02T07:06:43.4469925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"171c4e8e-4733-4b42-b3ed-cbe9481c0d3d","createdDateTimeUtc":"2021-06-02T07:06:34.1550079Z","lastActionDateTimeUtc":"2021-06-02T07:06:34.2834432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"384343e6-a44b-49e9-91ef-d62cf39d44dc","createdDateTimeUtc":"2021-06-02T07:06:28.0100687Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.4305067Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c4182d40-ee61-40f5-b3ac-31bc4aaed8b8","createdDateTimeUtc":"2021-06-02T07:06:22.1439114Z","lastActionDateTimeUtc":"2021-06-02T07:06:22.2296325Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2295cf18-0237-4b0b-ac37-42d91ba98d4e","createdDateTimeUtc":"2021-06-02T07:06:14.1851872Z","lastActionDateTimeUtc":"2021-06-02T07:06:16.4424397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386e26c8-49dd-4eb5-ae3f-95bbc1809b38","createdDateTimeUtc":"2021-06-02T07:03:22.7902994Z","lastActionDateTimeUtc":"2021-06-02T07:03:23.1220631Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5948f436-c1b1-414c-9b2c-6d3af57f3021","createdDateTimeUtc":"2021-06-02T07:02:43.6134937Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.2264979Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0ab12764-59ff-4e7c-b9a7-88c62f9b9627","createdDateTimeUtc":"2021-06-02T06:56:55.0366689Z","lastActionDateTimeUtc":"2021-06-02T06:57:00.755663Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a9e762d-814f-4d12-b2cf-a686f3c572dd","createdDateTimeUtc":"2021-06-02T06:46:49.3275525Z","lastActionDateTimeUtc":"2021-06-02T06:46:57.3306415Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"68544ede-a20e-444e-a0ae-022199af016c","createdDateTimeUtc":"2021-06-02T06:41:24.4796213Z","lastActionDateTimeUtc":"2021-06-02T06:41:29.4908652Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8070372d-232c-4903-9b76-258c28a454bc","createdDateTimeUtc":"2021-06-02T06:41:18.3169725Z","lastActionDateTimeUtc":"2021-06-02T06:41:18.4692647Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"964fbde3-cb72-4679-815a-b68cb3145f58","createdDateTimeUtc":"2021-06-02T06:41:12.0098122Z","lastActionDateTimeUtc":"2021-06-02T06:41:16.688651Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c345e3b-2a71-4786-a3a9-c1703081324f","createdDateTimeUtc":"2021-06-02T06:41:05.9240834Z","lastActionDateTimeUtc":"2021-06-02T06:41:06.0023015Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4808cb29-461a-4bdc-849a-b8b2402cca93","createdDateTimeUtc":"2021-06-02T06:40:53.7154483Z","lastActionDateTimeUtc":"2021-06-02T06:40:54.3761813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea655e95-0404-4808-bc60-29d5023b58fa","createdDateTimeUtc":"2021-06-02T06:40:30.9135072Z","lastActionDateTimeUtc":"2021-06-02T06:40:31.7975375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ba008d05-8564-4475-9031-2d3e54e8f8bc","createdDateTimeUtc":"2021-06-02T06:40:05.638911Z","lastActionDateTimeUtc":"2021-06-02T06:40:06.5216871Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fd88caa7-54b7-44ad-a5df-b3f38b2006f4","createdDateTimeUtc":"2021-06-02T06:40:04.9897959Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.5795126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"de6d7efa-e94a-43a6-a5e0-10b28f9615ec","createdDateTimeUtc":"2021-06-02T06:40:04.3970363Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2868525Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d84f2015-a418-440f-aa40-c3c4a2c0f535","createdDateTimeUtc":"2021-06-02T06:40:03.8571077Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2818175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d44aa0e2-e11e-4510-8470-b090bd9b2f82","createdDateTimeUtc":"2021-06-02T06:40:03.1588409Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4667969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5aeaacbc-3228-435a-b713-ffb6e835188a","createdDateTimeUtc":"2021-06-02T06:40:02.5798533Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4688227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05f6af9f-6f99-476f-b95d-02e7b30ba973","createdDateTimeUtc":"2021-06-02T06:40:02.0118203Z","lastActionDateTimeUtc":"2021-06-02T06:40:03.6115399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7a23650d-bb6a-4ca8-9569-84fa94fe6800","createdDateTimeUtc":"2021-06-02T06:40:01.4873529Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.5950808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964a78c0-3ac4-4769-bbd8-526686f22c42","createdDateTimeUtc":"2021-06-02T06:40:00.9118738Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.6168181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d8840d4-2706-43e3-9db7-726ade4b28e8","createdDateTimeUtc":"2021-06-02T06:40:00.283617Z","lastActionDateTimeUtc":"2021-06-02T06:40:00.7436838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e302853f-5306-4a81-9d21-62ab1c3cb24f","createdDateTimeUtc":"2021-06-02T06:39:45.0213389Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9897041Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"840ef30b-a12f-49a9-b85b-01cb39acc87b","createdDateTimeUtc":"2021-06-02T06:39:44.5163768Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9895247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3415cb23-56af-4ba6-85c6-dfc4b5542ad8","createdDateTimeUtc":"2021-06-02T06:39:43.9656836Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7506612Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be268620-2e05-4ba2-89ae-1c0b72751bca","createdDateTimeUtc":"2021-06-02T06:39:43.4699657Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7031927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da019c4-f930-419b-8fd0-a26dfc37c494","createdDateTimeUtc":"2021-06-02T06:39:42.9890121Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8240778Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60d59bd2-31c5-4cd7-9a2c-2f4fb5a66a28","createdDateTimeUtc":"2021-06-02T06:39:40.9473475Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8600715Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=378&$maxpagesize=50"}' + headers: + apim-request-id: 15f4d940-ec51-4ed1-93f7-ab9ca0f367d7 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:33:42 GMT + etag: '"9EDAC17D71B86E4F7F402BEF1ABA874C5BCDFE6297194BA60015722E1477F60E"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 15f4d940-ec51-4ed1-93f7-ab9ca0f367d7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0 - request: body: null headers: @@ -1933,32 +1965,27 @@ 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/batches/31320985-9f4c-4bf8-a66e-1a89016849c6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=378&$maxpagesize=50 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzVOjHViVtRTsXBZoO7cYyciLAtgCJHoog717JQDp3IY53/I5X - SCcIYJTR0rtR+GkgMXxPTqC1USh0XirrBk8WDkAlIsfTSxvHtMQPpsZqqZWQo9DqqGwYXZD6QTtj - rPdfjZmx8hNxyuv/sEdpOlYZeavt7jXzO2Npb7u7LQuWHwhX4Mw4Q5AHmDDNLe2ybkSx1l2n9a3k - c7mva+bP+FfVHcKV4nxH977nCxYkjqWL857cbr/DZT/8JAEAAA== + string: '{"value":[{"id":"d23632a5-a3cd-4415-8ca9-49d9af346f4c","createdDateTimeUtc":"2021-06-02T06:39:24.1530166Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4860761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"348397fe-5a6d-4254-917e-8a417fe69a18","createdDateTimeUtc":"2021-06-02T06:39:23.6466581Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4112274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6d5cec9-56ba-49eb-a706-f23d8726364c","createdDateTimeUtc":"2021-06-02T06:39:21.4737853Z","lastActionDateTimeUtc":"2021-06-02T06:39:22.7942225Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"675c93a1-a854-4990-8389-7a61b2727f07","createdDateTimeUtc":"2021-06-02T06:39:20.9472043Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.5120454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"525194bb-ef96-4db2-ab08-a915dadddfac","createdDateTimeUtc":"2021-06-02T06:39:20.2491928Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.4901556Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f00445aa-49dc-4412-87eb-553ea2bf7d04","createdDateTimeUtc":"2021-06-02T06:39:08.6574795Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1874519Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba2f1009-fb37-4b26-9028-4b0fff7782e1","createdDateTimeUtc":"2021-06-02T06:39:08.1487463Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1891904Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0e4ce759-4155-4371-8b1e-5856d993a09b","createdDateTimeUtc":"2021-06-02T06:39:07.405402Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8980215Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"430d6fdb-2ede-4359-8866-84f6afd6bdcd","createdDateTimeUtc":"2021-06-02T06:39:06.9117078Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8128538Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8cb80008-0ccb-480d-9ed1-01b8e5f22b0b","createdDateTimeUtc":"2021-06-02T06:39:06.3306336Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.708013Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8e38339f-b8f6-422a-afdf-4d1de19fbab3","createdDateTimeUtc":"2021-06-02T06:39:00.7494268Z","lastActionDateTimeUtc":"2021-06-02T06:39:01.3181011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"773b73df-42ae-4197-8198-bc90c557b188","createdDateTimeUtc":"2021-06-02T06:38:54.0646034Z","lastActionDateTimeUtc":"2021-06-02T06:38:56.3798465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"79d237c0-c8ac-4a3b-99bc-de2b9a1e76ef","createdDateTimeUtc":"2021-06-02T06:38:46.309884Z","lastActionDateTimeUtc":"2021-06-02T06:38:49.2573517Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f90c5227-f225-471d-9453-024721f9518f","createdDateTimeUtc":"2021-06-02T06:38:40.7600205Z","lastActionDateTimeUtc":"2021-06-02T06:38:42.2207707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d95d4dcd-6301-4006-a1ac-ac471411900b","createdDateTimeUtc":"2021-06-02T06:38:35.1857718Z","lastActionDateTimeUtc":"2021-06-02T06:38:36.248059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f820ac8-68e8-402b-890a-bb2bdda717e0","createdDateTimeUtc":"2021-06-02T06:38:34.2347962Z","lastActionDateTimeUtc":"2021-06-02T06:38:35.1762805Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbe70865-551f-49f3-ab11-8e71503fb250","createdDateTimeUtc":"2021-06-02T06:38:33.6329499Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9745495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fc1f463-3f90-463c-a8e5-c06153becb1d","createdDateTimeUtc":"2021-06-02T06:38:33.0953339Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9133298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d8f3f86-0803-4bac-9ea8-419278691b54","createdDateTimeUtc":"2021-06-02T06:38:25.681571Z","lastActionDateTimeUtc":"2021-06-02T06:38:29.2106941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bb2b0f6-8ac2-418a-9b10-b360447a89a5","createdDateTimeUtc":"2021-06-02T06:38:20.0075742Z","lastActionDateTimeUtc":"2021-06-02T06:38:22.1577533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee6090f4-643f-4016-a931-dacd57b43fa1","createdDateTimeUtc":"2021-06-02T06:38:14.4144376Z","lastActionDateTimeUtc":"2021-06-02T06:38:15.0321792Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d921bb3-d049-4b73-806c-257c1dc96953","createdDateTimeUtc":"2021-06-02T06:38:07.6875606Z","lastActionDateTimeUtc":"2021-06-02T06:38:09.8465419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86272760-b346-482a-87d3-d8b3eeb1431e","createdDateTimeUtc":"2021-06-02T06:38:02.0547056Z","lastActionDateTimeUtc":"2021-06-02T06:38:02.7777345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1ab36b51-3fd7-42b0-806b-e3186a953d2e","createdDateTimeUtc":"2021-06-02T06:37:54.3117337Z","lastActionDateTimeUtc":"2021-06-02T06:37:55.7664263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3a0d3c0-f2fc-4ab6-b669-8c3761494c57","createdDateTimeUtc":"2021-06-02T06:37:47.5767386Z","lastActionDateTimeUtc":"2021-06-02T06:37:49.9643054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"527a3c66-ace4-4790-8c11-5a91053508e0","createdDateTimeUtc":"2021-06-02T06:37:40.8885591Z","lastActionDateTimeUtc":"2021-06-02T06:37:42.8973152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9c7cc60-4eb3-4e1c-b45e-a4604a064ffa","createdDateTimeUtc":"2021-06-02T06:37:35.3559821Z","lastActionDateTimeUtc":"2021-06-02T06:37:35.9147701Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e46e697b-4b91-4cc1-bdc8-d1b5f4f29316","createdDateTimeUtc":"2021-06-02T06:37:29.6705576Z","lastActionDateTimeUtc":"2021-06-02T06:37:30.751147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a414371-9c16-4f5b-b78f-54a1b14f3cb3","createdDateTimeUtc":"2021-06-02T06:37:28.605251Z","lastActionDateTimeUtc":"2021-06-02T06:37:29.7618353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0eafff35-c835-435f-8ba6-5c62ccbcac05","createdDateTimeUtc":"2021-06-02T06:37:28.0226232Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.688448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4e16297-da6d-44a3-b537-2e179b5c57c8","createdDateTimeUtc":"2021-06-02T06:37:27.4859883Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.4461178Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88f6806b-a28c-43b3-80c7-9a3e2a18f98a","createdDateTimeUtc":"2021-06-02T06:37:25.5121262Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.6483773Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0eba3d56-4b51-4fc6-b9ea-755fe87fe711","createdDateTimeUtc":"2021-06-02T06:37:24.8468851Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.4997727Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b719446-a83e-4bc7-9deb-659eebb51328","createdDateTimeUtc":"2021-06-02T06:37:23.7379948Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.2183805Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2bbaa78d-f6a0-43b2-8352-bd0aa6edd744","createdDateTimeUtc":"2021-06-02T06:37:23.0437961Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.9407465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b96b537-29be-4194-a7b4-a05959950142","createdDateTimeUtc":"2021-06-02T06:37:22.0011983Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.6381334Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"754d7123-41c6-45bb-9214-20ccbb325d5c","createdDateTimeUtc":"2021-06-02T06:36:57.8535231Z","lastActionDateTimeUtc":"2021-06-02T06:37:03.3442448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1237295c-47ea-4710-a84e-ed65a8f49dda","createdDateTimeUtc":"2021-06-02T06:36:26.6950836Z","lastActionDateTimeUtc":"2021-06-02T06:36:28.3693909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=328&$maxpagesize=50"}' headers: - apim-request-id: ec858ad0-c786-4094-b7b3-b13ecfdb1c9e + apim-request-id: 5a7ab060-bb27-479d-acd7-f84319134dc6 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:02 GMT - etag: '"8543A07AAC67851A515ECE6E42CF5B3F9A3FE2F200EEC75564ECA941AE94CBBD"' + date: Wed, 02 Jun 2021 15:33:42 GMT + etag: '"AD390D4F71418E1C12FCB64292D94A6CC8093AFAA5F57FAEC78F9050A30F4E06"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ec858ad0-c786-4094-b7b3-b13ecfdb1c9e + x-requestid: 5a7ab060-bb27-479d-acd7-f84319134dc6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/31320985-9f4c-4bf8-a66e-1a89016849c6 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=378&$maxpagesize=50 - request: body: null headers: @@ -1967,71 +1994,147 @@ 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/batches?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=328&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","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/batches?$skip=150&$top=278&$maxpagesize=50"}' + headers: + apim-request-id: 0a2f8083-3bf2-4b26-a7fc-e3a4898483ad + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:33:42 GMT + etag: '"15D7CDF725467ECB957966B83EFC68039927387BF450A7CBBC8FA783B23B68A3"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0a2f8083-3bf2-4b26-a7fc-e3a4898483ad + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=328&$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/batches?$skip=150&$top=278&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","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/batches?$skip=200&$top=228&$maxpagesize=50"}' + headers: + apim-request-id: e21919f9-b43d-4942-99af-b3c65e2c9920 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:33:43 GMT + etag: '"9C2270518F30E351E83A1116AC90D927A4EE0389EFE6E4A3F41AA54080FF6BFA"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e21919f9-b43d-4942-99af-b3c65e2c9920 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=278&$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/batches?$skip=200&$top=228&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=178&$maxpagesize=50"}' + headers: + apim-request-id: 7a16311c-a1b7-460d-b843-3783ee3c606c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:33:43 GMT + etag: '"23F99567317CD36D55FC070254005F1ABA6F60C0517F5513333347A63128A493"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7a16311c-a1b7-460d-b843-3783ee3c606c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=228&$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/batches?$skip=250&$top=178&$maxpagesize=50 response: body: - string: !!binary | - H4sIAAAAAAAEAM2aW48kxRGF/8sI8bRZG5GZEZE5ErIt/GhZlsEP2PJDXpcRuzOrmd4VBvHffaoX - MCAjVcJqVS891d1T3VVfx+WcyPz25m15+Wbc3P7r25u7fnN7Ezh4yklcnrG5WGdyRXU4LikTa4q5 - 6c2zm/Y4ymX0P+Ph87tX4x+XhnM9eXYkzvPnrLeSbslvPoWgOf8T57wsT5c/tcvdw/2x04zCftrT - pVzePOH//vpw+exSHvG1+6tvXr0qj/+5uf325vJwKS9vbunZzSx3L/Hufvj0prXx9HQ9vrv/2+PD - i8cfnt4/XL4YP37U/kor9228/OHU6+d9+mV5LO0yHveDF9d3vvvu2feQJBAXzskZd3MxT3OVprpJ - SUs001jScUi8CbM38WuQeDMNmSOvQJLfCEnWIemwyNSyC8kUkVSbqzqmm2o9+c42uB6HRJsFz8Sy - Cil5H/XdaT9C+vub+/u7+xe/g5C8jzAqPfRcApB4Fhc1DZdIiwtU2piSYslxhRD5JEFtlZCAkKRw - RkIaa+7GwaHqDIerHC7XFFxpOmexNMo8GkN2K3nzESXMeI0QbZ5jUtXfS4h/Tij+ZkLe/oeoBW2+ - Nu+CcnaRxVweQRyVUEw62YxyHJFtRhp4JYZwVtpSSsE0HSbkDxHi90KocEpS6nQ8G6q1KOJnIpxK - 8tZ49OzZrxAiiZH9SiG6IrKI5LbjhehDIrKJ4OnS3ZzWEUQd/V9GcUTZrOJ2+7DjiHQLWTKKyioi - yUrxXfCdDlEoeSau7MJQtLPuCe2MmvMlDzZDT5v9OCLZzJtnW0SkWzTVGH5erD/bb3z0X2n5vwLJ - vy9dJPEn9bpQjVbEsU+EVBviUmyIqBq6qkevSwvFSJBq2TjFZUiaJFk6KaQsWpgDuexbdNHLdMlM - nIWiVBUP0o5DilsQZFtajCRBjsYYsz8pJGYRTUpudu9dLAESG63MDWRe6gRQMR+HFDYxRSCFNUhx - w++EK+GTQpoergwewI1Si4sNjq1W6i6n0nNtLTc/j0PyG+RjyHkxkgBJvXjWk0Lyom3m3FypklwM - EXwaIokJ8rr0AnRjBRIcl64KpLCxJzTTswZSQ6lug6GJUDddjNVcYiY3xhw+w47AfB1nxChJSrrk - 1d6h9RRiOmvdJkYbC5Fc0oiSZJNxVLsrEASoUllDPQ4pQmmDEtzpEqSYN4LUxnedFBL7BuEn5Iwj - 7EhAymVYNWeo2Z6sQ3GXFUgcIkr3WrrhtBS9xnzWSEp+zGpBXYgT6VZRwVP21Vkc2gMN5N9xWxt1 - E4oG3quQDGEkYieFhFybraNaFwKpSBWJl2dzTduYPcbZRjgOSbZEZCmmNUiKLDWBBj0pJMghZFyo - jgJyLsZ9NkKIpMTDJwssM9AKJNp1ki1GEswMS1Q7a3czpVCo7D2tIZJk15ITqpL6FK8aRtGFdAub - Zk68JiVj3DRAJelZA0lrS0NjcdDVE1JSBUeNUcF70936Uj9et32ABfOU1hj5uPmQco5njaPudwuR - Koybh3EjeLaSrTitM/ReEvd4dOyPu4Xc5ujD0jTyijaDbZR4UkhTiLxn71rfR0kdva0m3EGT6SmD - lKWFQOItpiyc18r2Domij+msngQKcuhsyYmviCSGQEp1qFMJGq1p9fO4J/G0oft7ycuRhO/yIZx1 - BBB0MA2obFSE4eKsCSWJYEpmKFxGJqrH5ySAxOiRqC7LkBjS3p+1JikjjCakNnMU1O26S8lhLsP/ - V1EZVY5Pbsm2LNDsugaJ0iaMEAw/T7dPf7yX/weJ38tyLR9ZReKuKM3wtAqr76JW2fFEPPXSpRRj - 5hVGgTjwopIEo5hxooVzMmqTY5kzuRAEZRsO05WAikToyAHuP5ocV9ukG2RVYltZ978y8pCf8RfJ - dhpGBR6Es0E95hB2ZYQ0K8G74IPESmNQOV6QwIh8VFkct4ERZyZOck5GkmuG2jaH7o/OJtJcKhUP - qUnzbST8wscZyRY5kC2O28CIUjII/XMyyt4yof87Nqmo2SO7UpBwVJOffnaq8Wj3131VG7UX0mpN - bBNtQSlmW9GRv8KI31dj++l6G0Dg4hBIRrKvaytkN4o1ngYYeRu15aNLSbqPJDPBfqWVaZvuc9sg - rLJi2j4kI7I0qqXmrI7i4vDNVW7BsafYx2wi42iy6dWiSjLyK8mm+4jEZ9plw0khSdllZBgutH1s - W3eFJDk40pg6FFIpdHSXjd4Gg7NlprU4CvvOk6Q+rajID8ko+tFxdVCRNZuLRsNV63tZCqmxqcfv - e5iRz1uypIlWuj8geXQ2wP3FFonzQNodWy0JMvI6Iomd0P4tOpuxMhXOYR61/4CUtgypkxezDZA8 - m2fNJ/UjItStNpj+avvWSO9RtqfiDkql0HoKerwkAZJHlqJLrUFCtffosWElkj4kpIJoIebu6tX+ - A4xLPqhrgyAIQzVk4HFItilp8EvO9ntI+LVOu9zGrCH2xM6aIJIGsSvSmgvTay499VQWImnf5qge - Tn4JEuw/Tsu8NEj6kDWJ/cgzZzg2a1BJE4W7oMW5KaR5iuXjlkRvWTZopOVI4n0BCoqDzgop1cS0 - u34dMaEmpexqwtNeDQ2ncS3t6Pxfd/8PD+PTogSgvAEQhOvKtO2DdjcKNbOSMyswtz42V7qaC3Cb - 3lIoVY6ubuu+q1hFScJa4Sa/hWi7LTkpJG9dfEvTDRJoydnIpR6KK0ax1WATvuQgJLlueIzBRFd0 - kuyGbw9hO6+Y7HWGURg6yWBvc1OXU0QdF9j/GPYlxqNbt2TfqCaZhJaWSeS6CTBaznRWV9JLh9Fn - 79DGACntcxI0Y9wB4oshofDnOCS/CWyyrowAZHe315J02mzTooY6FBA+ts+2h+wzScTVIN84lGHl - qCuRfZU6UGJdDKR4DSQyPeucJO1L7z00lwdBS87pUZLqPsdtswWrOfECJBRgeD1QX4MUthCy2lmT - rfQySeJ1RALnVqi60kZzNkYa+5rbHEd7m1zNvFEKS6vbYESIP6IYzhpIXnhQztWNWGTflDRczlxd - j5xzQ1R0f7y3hbRRDvv2ryVIYBv2TYD5bAu3/35288f78fXlL3f3X+GCvrxcXj/dPn/+1ePrx3K5 - a1t7eHF/d7l7O57G49s7XMBWvnnzOPD6q+eXx3L/9LJcHh6fX/ARz2u5tC+fv+WN3h2Opz989PTV - 3etPhD7+6PLw+hMfP/7oVfn6dXkxnu6+GXj95rv/AtncE3apOQAA - headers: - apim-request-id: 7d989bae-818c-4a28-a648-695499867479 + string: '{"value":[{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=128&$maxpagesize=50"}' + headers: + apim-request-id: 777d172f-a70d-4db4-a37c-9c22bf6dba33 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:33:43 GMT + etag: '"42693900FE0B5062B8671991270E12B99F7616956899B400EB57BDF68D57E796"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 777d172f-a70d-4db4-a37c-9c22bf6dba33 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=178&$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/batches?$skip=300&$top=128&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=78&$maxpagesize=50"}' + headers: + apim-request-id: b28bb867-6f5f-446e-bfb2-a96932c40395 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:02 GMT - etag: '"9DB2B97E8F5E4488658C69AF5D4B0C4D36C519F6DF4275FAA611B870CC862B1F"' + date: Wed, 02 Jun 2021 15:33:43 GMT + etag: '"EAF94EAD63EFE0CBD36FD03102337EE6012341E60859473670A8221E9B4903AA"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7d989bae-818c-4a28-a648-695499867479 + x-requestid: b28bb867-6f5f-446e-bfb2-a96932c40395 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=128&$maxpagesize=50 - request: body: null headers: @@ -2040,49 +2143,54 @@ 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/batches?$skip=50&$top=24&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=78&$maxpagesize=50 response: body: - string: !!binary | - H4sIAAAAAAAEAM2Z24obRxCG30XX7qFOXd2lu+A8QMDORRJy0UdnYW3DrhwIxu+emrUTO7Am07As - koSQNFNSzzf1/1U1+nj6s9x+GKfzbx9PN/10PgGVSRpjUC49CPUciiUJnM2IcTakenpxanejXEb/ - 0Z9e37wdP1+axxIQBoiB8DXqOcYzp40tEXL61WNuy/3lh3a5ef/u/8Kyh1mKkvew+0u5fLj3/V59 - aG2MPvr+4Ye3b8vdX6fzx9Pl/aXcns704jTLza1vPcO+3fe9v3/4+ObdT3fv39w9vPVN795ffhmX - V5dyd/mycyvv2rj9J/Th+17+Ue5Ku4y7/cWbfUuUT59efIFUqo3GNkNNOIJohlDj4MBMSjMXqgLH - IemmoklN1yA5W86SEl8ppEYt4pwtpNwxiLGFOqb4QRC0rFVmacchxQ3IwAzXIOlGab/JAqT4OKT4 - VJCQ41dKszUcVUaIlGKQ3GuomGsYZYJC7qC2kEqygWWgxUySzcmqxRW5PS+kgqSzarBhEARicUh9 - hASMYKmMIXgcEm9uSEI5r1KKmUXStUKCoRVLbb7kLEFYHVKbFNyBPZcitYn5OCTaYDduWWVEasZw - tZkUC2jrrYVmxeXGuYVaOIdZKWba5Rb5OCTc2MVGyVYpAQlIvFpTaqVnLe7aDGl6ExBHqOz+XbCn - UjKz6+4wJeKNMYHflyhR3DKJ/+oKJXycEj4ZpfQVkg2K2ry++dItSCsS3Mc1IJdWe2WDety5wbaE - rCmvWTfCllX8hOCVQiKJKJNjQGXyJmBqqLNBcJklaknV9XgQkpwjeTWPGG3FuT0sbr6MBPJfSC// - PZbHIOXHIcEapPxdSPANozItT6Og1r26xZGCAacwjKAy9ZHz0UZJ9t45WVKIK2qTs+xF0VNJ6Fo9 - aVb2TBcNquiZ1NoMpUDywQT6BIqlpKPOLbu5ILhsc1yixLBxjhE+G/5BSulxSunJKGX7SskHj1LI - l42j+fiWDUOZnkvWpEGbvsaFXELyOQw46krT7WG6OST6YvjXmEsVis7ZOVCqrrgELWTtEqhVdIeJ - U+Q4JYiboiAsDbkelrZIYspX2wWU0hg6xZAq+5TbIoVc3MqbqBeqhjYeVnmEEp9j3pQwAvIaJdjQ - 7UxXBIfwnQK3aN7fx+S5/U2zJD6Vjl1jWdgxQQ25lhEsjUY4I0072iw5JncYNYm8Yky8V0aRnGCt - WfpONuGTpZNPat+UuUYmmqq7krro0A/BGlEoIxuk2JTTcU68q8fH+qUhjs8iG5MvIq/0S88qutGn - aWFno6MFmcWH3sYamjZhKzn3ng5T8jIHUYBhZYzzsLyZgC5dfntm0dWZc0ZtIbmDBqkMwVx/wcoA - 1CRW0nFM7uDkQyvZyhzHft52SwO8Ym/y1pKrCoU592sCnX3cHT6jQOzeSIMfUqKDmOjBm1A1LxU6 - D0ubnytTvNqLAp1GhF1uHfcrlRN7qAgluItL1Khj9qOTHD04U9LsebFEyRtw8B8TWsmmZ6VkrYmg - 55LWGl1yoKFYriHNaLVwtSlH/xmgM5BrBzDiin/TQ9NkGsni9VIaRQwsRDEvdbVQMG4aushMZSZj - GQcp4Z4UsvfRttINoD98Ts5eH1f+GnhWSuSNt9dhCd4h4d4QuOLYJzr2xnsSxNjLEfsG9ETaFZcB - hPRolfscJrhlyomWytyzUPr909+kauTzlxsAAA== - headers: - apim-request-id: 22ecc7c2-af54-45fb-8069-8bfacc1dbe1f + string: '{"value":[{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=28&$maxpagesize=50"}' + headers: + apim-request-id: d143df7d-9ce3-40d0-bf3e-5bfb79f5673b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:02 GMT - etag: '"0C1E9C471996683343142189AF96C0B6A07B921477C8B83219C19412A86720A5"' + date: Wed, 02 Jun 2021 15:33:43 GMT + etag: '"F48D2911FA5B1FC5681FF56E2A03CC157090746B55EE2B69AE946697329767C2"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 22ecc7c2-af54-45fb-8069-8bfacc1dbe1f + x-requestid: d143df7d-9ce3-40d0-bf3e-5bfb79f5673b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=78&$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/batches?$skip=400&$top=28&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + headers: + apim-request-id: bf9d5426-e80d-4ea5-b6bd-905f29566bc3 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:33:43 GMT + etag: '"941ADD7C0061D38A40FD7DDE0BF18B09C79A45877B476C2C113E34F43E94CF0F"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bf9d5426-e80d-4ea5-b6bd-905f29566bc3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=50&$top=24&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=28&$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 index 52be77853b14..19fc1291fd53 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src56d8953c-3c6c-4faf-b155-bd16c0357b98?restype=container + uri: https://redacted.blob.core.windows.net/src5f8db449-6eaf-4988-bf16-31f841a383e9?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:44 GMT etag: - - '"0x8D91C8339ECF3B5"' + - '"0x8D925DBCF119F6A"' last-modified: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:45 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: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src56d8953c-3c6c-4faf-b155-bd16c0357b98/eb80f6dc-bf20-4bf9-8915-bb34188d4095.txt + uri: https://redacted.blob.core.windows.net/src5f8db449-6eaf-4988-bf16-31f841a383e9/08ed737d-5a45-4ee4-a184-370b13b4a0ef.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:44 GMT etag: - - '"0x8D91C8339FF3CBE"' + - '"0x8D925DBCF1F46CE"' last-modified: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:45 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: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src56d8953c-3c6c-4faf-b155-bd16c0357b98/a2c08185-931e-4b92-8b67-ce68516c60f2.txt + uri: https://redacted.blob.core.windows.net/src5f8db449-6eaf-4988-bf16-31f841a383e9/fb831995-49a1-4724-9219-4213d9b3f6f4.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:44 GMT etag: - - '"0x8D91C833A08DB5E"' + - '"0x8D925DBCF29A8E5"' last-modified: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:33:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target646e2141-da61-4f73-9011-e741108e75d7?restype=container + uri: https://redacted.blob.core.windows.net/targetbd107422-d7db-4b37-9085-6a428a90d12b?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:06:58 GMT + - Wed, 02 Jun 2021 15:33:44 GMT etag: - - '"0x8D91C833A29CDEF"' + - '"0x8D925DBCF479D9F"' last-modified: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:33:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,14 +176,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src56d8953c-3c6c-4faf-b155-bd16c0357b98?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target646e2141-da61-4f73-9011-e741108e75d7?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5f8db449-6eaf-4988-bf16-31f841a383e9?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbd107422-d7db-4b37-9085-6a428a90d12b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '488' + - '486' Content-Type: - application/json User-Agent: @@ -194,53 +194,46 @@ interactions: body: string: '' headers: - apim-request-id: 010c5069-8d4e-4ed6-8fee-0c3782b27d42 + apim-request-id: 559f03f3-3d19-429a-91b9-5a213f946fbc content-length: '0' - date: Fri, 21 May 2021 18:06:58 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa8934ef-f053-43f8-9c5c-81c9ebf7a168 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:33:45 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f459e67d-3ef8-4dd5-9441-f037a9ef7bb9 + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 010c5069-8d4e-4ed6-8fee-0c3782b27d42 + x-requestid: 559f03f3-3d19-429a-91b9-5a213f946fbc status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/fa8934ef-f053-43f8-9c5c-81c9ebf7a168 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f459e67d-3ef8-4dd5-9441-f037a9ef7bb9 response: body: - string: !!binary | - H4sIAAAAAAAEAI2OzaoCMQyF36VrK+2M9Xa6u1zXIqgL7y7GVAszU2gzCxHf3XZA1xIIJz/fSR4i - XIQTHmzXrshLr0wrV623skOD0mrs6Ox/QK+tWAhMBEyXTUmHMNCRsbCNarRURjb6oK1Ta2e6pbFN - jf/C9JD5FznE8VvMViwz8JTL3jbyniGVs7U7DQOku3APwZGhF04tyvOhL9Mq84RIOc86jLsUr+ld - jpFP9LGqHYQRqX+js9/fDRIgU6riOk+ezxdXmou3JAEAAA== + string: '{"id":"f459e67d-3ef8-4dd5-9441-f037a9ef7bb9","createdDateTimeUtc":"2021-06-02T15:33:45.8406241Z","lastActionDateTimeUtc":"2021-06-02T15:33:48.97718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 5cb7cea2-9532-46de-902a-f65427075942 + apim-request-id: 2ac2bc3f-453f-4097-8c46-3acee161f369 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 18:06:58 GMT - etag: '"4CC78065036811CD52F308BC6BCC5A314941C3D4065CF87A43292FA7DF3FF5CA"' + date: Wed, 02 Jun 2021 15:34:15 GMT + etag: '"94387D3ACD3ACA46CD128410F49DA613AC31160CF7A098FCC42F1F03F991D4EF"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5cb7cea2-9532-46de-902a-f65427075942 + x-requestid: 2ac2bc3f-453f-4097-8c46-3acee161f369 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa8934ef-f053-43f8-9c5c-81c9ebf7a168 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f459e67d-3ef8-4dd5-9441-f037a9ef7bb9 - request: body: null headers: @@ -255,11 +248,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:34:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcda469153-aba1-4325-8274-384c25a3567f?restype=container + uri: https://redacted.blob.core.windows.net/src884747c0-ce8b-4d49-ab3a-ca293b7cde57?restype=container response: body: string: '' @@ -267,11 +260,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:34:18 GMT etag: - - '"0x8D91C833A9F296E"' + - '"0x8D925DBE33A6D7B"' last-modified: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:34:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -299,11 +292,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcda469153-aba1-4325-8274-384c25a3567f/963e5aa6-d308-4c5b-aa35-eb2545d03b6d.txt + uri: https://redacted.blob.core.windows.net/src884747c0-ce8b-4d49-ab3a-ca293b7cde57/bb5fa810-07c6-49cf-83df-38b86a54d3ae.txt response: body: string: '' @@ -313,11 +306,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:34:18 GMT etag: - - '"0x8D91C833AA81EBF"' + - '"0x8D925DBE3452E60"' last-modified: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -349,11 +342,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcda469153-aba1-4325-8274-384c25a3567f/9c676bcc-95fa-48b2-9c2a-dca4961bd282.txt + uri: https://redacted.blob.core.windows.net/src884747c0-ce8b-4d49-ab3a-ca293b7cde57/3e6129b2-e36f-40c0-a7ee-5a1841190d21.txt response: body: string: '' @@ -363,11 +356,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:34:18 GMT etag: - - '"0x8D91C833AB05DA2"' + - '"0x8D925DBE34C82B2"' last-modified: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -393,11 +386,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targeta4a75128-864b-408a-bbd9-59ce1ebad620?restype=container + uri: https://redacted.blob.core.windows.net/targetc7d7f2fe-f9f3-4abb-8afb-2392648c93d3?restype=container response: body: string: '' @@ -405,11 +398,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:34:18 GMT etag: - - '"0x8D91C833AD133AF"' + - '"0x8D925DBE3643689"' last-modified: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -418,8 +411,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcda469153-aba1-4325-8274-384c25a3567f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta4a75128-864b-408a-bbd9-59ce1ebad620?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src884747c0-ce8b-4d49-ab3a-ca293b7cde57?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc7d7f2fe-f9f3-4abb-8afb-2392648c93d3?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -436,53 +429,46 @@ interactions: body: string: '' headers: - apim-request-id: e9058bd6-0b50-4daf-b9e7-908661d5a866 + apim-request-id: 344d2081-ec12-4c44-a215-e97ae6564004 content-length: '0' - date: Fri, 21 May 2021 18:06:59 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8794b5a1-d299-4ec7-8750-d415175f72eb + date: Wed, 02 Jun 2021 15:34:18 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d538b50a-4739-437e-a430-4a39d552ae9b set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e9058bd6-0b50-4daf-b9e7-908661d5a866 + x-requestid: 344d2081-ec12-4c44-a215-e97ae6564004 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/8794b5a1-d299-4ec7-8750-d415175f72eb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d538b50a-4739-437e-a430-4a39d552ae9b response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFEiKBdnainYuCiQd2o2hmUSAbQESPRRB/r2SgXTuQhzv+I53 - iCME6P3QnR0aNdphUB2TV713Wo2dcca7i7d8hh1QZhQe3+o4xZk/hSprtTVKO2XNyfRB+6D1/mA6 - 7+13RSYs8kIS0/Jf6tCwIihrqXfvSY6CuX5t7jrPmH8g3EGS4ARB7+CCcappk2Ul4lI2HZePnK75 - uS5JvvivqjmEC/H0RLe+1xtmJOHcxHVLHo9f5Wd2jyMBAAA= + string: '{"id":"d538b50a-4739-437e-a430-4a39d552ae9b","createdDateTimeUtc":"2021-06-02T15:34:19.3119357Z","lastActionDateTimeUtc":"2021-06-02T15:34:24.1613577Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 8410ca17-117e-4c08-b44a-abf4b2181861 + apim-request-id: d21a850b-3b74-4c81-8632-c155160fed14 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 18:06:59 GMT - etag: '"CD2D2486E40D42F4A524FCDB309D573D17D4B3DB76081E3C1976B491967F06C2"' + date: Wed, 02 Jun 2021 15:34:48 GMT + etag: '"FB5CEA3AC766B8A3D47CE1D3B42375FEE31455BAD0BBA026A41BBB2AE5DAFA2C"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8410ca17-117e-4c08-b44a-abf4b2181861 + x-requestid: d21a850b-3b74-4c81-8632-c155160fed14 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8794b5a1-d299-4ec7-8750-d415175f72eb + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d538b50a-4739-437e-a430-4a39d552ae9b - request: body: null headers: @@ -497,11 +483,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src91a6442a-38fa-4c36-ac03-3ab11c6ebe18?restype=container + uri: https://redacted.blob.core.windows.net/src21a3d1dd-899f-4206-9a62-13d226983b77?restype=container response: body: string: '' @@ -509,11 +495,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:34:49 GMT etag: - - '"0x8D91C833B057AE8"' + - '"0x8D925DBF5B1AFD5"' last-modified: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -541,11 +527,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src91a6442a-38fa-4c36-ac03-3ab11c6ebe18/fcb2bf6d-f1b5-4a3a-9f03-2c2526b816e8.txt + uri: https://redacted.blob.core.windows.net/src21a3d1dd-899f-4206-9a62-13d226983b77/36c29fa4-cdda-42fd-9068-c8bfcee60d93.txt response: body: string: '' @@ -555,11 +541,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:06:59 GMT + - Wed, 02 Jun 2021 15:34:49 GMT etag: - - '"0x8D91C833B137762"' + - '"0x8D925DBF5BC2D96"' last-modified: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -591,11 +577,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src91a6442a-38fa-4c36-ac03-3ab11c6ebe18/3f408d03-25cc-4182-8109-d4a195e295cc.txt + uri: https://redacted.blob.core.windows.net/src21a3d1dd-899f-4206-9a62-13d226983b77/5d713cec-f342-4625-bacd-9f29c8a68357.txt response: body: string: '' @@ -605,11 +591,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:49 GMT etag: - - '"0x8D91C833B1E27B4"' + - '"0x8D925DBF5C333BB"' last-modified: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -635,11 +621,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete21a2b79-8ee0-4776-99f1-c4db808aa57a?restype=container + uri: https://redacted.blob.core.windows.net/targetd6fa831a-bfc4-4949-ad70-553fa1593f6a?restype=container response: body: string: '' @@ -647,11 +633,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:49 GMT etag: - - '"0x8D91C833B3E9116"' + - '"0x8D925DBF5DFE04C"' last-modified: - - Fri, 21 May 2021 18:07:00 GMT + - Wed, 02 Jun 2021 15:34:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -660,14 +646,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src91a6442a-38fa-4c36-ac03-3ab11c6ebe18?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete21a2b79-8ee0-4776-99f1-c4db808aa57a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src21a3d1dd-899f-4206-9a62-13d226983b77?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd6fa831a-bfc4-4949-ad70-553fa1593f6a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -678,53 +664,46 @@ interactions: body: string: '' headers: - apim-request-id: 93fb3333-9dd1-4b25-9667-f3f9e6c74945 + apim-request-id: d5dc034e-acf8-4dcc-9fde-9ea4793cda68 content-length: '0' - date: Fri, 21 May 2021 18:07:01 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4dc48b25-4940-4f18-b580-bb265556f302 + date: Wed, 02 Jun 2021 15:34:49 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/227d7245-54a1-4383-81be-7b1679cf252d set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 93fb3333-9dd1-4b25-9667-f3f9e6c74945 + x-requestid: d5dc034e-acf8-4dcc-9fde-9ea4793cda68 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/4dc48b25-4940-4f18-b580-bb265556f302 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/227d7245-54a1-4383-81be-7b1679cf252d response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMU/EMAyF/4vnC3JCcu1lQzAjJI4BNtdNj0htIyXugE7330kqHTOL9fyev+cr - xBE82JFtPxin7MmispPu1eB6VMNgjs654/SIBg7AOZCE8aWOc1zCh3BlDRqt0Cmjz7r32HnUD9jh - yWn7VZmZijyxxLT+F+saVoRkK/XuNcm7UK5vm7stC+Uf8FeQJDSDxwNMFOeaNlk25lDKruP6ltMl - 39c1yWf4q2oO08phvqN73/M3ZWIJuYnLntxuv8zsOfUkAQAA + string: '{"id":"227d7245-54a1-4383-81be-7b1679cf252d","createdDateTimeUtc":"2021-06-02T15:34:50.3214464Z","lastActionDateTimeUtc":"2021-06-02T15:34:54.5445251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: c6207b97-8291-4f05-8f99-e6c2c8744c74 + apim-request-id: 112bfa43-2985-4eaf-a66a-b01fcce38c62 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 18:07:01 GMT - etag: '"462E30C3519E2A07C1EBD9426893DB8862A23AD7BE96E4F22DBD609B02C7E670"' + date: Wed, 02 Jun 2021 15:35:20 GMT + etag: '"E851071ADD78E3E5B84FCC7D662A0DDBE68C6F5C1CF4D4146F704F15C118E954"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c6207b97-8291-4f05-8f99-e6c2c8744c74 + x-requestid: 112bfa43-2985-4eaf-a66a-b01fcce38c62 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4dc48b25-4940-4f18-b580-bb265556f302 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/227d7245-54a1-4383-81be-7b1679cf252d - request: body: null headers: @@ -733,32 +712,25 @@ 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/batches?$skip=0&createdDateTimeUtcStart=2021-05-21T18:06:58.534561Z + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&createdDateTimeUtcStart=2021-06-02T15:33:44.920241Z response: body: - string: !!binary | - H4sIAAAAAAAEAM2RTWvEIBBA/4vnNYzGiZrb0p5LodtDW3pQo9tANgFjCmXZ/14N3Z43PRVB5sM3 - yvNMPs2weNK+nUnfkZaIzgllOVKhBVARmKIWFVBreYOITaiBkx1x0Zvku/u8HfqTf04usxw4o4CU - swNTLcgWWAUSNDLxmpnBzGnvUj+Nt2KyYHMyaZnzuYcpPSUT87WlupxOJn6R9kzSlMxAWtiRYPoh - d0s4L875eV7jfnyM0zFe03FKL/53VKk4Mzo/XNF13t2HicYlH0twXDuXy+5HkpJaWDSMdlxrKryT - VEkE2gmWH41Bcm9vlwRVzYSUfJsjqDJTS6G3OOJ/dMS3OwpG6Vr4QANgTUUdFNUOHVXMaW+DNKxR - NzpqWtQVKl7WBkkrpsqPMPbPJL1fvgHzD8AXeQMAAA== - headers: - apim-request-id: 274a6f3d-de4a-4365-937e-0c71953c9350 + string: '{"value":[{"id":"227d7245-54a1-4383-81be-7b1679cf252d","createdDateTimeUtc":"2021-06-02T15:34:50.3214464Z","lastActionDateTimeUtc":"2021-06-02T15:34:54.5445251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d538b50a-4739-437e-a430-4a39d552ae9b","createdDateTimeUtc":"2021-06-02T15:34:19.3119357Z","lastActionDateTimeUtc":"2021-06-02T15:34:24.1613577Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f459e67d-3ef8-4dd5-9441-f037a9ef7bb9","createdDateTimeUtc":"2021-06-02T15:33:45.8406241Z","lastActionDateTimeUtc":"2021-06-02T15:33:48.97718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}]}' + headers: + apim-request-id: 406dfa69-05f3-4147-929b-c06ef7ab464c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 18:07:01 GMT - etag: '"E3132763D1E108254D1524FAA5429C3A5BAC3704526D340109BCBA601713BB97"' + date: Wed, 02 Jun 2021 15:35:20 GMT + etag: '"FD56D6406151A229F1A821AF355C191C6314023C4EC431E71F2D2E235D15021B"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 274a6f3d-de4a-4365-937e-0c71953c9350 + x-requestid: 406dfa69-05f3-4147-929b-c06ef7ab464c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0&createdDateTimeUtcStart=2021-05-21T18:06:58.534561Z + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&createdDateTimeUtcStart=2021-06-02T15:33:44.920241Z 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 index 40bad61b44aa..ea30e8e893e6 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:05 GMT + - Wed, 02 Jun 2021 15:35:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd3157d12-7c7e-4309-a3cc-0df6f8d38b83?restype=container + uri: https://redacted.blob.core.windows.net/src7a3f5948-61c4-4747-b6bd-da5e5e3c5a6d?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:04 GMT + - Wed, 02 Jun 2021 15:35:37 GMT etag: - - '"0x8D91C799A3AD7C9"' + - '"0x8D925DC11F7FC1C"' last-modified: - - Fri, 21 May 2021 16:58:05 GMT + - Wed, 02 Jun 2021 15:35:37 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: - - Fri, 21 May 2021 16:58:05 GMT + - Wed, 02 Jun 2021 15:35:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd3157d12-7c7e-4309-a3cc-0df6f8d38b83/bb013519-a6ae-4b88-b57c-e21ac382d1c0.txt + uri: https://redacted.blob.core.windows.net/src7a3f5948-61c4-4747-b6bd-da5e5e3c5a6d/358de1b6-4459-4709-9726-3f59072d3ad1.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:04 GMT + - Wed, 02 Jun 2021 15:35:37 GMT etag: - - '"0x8D91C799A4240F9"' + - '"0x8D925DC1205C459"' last-modified: - - Fri, 21 May 2021 16:58:05 GMT + - Wed, 02 Jun 2021 15:35:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:05 GMT + - Wed, 02 Jun 2021 15:35:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf8204045-0f11-46fc-86b1-f2c2c2d3fe82?restype=container + uri: https://redacted.blob.core.windows.net/target8b1e3cef-468a-4202-ab86-2afe81aa3f2e?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:05 GMT + - Wed, 02 Jun 2021 15:35:36 GMT etag: - - '"0x8D91C799A606E30"' + - '"0x8D925DC1222618D"' last-modified: - - Fri, 21 May 2021 16:58:05 GMT + - Wed, 02 Jun 2021 15:35:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,14 +126,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd3157d12-7c7e-4309-a3cc-0df6f8d38b83?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf8204045-0f11-46fc-86b1-f2c2c2d3fe82?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7a3f5948-61c4-4747-b6bd-da5e5e3c5a6d?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8b1e3cef-468a-4202-ab86-2afe81aa3f2e?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -144,151 +144,46 @@ interactions: body: string: '' headers: - apim-request-id: 8af36b18-5bd0-4869-978e-7058ce8ad13d + apim-request-id: 79287836-0e08-472f-937d-b066b5cf1e9d content-length: '0' - date: Fri, 21 May 2021 16:58:05 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/85ca518d-20f8-4a48-b122-72edfe949379 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:35:37 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/70889650-7a9b-4928-a36f-6f06dd2c8a9c + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8af36b18-5bd0-4869-978e-7058ce8ad13d + x-requestid: 79287836-0e08-472f-937d-b066b5cf1e9d status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/85ca518d-20f8-4a48-b122-72edfe949379 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMU/EMAyF/4vnC0rShkuzIZgREscAm3Hdu0htIyXugE7330kqHTOL9fyev+cr - xBECeEfojB+V1ZNXPfZefRtr1dHyOPHQD91xgANQZhQeX+o4xYU/hCprtTVKO2XNyTwG54N2D4Pu - jO++KjJjkSeSmNb/Un3DiqBspd69JnkXzPVrc7dlwfwD4QqSBGcI+gATxrmmTZaNiEvZdVzfcjrn - +7om+eS/quYQrsTzHd37ni+YkYRzE+c9ud1+AZeK5vYjAQAA - headers: - apim-request-id: e0c1aa9a-bff0-4ab5-8d24-0526d8e43e42 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:05 GMT - etag: '"AEB13723D8DD830F4A68A719CB0491B7A41C95BBC20E87EA19352F5422D844CC"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: e0c1aa9a-bff0-4ab5-8d24-0526d8e43e42 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/85ca518d-20f8-4a48-b122-72edfe949379 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/85ca518d-20f8-4a48-b122-72edfe949379 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzVOjHimVtRTsXBZIO7cbQcirAtgCJGYog7x7JQDpnIY48fndX - iCN4cJbQKjcKLScnOuycOCmtRa/DOIWhG0w/wA4oB+QwvtdxjEv4YqqslloJaYVWR7X31nlpXwZp - lDM/FZmx8CtxTOsTlDO96fYNK4x8KfXvI/GBMdfWdr0sC+Y/8FfgxDiDVzuYMM7V9bL5RKGUTcf1 - M6dzfqxr4u/wH9U4wpXC/EC3vLdfzEgcchPnzbnd7pXySkQjAQAA - headers: - apim-request-id: a0976903-86bd-4ce6-b5e9-84f3a5373f04 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:05 GMT - etag: '"3A07C689A509B13DA690C98179B9424BA276954C3F9E836B8E454B3126EC104B"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: a0976903-86bd-4ce6-b5e9-84f3a5373f04 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/85ca518d-20f8-4a48-b122-72edfe949379 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/85ca518d-20f8-4a48-b122-72edfe949379 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/70889650-7a9b-4928-a36f-6f06dd2c8a9c response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/4VzFEiylEjaivYDgjQd2o2VaVeALQMSPRRB/r2y0c5diCPv3gG8 - Q+ohgLMRrXK90HJwwqBx4lNpLc6a+oG88d3ZwwFiIWTqX9q4pZneODZWS62EtEKrmzoF64K0Ry87 - 5bqPhkxY+SlyWvJ/1OlovHbO2A2rjLzWlruuOac8bqd1nrF8Q7gDL4wTBHWAAdNE7QO5+TFSrbtO - +VKWsexrS+WF34lfGQv/hiPmSNMfuvc9f2HByFQ2Me7O4/EDTg4n4iABAAA= + string: '{"id":"70889650-7a9b-4928-a36f-6f06dd2c8a9c","createdDateTimeUtc":"2021-06-02T15:35:37.9362618Z","lastActionDateTimeUtc":"2021-06-02T15:35:39.1768098Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 6809ad95-dd4f-4a4a-af0f-25d277fa0dee + apim-request-id: 981ca323-a2ab-4429-8d12-dcc350a952c1 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:06 GMT - etag: '"21EDC0CECCA4C5228C7FB24B41C31A10CB86E451063252ABD1343498DCF27D52"' + date: Wed, 02 Jun 2021 15:36:07 GMT + etag: '"7B025E49ACB3F84BDF7F53D3E15AB0D55DECC0BED7CFCFA3DA57FAB81236D5B0"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6809ad95-dd4f-4a4a-af0f-25d277fa0dee - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/85ca518d-20f8-4a48-b122-72edfe949379 -- 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/batches/85ca518d-20f8-4a48-b122-72edfe949379 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMy24DIQxF/4V1iICBDLCr2g+IlHSR7hzwpEjzkMCziKL8e2GUrrOx7Hvu8YOl - yDyzJoCRNnIlBss1aMuvUineK4wDOu263rEdCxmBMH7VcU4TflOorhJKcmG4kmd58MZ6YfZOdNJ2 - P1UZodBHoLTM76zDXjtlrTZNKwS0lto7rSEgRowtXKcJ8p35B6OFYGRe7tgAaazUi8Zrt5QtTvMx - L7e8nRXNC12QTgSZXuUAc8DxX93+ff5ChkCY23JrRPXP5x8brAJHIwEAAA== - headers: - apim-request-id: 09d7f62a-5b72-44b9-ada9-3c1973affb09 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:07 GMT - etag: '"014DF17BBF31CAE3FB77AAD05CD0F0C82A2D0DED562D0B4AA2D81A5C4FAEAAE4"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 09d7f62a-5b72-44b9-ada9-3c1973affb09 + x-requestid: 981ca323-a2ab-4429-8d12-dcc350a952c1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/85ca518d-20f8-4a48-b122-72edfe949379 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/70889650-7a9b-4928-a36f-6f06dd2c8a9c - request: body: null headers: @@ -303,11 +198,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:08 GMT + - Wed, 02 Jun 2021 15:36:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1c752bb5-246c-491b-950b-0ad94b9211b1?restype=container + uri: https://redacted.blob.core.windows.net/src940f4371-477b-45b9-87e9-786396301822?restype=container response: body: string: '' @@ -315,11 +210,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:08 GMT + - Wed, 02 Jun 2021 15:36:08 GMT etag: - - '"0x8D91C799C04DFDB"' + - '"0x8D925DC248DB97F"' last-modified: - - Fri, 21 May 2021 16:58:08 GMT + - Wed, 02 Jun 2021 15:36:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -347,11 +242,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:08 GMT + - Wed, 02 Jun 2021 15:36:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src1c752bb5-246c-491b-950b-0ad94b9211b1/c32e0872-3196-4db3-ac3e-4fbe95e94e35.txt + uri: https://redacted.blob.core.windows.net/src940f4371-477b-45b9-87e9-786396301822/c6f41363-7235-482f-9edd-38914ec2f4be.txt response: body: string: '' @@ -361,11 +256,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:08 GMT + - Wed, 02 Jun 2021 15:36:08 GMT etag: - - '"0x8D91C799C129AF3"' + - '"0x8D925DC24983FCB"' last-modified: - - Fri, 21 May 2021 16:58:08 GMT + - Wed, 02 Jun 2021 15:36:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -391,11 +286,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:08 GMT + - Wed, 02 Jun 2021 15:36:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc2f839ed-88f9-4729-87cf-4ca43f105c1e?restype=container + uri: https://redacted.blob.core.windows.net/targetbbbe8968-2f1b-4d7d-a88d-45ca048b39ac?restype=container response: body: string: '' @@ -403,11 +298,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:07 GMT + - Wed, 02 Jun 2021 15:36:08 GMT etag: - - '"0x8D91C799C32279D"' + - '"0x8D925DC24B4F361"' last-modified: - - Fri, 21 May 2021 16:58:08 GMT + - Wed, 02 Jun 2021 15:36:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -416,14 +311,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1c752bb5-246c-491b-950b-0ad94b9211b1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc2f839ed-88f9-4729-87cf-4ca43f105c1e?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src940f4371-477b-45b9-87e9-786396301822?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbbbe8968-2f1b-4d7d-a88d-45ca048b39ac?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -434,151 +329,46 @@ interactions: body: string: '' headers: - apim-request-id: 39e6cea9-5c11-4f7d-b174-3dea8600c33e + apim-request-id: 05f77baa-4fc7-4508-a711-4ad02d34f8a0 content-length: '0' - date: Fri, 21 May 2021 16:58:07 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:36:08 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b849ea0a-e4a9-46a3-8b28-32a190e543d0 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 39e6cea9-5c11-4f7d-b174-3dea8600c33e + x-requestid: 05f77baa-4fc7-4508-a711-4ad02d34f8a0 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/0VzVEiyZcvagnQuCjQd0o2g6USAbQESPRRB/r2SgWTuQhzv+I53 - EUbhhVWj7WDoJViaZKtbJ4fJoDSt68mBM4MicRCYCJjG9zLOYaFvxsIaZbRUVhp91p23ziv31jdK - mab5KcwMmY/IIa7/wxrdVSwz8JbL3UfkL4ZU3lZ3WxZIv8LfBUeGWXh1EBOEuaRV5g2Rct51WD9T - vKbnuka+0KuqOggr0vxE977TDRIgU6riuiePxx/i0Bp4JAEAAA== - headers: - apim-request-id: e407896e-0f7e-458c-a0aa-d339eadbb099 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:07 GMT - etag: '"40A0A6ABF7CFFD66C16221F190C410632B543CB6168D3A23A62F2144D8EFC44B"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: e407896e-0f7e-458c-a0aa-d339eadbb099 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/0VzVEiyZcvagnQuCjQd0o2g6USAbQESPRRB/r2SgWTuQhzv+I53 - EUbhhVWj7WDoJViaZKtbJ4fJoDSt68mBM4MicRCYCJjG9zLOYaFvxsIaZbRUVhp91p23ziv31jdK - mab5KcwMmY/IIa7/wxrdVSwz8JbL3UfkL4ZU3lZ3WxZIv8LfBUeGWXh1EBOEuaRV5g2Rct51WD9T - vKbnuka+0KuqOggr0vxE977TDRIgU6riuiePxx/i0Bp4JAEAAA== - headers: - apim-request-id: 775a4997-0ee3-41fb-9f9f-c26ea8e99329 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:08 GMT - etag: '"40A0A6ABF7CFFD66C16221F190C410632B543CB6168D3A23A62F2144D8EFC44B"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 775a4997-0ee3-41fb-9f9f-c26ea8e99329 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e -- 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/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEi0FcvaivYDijYd2o2gaUeALQMSPRRB/r2y0c5diCPv3gG8 - qziooJwZ3AX7TqPjUbe29bofgTS0vmOPHnrD6qQoMwoPL3Vc48IfQpUFA1Ybp8Fe7SU4H4w/d40x - 0DRflZmxyBNJXNN/WH+Gxlvw3Y4VQdlKzb1tKcU07adtWTB/q3BXsgrOKtiTGjHOXF8wu0/EpRw6 - pte8TvlYayqt8snyLpjlN0yYiOc/9Oh7vmFGEs67mA7n8fgBFC7Q5yEBAAA= - headers: - apim-request-id: 109ec7c8-7c4c-435b-a031-fa9af336de20 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:09 GMT - etag: '"337A8FB93F47195C8AF22264BCB24D17E2B0A740CDA7CFB6487C8754F1901DB8"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 109ec7c8-7c4c-435b-a031-fa9af336de20 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b849ea0a-e4a9-46a3-8b28-32a190e543d0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWMy24DIQxF/4V1iMAzBIZd1H5ApKSLdmeBJ0WahwSeRRTl3wujdt2NZd9zj58i - ReGFUdGccLASDY2y172TwwhBQu8sOXQwKBIHETIhU3yv45Zm+uBQXVCgpTIS9E2fvHFeuaPtlIKu - +6rOhIXPgdO6/KcNR+icBmebVhh5K7V33UIgihRbuM0z5ofwT8Er4yS8PogR01SpV43Xbil7nJZL - Xu95PytaVv4kvjJm/i0HXAJNf+r+7+0bMwam3JZ7I2Bfrx9lRHSQJAEAAA== + string: '{"id":"b849ea0a-e4a9-46a3-8b28-32a190e543d0","createdDateTimeUtc":"2021-06-02T15:36:08.9101301Z","lastActionDateTimeUtc":"2021-06-02T15:36:09.5400119Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 2fdd86d1-9d80-4dad-b2c2-a1f7513dfd3a + apim-request-id: 824f89a2-9c01-46db-8df6-64cf93d1e668 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:10 GMT - etag: '"E183A5CF3C3B22DAE1A5E9BEC74FEE056F24D41BBDA7228556450A5E461C5A1B"' + date: Wed, 02 Jun 2021 15:36:38 GMT + etag: '"7862707CF0E8832CEB815245B6EDA7229DB6D35289627FA17482E26E050BB533"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2fdd86d1-9d80-4dad-b2c2-a1f7513dfd3a + x-requestid: 824f89a2-9c01-46db-8df6-64cf93d1e668 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/50d56a97-a5ef-4148-9f2c-2487e8a8290e + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b849ea0a-e4a9-46a3-8b28-32a190e543d0 - request: body: null headers: @@ -593,11 +383,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:11 GMT + - Wed, 02 Jun 2021 15:36:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf588b00c-ddf3-4605-bbb0-2b5ed30f36e4?restype=container + uri: https://redacted.blob.core.windows.net/src2568e5eb-274d-4419-a15b-98ed30b03fdd?restype=container response: body: string: '' @@ -605,11 +395,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:10 GMT + - Wed, 02 Jun 2021 15:36:39 GMT etag: - - '"0x8D91C799DB2DFCD"' + - '"0x8D925DC372E9567"' last-modified: - - Fri, 21 May 2021 16:58:11 GMT + - Wed, 02 Jun 2021 15:36:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -637,11 +427,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:11 GMT + - Wed, 02 Jun 2021 15:36:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf588b00c-ddf3-4605-bbb0-2b5ed30f36e4/86e06023-cd95-44a3-a9bc-edf3f549a4a7.txt + uri: https://redacted.blob.core.windows.net/src2568e5eb-274d-4419-a15b-98ed30b03fdd/2b21c98e-0a4e-4fe5-ae7a-955e72bea933.txt response: body: string: '' @@ -651,11 +441,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:10 GMT + - Wed, 02 Jun 2021 15:36:39 GMT etag: - - '"0x8D91C799DBF3A0C"' + - '"0x8D925DC373719B6"' last-modified: - - Fri, 21 May 2021 16:58:11 GMT + - Wed, 02 Jun 2021 15:36:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -681,11 +471,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:11 GMT + - Wed, 02 Jun 2021 15:36:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc8637141-549d-4252-a7f8-d543b561eac9?restype=container + uri: https://redacted.blob.core.windows.net/target073c54d9-4506-4974-8db4-cf0af7e19d1d?restype=container response: body: string: '' @@ -693,11 +483,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:10 GMT + - Wed, 02 Jun 2021 15:36:40 GMT etag: - - '"0x8D91C799DDC39BC"' + - '"0x8D925DC375624EC"' last-modified: - - Fri, 21 May 2021 16:58:11 GMT + - Wed, 02 Jun 2021 15:36:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -706,14 +496,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf588b00c-ddf3-4605-bbb0-2b5ed30f36e4?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc8637141-549d-4252-a7f8-d543b561eac9?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2568e5eb-274d-4419-a15b-98ed30b03fdd?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target073c54d9-4506-4974-8db4-cf0af7e19d1d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '484' Content-Type: - application/json User-Agent: @@ -724,151 +514,46 @@ interactions: body: string: '' headers: - apim-request-id: 1ae3a9e4-d1fe-4c20-989e-5a6234974ed8 + apim-request-id: 9915acd5-0195-46af-af2b-e6e27f8b7a71 content-length: '0' - date: Fri, 21 May 2021 16:58:10 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa + date: Wed, 02 Jun 2021 15:36:39 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e5042709-8ee3-43ca-bd9b-fa7bd59c7265 set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1ae3a9e4-d1fe-4c20-989e-5a6234974ed8 + x-requestid: 9915acd5-0195-46af-af2b-e6e27f8b7a71 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVEiCLNfagmQuCjQd2o1h6ESAbQESPRRB/r2SgXTuQhzv+I53 - iBcI4Bi948Gpnj0p50etzsY7NdAwOo08aETYAWVG4cuxjlOc+VOoslZbo3SnrDkZH7rXYMxLZ02v - e/tdmQmL7EliWv6LdQ0rgrKWeveW5EMw17fNXecZ8w+EO0gSnCDoHYwYp5o2WVYiLmXTcXnP6Zqf - 65Lki/+qmkO4EE9PdOs73DAjCecmrlvyePwCMRoLaSQBAAA= - headers: - apim-request-id: 45cc26dc-b0db-40c9-b7d0-fc29e8a04550 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:10 GMT - etag: '"0BA79A53E084C18F7809CD40755AACFAFDDBFB4322306E69E75E464406D3C7EF"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 45cc26dc-b0db-40c9-b7d0-fc29e8a04550 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNQW/CMAyF/4vPZEqyNKW5oXFGk8YOcDPGhUhtIyXmMCH++9JKcOViPfv5e+8O - 8QwBHKN33DnVsiflfK/VyXinOup6p5E7jQgroMwofN7WsY8j/wpV1mprlG6UNXvjQ7MOxnw01rS6 - tcfKDFhkQxLT9B7z+tNZu2BFUG6l/u2S/AjmWjtfb+OI+Q/CHSQJDhDMCnqMQ3WDnn0iLmXRcfrO - 6ZKf65TkwK+omSOciIcnuuR9XTEjCedZXBbn8fgH0Pqi9iQBAAA= - headers: - apim-request-id: 1e2b7d85-2ca9-4e5a-a1e5-72ac3270f83c - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:10 GMT - etag: '"32B15235C4F89001E297E9A5C1D50ED96C99A61BF3C97CF7D689A1149F971BD4"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 1e2b7d85-2ca9-4e5a-a1e5-72ac3270f83c - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa -- 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/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEiCJFfaiuQDiiYZ2o1laEeALQMSPQRB/j2y0c5diCPv3gF8 - iHQVUVgCbylY2ZFHaX2v5I/2VgYMvVVAQQGIncBCwHQ9tnFOE10YG2uU0VI5afRZ++jeotZ7Z3Sn - OvPdmBEqvyOnOf+Hmb0J1gXlVqwy8FJb7nPJOeVhPS3TBOUu4kPwzDCKqHeihzRSe0GtPiLVuumU - P8o8lG1tqTzzF/GJofBvGCEjjX/o1ne4QQFkKqsYNuf5fAF+fFKvIQEAAA== - headers: - apim-request-id: 84c21b13-48e3-441e-ac56-260987e9f4a0 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:12 GMT - etag: '"76DA68173BE8001204C0999E7B6F858339CDD10F220AC7156D053BA0F8AFA182"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 84c21b13-48e3-441e-ac56-260987e9f4a0 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e5042709-8ee3-43ca-bd9b-fa7bd59c7265 response: body: - string: !!binary | - H4sIAAAAAAAEAIWMy24DIQxF/4V1iAABU9hVyQdESrJodq7HkyLNQwLPIory74VRuu7Gsu+5x0+R - ehGFJfCWgpUdeZTWD0p+a29lwDBYBRQUgNgJzARM/bGOS5roylhdo4yWykmjL9pH9xG13jujO9WZ - W3VGKPyJnJb5P83sTbAuKNe0wsBrqb3zikjUU9/CdZogP0R8Cl4YRhH1TgyQxkqjarx2S9niNJ/y - cs/bWdG88BfxmSHzu4wwI41/6vbv8AMZkCm35d6I6V6vXwHXD14kAQAA + string: '{"id":"e5042709-8ee3-43ca-bd9b-fa7bd59c7265","createdDateTimeUtc":"2021-06-02T15:36:40.1565566Z","lastActionDateTimeUtc":"2021-06-02T15:36:44.3046541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 081ed67d-4ba4-47e5-acbd-16cc3f98bdb9 + apim-request-id: 4320e123-20b5-4a2f-89df-e3aea4fe3db3 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:13 GMT - etag: '"3AB20319658F6A90A7F735541B547BD6790CDB069D2A9AC90A0F000C921574BF"' + date: Wed, 02 Jun 2021 15:37:09 GMT + etag: '"E8DE21F519649520F3F3FC0CBF3154C7CF37953113F515657A82ADE981764D86"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 081ed67d-4ba4-47e5-acbd-16cc3f98bdb9 + x-requestid: 4320e123-20b5-4a2f-89df-e3aea4fe3db3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4ea64e94-7e6c-46f0-b164-9c9f40ae90aa + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e5042709-8ee3-43ca-bd9b-fa7bd59c7265 - request: body: null headers: @@ -883,11 +568,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:13 GMT + - Wed, 02 Jun 2021 15:37:30 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9dae0b01-38ea-482b-95e5-4d9044444c09?restype=container + uri: https://redacted.blob.core.windows.net/src77ceb97b-0dd8-49f1-94be-0a5fd5ead964?restype=container response: body: string: '' @@ -895,11 +580,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:13 GMT + - Wed, 02 Jun 2021 15:37:29 GMT etag: - - '"0x8D91C799F5DBD06"' + - '"0x8D925DC554B9830"' last-modified: - - Fri, 21 May 2021 16:58:13 GMT + - Wed, 02 Jun 2021 15:37:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -927,11 +612,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:14 GMT + - Wed, 02 Jun 2021 15:37:30 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src9dae0b01-38ea-482b-95e5-4d9044444c09/dc7d0182-592b-4eae-9ee7-0bb24cd48a3d.txt + uri: https://redacted.blob.core.windows.net/src77ceb97b-0dd8-49f1-94be-0a5fd5ead964/351eff3e-ee06-489f-9648-c782b456efb0.txt response: body: string: '' @@ -941,11 +626,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:13 GMT + - Wed, 02 Jun 2021 15:37:29 GMT etag: - - '"0x8D91C799F656F07"' + - '"0x8D925DC55585DB5"' last-modified: - - Fri, 21 May 2021 16:58:14 GMT + - Wed, 02 Jun 2021 15:37:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -971,11 +656,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:14 GMT + - Wed, 02 Jun 2021 15:37:30 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target34dddddc-9e4b-4a58-88e5-230735d65771?restype=container + uri: https://redacted.blob.core.windows.net/targetb8b54b1a-6e05-4a4d-bd72-0f3b9c26cf80?restype=container response: body: string: '' @@ -983,11 +668,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:13 GMT + - Wed, 02 Jun 2021 15:37:30 GMT etag: - - '"0x8D91C799F88153E"' + - '"0x8D925DC55799B9D"' last-modified: - - Fri, 21 May 2021 16:58:14 GMT + - Wed, 02 Jun 2021 15:37:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -996,14 +681,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9dae0b01-38ea-482b-95e5-4d9044444c09?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target34dddddc-9e4b-4a58-88e5-230735d65771?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src77ceb97b-0dd8-49f1-94be-0a5fd5ead964?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb8b54b1a-6e05-4a4d-bd72-0f3b9c26cf80?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -1014,183 +699,231 @@ interactions: body: string: '' headers: - apim-request-id: 467aeec2-3686-4b11-b7f1-44ae0b8507fd + apim-request-id: c5eb4097-0847-4e3a-b8b1-5af838e7cda0 content-length: '0' - date: Fri, 21 May 2021 16:58:14 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + date: Wed, 02 Jun 2021 15:37:30 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1a28a0dd-a1f9-41d7-84c1-f0b1113f8789 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 467aeec2-3686-4b11-b7f1-44ae0b8507fd + x-requestid: c5eb4097-0847-4e3a-b8b1-5af838e7cda0 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1a28a0dd-a1f9-41d7-84c1-f0b1113f8789 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMa/CMAyE/4tngpo0DSXb02NGSMAAm5ukEKltpMQdEOK/k1SCmcU63/k7P8Fb - 0NAJXonWKqa2qmGy7jasU3zLequksrJvlLWwAhMdkrO7PE5+dGcymRWV4KxqmOAnrnTTai7XtWil - aDfXzAyY6M+QD9NvWC1lwRIhzSnf7QMdCWN+W9x5HDE+QD+BAuEAulpBj37IaZFpNsaltGg/HWK4 - xc86Bbq4b1VxDE7GDR906fu/Y0RDLhZxW5LX6w0PR+cfJAEAAA== + string: '{"id":"1a28a0dd-a1f9-41d7-84c1-f0b1113f8789","createdDateTimeUtc":"2021-06-02T15:37:30.8922028Z","lastActionDateTimeUtc":"2021-06-02T15:37:34.9631268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 3d82c5cf-049d-4f7a-a762-9f273109148c + apim-request-id: 03ae7bc6-d700-404b-95be-bdec872e653c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:14 GMT - etag: '"744A87F39867FFB0A50C8FD665C93C013F4E3D0B48DAD83BD213F81FF4A6C255"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:38:00 GMT + etag: '"8E7DCACC2A1D56B46475EB17DFF41250404B8A4A9E3F360395DEF2734E46B680"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3d82c5cf-049d-4f7a-a762-9f273109148c + x-requestid: 03ae7bc6-d700-404b-95be-bdec872e653c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/1a28a0dd-a1f9-41d7-84c1-f0b1113f8789 - request: body: null headers: Accept: - - application/json + - application/xml + 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 15:38:01 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src5b2218a0-da90-41a0-96d2-81c282eeb93f?restype=container response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsY7CMBBE/2VrjGLHcYI7BDVCOiiObmM7wVISS/ZSnBD/jh2Ja2lWszv7Zp7g - LWjoBa9EZxVTO9UwWfct6xXfscEqqawcGmUtbMBEh+TsMY+Ln92VTGZFJTirGib4hSvddJrLbS06 - Kbr2lpkJE+0N+bB8xyRv61YUKhHSI+W3U6Afwphby/Uxzxj/QD+BAuEEmm9gQD9lV1fFN8altGq/ - nGMY42ddAv26/6jCGVyMmz7omne4Y0RDLhYxrs7r9QaCK05hIwEAAA== + string: '' headers: - apim-request-id: 767c1e10-2b06-4b71-b7a6-d4264c7d3e9c - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:14 GMT - etag: '"FBB172D713AA452B2BAAB44DD82E4496C5AE9A1DAE598309C42AF964C8C7CCD2"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 767c1e10-2b06-4b71-b7a6-d4264c7d3e9c + content-length: + - '0' + date: + - Wed, 02 Jun 2021 15:38:00 GMT + etag: + - '"0x8D925DC67EB4857"' + last-modified: + - Wed, 02 Jun 2021 15:38:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + code: 201 + message: Created - 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/batches/b21028d6-6965-43b7-b619-fd646d4f56dd - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwW7DIBBE/2XPIQIMxOEWpR9Qpemhua0BO0g2lmB9iKL8e7HVnnNZze7MG2mf - ED1Y6KTgsvWGmaPRTDXdgXVGHFnvjTJe9dp4DztwOSAF/1HHNU7hm1xlJZeCcc2kuApjdWuF2jey - VbI93CozYqGTozind5jeN4prpdWKFUJaSs1dlpRiGtbTMk2YH2CfQDPhCFbsoMc4hvoCX33nQimb - jukzz0Pe1ppKM/0E+iLM9Bd2mFwY/9Gt73zHjI5CXsWwOa/XL5KxHsghAQAA + body: This is written in english. headers: - apim-request-id: 24a021ab-bcf5-4fa7-a468-7338a6108cc1 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:15 GMT - etag: '"408C6044A18F809294B4E79AFA5D65FC2711B411863B7BB2ECF011621BAB4132"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 24a021ab-bcf5-4fa7-a468-7338a6108cc1 + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 15:38:01 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src5b2218a0-da90-41a0-96d2-81c282eeb93f/96ef2bc2-48cc-4c3e-8b24-62b4aedd30af.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Wed, 02 Jun 2021 15:38:00 GMT + etag: + - '"0x8D925DC67F4ED14"' + last-modified: + - Wed, 02 Jun 2021 15:38:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 15:38:01 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/targetfb7d2590-a386-4748-8371-76260ce510c3?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 02 Jun 2021 15:38:01 GMT + etag: + - '"0x8D925DC6812459C"' + last-modified: + - Wed, 02 Jun 2021 15:38:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5b2218a0-da90-41a0-96d2-81c282eeb93f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfb7d2590-a386-4748-8371-76260ce510c3?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwW7DIBBE/2XPIQIMxOEWpR9Qpemhua0BO0g2lmB9iKL8e7HVnnNZze7MG2mf - ED1Y6KTgsvWGmaPRTDXdgXVGHFnvjTJe9dp4DztwOSAF/1HHNU7hm1xlJZeCcc2kuApjdWuF2jey - VbI93CozYqGTozind5jeN4prpdWKFUJaSs1dlpRiGtbTMk2YH2CfQDPhCFbsoMc4hvoCX33nQimb - jukzz0Pe1ppKM/0E+iLM9Bd2mFwY/9Gt73zHjI5CXsWwOa/XL5KxHsghAQAA + string: '' headers: - apim-request-id: a3e1839b-0ffe-48f9-bfc8-193735654092 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:16 GMT - etag: '"408C6044A18F809294B4E79AFA5D65FC2711B411863B7BB2ECF011621BAB4132"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + apim-request-id: 82d9d144-e1b3-4492-b4ea-f13f95cc855a + content-length: '0' + date: Wed, 02 Jun 2021 15:38:01 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/14b4a15e-8a19-4b18-9005-324a40790e0a + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a3e1839b-0ffe-48f9-bfc8-193735654092 + x-requestid: 82d9d144-e1b3-4492-b4ea-f13f95cc855a status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/14b4a15e-8a19-4b18-9005-324a40790e0a response: body: - string: !!binary | - H4sIAAAAAAAEAIWNTY7DIAxG7+J1qYAASdlVnQOM1HbR2TlAWqT8SOAsqqp3L0Qz69lYtt/37BdE - DxZ6KbjsvGHmYDRTTd+y3ogDG7xRxqtBG+9hBy4FpOC/SrnEKVzJFVdyKRjXTIqLMFZ3Vqh9Izsl - u/anOCNmOjqKy/yfpveN4lppVbVMSGsuufPqXAg+1P95nSZMT7AvoIVwBCt2MGAcC7W88pLNeVvH - +Tst97SNBc0L3QKdCRP9hh3OLox/6nbv9MCEjkKqzb0S2b7fHxpayf8kAQAA + string: '{"id":"14b4a15e-8a19-4b18-9005-324a40790e0a","createdDateTimeUtc":"2021-06-02T15:38:01.9108422Z","lastActionDateTimeUtc":"2021-06-02T15:38:09.4423062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 99b2f4c7-4571-4afc-995e-ea12e36cd9be + apim-request-id: 31bfde49-4d44-4c60-a063-f062b9c51266 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:17 GMT - etag: '"16B410B469318F2E11DD71A3705C3E4D87851EBF103C6B852568CB57CC5FF2BC"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:38:31 GMT + etag: '"7F3FBC7195EF52EFC32124DCF5CE4875144DE6901B0F740A4AEA78E207768E2F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 99b2f4c7-4571-4afc-995e-ea12e36cd9be + x-requestid: 31bfde49-4d44-4c60-a063-f062b9c51266 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/b21028d6-6965-43b7-b619-fd646d4f56dd + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/14b4a15e-8a19-4b18-9005-324a40790e0a - request: body: null headers: @@ -1205,11 +938,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:17 GMT + - Wed, 02 Jun 2021 15:38:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src21f9dfee-d69a-4c8a-97cc-6f900c2643e1?restype=container + uri: https://redacted.blob.core.windows.net/src385d82e1-ede1-49c0-8750-747432600830?restype=container response: body: string: '' @@ -1217,11 +950,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:17 GMT + - Wed, 02 Jun 2021 15:38:32 GMT etag: - - '"0x8D91C79A1A2BADA"' + - '"0x8D925DC7A56AD57"' last-modified: - - Fri, 21 May 2021 16:58:17 GMT + - Wed, 02 Jun 2021 15:38:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1249,11 +982,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:17 GMT + - Wed, 02 Jun 2021 15:38:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src21f9dfee-d69a-4c8a-97cc-6f900c2643e1/9154f7b2-6079-4bd1-9d11-0de70dfb1853.txt + uri: https://redacted.blob.core.windows.net/src385d82e1-ede1-49c0-8750-747432600830/fe1ce7af-5ad0-4197-923c-5c028f3bcb25.txt response: body: string: '' @@ -1263,11 +996,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:17 GMT + - Wed, 02 Jun 2021 15:38:32 GMT etag: - - '"0x8D91C79A1AD8027"' + - '"0x8D925DC7A602A98"' last-modified: - - Fri, 21 May 2021 16:58:17 GMT + - Wed, 02 Jun 2021 15:38:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1293,11 +1026,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:17 GMT + - Wed, 02 Jun 2021 15:38:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete801edfc-0cbb-458b-bbad-43bc754f61de?restype=container + uri: https://redacted.blob.core.windows.net/targeta0b05080-f5f5-40b2-ba74-853c8973b753?restype=container response: body: string: '' @@ -1305,11 +1038,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:17 GMT + - Wed, 02 Jun 2021 15:38:32 GMT etag: - - '"0x8D91C79A1C6506D"' + - '"0x8D925DC7A80023A"' last-modified: - - Fri, 21 May 2021 16:58:18 GMT + - Wed, 02 Jun 2021 15:38:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1318,14 +1051,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src21f9dfee-d69a-4c8a-97cc-6f900c2643e1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete801edfc-0cbb-458b-bbad-43bc754f61de?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src385d82e1-ede1-49c0-8750-747432600830?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta0b05080-f5f5-40b2-ba74-853c8973b753?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -1336,279 +1069,46 @@ interactions: body: string: '' headers: - apim-request-id: de379962-207f-479f-a108-c60833e5da6c + apim-request-id: 014cd2fe-bca5-4deb-8a3c-53cdc28a0892 content-length: '0' - date: Fri, 21 May 2021 16:58:17 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:38:32 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/483f1e94-ed29-4561-b05e-93f8108a250e + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: de379962-207f-479f-a108-c60833e5da6c + x-requestid: 014cd2fe-bca5-4deb-8a3c-53cdc28a0892 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NzY7CMAyE38Vnskr6E0JuiD2vVgIOcHPdtERqGylxDwjx7qSV4MzFGs/4Gz/A - t2BBlrTFttZCmUaJSlaFaExJYld1qnNNY/RWwwYoOmTX/uZx8qM7M2W2kIUSshaFOilta2OV+ZGm - 1MaU18wMmHhP7MP0HbarViwx8pzy3V/gI2PMbxd3HkeMd7AP4MA4gJUb6NAPOV1kmolcSqv2038M - fXyvU+CL+1QtDuFEbnija9/hhhGJXVxEvybP5wv4lSrVJAEAAA== - headers: - apim-request-id: 8dd925c3-1dcf-4b78-aece-0b56ff9725bd - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:17 GMT - etag: '"5EAABE1C663EE37896A3D1E3950EE99B768E11C261BFCA4D3E83F48D70C6D871"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 8dd925c3-1dcf-4b78-aece-0b56ff9725bd - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE34VzVIj+UWRtQToXBZoM7UbTciLAtgCJGYog7x7ZQLp2IY48fnd3 - CAM40DXvaWiNQtujanRTqd7WrLpmxNH3vTV7Azvg5En88F7GKcz+LFzYSleodKsqPKFxrXVo37St - jbX1T2EmynJgCXH5H0PTtd1GZSG55fL2EeVLKJXW9XqbZ0q/4O4gUWgChzsYKUzFdXr1mX3Omw7L - Z4qX9FqXKN/+L2rlmBb20wvd8o5XSsTi0youm/N4PAFai+kbIwEAAA== - headers: - apim-request-id: fcf65ea3-e586-43b4-8f75-ccdb6e8a608b - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:18 GMT - etag: '"DFEB295C2743785EA172DEAB71EF9C444344159BCF1890AFC0D491326BA3124A"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: fcf65ea3-e586-43b4-8f75-ccdb6e8a608b - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 -- 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/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE34VzVIj+UWRtQToXBZoM7UbTciLAtgCJGYog7x7ZQLp2IY48fnd3 - CAM40DXvaWiNQtujanRTqd7WrLpmxNH3vTV7Azvg5En88F7GKcz+LFzYSleodKsqPKFxrXVo37St - jbX1T2EmynJgCXH5H0PTtd1GZSG55fL2EeVLKJXW9XqbZ0q/4O4gUWgChzsYKUzFdXr1mX3Omw7L - Z4qX9FqXKN/+L2rlmBb20wvd8o5XSsTi0youm/N4PAFai+kbIwEAAA== - headers: - apim-request-id: 69bf99d7-5eac-42e9-b85b-5f7ffafece26 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:19 GMT - etag: '"DFEB295C2743785EA172DEAB71EF9C444344159BCF1890AFC0D491326BA3124A"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 69bf99d7-5eac-42e9-b85b-5f7ffafece26 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 -- 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/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE34VzVIj+UWRtQToXBZoM7UbTciLAtgCJGYog7x7ZQLp2IY48fnd3 - CAM40DXvaWiNQtujanRTqd7WrLpmxNH3vTV7Azvg5En88F7GKcz+LFzYSleodKsqPKFxrXVo37St - jbX1T2EmynJgCXH5H0PTtd1GZSG55fL2EeVLKJXW9XqbZ0q/4O4gUWgChzsYKUzFdXr1mX3Omw7L - Z4qX9FqXKN/+L2rlmBb20wvd8o5XSsTi0youm/N4PAFai+kbIwEAAA== - headers: - apim-request-id: ffe61349-0359-4031-b68c-0c3efb8a1e2e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:20 GMT - etag: '"DFEB295C2743785EA172DEAB71EF9C444344159BCF1890AFC0D491326BA3124A"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: ffe61349-0359-4031-b68c-0c3efb8a1e2e - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/483f1e94-ed29-4561-b05e-93f8108a250e response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/4VzFEiyLKvaivYDgjQd2o2mZVeALQMSPRRB/r2y0c5diCPv3gG8 - QxzAg2yow6G1QrleCSONFr1rSDyZUY2h753tLJyAckAOw2sdt7iEd6bKaqmVkK3Q6qasb51X7ixd - Y51rPiszY+Fn4rimfzCtztoa07V6xwojb6XmrltKMU37aVsWzN/g78Ar4wxenWDEOIf6gtx9olDK - oWO65HXKx1pTaeWPwG+MmX/DhInC/IcefS9fmJE45F1Mh/N4/ADfyPkyIQEAAA== + string: '{"id":"483f1e94-ed29-4561-b05e-93f8108a250e","createdDateTimeUtc":"2021-06-02T15:38:32.8282822Z","lastActionDateTimeUtc":"2021-06-02T15:38:34.5245464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: a6c46371-d912-4998-835f-2a3060a96020 + apim-request-id: 0f3d7415-b191-4468-ad83-944a75ab1267 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:21 GMT - etag: '"8D74FB1A7413E1F1008481287C36EC4F3CE6FFE361B18F65D2161BF45228FA2A"' + date: Wed, 02 Jun 2021 15:39:02 GMT + etag: '"06F4FA7B6D3AB487A9EE33D497DCF657EE7FE4F09B3959260E4F8E0942012169"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a6c46371-d912-4998-835f-2a3060a96020 + x-requestid: 0f3d7415-b191-4468-ad83-944a75ab1267 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 -- 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/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEiyrLDaiuQDijYd0o2mZVeALQMSPRRB/r2ykc5diCPv3gG8 - i9gLL1RDJ+xbJzV0WlpljeygIfliBz2ErgN3cuIgKAfk0F/quMY5fDJV1iijpWql0VftfAtew1FB - 4wCar8pMWPiVOC7pH8zoowXnrIINK4y8lpp7X1OKadxO6zxj/hH+LnhhnITXBzFgnEJ9QW0+UShl - 1zG95WXM+1pTaeFb4A/GzM8wYaIw/aF73/kbMxKHvIlxdx6PXwBvrLMhAQAA - headers: - apim-request-id: af512a24-09f5-49b1-b1d0-5e5768cfabd5 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:22 GMT - etag: '"A2BF00C93D150607B882D6096F676226770A1D9C77353A9EAC51706310C03E39"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: af512a24-09f5-49b1-b1d0-5e5768cfabd5 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 -- 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/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEiyrLDaiuQDijYd0o2mZVeALQMSPRRB/r2ykc5diCPv3gG8 - i9gLL1RDJ+xbJzV0WlpljeygIfliBz2ErgN3cuIgKAfk0F/quMY5fDJV1iijpWql0VftfAtew1FB - 4wCar8pMWPiVOC7pH8zoowXnrIINK4y8lpp7X1OKadxO6zxj/hH+LnhhnITXBzFgnEJ9QW0+UShl - 1zG95WXM+1pTaeFb4A/GzM8wYaIw/aF73/kbMxKHvIlxdx6PXwBvrLMhAQAA - headers: - apim-request-id: 77debd09-adbb-43ec-bd4a-c6e94ee7270a - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:23 GMT - etag: '"A2BF00C93D150607B882D6096F676226770A1D9C77353A9EAC51706310C03E39"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 77debd09-adbb-43ec-bd4a-c6e94ee7270a - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 -- 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/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMy27EIAxF/4X1MAJCCGVXtR9QaaaLducYZ4qUhwTOohrNvxeidt2NZd9zj+8i - RRGE6nCA2Dup/ailVdbI0Xcon+ykJxpH7wYnTgIzAVN8reOaFnpnrK5RRkvVS6Ov2oXeB+3PynfO - ++6zOjMUfkZO2/qPZvTZeues8k0rDLyX2rvsiESRYgv3ZYH8LcJd8MYwi6BPYoI0VxpU47VbyhGn - 9S1vt3ycFa0bfxBfGDL/lhFWpPlPPf69fEEGZMptuTVihsfjB84MijskAQAA - headers: - apim-request-id: ae7b33c7-32d3-4184-8508-148ff5f3466f - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:24 GMT - etag: '"AC46C3647992E8542095A381A5F50282CC7EE157A3F9D2F78A9EAB1C90DE4E6A"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: ae7b33c7-32d3-4184-8508-148ff5f3466f - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/03c7ad56-18b1-4042-b83c-94f1febb8676 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/483f1e94-ed29-4561-b05e-93f8108a250e - request: body: null headers: @@ -1623,11 +1123,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:24 GMT + - Wed, 02 Jun 2021 15:39:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src021c2357-ee85-431a-847e-feed3874035d?restype=container + uri: https://redacted.blob.core.windows.net/srce7c94e05-aa2d-4831-8dd9-44cbe8882a71?restype=container response: body: string: '' @@ -1635,11 +1135,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:24 GMT + - Wed, 02 Jun 2021 15:39:03 GMT etag: - - '"0x8D91C79A5E0A505"' + - '"0x8D925DC8CB04BB0"' last-modified: - - Fri, 21 May 2021 16:58:24 GMT + - Wed, 02 Jun 2021 15:39:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1667,11 +1167,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:58:24 GMT + - Wed, 02 Jun 2021 15:39:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src021c2357-ee85-431a-847e-feed3874035d/ac5d54a3-a180-4f21-b6f8-0a4a2ce2f66d.txt + uri: https://redacted.blob.core.windows.net/srce7c94e05-aa2d-4831-8dd9-44cbe8882a71/b046c456-af4d-4dd0-b63a-04d21a8861b1.txt response: body: string: '' @@ -1681,11 +1181,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:58:24 GMT + - Wed, 02 Jun 2021 15:39:03 GMT etag: - - '"0x8D91C79A5EB2D44"' + - '"0x8D925DC8CC96BE9"' last-modified: - - Fri, 21 May 2021 16:58:24 GMT + - Wed, 02 Jun 2021 15:39:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1711,11 +1211,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:58:25 GMT + - Wed, 02 Jun 2021 15:39:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target9185e5f5-359f-4f06-9441-afedec2e1968?restype=container + uri: https://redacted.blob.core.windows.net/target424c0b5e-a057-462b-a862-c81a90a74afd?restype=container response: body: string: '' @@ -1723,1114 +1223,77 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:58:24 GMT - etag: - - '"0x8D91C79A60AB3B6"' - last-modified: - - Fri, 21 May 2021 16:58:25 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src021c2357-ee85-431a-847e-feed3874035d?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9185e5f5-359f-4f06-9441-afedec2e1968?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: e50882ed-2133-4f65-b916-16648110a6e3 - content-length: '0' - date: Fri, 21 May 2021 16:58:24 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: e50882ed-2133-4f65-b916-16648110a6e3 - status: - code: 202 - message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVMiq5cjainYuCjQZ0o2h6USAbQESPRRB/r2SgXTOQhzv+I43 - CAN4wL4bun5gZcaRVNu6VvXakWJ31tybdj/uX2EHlBiFh48yDmHmo1BhjTaN0laZ5tB03jpv7Iux - TrvG/hRmwixvJCEuz2KuYllQ1lzuPqN8C6bytrrrPGP6BX8DiYITeL2DEcNU0irzSsQ5bzosXyle - 0mNdopz4v6o6hAvx9EC3vvcrJiThVMVlS+73P2QyS1UkAQAA - headers: - apim-request-id: a6bef9be-ad29-466f-8f19-944477b4c41e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:24 GMT - etag: '"68C55032E47B9B606CBCB52594576A7053D1B8BE174B5D3C5A1B5355497708EF"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: a6bef9be-ad29-466f-8f19-944477b4c41e - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVEiKpMjagnQuCjQZ2o2l6USAbQESMxRB/j2yi3TtQhx5fHc3 - kXoRBXS+911P0gwDSmuDlZ0KKCl8K+qM3Q27rdgILARM/WsbxzTRibGxRhktlZNGH7WPLkTjXowL - Kmj31ZgRKu+RU57/x7bWe/OLVQa+1vb3lvmDobTa5XqdJig/It4EZ4ZRRL0RA6SxuVEtPiLVuuo0 - v5d8Ls91zvxJf1ELhzAjjU90zTtcoAAylUWcV+d+fwDO5Z1IJAEAAA== - headers: - apim-request-id: 3b7da53b-ee8d-4c5f-a277-af5f7f057056 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:24 GMT - etag: '"3ED86984FFB58F9267E868952838659A29469F7B3EA1B68684E41554D4209728"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 3b7da53b-ee8d-4c5f-a277-af5f7f057056 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 -- 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/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVEiKpMjagnQuCjQZ2o2l6USAbQESMxRB/j2yi3TtQhx5fHc3 - kXoRBXS+911P0gwDSmuDlZ0KKCl8K+qM3Q27rdgILARM/WsbxzTRibGxRhktlZNGH7WPLkTjXowL - Kmj31ZgRKu+RU57/x7bWe/OLVQa+1vb3lvmDobTa5XqdJig/It4EZ4ZRRL0RA6SxuVEtPiLVuuo0 - v5d8Ls91zvxJf1ELhzAjjU90zTtcoAAylUWcV+d+fwDO5Z1IJAEAAA== - headers: - apim-request-id: a3dd3b01-4824-4403-a951-22705b7d68de - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:25 GMT - etag: '"3ED86984FFB58F9267E868952838659A29469F7B3EA1B68684E41554D4209728"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: a3dd3b01-4824-4403-a951-22705b7d68de - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 -- 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/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVEiKpMjagnQuCjQZ2o2l6USAbQESMxRB/j2yi3TtQhx5fHc3 - kXoRBXS+911P0gwDSmuDlZ0KKCl8K+qM3Q27rdgILARM/WsbxzTRibGxRhktlZNGH7WPLkTjXowL - Kmj31ZgRKu+RU57/x7bWe/OLVQa+1vb3lvmDobTa5XqdJig/It4EZ4ZRRL0RA6SxuVEtPiLVuuo0 - v5d8Ls91zvxJf1ELhzAjjU90zTtcoAAylUWcV+d+fwDO5Z1IJAEAAA== - headers: - apim-request-id: 0b3a6dae-9156-4376-ad61-0eeda85ba3d4 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:27 GMT - etag: '"3ED86984FFB58F9267E868952838659A29469F7B3EA1B68684E41554D4209728"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 0b3a6dae-9156-4376-ad61-0eeda85ba3d4 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 -- 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/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnzSrJNm2aG4IPQLAc4GZct0RqUylxD2i1/05awZmLNfbMG8k3 - iAMEwL4d2n5gZceRVNP4RvXak2L/qbm3TTd2FzgBZUbh4amOa1z4TaiyVlujtFPWXE0bnA/Wna3z - 2hv3UZkZizyQxDX9h/mz64y7mJ0qgrKVGnvZUopp2k/bsmD+hnADWQVnCOYEI8aZ6wd694m4lEPH - 9JzXKR9rTaVV3lleBbP8hgkT8fyHHn2PX5iRhPMupsO5338AUoIj2SABAAA= - headers: - apim-request-id: d1ab489b-6d4a-4fd0-ad0a-8ab38348a873 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:28 GMT - etag: '"C8D1A2E297BE3C3E572FDF5D96A4A16E9BA11E461B16F6834A73736F79DCA749"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: d1ab489b-6d4a-4fd0-ad0a-8ab38348a873 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 -- 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/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnzSrJNm2aG4IPQLAc4GZct0RqUylxD2i1/05awZmLNfbMG8k3 - iAMEwL4d2n5gZceRVNP4RvXak2L/qbm3TTd2FzgBZUbh4amOa1z4TaiyVlujtFPWXE0bnA/Wna3z - 2hv3UZkZizyQxDX9h/mz64y7mJ0qgrKVGnvZUopp2k/bsmD+hnADWQVnCOYEI8aZ6wd694m4lEPH - 9JzXKR9rTaVV3lleBbP8hgkT8fyHHn2PX5iRhPMupsO5338AUoIj2SABAAA= - headers: - apim-request-id: 593f43b3-83c4-4c72-b15e-00122a63e665 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:29 GMT - etag: '"C8D1A2E297BE3C3E572FDF5D96A4A16E9BA11E461B16F6834A73736F79DCA749"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 593f43b3-83c4-4c72-b15e-00122a63e665 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 -- 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/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnzSrJNm2aG4IPQLAc4GZct0RqUylxD2i1/05awZmLNfbMG8k3 - iAMEwL4d2n5gZceRVNP4RvXak2L/qbm3TTd2FzgBZUbh4amOa1z4TaiyVlujtFPWXE0bnA/Wna3z - 2hv3UZkZizyQxDX9h/mz64y7mJ0qgrKVGnvZUopp2k/bsmD+hnADWQVnCOYEI8aZ6wd694m4lEPH - 9JzXKR9rTaVV3lleBbP8hgkT8fyHHn2PX5iRhPMupsO5338AUoIj2SABAAA= - headers: - apim-request-id: 850ffb5c-5c63-48c8-8599-5a22f3ec477d - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:30 GMT - etag: '"C8D1A2E297BE3C3E572FDF5D96A4A16E9BA11E461B16F6834A73736F79DCA749"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 850ffb5c-5c63-48c8-8599-5a22f3ec477d - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 -- 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/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMu27DMAxF/0VzFEiKZcvaivYDAiQd0o2h6FSAH4BED0GQf69kpHMWgrznHj5E - DMIL6NvQ9oGkGQaUTeMa2SuHktxVUW+abugOYicwETCFrzLOcaJvxuIaZbRUVhp91q23zhu7N9Yp - p+1PcUbI/IEcl/md5va20/agq5UZeM2ldloRiQKFGq7TBOku/EPwwjAKr3digDgW6lXlpZvzFsf5 - mJZb2s6C5oUvxCeGxK8ywow0/qvbv89fSIBMqS63Skz3fP4BauVlwiMBAAA= - headers: - apim-request-id: 9eb246dd-1382-4017-85ad-438cc6fdfc04 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:31 GMT - etag: '"646A9F06BAA17F1674A0B11212393CDD1CF000269D6B8144004E1D8C132394A4"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 9eb246dd-1382-4017-85ad-438cc6fdfc04 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/a96d69de-2ffc-4484-908c-e8b0e9247f73 -- request: - body: null - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:58:31 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src1e77f03e-e4a0-4578-bfb7-a07ceeaccec7?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:58:31 GMT - etag: - - '"0x8D91C79AA1C3D12"' - last-modified: - - Fri, 21 May 2021 16:58:32 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:58:32 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src1e77f03e-e4a0-4578-bfb7-a07ceeaccec7/7523428c-da81-499d-b3b2-99b442ab6c73.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - mYgA0QpY6baiB+xZp8Hk+A== - date: - - Fri, 21 May 2021 16:58:31 GMT - etag: - - '"0x8D91C79AA283E35"' - last-modified: - - Fri, 21 May 2021 16:58: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-08-04' - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:58:32 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/target138acd63-51ff-44a5-a7bb-d81ea0e08a2f?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:58:31 GMT - etag: - - '"0x8D91C79AA4AB9A1"' - last-modified: - - Fri, 21 May 2021 16:58:32 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1e77f03e-e4a0-4578-bfb7-a07ceeaccec7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target138acd63-51ff-44a5-a7bb-d81ea0e08a2f?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: afa84c0b-4de0-4ef3-b107-23ce357aaa58 - content-length: '0' - date: Fri, 21 May 2021 16:58:32 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: afa84c0b-4de0-4ef3-b107-23ce357aaa58 - status: - code: 202 - message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/d7a7868a-ba23-4689-914e-402302661573 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMW/EIAyF/4vnowKTAMdWtXNVqdeh3VxC75CSIIEzVKf774VI17mL9fyev+cr - pAk8TJasM47EF6EWg3FHcVRDFINELdEYNVoNBwglEsfpuY1TWuI7h8aiRCXkKFCdlPGj8xofnLUO - LX42ZqbKj4FTXv+HaWc6Vpl4q+3uJfMbU2lvu7stC5Uf8FfgzDSDlwf4pjS3tMu6hRBr3XVaX0s+ - l/u6Zv6If1XdCbSGON/Rve/pQoUCx9LFeU9ut19rQpegJAEAAA== - headers: - apim-request-id: ae6d13cc-e8a5-4e73-81b8-748fa321074e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:32 GMT - etag: '"78AA3C15957EFB8B92069EDD6B67C9EE435C104E2C01999150BF62B40648C4BD"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: ae6d13cc-e8a5-4e73-81b8-748fa321074e - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMW/EIAyF/4vnowKTAMdWtXNVqdeh3VxC75CSIIEzVKf774VI17mL9fyev+cr - pAk8TJasM47EF6EWg3FHcVRDFINELdEYNVoNBwglEsfpuY1TWuI7h8aiRCXkKFCdlPGj8xofnLUO - LX42ZqbKj4FTXv+HaWc6Vpl4q+3uJfMbU2lvu7stC5Uf8FfgzDSDlwf4pjS3tMu6hRBr3XVaX0s+ - l/u6Zv6If1XdCbSGON/Rve/pQoUCx9LFeU9ut19rQpegJAEAAA== - headers: - apim-request-id: 433f2add-a8c7-44f3-be0d-a108343395d3 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:32 GMT - etag: '"78AA3C15957EFB8B92069EDD6B67C9EE435C104E2C01999150BF62B40648C4BD"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 433f2add-a8c7-44f3-be0d-a108343395d3 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 -- 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/batches/d7a7868a-ba23-4689-914e-402302661573 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNMW8DIQyF/4vnEIG5A8JWtXMUqenQbi5HU6S7QwJnqKL898JJ6drFevbz994N - 0gQeJkvWGUfik1CLwbiDOKghikGilmiMGq2GHYQSieP00sY5LfGNQ2NRohJyFKjOyvjReY17Z61D - ix+NmanyU+CU1/8wvW+IcmboWGXia21/x8yvTKXV9ut1Waj8gL8BZ6YZvNrBF6W5uV52P4RY66bT - eir5Uh7rmvk9/kV1LtAa4vxAt7znbyoUOJYuLptzv/8CUxiFLiQBAAA= - headers: - apim-request-id: e5d387b4-5d06-4969-ab5d-92462ea61d41 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:33 GMT - etag: '"7A9A4BD1AA9E639B6F7F0F4276DAAD6BD2E0B0D736B21283A90C4A95F568385C"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: e5d387b4-5d06-4969-ab5d-92462ea61d41 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 -- 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/batches/d7a7868a-ba23-4689-914e-402302661573 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNMW8DIQyF/4vnEIG5A8JWtXMUqenQbi5HU6S7QwJnqKL898JJ6drFevbz994N - 0gQeJkvWGUfik1CLwbiDOKghikGilmiMGq2GHYQSieP00sY5LfGNQ2NRohJyFKjOyvjReY17Z61D - ix+NmanyU+CU1/8wvW+IcmboWGXia21/x8yvTKXV9ut1Waj8gL8BZ6YZvNrBF6W5uV52P4RY66bT - eir5Uh7rmvk9/kV1LtAa4vxAt7znbyoUOJYuLptzv/8CUxiFLiQBAAA= - headers: - apim-request-id: 9915268d-f2fb-4d94-8de3-88364aff77b3 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:34 GMT - etag: '"7A9A4BD1AA9E639B6F7F0F4276DAAD6BD2E0B0D736B21283A90C4A95F568385C"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 9915268d-f2fb-4d94-8de3-88364aff77b3 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 -- 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/batches/d7a7868a-ba23-4689-914e-402302661573 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/yXnzSpx2iTNDcEHIFgOcDOp6UZqUylxD2i1/05awZmLNfbMG8k3 - kUYRxOjQeetRfiIY2Vk/yEF3JDsFRoG1undGnEQshEzjUxuXtNAbx8aCAi1VL0FftA29DwbO3jkP - Dj4aM2Plh8hpzf9h/XkwXvvB7Vhl5K223MuWc8rTftqWBcu3CDfBK+Msgj6JL0wztRfU7sdItR46 - 5eeyTuVYWyqv/E78ylj4NxwxR5r/0KPv8YoFI1PZxXQ49/sPT+iopCEBAAA= - headers: - apim-request-id: b07054ea-3381-4694-844f-e306383e383e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:35 GMT - etag: '"2E993D6118AE8DF2DB05F6C5510676317499ABBBC08F2031179BB5083613CDA6"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: b07054ea-3381-4694-844f-e306383e383e - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 -- 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/batches/d7a7868a-ba23-4689-914e-402302661573 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/yXnzSpx2iTNDcEHIFgOcDOp6UZqUylxD2i1/05awZmLNfbMG8k3 - kUYRxOjQeetRfiIY2Vk/yEF3JDsFRoG1undGnEQshEzjUxuXtNAbx8aCAi1VL0FftA29DwbO3jkP - Dj4aM2Plh8hpzf9h/XkwXvvB7Vhl5K223MuWc8rTftqWBcu3CDfBK+Msgj6JL0wztRfU7sdItR46 - 5eeyTuVYWyqv/E78ylj4NxwxR5r/0KPv8YoFI1PZxXQ49/sPT+iopCEBAAA= - headers: - apim-request-id: 42a97a93-7cc1-4350-97f4-87ea6fec3b56 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:36 GMT - etag: '"2E993D6118AE8DF2DB05F6C5510676317499ABBBC08F2031179BB5083613CDA6"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 42a97a93-7cc1-4350-97f4-87ea6fec3b56 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 -- 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/batches/d7a7868a-ba23-4689-914e-402302661573 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMy24DIQxF/4V1iMDMAMOuaj+gUtJFu3PBTZDmIYFnEUX59zCjdt2NZd9zj+8i - JxFEcui89Si/EYzsrB/koDuSnQKjwFrdOyMOIhZCpvTWxjlP9MGxuaBAS9VL0GdtQ++DgaN3zoOD - r+aMWPklcl7m/7T+OBiv/eA2rTLyWlvvtMZIlCht4TpNWG4i3AUvjKMI+iB+MI+NBrXx1q11j/P8 - XpZL2c+G5oU/iU+MhX/LEedI45+6/3u9YsHIVLblshFwj8cTsQzjMyQBAAA= - headers: - apim-request-id: d555f530-1b81-4a21-9f8c-af0a3ae91385 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:37 GMT - etag: '"2A57300EDCB314DB55310181DD449395D83B20A891195A5C81802DA78F4BAA7F"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: d555f530-1b81-4a21-9f8c-af0a3ae91385 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d7a7868a-ba23-4689-914e-402302661573 -- request: - body: null - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:58:38 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src3276593a-d9b4-4837-a568-02e4b9a5ee68?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:58:38 GMT - etag: - - '"0x8D91C79AE21A9C3"' - last-modified: - - Fri, 21 May 2021 16:58:38 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:58:38 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/src3276593a-d9b4-4837-a568-02e4b9a5ee68/46e3f442-bf8c-4bf7-b91d-7b9813194010.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - mYgA0QpY6baiB+xZp8Hk+A== - date: - - Fri, 21 May 2021 16:58:38 GMT - etag: - - '"0x8D91C79AE2A0FB6"' - last-modified: - - Fri, 21 May 2021 16:58: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-08-04' - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:58:56 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/targete721cebb-0865-4f1e-a3d9-2218f960f73c?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:58:56 GMT - etag: - - '"0x8D91C79B8FC0C2D"' - last-modified: - - Fri, 21 May 2021 16:58:56 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3276593a-d9b4-4837-a568-02e4b9a5ee68?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete721cebb-0865-4f1e-a3d9-2218f960f73c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", - "language": "es"}]}]}' - headers: - Accept: - - application/json - Content-Length: - - '482' - 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/batches - response: - body: - string: '' - headers: - apim-request-id: 58223877-f3b2-414b-8f7b-95a23b88b334 - content-length: '0' - date: Fri, 21 May 2021 16:58:57 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 58223877-f3b2-414b-8f7b-95a23b88b334 - status: - code: 202 - message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFMi2XFnainYuAjQd2o2l6USAbQESPRRB/r2SgXTuQhzv+I43 - CCN4MFZPY8OsdOe0MjR8qwEHq9gZbWganUOGA1BiFB5fyziHhT+ECtvqtlG6V21zbp58P/jeHruu - tdZ9FWTGLM8kIa7/pUzFsqBsudy9RXkXTOVrdbdlwfQD/gYSBWfw+gAThrmkVeaNiHPedVhPKV7S - Y12jfPJfVXUIV+L5ge59L1dMSMKpisue3O+/ZIfdQSMBAAA= - headers: - apim-request-id: 66ae056b-2f3a-46a2-8db1-8964d8385db7 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:57 GMT - etag: '"E73C0A0ED47B0789F17AF0727E743BAB89D45B17E4A71C1ACE295134CB0DBDCD"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 66ae056b-2f3a-46a2-8db1-8964d8385db7 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVEiyXFnainYuCjQZ2o2h6USAbQESMxRB/j2SgXTNQhx5fHdX - EUcRhHVqGjWRVJ1X0uJwlAMMTpK3yuI0eg8kdgIzAdP4Ucc+LnRgrKxRRkvVS6P3+jX0Q+jdS9cZ - 5/xvRWYo/IYc0/qcsp3SxuqGFQa+lPr3mfibIdfWdr0sC+Q/Ea6CE8Msgt6JCeJc3aCaj0ilbDqu - Xzmd8mNdE//Qf1TjEFak+YFuee9nyIBMuYnT5txud9WhjWojAQAA - headers: - apim-request-id: 6ea78f1a-b7dc-4db9-b545-d0cccca73899 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:57 GMT - etag: '"DC0DB6669FC337853F91740CAE1CCD6CDB25A927561A5B1760FFF966BD6AF35B"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 6ea78f1a-b7dc-4db9-b545-d0cccca73899 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae -- 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/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVEiyXFnainYuCjQZ2o2h6USAbQESMxRB/j2SgXTNQhx5fHdX - EUcRhHVqGjWRVJ1X0uJwlAMMTpK3yuI0eg8kdgIzAdP4Ucc+LnRgrKxRRkvVS6P3+jX0Q+jdS9cZ - 5/xvRWYo/IYc0/qcsp3SxuqGFQa+lPr3mfibIdfWdr0sC+Q/Ea6CE8Msgt6JCeJc3aCaj0ilbDqu - Xzmd8mNdE//Qf1TjEFak+YFuee9nyIBMuYnT5txud9WhjWojAQAA - headers: - apim-request-id: 73297455-a2c6-4fdd-88bd-c863d2d8b599 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:58 GMT - etag: '"DC0DB6669FC337853F91740CAE1CCD6CDB25A927561A5B1760FFF966BD6AF35B"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 73297455-a2c6-4fdd-88bd-c863d2d8b599 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae -- 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/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzVEiyXFnainYuCjQZ2o2h6USAbQESMxRB/j2SgXTNQhx5fHdX - EUcRhHVqGjWRVJ1X0uJwlAMMTpK3yuI0eg8kdgIzAdP4Ucc+LnRgrKxRRkvVS6P3+jX0Q+jdS9cZ - 5/xvRWYo/IYc0/qcsp3SxuqGFQa+lPr3mfibIdfWdr0sC+Q/Ea6CE8Msgt6JCeJc3aCaj0ilbDqu - Xzmd8mNdE//Qf1TjEFak+YFuee9nyIBMuYnT5txud9WhjWojAQAA - headers: - apim-request-id: 658b0e8c-1d59-4548-8275-64d59c94d9eb - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:58:59 GMT - etag: '"DC0DB6669FC337853F91740CAE1CCD6CDB25A927561A5B1760FFF966BD6AF35B"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 658b0e8c-1d59-4548-8275-64d59c94d9eb - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae -- 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/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae - response: - body: - string: !!binary | - H4sIAAAAAAAEAH2PzU7EMAyE3yXnzcptU/JzQ/AACJYD3IzrdiO1qZS4B7Tadyet4MrFGnvmG8k3 - FQcVlLEwDg2zhs6DNuS+tENnNXsDhsbBe2R1UpQZhYfnOi5x4XehyrbQNhp63TaX5iH0LvT23HWt - tf6zIjMWeSSJa/qX8gHgbJx3YLodK4KylZp73VKKadpP27Jg/lbhpmQVnFVoTmrEOHP9AHafiEs5 - dEwveZ3ysdZUWuWD5U0wy2+YMBHPf+jR93TFjCScdzEdzv3+A8DYHfAgAQAA - headers: - apim-request-id: 67366a58-d657-4926-9cc7-6602fbf87ac4 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:00 GMT - etag: '"9CC1333DF1805E1E291973DEF5B755312A2DEE840A0980192C556312F132347E"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 67366a58-d657-4926-9cc7-6602fbf87ac4 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae -- 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/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae - response: - body: - string: !!binary | - H4sIAAAAAAAEAH2PzU7EMAyE3yXnzcptU/JzQ/AACJYD3IzrdiO1qZS4B7Tadyet4MrFGnvmG8k3 - FQcVlLEwDg2zhs6DNuS+tENnNXsDhsbBe2R1UpQZhYfnOi5x4XehyrbQNhp63TaX5iH0LvT23HWt - tf6zIjMWeSSJa/qX8gHgbJx3YLodK4KylZp73VKKadpP27Jg/lbhpmQVnFVoTmrEOHP9AHafiEs5 - dEwveZ3ysdZUWuWD5U0wy2+YMBHPf+jR93TFjCScdzEdzv3+A8DYHfAgAQAA - headers: - apim-request-id: de3677cf-9ef5-4f4a-afff-788058b0367e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:01 GMT - etag: '"9CC1333DF1805E1E291973DEF5B755312A2DEE840A0980192C556312F132347E"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: de3677cf-9ef5-4f4a-afff-788058b0367e + - Wed, 02 Jun 2021 15:39:03 GMT + etag: + - '"0x8D925DC8CE973C2"' + last-modified: + - Wed, 02 Jun 2021 15:39:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce7c94e05-aa2d-4831-8dd9-44cbe8882a71?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target424c0b5e-a057-462b-a862-c81a90a74afd?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: !!binary | - H4sIAAAAAAAEAH2PzU7EMAyE3yXnzcptU/JzQ/AACJYD3IzrdiO1qZS4B7Tadyet4MrFGnvmG8k3 - FQcVlLEwDg2zhs6DNuS+tENnNXsDhsbBe2R1UpQZhYfnOi5x4XehyrbQNhp63TaX5iH0LvT23HWt - tf6zIjMWeSSJa/qX8gHgbJx3YLodK4KylZp73VKKadpP27Jg/lbhpmQVnFVoTmrEOHP9AHafiEs5 - dEwveZ3ysdZUWuWD5U0wy2+YMBHPf+jR93TFjCScdzEdzv3+A8DYHfAgAQAA + string: '' headers: - apim-request-id: 6920a2a1-d6ee-4043-8e9a-b61285b2efc8 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:02 GMT - etag: '"9CC1333DF1805E1E291973DEF5B755312A2DEE840A0980192C556312F132347E"' + apim-request-id: cb7da9bf-dc1a-4b11-9462-e618518d7322 + content-length: '0' + date: Wed, 02 Jun 2021 15:39:02 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b1dffbc6-abe0-4650-9da1-bada8545f067 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6920a2a1-d6ee-4043-8e9a-b61285b2efc8 + x-requestid: cb7da9bf-dc1a-4b11-9462-e618518d7322 status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b1dffbc6-abe0-4650-9da1-bada8545f067 response: body: - string: !!binary | - H4sIAAAAAAAEAH2Mu27DMAxF/0VzFFC2XD22ov2AAkmHdmMlOhHgByDRQxDk3yMZ7dqFIO+5h3eR - ovBCGxijIpLQO5A62B9p0RpJToMOY3QOSRxEyIRM8b2Oc5rpk0N1O+iUhEF26qxe/GD9YI593xnj - vqsyYeHXwGld/rWcBzhq6yzovmmFkbdSe6ctBKJIsYXbPGO+CX8XvDJOwquDGDFNlXpovHZL2eO0 - fOT1kvezomXlL+ITY+bfcsAl0PSn7v/erpgxMOW2XBrpzOPxBKghx70jAQAA + string: '{"id":"b1dffbc6-abe0-4650-9da1-bada8545f067","createdDateTimeUtc":"2021-06-02T15:39:03.7253899Z","lastActionDateTimeUtc":"2021-06-02T15:39:09.6415436Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: cd27be66-dc91-4b39-ad88-8e280127791b + apim-request-id: 016111d3-1963-44b5-8118-8d9e5fffa4e0 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:03 GMT - etag: '"EE423E19EB2C17D65FE94DFFD64D33CA85B4F9D4152C92B4E102D09A25B32049"' + date: Wed, 02 Jun 2021 15:39:33 GMT + etag: '"679D5A7656F5ACABB8CC5DA2CCBF2928C8F061B2BB0CB3B4135A217421EF43A4"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: cd27be66-dc91-4b39-ad88-8e280127791b + x-requestid: 016111d3-1963-44b5-8118-8d9e5fffa4e0 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/470fd1ee-0390-4c8b-8a87-e9404cfd99ae + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b1dffbc6-abe0-4650-9da1-bada8545f067 - request: body: null headers: @@ -2845,11 +1308,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:03 GMT + - Wed, 02 Jun 2021 15:39:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src107dab51-b625-4440-b28d-dccdd4b67d32?restype=container + uri: https://redacted.blob.core.windows.net/src299f3240-f827-4fcd-9f41-d9c7ab176057?restype=container response: body: string: '' @@ -2857,11 +1320,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:03 GMT + - Wed, 02 Jun 2021 15:39:34 GMT etag: - - '"0x8D91C79BD3E5BFD"' + - '"0x8D925DC9F36240A"' last-modified: - - Fri, 21 May 2021 16:59:04 GMT + - Wed, 02 Jun 2021 15:39:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2889,11 +1352,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:04 GMT + - Wed, 02 Jun 2021 15:39:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src107dab51-b625-4440-b28d-dccdd4b67d32/1116078c-8b47-4813-8d04-63f57d4fd3e3.txt + uri: https://redacted.blob.core.windows.net/src299f3240-f827-4fcd-9f41-d9c7ab176057/fcd3a687-acd4-4ef9-ba60-67a28a67c49d.txt response: body: string: '' @@ -2903,11 +1366,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:03 GMT + - Wed, 02 Jun 2021 15:39:34 GMT etag: - - '"0x8D91C79BD480460"' + - '"0x8D925DC9F3FA7B3"' last-modified: - - Fri, 21 May 2021 16:59:04 GMT + - Wed, 02 Jun 2021 15:39:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2933,11 +1396,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:04 GMT + - Wed, 02 Jun 2021 15:39:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc5712128-1bd3-45f3-b697-1b755aa8407a?restype=container + uri: https://redacted.blob.core.windows.net/target3327034d-43d0-4f87-8dd1-f18392e4d1b4?restype=container response: body: string: '' @@ -2945,11 +1408,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:03 GMT + - Wed, 02 Jun 2021 15:39:33 GMT etag: - - '"0x8D91C79BD60D713"' + - '"0x8D925DC9F5AAB3C"' last-modified: - - Fri, 21 May 2021 16:59:04 GMT + - Wed, 02 Jun 2021 15:39:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2958,14 +1421,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src107dab51-b625-4440-b28d-dccdd4b67d32?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc5712128-1bd3-45f3-b697-1b755aa8407a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src299f3240-f827-4fcd-9f41-d9c7ab176057?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3327034d-43d0-4f87-8dd1-f18392e4d1b4?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -2976,279 +1439,231 @@ interactions: body: string: '' headers: - apim-request-id: 26fdcfbb-587d-4403-bd7d-b06fc12f807c + apim-request-id: 80151499-aa77-456f-912a-4be85ccb089b content-length: '0' - date: Fri, 21 May 2021 16:59:03 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + date: Wed, 02 Jun 2021 15:39:34 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fcf5d3bd-350e-48d0-849f-cd30c5c70f6c set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 26fdcfbb-587d-4403-bd7d-b06fc12f807c + x-requestid: 80151499-aa77-456f-912a-4be85ccb089b status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fcf5d3bd-350e-48d0-849f-cd30c5c70f6c response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFEiyLcfainYOCjQd2o2m2VSAbQESPRRB/r2SgXTuQhzv+I43 - CBN4cIhEJ8eqY9erVqNROJ6cIh77UbfjMFEDB6DEKDy9lHEJC78LFdZqa5TulDUX43w3eN0em8Hq - 3vafhZkxyxNJiOs/scZULAvKlsvdOcqbYCpvq7stC6Yf8DeQKDiD1wf4wjCXtMq8EXHOuw7ra4rX - 9FjXKB/8V1UdwpV4fqB73/M3JiThVMV1T+73X5HPPH0kAQAA + string: '{"id":"fcf5d3bd-350e-48d0-849f-cd30c5c70f6c","createdDateTimeUtc":"2021-06-02T15:39:34.6738498Z","lastActionDateTimeUtc":"2021-06-02T15:39:39.9418091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: b345c42d-ee8f-4698-9848-1f02e6d73235 + apim-request-id: f7555038-27f9-471a-84c3-d35ae813d240 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:04 GMT - etag: '"E64074227D33294BC55BC661E66D08A6A1324C4E2B8D66C5471246BBD816ADFD"' + date: Wed, 02 Jun 2021 15:40:04 GMT + etag: '"E5BB25339588A7C8B8ED91D2D4A42EBA5B20C14A93654FFB3C3B5D2835CAED45"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b345c42d-ee8f-4698-9848-1f02e6d73235 + x-requestid: f7555038-27f9-471a-84c3-d35ae813d240 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fcf5d3bd-350e-48d0-849f-cd30c5c70f6c - request: body: null headers: Accept: - - application/json + - application/xml + 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 15:40:05 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src1d0cbd43-ccbd-4380-a6ba-0c1dade18d93?restype=container response: body: - string: !!binary | - H4sIAAAAAAAEAIWNMU/EMAyF/4vnC0rSNrlmQzAjJI4BNtc1R6S2kRLfgE7330kqHSuL9ezn770r - xBkCOESio2M1sPOq12gUTkeniCc/6X4aZ+rgAJQZhefnOk5x5XehylptjdKDsuZkXBjGoPuHbrTa - W/9ZmQWLPJLEtP2P9b5zZugaVgTlUurfS5I3wVxr2/Wyrph/IFxBkuACwRzgC+NS3aCbT8Sl7Dpu - rzmd833dknzwX1TjCDfi5Y7ueU/fmJGEcxPn3bndfgEjaHw0JAEAAA== + string: '' headers: - apim-request-id: 5e0b9bed-8ded-4e2e-96a5-552795920242 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:04 GMT - etag: '"4F733B426D7D701068094C40AC98B6CD88CBCF91A2C235E181F7FFE0632F6B18"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 5e0b9bed-8ded-4e2e-96a5-552795920242 + content-length: + - '0' + date: + - Wed, 02 Jun 2021 15:40:04 GMT + etag: + - '"0x8D925DCB1A801AC"' + last-modified: + - Wed, 02 Jun 2021 15:40:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 15:40:05 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src1d0cbd43-ccbd-4380-a6ba-0c1dade18d93/7f7e6584-65e8-4e6f-b967-f4e4cca4d356.txt response: body: - string: !!binary | - H4sIAAAAAAAEAIWNMU/EMAyF/4vnC0rSNrlmQzAjJI4BNtc1R6S2kRLfgE7330kqHSuL9ezn770r - xBkCOESio2M1sPOq12gUTkeniCc/6X4aZ+rgAJQZhefnOk5x5XehylptjdKDsuZkXBjGoPuHbrTa - W/9ZmQWLPJLEtP2P9b5zZugaVgTlUurfS5I3wVxr2/Wyrph/IFxBkuACwRzgC+NS3aCbT8Sl7Dpu - rzmd833dknzwX1TjCDfi5Y7ueU/fmJGEcxPn3bndfgEjaHw0JAEAAA== + string: '' headers: - apim-request-id: c9a736cd-57ad-4128-a6df-ad3d586145ab - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:05 GMT - etag: '"4F733B426D7D701068094C40AC98B6CD88CBCF91A2C235E181F7FFE0632F6B18"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: c9a736cd-57ad-4128-a6df-ad3d586145ab + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Wed, 02 Jun 2021 15:40:04 GMT + etag: + - '"0x8D925DCB1B0646C"' + last-modified: + - Wed, 02 Jun 2021 15:40: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-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 15:40:05 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/targetef155042-ce52-4b87-8e6c-ec40caa2cc78?restype=container response: body: - string: !!binary | - H4sIAAAAAAAEAIWNMU/EMAyF/4vnC0rSNrlmQzAjJI4BNtc1R6S2kRLfgE7330kqHSuL9ezn770r - xBkCOESio2M1sPOq12gUTkeniCc/6X4aZ+rgAJQZhefnOk5x5XehylptjdKDsuZkXBjGoPuHbrTa - W/9ZmQWLPJLEtP2P9b5zZugaVgTlUurfS5I3wVxr2/Wyrph/IFxBkuACwRzgC+NS3aCbT8Sl7Dpu - rzmd833dknzwX1TjCDfi5Y7ueU/fmJGEcxPn3bndfgEjaHw0JAEAAA== + string: '' headers: - apim-request-id: 2e4c02f8-476f-49e6-9fc8-6ade1353c74a - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:06 GMT - etag: '"4F733B426D7D701068094C40AC98B6CD88CBCF91A2C235E181F7FFE0632F6B18"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 2e4c02f8-476f-49e6-9fc8-6ade1353c74a + content-length: + - '0' + date: + - Wed, 02 Jun 2021 15:40:05 GMT + etag: + - '"0x8D925DCB1CA2B7E"' + last-modified: + - Wed, 02 Jun 2021 15:40:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1d0cbd43-ccbd-4380-a6ba-0c1dade18d93?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetef155042-ce52-4b87-8e6c-ec40caa2cc78?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnzSrJtkmbG4IPQLAc4Oa6pkRqUylxD2i1/05awZmLNfbMG8k3 - iCMEcIhEnWPVsvOq0WgUDp1TxIMfdDP0I13gBJQZhcenOq5x4TehylptjdKtsuZqXGj7oJvzpbfa - W/9RmRmLPJDENf2H+XNrfK87u2NFULZScy9bSjFN+2lbFszfEG4gq+AMwZzgE+PM9QW9+0RcyqFj - es7rlI+1ptIq7yyvgll+w4SJeP5Dj77HL8xIwnkX0+Hc7z9z66lsIQEAAA== + string: '' headers: - apim-request-id: f2e3f461-4171-4ecd-8e70-45c0a2742f21 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:07 GMT - etag: '"BC116F225C91689EE8B1755159087BA0295ACE264D56D8A4B34132D7C5EFF8F3"' + apim-request-id: 5cad2cf2-1e07-4cf9-abba-341ee9378a4e + content-length: '0' + date: Wed, 02 Jun 2021 15:40:04 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/64fcc7b4-da11-4673-8df5-94b579a2a941 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: f2e3f461-4171-4ecd-8e70-45c0a2742f21 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 -- 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/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnzSrJtkmbG4IPQLAc4Oa6pkRqUylxD2i1/05awZmLNfbMG8k3 - iCMEcIhEnWPVsvOq0WgUDp1TxIMfdDP0I13gBJQZhcenOq5x4TehylptjdKtsuZqXGj7oJvzpbfa - W/9RmRmLPJDENf2H+XNrfK87u2NFULZScy9bSjFN+2lbFszfEG4gq+AMwZzgE+PM9QW9+0RcyqFj - es7rlI+1ptIq7yyvgll+w4SJeP5Dj77HL8xIwnkX0+Hc7z9z66lsIQEAAA== - headers: - apim-request-id: 604e3b67-b286-46e1-8212-54cc3721dbed - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:08 GMT - etag: '"BC116F225C91689EE8B1755159087BA0295ACE264D56D8A4B34132D7C5EFF8F3"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 604e3b67-b286-46e1-8212-54cc3721dbed + x-requestid: 5cad2cf2-1e07-4cf9-abba-341ee9378a4e status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/64fcc7b4-da11-4673-8df5-94b579a2a941 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7EMAxE/8XnzSrJtkmbG4IPQLAc4Oa6pkRqUylxD2i1/05awZmLNfbMG8k3 - iCMEcIhEnWPVsvOq0WgUDp1TxIMfdDP0I13gBJQZhcenOq5x4TehylptjdKtsuZqXGj7oJvzpbfa - W/9RmRmLPJDENf2H+XNrfK87u2NFULZScy9bSjFN+2lbFszfEG4gq+AMwZzgE+PM9QW9+0RcyqFj - es7rlI+1ptIq7yyvgll+w4SJeP5Dj77HL8xIwnkX0+Hc7z9z66lsIQEAAA== + string: '{"id":"64fcc7b4-da11-4673-8df5-94b579a2a941","createdDateTimeUtc":"2021-06-02T15:40:05.5995431Z","lastActionDateTimeUtc":"2021-06-02T15:40:14.7288062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 1dcd9489-a57f-411c-8fa9-9dc74f0b8c05 + apim-request-id: cfd704b5-5420-4986-921c-a193b5462ea3 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:09 GMT - etag: '"BC116F225C91689EE8B1755159087BA0295ACE264D56D8A4B34132D7C5EFF8F3"' + date: Wed, 02 Jun 2021 15:40:35 GMT + etag: '"7FEC2ACD6569D9FB055CA77A26278F70CC9E69CA1A98F40090F433C1EE61D511"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1dcd9489-a57f-411c-8fa9-9dc74f0b8c05 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 -- 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/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMu27DMAxF/0VzFEiKLdnaivYDAiQd0o2mmFSAH4BED0GQf69kpHMWgrznHj5E - DMILC4DYWZItWScbBVrC0FmJNLhBNUMf8CB2AhMBU/gq4xwn+mYsrlFGS9VKo8/a+rb3qtkfeqOc - cT/FGSHzB3Jc5nea27fa9aozVcsMvObSO62IRIFCDddpgnQX/iF4YRiF1ztxhTgW6lXlpZvzFsf5 - mJZb2s6C5oUvxCeGxK8ywow0/qvbv89fSIBMqS63Sox7Pv8A2HO4QiQBAAA= - headers: - apim-request-id: de6f7b7f-7976-4675-aa94-7a89346b9b38 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:10 GMT - etag: '"B608BA3444CD2BE617C7869E4D0C793B064BB730AB53A69CECEB5003705AE833"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: de6f7b7f-7976-4675-aa94-7a89346b9b38 + x-requestid: cfd704b5-5420-4986-921c-a193b5462ea3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/64fcc7b4-da11-4673-8df5-94b579a2a941 - request: body: null headers: @@ -3263,11 +1678,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:35 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src8bbb48a4-8ea8-4489-8aee-d6319e1a2e1a?restype=container + uri: https://redacted.blob.core.windows.net/srca75074d1-ae99-412f-bade-a92ac391ef40?restype=container response: body: string: '' @@ -3275,11 +1690,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:35 GMT etag: - - '"0x8D91C79C1829ACA"' + - '"0x8D925DCC3F54ABA"' last-modified: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3307,11 +1722,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:36 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src8bbb48a4-8ea8-4489-8aee-d6319e1a2e1a/8ef36639-36cd-478e-a9d2-27cc10d250f9.txt + uri: https://redacted.blob.core.windows.net/srca75074d1-ae99-412f-bade-a92ac391ef40/8036d8f9-9dce-4944-b3a3-31cb5fc7cb36.txt response: body: string: '' @@ -3321,11 +1736,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:35 GMT etag: - - '"0x8D91C79C18BCD47"' + - '"0x8D925DCC3FE025D"' last-modified: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -3351,11 +1766,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:36 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target74cb1552-be65-4618-8d1e-3351b343ee5d?restype=container + uri: https://redacted.blob.core.windows.net/target94d4b7ba-7d85-4d73-b053-0392f3ecd307?restype=container response: body: string: '' @@ -3363,11 +1778,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:35 GMT etag: - - '"0x8D91C79C1B304B1"' + - '"0x8D925DCC41A26BD"' last-modified: - - Fri, 21 May 2021 16:59:11 GMT + - Wed, 02 Jun 2021 15:40:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -3376,14 +1791,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8bbb48a4-8ea8-4489-8aee-d6319e1a2e1a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target74cb1552-be65-4618-8d1e-3351b343ee5d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca75074d1-ae99-412f-bade-a92ac391ef40?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target94d4b7ba-7d85-4d73-b053-0392f3ecd307?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '488' Content-Type: - application/json User-Agent: @@ -3394,19 +1809,46 @@ interactions: body: string: '' headers: - apim-request-id: 88374729-fb12-43c3-8c3c-b4e6dc0cf5f6 + apim-request-id: 19531900-e0e8-492e-96c4-5ea5707160ba content-length: '0' - date: Fri, 21 May 2021 16:59:10 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:40:35 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/671ec3e7-7651-49de-b5e2-abf216ba6a00 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 88374729-fb12-43c3-8c3c-b4e6dc0cf5f6 + x-requestid: 19531900-e0e8-492e-96c4-5ea5707160ba status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches +- 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/batches/671ec3e7-7651-49de-b5e2-abf216ba6a00 + response: + body: + string: '{"id":"671ec3e7-7651-49de-b5e2-abf216ba6a00","createdDateTimeUtc":"2021-06-02T15:40:36.3117467Z","lastActionDateTimeUtc":"2021-06-02T15:40:39.8287338Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 2b85e3ec-e08b-4bab-af59-ae0d91e524d2 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:41:06 GMT + etag: '"345254BFF25DD234A05446D858476F32CB9F5673C6702CBEC3862CBBB092D2CE"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2b85e3ec-e08b-4bab-af59-ae0d91e524d2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/671ec3e7-7651-49de-b5e2-abf216ba6a00 - request: body: null headers: @@ -3415,32 +1857,31 @@ 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/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&createdDateTimeUtcEnd=2021-06-02T15:38:32.290081Z response: body: - string: !!binary | - H4sIAAAAAAAEAI2OQW/DIAyF/wvnMAELdOFWredqUrNDezMOaZGSIIFzqKr+90Gk9ryL9fyeP9sP - FgZm2QitcaPyfEAteCt3hjstFe+EcqMbnOlGZA3D5IH8cCilD7P/JSysEkpyobmSvTRWd1bKD9N2 - n6rVl8JMkGmPFOLyX+yrYpmA1lzmjpFOBKmcre46z5DuzD4YRYKJWdGU58NU0irziuhz3nRYflK8 - ple7RDr796rqICzopxe67fu+QQIkn6q4bsnz+QefUg/sJAEAAA== + string: '{"value":[{"id":"14b4a15e-8a19-4b18-9005-324a40790e0a","createdDateTimeUtc":"2021-06-02T15:38:01.9108422Z","lastActionDateTimeUtc":"2021-06-02T15:38:09.4423062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a28a0dd-a1f9-41d7-84c1-f0b1113f8789","createdDateTimeUtc":"2021-06-02T15:37:30.8922028Z","lastActionDateTimeUtc":"2021-06-02T15:37:34.9631268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5042709-8ee3-43ca-bd9b-fa7bd59c7265","createdDateTimeUtc":"2021-06-02T15:36:40.1565566Z","lastActionDateTimeUtc":"2021-06-02T15:36:44.3046541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b849ea0a-e4a9-46a3-8b28-32a190e543d0","createdDateTimeUtc":"2021-06-02T15:36:08.9101301Z","lastActionDateTimeUtc":"2021-06-02T15:36:09.5400119Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70889650-7a9b-4928-a36f-6f06dd2c8a9c","createdDateTimeUtc":"2021-06-02T15:35:37.9362618Z","lastActionDateTimeUtc":"2021-06-02T15:35:39.1768098Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"227d7245-54a1-4383-81be-7b1679cf252d","createdDateTimeUtc":"2021-06-02T15:34:50.3214464Z","lastActionDateTimeUtc":"2021-06-02T15:34:54.5445251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d538b50a-4739-437e-a430-4a39d552ae9b","createdDateTimeUtc":"2021-06-02T15:34:19.3119357Z","lastActionDateTimeUtc":"2021-06-02T15:34:24.1613577Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f459e67d-3ef8-4dd5-9441-f037a9ef7bb9","createdDateTimeUtc":"2021-06-02T15:33:45.8406241Z","lastActionDateTimeUtc":"2021-06-02T15:33:48.97718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bcccc81-50c4-4930-b8c7-8166cd494fd0","createdDateTimeUtc":"2021-06-02T15:33:11.144037Z","lastActionDateTimeUtc":"2021-06-02T15:33:14.3246317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6932315e-6bda-408a-a072-d5a13492cbae","createdDateTimeUtc":"2021-06-02T15:32:22.5094146Z","lastActionDateTimeUtc":"2021-06-02T15:32:23.8496169Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f32e8631-bc29-48a4-94f1-de98861fa26b","createdDateTimeUtc":"2021-06-02T15:31:51.3977201Z","lastActionDateTimeUtc":"2021-06-02T15:31:58.5898438Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"037a7fa0-4dc3-4883-8f79-a92aa2b1bf20","createdDateTimeUtc":"2021-06-02T15:31:20.0453083Z","lastActionDateTimeUtc":"2021-06-02T15:31:23.4805698Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"952041da-4da4-43c8-a8f3-8e1742f2beb9","createdDateTimeUtc":"2021-06-02T15:30:48.630454Z","lastActionDateTimeUtc":"2021-06-02T15:30:52.4630271Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"58d95d16-9284-48bd-ace3-dd961197bcde","createdDateTimeUtc":"2021-06-02T07:07:21.3198845Z","lastActionDateTimeUtc":"2021-06-02T07:07:22.583496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72d34ce8-d861-4d6c-a410-d6337f303948","createdDateTimeUtc":"2021-06-02T07:07:14.7915463Z","lastActionDateTimeUtc":"2021-06-02T07:07:15.5245593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70081137-fe6d-466f-953e-2670c8f5e6da","createdDateTimeUtc":"2021-06-02T07:07:08.454661Z","lastActionDateTimeUtc":"2021-06-02T07:07:10.4666065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"113ad1aa-d9f6-4b15-a610-267b51c8a138","createdDateTimeUtc":"2021-06-02T07:06:40.2876379Z","lastActionDateTimeUtc":"2021-06-02T07:06:43.4469925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"171c4e8e-4733-4b42-b3ed-cbe9481c0d3d","createdDateTimeUtc":"2021-06-02T07:06:34.1550079Z","lastActionDateTimeUtc":"2021-06-02T07:06:34.2834432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"384343e6-a44b-49e9-91ef-d62cf39d44dc","createdDateTimeUtc":"2021-06-02T07:06:28.0100687Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.4305067Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c4182d40-ee61-40f5-b3ac-31bc4aaed8b8","createdDateTimeUtc":"2021-06-02T07:06:22.1439114Z","lastActionDateTimeUtc":"2021-06-02T07:06:22.2296325Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2295cf18-0237-4b0b-ac37-42d91ba98d4e","createdDateTimeUtc":"2021-06-02T07:06:14.1851872Z","lastActionDateTimeUtc":"2021-06-02T07:06:16.4424397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386e26c8-49dd-4eb5-ae3f-95bbc1809b38","createdDateTimeUtc":"2021-06-02T07:03:22.7902994Z","lastActionDateTimeUtc":"2021-06-02T07:03:23.1220631Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5948f436-c1b1-414c-9b2c-6d3af57f3021","createdDateTimeUtc":"2021-06-02T07:02:43.6134937Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.2264979Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0ab12764-59ff-4e7c-b9a7-88c62f9b9627","createdDateTimeUtc":"2021-06-02T06:56:55.0366689Z","lastActionDateTimeUtc":"2021-06-02T06:57:00.755663Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a9e762d-814f-4d12-b2cf-a686f3c572dd","createdDateTimeUtc":"2021-06-02T06:46:49.3275525Z","lastActionDateTimeUtc":"2021-06-02T06:46:57.3306415Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"68544ede-a20e-444e-a0ae-022199af016c","createdDateTimeUtc":"2021-06-02T06:41:24.4796213Z","lastActionDateTimeUtc":"2021-06-02T06:41:29.4908652Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8070372d-232c-4903-9b76-258c28a454bc","createdDateTimeUtc":"2021-06-02T06:41:18.3169725Z","lastActionDateTimeUtc":"2021-06-02T06:41:18.4692647Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"964fbde3-cb72-4679-815a-b68cb3145f58","createdDateTimeUtc":"2021-06-02T06:41:12.0098122Z","lastActionDateTimeUtc":"2021-06-02T06:41:16.688651Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c345e3b-2a71-4786-a3a9-c1703081324f","createdDateTimeUtc":"2021-06-02T06:41:05.9240834Z","lastActionDateTimeUtc":"2021-06-02T06:41:06.0023015Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4808cb29-461a-4bdc-849a-b8b2402cca93","createdDateTimeUtc":"2021-06-02T06:40:53.7154483Z","lastActionDateTimeUtc":"2021-06-02T06:40:54.3761813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea655e95-0404-4808-bc60-29d5023b58fa","createdDateTimeUtc":"2021-06-02T06:40:30.9135072Z","lastActionDateTimeUtc":"2021-06-02T06:40:31.7975375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ba008d05-8564-4475-9031-2d3e54e8f8bc","createdDateTimeUtc":"2021-06-02T06:40:05.638911Z","lastActionDateTimeUtc":"2021-06-02T06:40:06.5216871Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fd88caa7-54b7-44ad-a5df-b3f38b2006f4","createdDateTimeUtc":"2021-06-02T06:40:04.9897959Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.5795126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"de6d7efa-e94a-43a6-a5e0-10b28f9615ec","createdDateTimeUtc":"2021-06-02T06:40:04.3970363Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2868525Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d84f2015-a418-440f-aa40-c3c4a2c0f535","createdDateTimeUtc":"2021-06-02T06:40:03.8571077Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2818175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d44aa0e2-e11e-4510-8470-b090bd9b2f82","createdDateTimeUtc":"2021-06-02T06:40:03.1588409Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4667969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5aeaacbc-3228-435a-b713-ffb6e835188a","createdDateTimeUtc":"2021-06-02T06:40:02.5798533Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4688227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05f6af9f-6f99-476f-b95d-02e7b30ba973","createdDateTimeUtc":"2021-06-02T06:40:02.0118203Z","lastActionDateTimeUtc":"2021-06-02T06:40:03.6115399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7a23650d-bb6a-4ca8-9569-84fa94fe6800","createdDateTimeUtc":"2021-06-02T06:40:01.4873529Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.5950808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=386&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z"}' headers: - apim-request-id: 93a9395a-bf76-4d45-9163-07c0ce96a303 + apim-request-id: a891e9b9-260d-4d9d-b3cf-0a8be8d1bc77 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:10 GMT - etag: '"FB45B9911093E38D3A31F433A2FA81A9510FA8A3D521F4EA87100FA5F61DDBFB"' + date: Wed, 02 Jun 2021 15:41:06 GMT + etag: '"BCA03EF8798722B7B61717457A40E31D95C60B9AE3EE6E1BD24F90311E274C1B"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 93a9395a-bf76-4d45-9163-07c0ce96a303 + x-requestid: a891e9b9-260d-4d9d-b3cf-0a8be8d1bc77 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&createdDateTimeUtcEnd=2021-06-02T15:38:32.290081Z - request: body: null headers: @@ -3449,192 +1890,176 @@ 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/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=386&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z response: body: - string: !!binary | - H4sIAAAAAAAEAIWOQY8CIQyF/wtn2QAOTOC20fNmk9WD3kqHUZKZIYF6MMb/Lkyi1700r339Xvtg - cWCOjdAZP6rAB9SCd7I33GupuBXKj37wxo7INgxzAArDvpZDnMORsLJKKMmF5koepHHaOim/TGe3 - qtPnykxQ6BsppuV/rN9aa0zfsEJAt1L3fhL9EeR6tk1v8wz5ztyDUSKYmJOb+nycqutE8xFDKauO - y29Ol/xul0Sn8IlqHMKCYXqja97uChmQQm7isjrP5wtOq9F6JAEAAA== + string: '{"value":[{"id":"964a78c0-3ac4-4769-bbd8-526686f22c42","createdDateTimeUtc":"2021-06-02T06:40:00.9118738Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.6168181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d8840d4-2706-43e3-9db7-726ade4b28e8","createdDateTimeUtc":"2021-06-02T06:40:00.283617Z","lastActionDateTimeUtc":"2021-06-02T06:40:00.7436838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e302853f-5306-4a81-9d21-62ab1c3cb24f","createdDateTimeUtc":"2021-06-02T06:39:45.0213389Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9897041Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"840ef30b-a12f-49a9-b85b-01cb39acc87b","createdDateTimeUtc":"2021-06-02T06:39:44.5163768Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9895247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3415cb23-56af-4ba6-85c6-dfc4b5542ad8","createdDateTimeUtc":"2021-06-02T06:39:43.9656836Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7506612Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be268620-2e05-4ba2-89ae-1c0b72751bca","createdDateTimeUtc":"2021-06-02T06:39:43.4699657Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7031927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da019c4-f930-419b-8fd0-a26dfc37c494","createdDateTimeUtc":"2021-06-02T06:39:42.9890121Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8240778Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60d59bd2-31c5-4cd7-9a2c-2f4fb5a66a28","createdDateTimeUtc":"2021-06-02T06:39:40.9473475Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8600715Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23632a5-a3cd-4415-8ca9-49d9af346f4c","createdDateTimeUtc":"2021-06-02T06:39:24.1530166Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4860761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"348397fe-5a6d-4254-917e-8a417fe69a18","createdDateTimeUtc":"2021-06-02T06:39:23.6466581Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4112274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6d5cec9-56ba-49eb-a706-f23d8726364c","createdDateTimeUtc":"2021-06-02T06:39:21.4737853Z","lastActionDateTimeUtc":"2021-06-02T06:39:22.7942225Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"675c93a1-a854-4990-8389-7a61b2727f07","createdDateTimeUtc":"2021-06-02T06:39:20.9472043Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.5120454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"525194bb-ef96-4db2-ab08-a915dadddfac","createdDateTimeUtc":"2021-06-02T06:39:20.2491928Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.4901556Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f00445aa-49dc-4412-87eb-553ea2bf7d04","createdDateTimeUtc":"2021-06-02T06:39:08.6574795Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1874519Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba2f1009-fb37-4b26-9028-4b0fff7782e1","createdDateTimeUtc":"2021-06-02T06:39:08.1487463Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1891904Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0e4ce759-4155-4371-8b1e-5856d993a09b","createdDateTimeUtc":"2021-06-02T06:39:07.405402Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8980215Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"430d6fdb-2ede-4359-8866-84f6afd6bdcd","createdDateTimeUtc":"2021-06-02T06:39:06.9117078Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8128538Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8cb80008-0ccb-480d-9ed1-01b8e5f22b0b","createdDateTimeUtc":"2021-06-02T06:39:06.3306336Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.708013Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8e38339f-b8f6-422a-afdf-4d1de19fbab3","createdDateTimeUtc":"2021-06-02T06:39:00.7494268Z","lastActionDateTimeUtc":"2021-06-02T06:39:01.3181011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"773b73df-42ae-4197-8198-bc90c557b188","createdDateTimeUtc":"2021-06-02T06:38:54.0646034Z","lastActionDateTimeUtc":"2021-06-02T06:38:56.3798465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"79d237c0-c8ac-4a3b-99bc-de2b9a1e76ef","createdDateTimeUtc":"2021-06-02T06:38:46.309884Z","lastActionDateTimeUtc":"2021-06-02T06:38:49.2573517Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f90c5227-f225-471d-9453-024721f9518f","createdDateTimeUtc":"2021-06-02T06:38:40.7600205Z","lastActionDateTimeUtc":"2021-06-02T06:38:42.2207707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d95d4dcd-6301-4006-a1ac-ac471411900b","createdDateTimeUtc":"2021-06-02T06:38:35.1857718Z","lastActionDateTimeUtc":"2021-06-02T06:38:36.248059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f820ac8-68e8-402b-890a-bb2bdda717e0","createdDateTimeUtc":"2021-06-02T06:38:34.2347962Z","lastActionDateTimeUtc":"2021-06-02T06:38:35.1762805Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbe70865-551f-49f3-ab11-8e71503fb250","createdDateTimeUtc":"2021-06-02T06:38:33.6329499Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9745495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fc1f463-3f90-463c-a8e5-c06153becb1d","createdDateTimeUtc":"2021-06-02T06:38:33.0953339Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9133298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d8f3f86-0803-4bac-9ea8-419278691b54","createdDateTimeUtc":"2021-06-02T06:38:25.681571Z","lastActionDateTimeUtc":"2021-06-02T06:38:29.2106941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bb2b0f6-8ac2-418a-9b10-b360447a89a5","createdDateTimeUtc":"2021-06-02T06:38:20.0075742Z","lastActionDateTimeUtc":"2021-06-02T06:38:22.1577533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee6090f4-643f-4016-a931-dacd57b43fa1","createdDateTimeUtc":"2021-06-02T06:38:14.4144376Z","lastActionDateTimeUtc":"2021-06-02T06:38:15.0321792Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d921bb3-d049-4b73-806c-257c1dc96953","createdDateTimeUtc":"2021-06-02T06:38:07.6875606Z","lastActionDateTimeUtc":"2021-06-02T06:38:09.8465419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86272760-b346-482a-87d3-d8b3eeb1431e","createdDateTimeUtc":"2021-06-02T06:38:02.0547056Z","lastActionDateTimeUtc":"2021-06-02T06:38:02.7777345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1ab36b51-3fd7-42b0-806b-e3186a953d2e","createdDateTimeUtc":"2021-06-02T06:37:54.3117337Z","lastActionDateTimeUtc":"2021-06-02T06:37:55.7664263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3a0d3c0-f2fc-4ab6-b669-8c3761494c57","createdDateTimeUtc":"2021-06-02T06:37:47.5767386Z","lastActionDateTimeUtc":"2021-06-02T06:37:49.9643054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"527a3c66-ace4-4790-8c11-5a91053508e0","createdDateTimeUtc":"2021-06-02T06:37:40.8885591Z","lastActionDateTimeUtc":"2021-06-02T06:37:42.8973152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9c7cc60-4eb3-4e1c-b45e-a4604a064ffa","createdDateTimeUtc":"2021-06-02T06:37:35.3559821Z","lastActionDateTimeUtc":"2021-06-02T06:37:35.9147701Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e46e697b-4b91-4cc1-bdc8-d1b5f4f29316","createdDateTimeUtc":"2021-06-02T06:37:29.6705576Z","lastActionDateTimeUtc":"2021-06-02T06:37:30.751147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a414371-9c16-4f5b-b78f-54a1b14f3cb3","createdDateTimeUtc":"2021-06-02T06:37:28.605251Z","lastActionDateTimeUtc":"2021-06-02T06:37:29.7618353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0eafff35-c835-435f-8ba6-5c62ccbcac05","createdDateTimeUtc":"2021-06-02T06:37:28.0226232Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.688448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4e16297-da6d-44a3-b537-2e179b5c57c8","createdDateTimeUtc":"2021-06-02T06:37:27.4859883Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.4461178Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88f6806b-a28c-43b3-80c7-9a3e2a18f98a","createdDateTimeUtc":"2021-06-02T06:37:25.5121262Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.6483773Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0eba3d56-4b51-4fc6-b9ea-755fe87fe711","createdDateTimeUtc":"2021-06-02T06:37:24.8468851Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.4997727Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b719446-a83e-4bc7-9deb-659eebb51328","createdDateTimeUtc":"2021-06-02T06:37:23.7379948Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.2183805Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2bbaa78d-f6a0-43b2-8352-bd0aa6edd744","createdDateTimeUtc":"2021-06-02T06:37:23.0437961Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.9407465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b96b537-29be-4194-a7b4-a05959950142","createdDateTimeUtc":"2021-06-02T06:37:22.0011983Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.6381334Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"754d7123-41c6-45bb-9214-20ccbb325d5c","createdDateTimeUtc":"2021-06-02T06:36:57.8535231Z","lastActionDateTimeUtc":"2021-06-02T06:37:03.3442448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1237295c-47ea-4710-a84e-ed65a8f49dda","createdDateTimeUtc":"2021-06-02T06:36:26.6950836Z","lastActionDateTimeUtc":"2021-06-02T06:36:28.3693909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=336&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z"}' headers: - apim-request-id: a3b5d4de-06bb-4425-84d4-683ccc60c5da + apim-request-id: efbee5d7-ff16-4a8b-8f72-802a79ed03cb cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:11 GMT - etag: '"917A3C4C50AA018DC97FA34DD63E564D99CA05A3D9516E9C1FF3C1038E69FCE3"' + date: Wed, 02 Jun 2021 15:41:06 GMT + etag: '"7E525D1D4E6AE33F2581B3B1344DDD7F9A7970E7287E686BA7155BA89840FCE7"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a3b5d4de-06bb-4425-84d4-683ccc60c5da + x-requestid: efbee5d7-ff16-4a8b-8f72-802a79ed03cb status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=386&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=336&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z response: body: - string: !!binary | - H4sIAAAAAAAEAIWOQY8CIQyF/wtn2QAOTOC20fNmk9WD3kqHUZKZIYF6MMb/Lkyi1700r339Xvtg - cWCOjdAZP6rAB9SCd7I33GupuBXKj37wxo7INgxzAArDvpZDnMORsLJKKMmF5koepHHaOim/TGe3 - qtPnykxQ6BsppuV/rN9aa0zfsEJAt1L3fhL9EeR6tk1v8wz5ztyDUSKYmJOb+nycqutE8xFDKauO - y29Ol/xul0Sn8IlqHMKCYXqja97uChmQQm7isjrP5wtOq9F6JAEAAA== + string: '{"value":[{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=286&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z"}' headers: - apim-request-id: 828322cc-dfbd-4ac5-b7c8-5ea4367fe1aa + apim-request-id: 2e7f38af-3f87-4ef3-a368-d99aa1c504c9 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:12 GMT - etag: '"917A3C4C50AA018DC97FA34DD63E564D99CA05A3D9516E9C1FF3C1038E69FCE3"' + date: Wed, 02 Jun 2021 15:41:07 GMT + etag: '"20969F6D8F5AD32A4FBF0A7B57C1736BFCB383F899B7F1CE6708F5323A450BCB"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 828322cc-dfbd-4ac5-b7c8-5ea4367fe1aa + x-requestid: 2e7f38af-3f87-4ef3-a368-d99aa1c504c9 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=336&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=286&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z response: body: - string: !!binary | - H4sIAAAAAAAEAIWOQY8CIQyF/wtn2QAOTOC20fNmk9WD3kqHUZKZIYF6MMb/Lkyi1700r339Xvtg - cWCOjdAZP6rAB9SCd7I33GupuBXKj37wxo7INgxzAArDvpZDnMORsLJKKMmF5koepHHaOim/TGe3 - qtPnykxQ6BsppuV/rN9aa0zfsEJAt1L3fhL9EeR6tk1v8wz5ztyDUSKYmJOb+nycqutE8xFDKauO - y29Ol/xul0Sn8IlqHMKCYXqja97uChmQQm7isjrP5wtOq9F6JAEAAA== + string: '{"value":[{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","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/batches?$skip=200&$top=236&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z"}' headers: - apim-request-id: 978b7af0-4382-424e-87f6-7123b538c5b7 + apim-request-id: 36cf8747-ad47-405f-a72d-0629e3c73637 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:13 GMT - etag: '"917A3C4C50AA018DC97FA34DD63E564D99CA05A3D9516E9C1FF3C1038E69FCE3"' + date: Wed, 02 Jun 2021 15:41:07 GMT + etag: '"8B9C312884DEBC688A3C7FEAAFDB2382D31D804140F1533A50B597B679253498"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 978b7af0-4382-424e-87f6-7123b538c5b7 + x-requestid: 36cf8747-ad47-405f-a72d-0629e3c73637 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=286&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=236&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwW7DIAyG34VzqcADpnCb2geYtu6w3oxDUqSESOAcpqrvPhJ1512s3/7/z7Lv - IvXCiwGNCwNE2ZNV0uhXJ4PVIDsFYQh9cN1A4iCoROTYn1u5pDl+MTUWFGiprAR90c7bzmt9dKZ7 - AWOvjZmw8htxWvJ/mDlaAw4ANqwy8lpb7mPNOeVxG63zjOVH+LvghXESXh/a5WmK7QW1+USx1l2n - /F6WsextS+WFvyN/MhZ+hgkzxekP3fedbliQOJZNjLvzePwCs81Z2yEBAAA= + string: '{"value":[{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=186&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z"}' headers: - apim-request-id: 00071375-ee61-4bee-baaf-3e76e0311465 + apim-request-id: 00a29f8d-211a-4f01-8890-736183217290 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:14 GMT - etag: '"6057F21F1F0D5242ECE60619FD910604981C570992C90D78EF77511FBDBF8F2B"' + date: Wed, 02 Jun 2021 15:41:07 GMT + etag: '"C6CF889B1B5458374A52A1CA0FDEA155FCD4EEAD23A4BC1EDDD40A3EB5C67685"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 00071375-ee61-4bee-baaf-3e76e0311465 + x-requestid: 00a29f8d-211a-4f01-8890-736183217290 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=236&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=186&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwW7DIAyG34VzqcADpnCb2geYtu6w3oxDUqSESOAcpqrvPhJ1512s3/7/z7Lv - IvXCiwGNCwNE2ZNV0uhXJ4PVIDsFYQh9cN1A4iCoROTYn1u5pDl+MTUWFGiprAR90c7bzmt9dKZ7 - AWOvjZmw8htxWvJ/mDlaAw4ANqwy8lpb7mPNOeVxG63zjOVH+LvghXESXh/a5WmK7QW1+USx1l2n - /F6WsextS+WFvyN/MhZ+hgkzxekP3fedbliQOJZNjLvzePwCs81Z2yEBAAA= + string: '{"value":[{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=136&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z"}' headers: - apim-request-id: 0a3e70fb-af7b-456c-8a7b-bbd0d162afec + apim-request-id: 4530f9aa-7c5f-4005-8d6d-416b4b257a57 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:16 GMT - etag: '"6057F21F1F0D5242ECE60619FD910604981C570992C90D78EF77511FBDBF8F2B"' + date: Wed, 02 Jun 2021 15:41:07 GMT + etag: '"542C730E3C82B31DABA961BCD5B1BA0DC37BDEAFC13166F52A27700EA17FD7EA"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0a3e70fb-af7b-456c-8a7b-bbd0d162afec + x-requestid: 4530f9aa-7c5f-4005-8d6d-416b4b257a57 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=186&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=136&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z response: body: - string: !!binary | - H4sIAAAAAAAEAIWOTW4DIQxG78I6ROAC0bCr2gNUSrJod8YwKdL8SOBZRFHuXhi1624s2+97lh8i - R+HFiMaFEZKMZJU0+uRksBrkoCCMIQY3jCQOgkpCTvG9lUue05WpuaBAS2Ul6It23g5e66MzwwsY - +9WcCSu/Eud1+U8zR2vAAUDXKiNvteXOG1FKMcW+3OYZy134h+CVcRJeH9rveWrUq85bttZ9nZeP - st7KPja0rPyZ+MxY+DdMuFCa/tT93ts3FiROpTe3TuD0fP4AF5R0rSQBAAA= + string: '{"value":[{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=86&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z"}' headers: - apim-request-id: a6056ee8-774f-4548-a923-2d1761cae0e0 + apim-request-id: 7c0c6f27-60dd-4ddb-8019-4cc3bbb75aa6 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:17 GMT - etag: '"30D3A2D83DB6323468C694E52BBB52D092A526E41ECA00F30F76621FA4FC27EE"' + date: Wed, 02 Jun 2021 15:41:07 GMT + etag: '"9A86FCC97A902B126A52A3ECA656757FEEB472F8F7C2967D1332875A5A45ED3F"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a6056ee8-774f-4548-a923-2d1761cae0e0 + x-requestid: 7c0c6f27-60dd-4ddb-8019-4cc3bbb75aa6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fa46bf2e-dc50-4176-b512-902bfbdb69fc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=136&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z - request: body: null headers: @@ -3643,71 +2068,27 @@ 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/batches?$skip=0&createdDateTimeUtcEnd=2021-05-21T16:58:24.778708Z + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=86&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z response: body: - string: !!binary | - H4sIAAAAAAAEAM2bS28dxxGF/wtheKUeVVVXV3cTEJLAyS6LAHYWcZBFP2XCEilcXgmODf/3nKGU - xIkdZBowiNlc3AeHnPlu1alzepo/3Hwob96Pm9u//nBz129ub8i3WHowx6myU1JxNfnmsk6eo9Zk - 0W5e3LTLKNfRf4+Hr+7ejj9fG44VEnYUnPBXbLch3XLaKHlLyX+NY96Ux+vv2vXu4f7/HCa8aTJT - Svthj9dyff+In/vyfWtj9NH3N9+/fVsuf7+5/eHm+nAtb25u+cXNLHdv8Okt7Z/jZx8fn96+u//T - 5eH15eklPrp/uP5lXL+8lsv10w+3ct/Gm38e+vT7vvimXEq7jsv+5PX+icQff3zxCVIVJkndnGUL - Tn2NrhpnN7updZ3Bej8OSTcvSSXFJUgcNq8UNOhJIekopiOri8OaU5vkKpu63PJUKiNTKcch8RaE - I0VZgySbZA2ZwkkhBUKvlRxdCWM6ZU0uT2lONMWRSpJM4zAkSlv0ROLX2o3yJj7xpwI8IaQUWgmc - uhOayWkBpMoiLsroExWWfczHIYUtk+dFSSLbNEtKetZCkpIozuqd1TScVopoNELzBa6VQyVLxyWJ - dIsWSWgRUkAhWQ4mC5DklyHJrwUp6L8hZSscSh3OV0a39SwuR46uJ8Lb1XyPC92mG5NPYZ2RJU3Z - n5SRaOwpR5wyoeOUanDFeLg6oaOjdk7Cxxn5zafMlnUNkm55J3vWOvLshXIK0GrFaKtQpWI2HJeU - ifH15nbcJBFmVPLom7zOiGLQFZMUfhlS+LUgsQ8/mW2euHBOLnKPTvOES6JpblKyojGalnScEgwA - s8SwZgBAybwEzyuz7Vkp2YjK1LLzKRpqqTZ4SXiBaehD6RwH1+OUCA4A5pTDGiXekogar0y3Z6VU - uu+5eGARhuM2zLhEVpyn0sYMSUvWFUqw78HbmuPeSxCUQlqR7uetJa25R/YY/VAjnOlwGenNlWZz - lphGmUdrKd4G2EKFmEVeo0Sb8B7f7KyUmrcmtYnze2ZTDrBKwwdHxZcYOmyUhuOU4hbJPunLQUg4 - Km0JqTjaing/54QrnBIs0XQ8G7Q7GIpooqaQSGLjAefEssIIQVVZVlTpCVJUdHlcUaXnhBQnCqiH - 7uaMsErcYQjCKI4ox1hxwX3E45Bs8zlk0WVIIRvp0oB7Vq9U8kxc2flhmG9dCPONkHBLHhwjhtw8 - GkxwtWGLEoXjIiSkt2im/qym2wpVjSU4pHBCu43gkjbUVPXdTDD40oIkBbQbck1aMd0fIVkKKZ5V - kxAsC7Mnl6WpUwnTpYigEn0xqoaH0I5D0s0H9FtarKSALlXVfNZowhyCJSM3u4jT4mG6MdDcQOel - TgClR9dKcLV+C9FQSCsZ94ktviecCZ8U0hQENZ/ZjVKL04YQVyt1l1PpubaWm8zjkGSDl/Q5L1YS - IJkE4RWf9KwLAcHazLm5UkNy6hV8GiqJCV679AJ0RxdLniAxzOSqTfIbC2GcnrWQGqS6DYYvgm46 - 1RpdYiY3xhySkU2Qxo4zYkiSkS2Ft49ohbyms+o2McaYV3LJFJIUJ+NZ7a7AEEClsvl6HJLCb4MS - 4uoSJM0bwXDjb50UEkuD9QvkIitCiQ/7jYBZXIRmC8UO1330bskTJPYK6V5rNxyWVEzzWSspyZg1 - enNeJ9qtQsFTluqiDuueBvrveL5V2wJpBO9VSBFlFMJZDTd6bbYOtS4EUkoVjZdnc83amF11tuGP - QwpbIorp4yrjcUiGLo0BHvSkkGCH0HG+OvLoOdV9kYRQSYmHpOg5TE8rkGj3SXGxkhBmOKjFs063 - aOQLlX2mNVRS2L3khKukPoOY+VFsod38ZpkTr1lJ/bh+K6ddKLHa0jAtDr56wkpawLPGUPDebI++ - 1I/rtnhEMKGle5M4Svf7tznrWeuoyx4hUkVwEwQ3QmYrORZndfreS+KuR28E4Gpht1nFLy1LPqHN - YLu2XeJZM0kgEmFxre+LSR2zrSZcQQtTKINUTAuFtO+gyYHzmmzvkEhF01kzCRzksNmSC1JRSQyD - lOowZ8GbxmZV5vFMIrRh+kvIy5WEvyX+vHcnbTANuGwownA6a4IkEULJ9IX3fTdUj6+TABJjRual - O7gfITGsvZxVk4xRRhNWm1kDdLvuVnJEl5H/a7Awaji+dktxywGe3dYgUdoCowT9f7bbF/+6loVN - JbQGif8nJPpJJukGaUamNUR9p1bDjkfxUkIPpUTmo1sBnhh5Ys+LThKMNOPA6M/JqE3WMmdy3gfI - NhKmKx6KRJjIHulfYzjutsk22KrEcWUrwBMjgf3U/2q20zAqyCCcI9xj9n53Rmiz4sV58UErjUHl - uCCBEYlaWFxuAyPOTJzCORmFXDPcdnSY/phsITSXSsVDaqFJG0kO77uN+yYjZU9xcbmN9u26KWo4 - aa9liZkw/x3HUKHZI7tS0HBUk0yZnaoenf62396G9sJarZltos0baY5n3XYLEDg5FFKksN/dNthu - iDVeegT5OGrLR28l2b4kmQnxK62sttm+busDWzjr/m2KadSYmot1FKdDmqvcvGMh7WO2EMbRZrOn - iBpSJFlpNtuXSCTTbhtOCimU3Ub64Xzbl23r7pBC9o5MU4dDKoWObrmxWx+RbJlprY78vgUlmaQV - F/mse9xldJwdXGTN0Wmk4Wrsuyz51Dia4Ps9zEjylmKyRCvTH5AEkw1wl7ZJPCekPbHVkmAjn5ZI - tBPGf1QXp1amwtnPo/EfkNKWYXXyYrcBknAUtnzSPBIC9VgbQn+N+2ZJEcj2NFxBqeRbT96OSxIg - CboUU2oNEtReMGP9WTfcFFQLMXdXn+I/wLgk3lwbBEPoa0QHHocUNyPzspRsP0HCt3Xa223M5rUn - drEFVNIgdiW05vwUy6WnnspCJe17Hk2Q5JcgIf7jsMxLC0nPqUksI8+ckdhig0uaEO6CEedmIMsz - xHw8ktj+r1jwSMuVxPsNKDgOOiukVBPTnvptaIImpexqwsteIwZO41ra0fV/2/M/MoykRQtAeQMg - GNeV1bbngPS3Fze/vR/fXf94d/8tTuib6/Xd4+3Ll99e3l3K9a5t7eH1/d317sN4HJcPdziBrXz/ - /jLw/tuX10u5f3xTrg+Xl1f8ipe1XNs3Lz/wRh+fjsfffPb47d27V4E+/+z68O6Vl88/e1u+e1de - j8e778f+/s+p/+G+v/r5/1LqFiPcaaKvb378B9mMlmnuOQAA - headers: - apim-request-id: 312b7de6-2eba-40cd-8aef-c6efe4ad1123 + string: '{"value":[{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=36&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z"}' + headers: + apim-request-id: 1671e1f4-a3f4-485c-bf6a-6f5b5ccf54c7 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:17 GMT - etag: '"A4580103401E0DAA6C64E3CFA2C0A22644FC57E692B27DBD8C186DE64B81F1B1"' + date: Wed, 02 Jun 2021 15:41:07 GMT + etag: '"109B50C0DAB29D7596CA4DB46FC8AFF7AD7898A9B2BF097CD8D030D08224AD91"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 312b7de6-2eba-40cd-8aef-c6efe4ad1123 + x-requestid: 1671e1f4-a3f4-485c-bf6a-6f5b5ccf54c7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0&createdDateTimeUtcEnd=2021-05-21T16:58:24.778708Z + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=86&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z - request: body: null headers: @@ -3716,55 +2097,25 @@ 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/batches?$skip=50&$top=32&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-21T16:58:24.7787080Z + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=36&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z response: body: - string: !!binary | - H4sIAAAAAAAEAM2a22okyRGG36WvJ4vIOGVG35n1Axh2fWEbX+RxLdDMgNSzsAzz7o5qjz0yaOxK - GEQJoUNXpzrr64g//ojU58tv5fHTuFz/9vny0C/XywCqFhVCSoUCI7dQuqZAFgFTplIFL+8u7WmU - 2+h/9C+/PLwff741X4uAMYAEjL9EvYpeIW4qCkLpr77msTzf/tBuDx8//L9luBEnBbZ92fOt3D49 - +/N+/tTaGH30/cFP79+Xp98v18+X28dbebxc47vLLA+PfvUK+3V/7vPz/eGHD396+vjr0/1Xv/Th - 4+0v4/bzrTzdvj65lQ9tPP576f3v/fSP8lTabTztP/y6X8H05cu7r5AwdcGWZxggGHg2CLlTCSUB - t0ppplEPQpKr5E2YkqgtQPJltrFlSzmeFBL3OmmUGJRTDWxNg2WOIUkbmQkkqR2HJJsYCKS4Bkk3 - 5mQGdFJIvfTZIWLouTikLC1kgex34PEVe6r+7Tgk3CSBKK0xoo1BIZ0227Roch0iD58kgduQUGh4 - XA3AFqmMVPgwI5aNIEddDCS+BxIk5ZNCylFYO7VgA9glaaJLUs2BqM1GqVqOC5BcgNHEqa9Boo3I - NJ012UovE4RL4IEzcIEaShstpDHyUCGd42htkyvZhgky5bVsY/D4A2A6ayChxAFmNQwunm3VRjCL - NXSOZs2jouPx2kZ5AyMmyUuQnC1FBI+lBUj4OiT8UZCEv0ECLBNVJCiV7i6p51AscaBshhRniyuQ - 0kaWMC65pDtbMkvC+aSQisdOI5uhpjgCa4ZQZZBLEirOXLAyHIekm7K6ZdA1SM6WMqclTXpLSA2b - xDldhHKP7pLIQh2T/SYQWtbKs7TjkGQDNM/eteLmbDHtHyuaJK9Dkh8FKZJ8ozRbi6PyCIK7BfDK - FmrMrlEu6Aq5g9pCKLGLUgZcjCTenKyarKTb20IqEXVWt9nDIDBIcUh9hAQUwVIZg+NxSLS5IDHm - ReXmTTK5VTorJBhaY6nNt5zdJ5E6pOZmyRV4NwfYZjxuuAk32IV7zSY5I1Qzt6FnhSQFtPXWQrPd - A1BuoRbKYVaUjHu6CR2HFN3xuOKntf52z1JkYDmtKLXSsxZXbYLkdhJlhOr+NxTv20rJRJ53hymh - e+foDQasmQCULSP7q57JTsYXdtIGinoLEnzr5s1b4eA6rsH7tlZ7JYN6XLnBthRJU16T7ghbVvY3 - 5EyjkpeQkCXyJAlRCd0ETA11Hyp5miVsSdXz8SAk3qcAXiSj2Ipy8z5h8W0k4P+G9NN/7uU1SPl1 - SLAGKX8XErxgVKblaRjUulc3GSkYUArDECphHzkfNUq8e+dkSUFWso33BjeShxLjWTVpVvJIZw2q - 0SOptRlKgeSNCfQJKKWko8rNu7hE8LTNskSJvMXNIpBWBkrpdUrph1HK9o2SNx6loG87jubtW7YY - yvRYssYN2vQ9LsRSRO/DgERXTLcv080h4VfBP2MsVSg6Z6eAqXrGJWgha+eArUZXGJnMxymBbBo5 - wlKT68vSJsimS+OSN6VUSiPoKCFV8i63CYZcXMobqxeqFm3cd3mEEu1nAYpRIK4MlZwSbNHlTJcm - uPCdArco3v9rqvRCvht7Vzr2HMtMjglqyLWMYGk0jFNw2lGz5JhcYdRYaEWYaK+MzDnBmln6TjTF - HxZO3qm9KHMNjXU/MMnqSRf9FqwhhjKyQZKmlI5zoj17vK1fauLoyrwR+iaWjpbeNOlGn6aFnI2O - FngWb3obaWjamKzk3Hs6TMnLHAgDwUob58vyZgy6NH5746SrM+cctYXkChq4EgTz/AtWBkRNbCUd - x+QKjt60oq30ceTv2y5pEE+sTW4tqSpjmHOfCeynKHV4jwLS3UiD31I6ei6Ad22Kqnmp0PmytPl7 - ZRpPOxToOAT2dOtxn1TO2EONUIKrOIuKjtmPdnJ4V6ak2eNiiZIbcPAXY1yJpjelZK0xR48lrXU/ - PgENxXINaYrVQtUmHz0ZwP0fIRQhSlzRb7ybJlNBk/NSGoUNLAibl7paMBg1DZ15pjKTEY+DlOIe - FLz7aFtxA9E/vU/OXh9XjgbelBK68fY6zMEdUtwNgWcceUdHbrwngkgvR+QbogfSnnEZgFGPVrl/ - LeO4ZcwJl8rcm1D6+5d/AiNQaSy9JAAA - headers: - apim-request-id: 35a88b70-3707-4948-882e-54ee5d83f426 + string: '{"value":[{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + headers: + apim-request-id: a7c9d66a-f49f-4d96-a820-7c5f7fc662f5 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:17 GMT - etag: '"B8B2F62F5B3C604E1C88BBC3F06A5ACE8549F0454A0B7863EC0EB88F25980D87"' + date: Wed, 02 Jun 2021 15:41:07 GMT + etag: '"1329635ADE87D3C39C3EF08163F0421487C067AC301733851C5910809D06E1CE"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 35a88b70-3707-4948-882e-54ee5d83f426 + x-requestid: a7c9d66a-f49f-4d96-a820-7c5f7fc662f5 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=50&$top=32&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-21T16:58:24.7787080Z + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=36&$maxpagesize=50&createdDateTimeUtcEnd=2021-06-02T15:38:32.2900810Z 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 index 270709527af7..1e100a2ae2c7 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:17 GMT + - Wed, 02 Jun 2021 15:41:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e4dd6e4-bcf2-4864-ab18-cc97b6ff02f7?restype=container + uri: https://redacted.blob.core.windows.net/src66548042-3ede-46ee-8aec-8bbe1fed73ee?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:17 GMT + - Wed, 02 Jun 2021 15:41:08 GMT etag: - - '"0x8D91C79C58A3C43"' + - '"0x8D925DCD771E7EC"' last-modified: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:08 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: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e4dd6e4-bcf2-4864-ab18-cc97b6ff02f7/3cb0ee0c-3394-49c0-b1ac-4b8639ea5a86.txt + uri: https://redacted.blob.core.windows.net/src66548042-3ede-46ee-8aec-8bbe1fed73ee/5947293a-ce58-4e81-88a3-7d5533fac8a9.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:17 GMT + - Wed, 02 Jun 2021 15:41:08 GMT etag: - - '"0x8D91C79C595DDCA"' + - '"0x8D925DCD77ABA0A"' last-modified: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:08 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: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src6e4dd6e4-bcf2-4864-ab18-cc97b6ff02f7/5badb708-30fb-4d7f-b096-447500c017b4.txt + uri: https://redacted.blob.core.windows.net/src66548042-3ede-46ee-8aec-8bbe1fed73ee/5bf7f55b-d541-4180-bcb3-b1156723c9ff.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:17 GMT + - Wed, 02 Jun 2021 15:41:08 GMT etag: - - '"0x8D91C79C59DF599"' + - '"0x8D925DCD7823576"' last-modified: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target37b18c9a-e1ad-48ff-be0b-dd9461ca9ea5?restype=container + uri: https://redacted.blob.core.windows.net/target139cf7d8-d6ca-47e6-ad53-833a7ea3f0ac?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:08 GMT etag: - - '"0x8D91C79C5B996A4"' + - '"0x8D925DCD79B8D3E"' last-modified: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,14 +176,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src6e4dd6e4-bcf2-4864-ab18-cc97b6ff02f7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target37b18c9a-e1ad-48ff-be0b-dd9461ca9ea5?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src66548042-3ede-46ee-8aec-8bbe1fed73ee?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target139cf7d8-d6ca-47e6-ad53-833a7ea3f0ac?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '488' + - '486' Content-Type: - application/json User-Agent: @@ -194,53 +194,46 @@ interactions: body: string: '' headers: - apim-request-id: 007ab488-0b92-4e34-a2e6-82a733626485 + apim-request-id: 50f3ae25-9f90-4acf-803d-6d50e25fb756 content-length: '0' - date: Fri, 21 May 2021 16:59:17 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/591bcb98-5c77-4d9f-aa0d-afcc517e645e - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:41:08 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/49a4073e-a77c-43a8-a5df-624e4353512b + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 007ab488-0b92-4e34-a2e6-82a733626485 + x-requestid: 50f3ae25-9f90-4acf-803d-6d50e25fb756 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/591bcb98-5c77-4d9f-aa0d-afcc517e645e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/49a4073e-a77c-43a8-a5df-624e4353512b response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMU/EMAyF/4vnC2pK3V6yIZgREscAm891j0htIyXugE7330kqHTOL9fyev+cr - hBE8oLNnPrujQR4G041uMkTNaGhiRjtI36HAATgJqYwvZZzCIh/KhW2b1poGTWtPtvfovD0+dK5D - xMevwsyU9Yk1xPW/WF+xrKRbLnevUd+VUnlb3W1ZKP2Av4JGpRl8c4CJwlzSKvPGLDnvOqxvKV7S - fV2jfspfVXWYVpb5ju59z9+UiFVSFZc9ud1+Ae6bYdQkAQAA + string: '{"id":"49a4073e-a77c-43a8-a5df-624e4353512b","createdDateTimeUtc":"2021-06-02T15:41:09.4884568Z","lastActionDateTimeUtc":"2021-06-02T15:41:15.079891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: b452a2af-2c94-4a53-a168-dffba3a413b4 + apim-request-id: 6cc5cf5b-02c2-44a9-94e2-c01ef209443d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:17 GMT - etag: '"A764BF17A60C0A146CC80AA4CD0530C965393B5F4111DDC2E29C337D2645DD64"' + date: Wed, 02 Jun 2021 15:41:38 GMT + etag: '"82E446A30D01B6016AC36D43FE54E54B8639F7D2BF42164174A8AF32AB5AE2A3"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b452a2af-2c94-4a53-a168-dffba3a413b4 + x-requestid: 6cc5cf5b-02c2-44a9-94e2-c01ef209443d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/591bcb98-5c77-4d9f-aa0d-afcc517e645e + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/49a4073e-a77c-43a8-a5df-624e4353512b - request: body: null headers: @@ -255,11 +248,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src710967f3-2014-45b3-b26a-8ff847642130?restype=container + uri: https://redacted.blob.core.windows.net/srcd33c7257-b73a-48ca-9a19-1ebc45b1dc86?restype=container response: body: string: '' @@ -267,11 +260,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT etag: - - '"0x8D91C79C5FD2702"' + - '"0x8D925DCEA29C1DE"' last-modified: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -299,11 +292,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src710967f3-2014-45b3-b26a-8ff847642130/d4123c2a-67a2-4378-be65-d1ddbb62688c.txt + uri: https://redacted.blob.core.windows.net/srcd33c7257-b73a-48ca-9a19-1ebc45b1dc86/f71d1778-6bd7-466e-a771-3a4debdcb36c.txt response: body: string: '' @@ -313,11 +306,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT etag: - - '"0x8D91C79C607EE50"' + - '"0x8D925DCEA31DB5C"' last-modified: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -349,11 +342,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src710967f3-2014-45b3-b26a-8ff847642130/69225570-589e-4437-bedb-45ee7e4c47fe.txt + uri: https://redacted.blob.core.windows.net/srcd33c7257-b73a-48ca-9a19-1ebc45b1dc86/fcd0ca24-516c-48a3-9aab-58b6c883696d.txt response: body: string: '' @@ -363,11 +356,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT etag: - - '"0x8D91C79C610061E"' + - '"0x8D925DCEA39088C"' last-modified: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -393,11 +386,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targeta19d6dcc-c1cb-47ff-a7f2-862bdd63107b?restype=container + uri: https://redacted.blob.core.windows.net/targetfe87d3e6-d33f-4571-b7c5-4f2b1970a562?restype=container response: body: string: '' @@ -405,11 +398,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:41:40 GMT etag: - - '"0x8D91C79C6334D1A"' + - '"0x8D925DCEA598BE4"' last-modified: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:41:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -418,14 +411,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src710967f3-2014-45b3-b26a-8ff847642130?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta19d6dcc-c1cb-47ff-a7f2-862bdd63107b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd33c7257-b73a-48ca-9a19-1ebc45b1dc86?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfe87d3e6-d33f-4571-b7c5-4f2b1970a562?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -436,53 +429,46 @@ interactions: body: string: '' headers: - apim-request-id: d889fcb2-9224-454d-963d-ecceb2047d63 + apim-request-id: b2a75426-c008-49fb-a17a-3e5d88169d26 content-length: '0' - date: Fri, 21 May 2021 16:59:18 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/0d5c283c-a6ad-4993-be53-438bd67f5019 + date: Wed, 02 Jun 2021 15:41:39 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d889fcb2-9224-454d-963d-ecceb2047d63 + x-requestid: b2a75426-c008-49fb-a17a-3e5d88169d26 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/0d5c283c-a6ad-4993-be53-438bd67f5019 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzFOgnciJtRTsXAZoO7cZQSiLAtgCJHoog717JQDp3IY53/I53 - SAE8yGBJHwwJHDCInXNGnKM1YmcO5zDsL1YqBxugEpFjeGvjlKb4ydRYLbUS0gqtTmrw1nnltlqq - wUrz3ZgRK78Qpzz/F9t3rDLyUtvde+YPxtLedneZJiw/4O/AmXEELzdwwTS2tMu6EMVaV53mY8nX - 8lznzF/xr6o7hDPF8Ymufa83LEgcSxfXNXk8fgFAyiB3JAEAAA== + string: '{"id":"51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb","createdDateTimeUtc":"2021-06-02T15:41:40.4875824Z","lastActionDateTimeUtc":"2021-06-02T15:41:45.0055865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 48deda9e-f31d-426a-b77c-a20acafab22e + apim-request-id: 363e581a-fdeb-42bf-bab9-d1cd80a90959 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:18 GMT - etag: '"708F2E03783A0B191290B4E4DE3E32AA8EF29AAC47ABFD17510CCDF8A2C908DF"' + date: Wed, 02 Jun 2021 15:42:10 GMT + etag: '"9BBFD1FF58E54157E37D582A337FC750780D15F80F4512EA7E7317A08644CCAD"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 48deda9e-f31d-426a-b77c-a20acafab22e + x-requestid: 363e581a-fdeb-42bf-bab9-d1cd80a90959 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/0d5c283c-a6ad-4993-be53-438bd67f5019 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb - request: body: null headers: @@ -497,11 +483,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:10 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72826d32-40ee-42af-ab28-27079e4021e0?restype=container + uri: https://redacted.blob.core.windows.net/src68d2b09d-a919-4ed1-ba25-ee3252a9ed50?restype=container response: body: string: '' @@ -509,11 +495,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:42:10 GMT etag: - - '"0x8D91C79C6601AFD"' + - '"0x8D925DCFCA0EF37"' last-modified: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -541,11 +527,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:11 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72826d32-40ee-42af-ab28-27079e4021e0/ada32b47-6768-4735-a7ac-51d927b5385b.txt + uri: https://redacted.blob.core.windows.net/src68d2b09d-a919-4ed1-ba25-ee3252a9ed50/fd25d49a-2b07-4e87-8fd5-33cff2566087.txt response: body: string: '' @@ -555,11 +541,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:42:10 GMT etag: - - '"0x8D91C79C66AB9E2"' + - '"0x8D925DCFCA97707"' last-modified: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -591,11 +577,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:11 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72826d32-40ee-42af-ab28-27079e4021e0/fadd87ae-95f7-4fe4-9117-cbe03631b966.txt + uri: https://redacted.blob.core.windows.net/src68d2b09d-a919-4ed1-ba25-ee3252a9ed50/75572779-8e10-4b09-8a39-46e6d4db5113.txt response: body: string: '' @@ -605,11 +591,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:18 GMT + - Wed, 02 Jun 2021 15:42:10 GMT etag: - - '"0x8D91C79C6736E0D"' + - '"0x8D925DCFCB363E3"' last-modified: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -635,11 +621,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:11 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target9bc8d01c-48e2-4eb7-855d-1fc5b3ffb743?restype=container + uri: https://redacted.blob.core.windows.net/targetbe80b167-7944-4b82-ab4b-e6724424e578?restype=container response: body: string: '' @@ -647,11 +633,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:10 GMT etag: - - '"0x8D91C79C6962D14"' + - '"0x8D925DCFCD2C6FA"' last-modified: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -660,8 +646,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src72826d32-40ee-42af-ab28-27079e4021e0?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9bc8d01c-48e2-4eb7-855d-1fc5b3ffb743?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src68d2b09d-a919-4ed1-ba25-ee3252a9ed50?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbe80b167-7944-4b82-ab4b-e6724424e578?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -678,53 +664,46 @@ interactions: body: string: '' headers: - apim-request-id: 6495132e-b9f9-4f0f-935d-ac338098a199 + apim-request-id: 13c695cf-3e28-4fb4-a323-ade07026c632 content-length: '0' - date: Fri, 21 May 2021 16:59:19 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/0eb69e2c-ea40-410d-bca0-adcec29f9f45 + date: Wed, 02 Jun 2021 15:42:11 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0daad36d-d58b-464a-bf3f-24756c168dab set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6495132e-b9f9-4f0f-935d-ac338098a199 + x-requestid: 13c695cf-3e28-4fb4-a323-ade07026c632 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/0eb69e2c-ea40-410d-bca0-adcec29f9f45 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0daad36d-d58b-464a-bf3f-24756c168dab response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFEiKFVTainYuAjQZko2h6VSAbQESPRRB/j2SgXTuQhzv+I53 - iD0E0Hzde7akGDutOqN7dSXUCntisn7wQ+dgA5QZhfvPOo5x4pNQZa22RmmnrDmafXA+GL99c0bv - du5SmRGLvJPENP8T6xpVBGUp9ewrybdgrl+bu0wT5l8Id5AkOELQGxgwjjVtsixEXMqq43zI6ZZf - 65zkzH9VzSGciccXuvZ9/GBGEs5N3Nbk8XgCLkAEBSMBAAA= + string: '{"id":"0daad36d-d58b-464a-bf3f-24756c168dab","createdDateTimeUtc":"2021-06-02T15:42:11.4829756Z","lastActionDateTimeUtc":"2021-06-02T15:42:20.0459031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 4480f1c7-d2e5-40ab-99e0-571d70b14a3c + apim-request-id: c8d089be-ec06-4e93-8b99-49788dc6b0a1 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:19 GMT - etag: '"75DECFB4C447989E59DF7152AF383A36B067AA26E42EDF1852482C2CBD08875B"' + date: Wed, 02 Jun 2021 15:42:41 GMT + etag: '"DD51380E0987A203641EC7D131178BE24F587715D8027CF48E5042FBCC5460E5"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4480f1c7-d2e5-40ab-99e0-571d70b14a3c + x-requestid: c8d089be-ec06-4e93-8b99-49788dc6b0a1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/0eb69e2c-ea40-410d-bca0-adcec29f9f45 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0daad36d-d58b-464a-bf3f-24756c168dab - request: body: null headers: @@ -733,32 +712,25 @@ 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/batches?$skip=0&ids=591bcb98-5c77-4d9f-aa0d-afcc517e645e,0d5c283c-a6ad-4993-be53-438bd67f5019,0eb69e2c-ea40-410d-bca0-adcec29f9f45 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&ids=49a4073e-a77c-43a8-a5df-624e4353512b,51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb,0daad36d-d58b-464a-bf3f-24756c168dab response: body: - string: !!binary | - H4sIAAAAAAAEAM2STUvEMBCG/0vOmyVfkza9iZ5FcD2oeJhOpmuh20KaCrLsf7ctrOetJy/hzUye - GXjIWXxhN7Go3s+ijaISimsf2JBkdEo6raKsCZXESEwmNKFxIHaCEmPm+DAfh/bEL5lm1iijpQJp - 9EH7CkKlw74ErayFt5npcMx3lNuhvxFzCzVmzNM4P3sc8nPGNG9dqtPphOlbVGeRh4ydqNRONNh2 - c3eJ40TE47jmtn9KwzFdr/2QX/l31FIh7Im7K7rOu//EhJQ5LeG4di6X3dVRBDKlJYkeo3QhWFkz - WOlsWUdfNKB02OLIKO1B2a2OrPZeuWKLJPNHSWa7JAi6pjqUEqgopIuhkYjzb8KGCHTB3gHfLqnc - u+AAYKOkcu+NNrrU/0zSx+UHo8igaXkDAAA= - headers: - apim-request-id: 39fe00a6-4603-4356-bcea-3e28977e91f8 + string: '{"value":[{"id":"0daad36d-d58b-464a-bf3f-24756c168dab","createdDateTimeUtc":"2021-06-02T15:42:11.4829756Z","lastActionDateTimeUtc":"2021-06-02T15:42:20.0459031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb","createdDateTimeUtc":"2021-06-02T15:41:40.4875824Z","lastActionDateTimeUtc":"2021-06-02T15:41:45.0055865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49a4073e-a77c-43a8-a5df-624e4353512b","createdDateTimeUtc":"2021-06-02T15:41:09.4884568Z","lastActionDateTimeUtc":"2021-06-02T15:41:15.079891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}]}' + headers: + apim-request-id: c4c4de25-e519-434a-9b57-0fffe7c7dede cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:19 GMT - etag: '"95B286A079F6FEFC0CD42821076706F0FE54C4EA9CA6D5555F672E5FC581D150"' + date: Wed, 02 Jun 2021 15:42:41 GMT + etag: '"2D9F7C2553690EB6A3EDE81BAD5DA56C871DFE351C021053E407E67EC85E3C6E"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 39fe00a6-4603-4356-bcea-3e28977e91f8 + x-requestid: c4c4de25-e519-434a-9b57-0fffe7c7dede status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0&ids=591bcb98-5c77-4d9f-aa0d-afcc517e645e,0d5c283c-a6ad-4993-be53-438bd67f5019,0eb69e2c-ea40-410d-bca0-adcec29f9f45 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&ids=49a4073e-a77c-43a8-a5df-624e4353512b,51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb,0daad36d-d58b-464a-bf3f-24756c168dab 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 index 55b6ee812557..02d6de36a3a2 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:20 GMT + - Wed, 02 Jun 2021 15:42:42 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7d4c216f-2fa1-49fd-90c6-1520c0063ad5?restype=container + uri: https://redacted.blob.core.windows.net/src5e581427-42f1-41fd-a03d-6947ae4cffd1?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:41 GMT etag: - - '"0x8D91C79C6F3F137"' + - '"0x8D925DD0F24907D"' last-modified: - - Fri, 21 May 2021 16:59:20 GMT + - Wed, 02 Jun 2021 15:42:42 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: - - Fri, 21 May 2021 16:59:20 GMT + - Wed, 02 Jun 2021 15:42:42 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7d4c216f-2fa1-49fd-90c6-1520c0063ad5/f06e8f97-229a-44b6-bec0-98e9d7b88cc2.txt + uri: https://redacted.blob.core.windows.net/src5e581427-42f1-41fd-a03d-6947ae4cffd1/1b98db7d-dc3a-4020-9cdb-35c85f617d93.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:19 GMT + - Wed, 02 Jun 2021 15:42:41 GMT etag: - - '"0x8D91C79C6FE3B51"' + - '"0x8D925DD0F2D49E7"' last-modified: - - Fri, 21 May 2021 16:59:20 GMT + - Wed, 02 Jun 2021 15:42:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:20 GMT + - Wed, 02 Jun 2021 15:42:42 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target75c87449-1c2e-4bf9-8e5d-e71b8381ae98?restype=container + uri: https://redacted.blob.core.windows.net/targetb93accbd-4842-4827-ba44-5c1d145dd381?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:20 GMT + - Wed, 02 Jun 2021 15:42:41 GMT etag: - - '"0x8D91C79C72764C5"' + - '"0x8D925DD0F49CA26"' last-modified: - - Fri, 21 May 2021 16:59:20 GMT + - Wed, 02 Jun 2021 15:42:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,14 +126,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7d4c216f-2fa1-49fd-90c6-1520c0063ad5?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target75c87449-1c2e-4bf9-8e5d-e71b8381ae98?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5e581427-42f1-41fd-a03d-6947ae4cffd1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb93accbd-4842-4827-ba44-5c1d145dd381?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '488' + - '484' Content-Type: - application/json User-Agent: @@ -144,151 +144,46 @@ interactions: body: string: '' headers: - apim-request-id: 44ebb6bb-95bb-4022-ad20-55b98fc5a150 + apim-request-id: 533e0809-d1d4-456e-b05c-488581f9fd5e content-length: '0' - date: Fri, 21 May 2021 16:59:19 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4db2703b-4ff1-4613-bda3-0816c4530902 + date: Wed, 02 Jun 2021 15:42:42 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/74bd8d8b-10e9-4f02-8480-80f6043c2330 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 44ebb6bb-95bb-4022-ad20-55b98fc5a150 + x-requestid: 533e0809-d1d4-456e-b05c-488581f9fd5e status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/4db2703b-4ff1-4613-bda3-0816c4530902 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVFCy5NjainYuCiQd2o2W5VSAbQESPRRB/j2SgXTOQhzv+I5X - CCNY0OOgjtgMQk+TFLqVjRhGagR2snXaNNijggO45In9+F7GOSz+i11hFSop0Aglz7K1prcKX3pt - uh7NT2FmyvzqOMT1WayrWGbiLZe7j8gnplTeVndbFkp/YK/AkWkGiweYKMwlrTJvzvmcdx3WzxQv - 6bGukb/9f1V1HK3Ozw9073v7pUSOfarisie32x3n3VaOJAEAAA== - headers: - apim-request-id: fd760349-b04d-4f48-b10d-0fea064166aa - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:20 GMT - etag: '"B890B7B30551CB0874C76C33BC88786AA30B08F84CC599C4284F48B44E828436"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: fd760349-b04d-4f48-b10d-0fea064166aa - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4db2703b-4ff1-4613-bda3-0816c4530902 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4db2703b-4ff1-4613-bda3-0816c4530902 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE34VzFFB/bqytaOciQNOh3WhZTgTYFiAxQxDk3SsZSNcuxJHH7+4O - cQQHZhzUC+pBmGmSwnRSi2EkLfAgO2+sxh4V7MDnQBzG9zpOcQlf7CurUEmBVih5kp2zvVO47409 - 9Gh/KjNT4VfPMa3/YXKPCrVSXcMKE19L/ftI/MmUa227XpeF8g3cHTgxzeDkDiaKc3UdNt/7UMqm - 43rM6Zyf65r4O/xFNc7T6sP8RLe8twtl8hxyE+fNeTx+AZH4mOskAQAA - headers: - apim-request-id: d3e37cb6-e65e-4f07-bc11-04bea6c2b41e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:20 GMT - etag: '"43B6C1BD58B44AA7122A1CB2102E1031D395D33FD4C5798E6B522125F475983F"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: d3e37cb6-e65e-4f07-bc11-04bea6c2b41e - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4db2703b-4ff1-4613-bda3-0816c4530902 -- 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/batches/4db2703b-4ff1-4613-bda3-0816c4530902 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFFB/TqytaB+gSNOh3WhadgTYMiDRQxDk3Ssb7dyFOPLuO4AP - EXvhhe07fQLTSTsMStpGGdn1aCScVUPWGWhBi4OgHJBD/1bHNc7hk6myGrSS4KRWV9V413oNx9a6 - cwvuuzITFn4hjkv6D1PHxhoFJ71hhZHXUnOXNaWYxu20zjPmu/APwQvjJLw6iAHjFOoLsPlEoZRd - x/SelzHva02lhb8CfzBm/g0TJgrTH7r3vd4wI3HImxh35/n8AeEw/J0hAQAA - headers: - apim-request-id: 0755f25d-f29c-4485-8af4-fcfc8a2cb75c - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:21 GMT - etag: '"B17CD42EE2BD3E8D7EC7613AC1507E9437366AEECE5D55B62FC60031CEDC61F5"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 0755f25d-f29c-4485-8af4-fcfc8a2cb75c - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4db2703b-4ff1-4613-bda3-0816c4530902 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/4db2703b-4ff1-4613-bda3-0816c4530902 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/74bd8d8b-10e9-4f02-8480-80f6043c2330 response: body: - string: !!binary | - H4sIAAAAAAAEAIWMy47CMAxF/yVrgpxXS7NDzAeMBCyYnZukEKkPKXEXCPHvJNXMejaWfc89frHo - mWXa97IF1XM9DILrRijee1QcDqJx2ijoQLIdcykgBf9VxiVO4UquuBKk4GC4FBfRWNNZCftOm0MH - 5qc4I2Y6OorL/J8m9o1WAlpZtUxIay698+pcCD74Gq7ThOnJ7IvRQjgyK3ZswDgWaqHy0s15i+P8 - nZZ72s6C5oVugc6EiX7LDmcXxj91+3d6YEJHIdXlXols3+8PGKbixSQBAAA= + string: '{"id":"74bd8d8b-10e9-4f02-8480-80f6043c2330","createdDateTimeUtc":"2021-06-02T15:42:42.618931Z","lastActionDateTimeUtc":"2021-06-02T15:42:45.1068144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 1e22a852-9528-4ffe-861f-b77cb77975b0 + apim-request-id: f0c9c692-f18c-487d-b639-4180f4c9a772 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:22 GMT - etag: '"28800F368662784D0323CB0967F380C9E69D68C94020E175C70B5954D34BAD42"' + date: Wed, 02 Jun 2021 15:43:12 GMT + etag: '"D807CDDCEB3C85B0B903F592A72A1F2B6E46F10D1BB54FFAA69AE4B0DE68C7C2"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1e22a852-9528-4ffe-861f-b77cb77975b0 + x-requestid: f0c9c692-f18c-487d-b639-4180f4c9a772 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/4db2703b-4ff1-4613-bda3-0816c4530902 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/74bd8d8b-10e9-4f02-8480-80f6043c2330 - request: body: null headers: @@ -303,11 +198,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:23 GMT + - Wed, 02 Jun 2021 15:43:12 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc610a92e-8ea5-4227-a780-f08811cb40aa?restype=container + uri: https://redacted.blob.core.windows.net/srcbde0670f-02d6-48da-9621-a1ecdfdfe69e?restype=container response: body: string: '' @@ -315,11 +210,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:22 GMT + - Wed, 02 Jun 2021 15:43:12 GMT etag: - - '"0x8D91C79C8B285E5"' + - '"0x8D925DD21991B37"' last-modified: - - Fri, 21 May 2021 16:59:23 GMT + - Wed, 02 Jun 2021 15:43:13 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -347,11 +242,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:23 GMT + - Wed, 02 Jun 2021 15:43:13 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc610a92e-8ea5-4227-a780-f08811cb40aa/168c9227-1fe4-4635-bd71-87e61dfc51f4.txt + uri: https://redacted.blob.core.windows.net/srcbde0670f-02d6-48da-9621-a1ecdfdfe69e/c900f1a2-b386-4933-be51-85ee22536917.txt response: body: string: '' @@ -361,11 +256,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:22 GMT + - Wed, 02 Jun 2021 15:43:12 GMT etag: - - '"0x8D91C79C8BD541A"' + - '"0x8D925DD21A1147B"' last-modified: - - Fri, 21 May 2021 16:59:23 GMT + - Wed, 02 Jun 2021 15:43:13 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -391,11 +286,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:23 GMT + - Wed, 02 Jun 2021 15:43:13 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target653b70e7-3b03-477d-91e8-ab0df4fb1f3e?restype=container + uri: https://redacted.blob.core.windows.net/targetc5343716-c7bd-45a3-b7fe-fef2f57810aa?restype=container response: body: string: '' @@ -403,11 +298,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:23 GMT + - Wed, 02 Jun 2021 15:43:13 GMT etag: - - '"0x8D91C79C8D60C55"' + - '"0x8D925DD21C1B624"' last-modified: - - Fri, 21 May 2021 16:59:23 GMT + - Wed, 02 Jun 2021 15:43:13 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -416,14 +311,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc610a92e-8ea5-4227-a780-f08811cb40aa?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target653b70e7-3b03-477d-91e8-ab0df4fb1f3e?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcbde0670f-02d6-48da-9621-a1ecdfdfe69e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc5343716-c7bd-45a3-b7fe-fef2f57810aa?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -434,183 +329,46 @@ interactions: body: string: '' headers: - apim-request-id: 1796775d-9761-495b-8d9c-d699cbd7645a + apim-request-id: cdae4337-8cca-4c38-ace5-1cd02246e2d3 content-length: '0' - date: Fri, 21 May 2021 16:59:22 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 + date: Wed, 02 Jun 2021 15:43:12 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/aa247fd3-6fb5-4c4f-ab03-4dac197b79df set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1796775d-9761-495b-8d9c-d699cbd7645a + x-requestid: cdae4337-8cca-4c38-ace5-1cd02246e2d3 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NT2vDMAzFv4vO9bCdP2t8G9t5DNYetpsiq60hicFWDqP0u9cOdOciEE96+j1d - IXhw4LUeW+979Up6UK21pPbjaBQbzwP2p44bDTugxCjsP0o7hJmPQoW12hqlO2XNwfSuG5xtXnrb - lhp+CzNhljeSEJcnscZWLAvKmsvdZ5RvwVTe1u06z5j+wF1BouAETu/ghGEqbpV5JeKcNx2WrxTP - 6TEuUX74P6puCBfi6YFuee8XTEjCqYrz5txud6Pw24wkAQAA - headers: - apim-request-id: 7a30e040-d7fe-4cc6-896b-4983565f5b7e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:22 GMT - etag: '"AB742F3078754630A652EB04AA094B4E889BB087540FD7BD83C6968FEB3ED628"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 7a30e040-d7fe-4cc6-896b-4983565f5b7e - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NT2vDMAzFv4vO9bCdP2t8G9t5DNYetpsiq60hicFWDqP0u9cOdOciEE96+j1d - IXhw4LUeW+979Up6UK21pPbjaBQbzwP2p44bDTugxCjsP0o7hJmPQoW12hqlO2XNwfSuG5xtXnrb - lhp+CzNhljeSEJcnscZWLAvKmsvdZ5RvwVTe1u06z5j+wF1BouAETu/ghGEqbpV5JeKcNx2WrxTP - 6TEuUX74P6puCBfi6YFuee8XTEjCqYrz5txud6Pw24wkAQAA - headers: - apim-request-id: 49b5dedf-0f3b-43a7-b196-a392d7ec5ace - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:22 GMT - etag: '"AB742F3078754630A652EB04AA094B4E889BB087540FD7BD83C6968FEB3ED628"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 49b5dedf-0f3b-43a7-b196-a392d7ec5ace - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/aa247fd3-6fb5-4c4f-ab03-4dac197b79df response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwWrDMAyG38XnutiO4zW+je0BStceupsiq5khccBWDqP03euE7jwE4pf+/xPo - LmIQXgSlehuCk2+oOmmNQXnoey1JB+rA3VpqlNgJzARM4bO2c5zowlhZo4yWqpVGn7XzbedNs3fG - 1uq+KzNC4XfkOKf/MLt3jT2YdqUKAy+lxk5LSjEN62qZJsi/wt8Fzwyj8HonbhBHqh+o1UekUjYd - 0zHPQ97GmkozX4m/GDK/wggJafxDt3sfP5ABmfIqhs15PJ5NfMJ0IAEAAA== + string: '{"id":"aa247fd3-6fb5-4c4f-ab03-4dac197b79df","createdDateTimeUtc":"2021-06-02T15:43:13.4363016Z","lastActionDateTimeUtc":"2021-06-02T15:43:20.1331654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 788c7164-9c7f-4076-a164-019a3e6fa13b + apim-request-id: 758cbab6-3536-4738-b217-d50cd2ac4602 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:23 GMT - etag: '"0784C36D04878F9F368069F8F04D24268DC76D29767C7EA76DBD9A1B66D25B25"' + date: Wed, 02 Jun 2021 15:43:43 GMT + etag: '"DFB0F638077CB781AD0B1945FCCB7BEC1850F258ABA602FF2A793736EEA2AD16"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 788c7164-9c7f-4076-a164-019a3e6fa13b - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 -- 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/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwWrDMAyG38XnutiO4zW+je0BStceupsiq5khccBWDqP03euE7jwE4pf+/xPo - LmIQXgSlehuCk2+oOmmNQXnoey1JB+rA3VpqlNgJzARM4bO2c5zowlhZo4yWqpVGn7XzbedNs3fG - 1uq+KzNC4XfkOKf/MLt3jT2YdqUKAy+lxk5LSjEN62qZJsi/wt8Fzwyj8HonbhBHqh+o1UekUjYd - 0zHPQ97GmkozX4m/GDK/wggJafxDt3sfP5ABmfIqhs15PJ5NfMJ0IAEAAA== - headers: - apim-request-id: 3ac7e441-9616-4710-b880-fe6ee4ee263a - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:24 GMT - etag: '"0784C36D04878F9F368069F8F04D24268DC76D29767C7EA76DBD9A1B66D25B25"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 3ac7e441-9616-4710-b880-fe6ee4ee263a - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 -- 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/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMz4oCMQyH36VnK22nU53exH2ABd3D7i2TRi3MH2gzBxHf3XZYzxIISb7fl4eI - QXgRlOptCE7uUHXSGoNy3/dakg7Ugbu01CixEZgImMJXaec40g9jcY0yWqpWGn3WzredN83WGVuq - +yvOAJkPyHGePml26xq7N221MgMvucROCyJRoFCPyzhCugv/EDwzDMLrjbhAHAr1qvKSzXk9x+k7 - zde0rgVNM/8SnxgS/4cRJqThra7/jjdIgEypDtdKzO75fAFXHy2IIwEAAA== - headers: - apim-request-id: 9c75de1c-e42c-4584-a509-1fca42df55f4 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:27 GMT - etag: '"F866296B4B8B7195C7E441288CFE8C9A037363A80EC7AD25D33B61EECFAA9556"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 9c75de1c-e42c-4584-a509-1fca42df55f4 + x-requestid: 758cbab6-3536-4738-b217-d50cd2ac4602 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/aa247fd3-6fb5-4c4f-ab03-4dac197b79df - request: body: null headers: @@ -625,11 +383,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:27 GMT + - Wed, 02 Jun 2021 15:43:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7f5d750f-e151-4c8b-bc85-db44c179eec5?restype=container + uri: https://redacted.blob.core.windows.net/src2112f128-846d-495c-bd23-7696b284b447?restype=container response: body: string: '' @@ -637,11 +395,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:27 GMT + - Wed, 02 Jun 2021 15:43:43 GMT etag: - - '"0x8D91C79CAFDC82B"' + - '"0x8D925DD34006CC3"' last-modified: - - Fri, 21 May 2021 16:59:27 GMT + - Wed, 02 Jun 2021 15:43:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -669,11 +427,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:27 GMT + - Wed, 02 Jun 2021 15:43:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7f5d750f-e151-4c8b-bc85-db44c179eec5/f56d86db-e3a5-4bb5-b601-6c59c8f39a83.txt + uri: https://redacted.blob.core.windows.net/src2112f128-846d-495c-bd23-7696b284b447/43074bf7-5e3c-463a-a65c-b3571a560557.txt response: body: string: '' @@ -683,11 +441,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:27 GMT + - Wed, 02 Jun 2021 15:43:43 GMT etag: - - '"0x8D91C79CB0C1D50"' + - '"0x8D925DD340B1903"' last-modified: - - Fri, 21 May 2021 16:59:27 GMT + - Wed, 02 Jun 2021 15:43:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -706,715 +464,96 @@ interactions: - application/xml Accept-Encoding: - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:59:27 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/targetbd642687-2d45-491d-960d-9b5efd1b8054?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:59:26 GMT - etag: - - '"0x8D91C79CB30149E"' - last-modified: - - Fri, 21 May 2021 16:59:27 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7f5d750f-e151-4c8b-bc85-db44c179eec5?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbd642687-2d45-491d-960d-9b5efd1b8054?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: ba3bb695-08ce-4f63-8057-6fff764488cd - content-length: '0' - date: Fri, 21 May 2021 16:59:27 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: ba3bb695-08ce-4f63-8057-6fff764488cd - status: - code: 202 - message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/f8975d16-3977-4caa-9088-b4b3d7859385 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzVNiyZf1sRTsXBZoMzcbQSiLAtgCJHoog7x7JQDpnIY53/I43 - CCM4OBur1dgOorNai54QhW2MEaf+1I3aKNsZBTug5JH9+FnGPsz+wFRY2chWNErIdt8OTlkn9ZtS - urdyOBZmwszvxCEur2K2YpmR11zuviL/MKbytrrrPGP6A3cDjowTuGYHZwxTSavMK5HPedNh+U7x - kp7rEvnX/1dVh3AhPz3Rre/jigmJfarisiX3+wNmVZB7JAEAAA== - headers: - apim-request-id: 731e76b2-57d7-46fc-9fb3-8be63758e061 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:27 GMT - etag: '"6950F3160360BF90A32E454A27171115DD3FAE1B1A14980B819F971A8D5B7D0B"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 731e76b2-57d7-46fc-9fb3-8be63758e061 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE34VzFFiyZf1sRTsXAZoO7cbQSiLAtgCJGYog717JQLp2IY48fnd3 - iBN4OFtn9CRH0TtjxECIwnXWitNw6idjteuthh1QDshheqvjGJfwyVRZ1SkpOi2UPMrRa+eV2Wtt - BqfG78rMWPiFOKb1f2zsa5dyDSuMfCv17z3xB2Oute16WxbMP+DvwIlxBi93cMY4V9d3zScKpWw6 - roecLvm5rom/wl9U4whXCvMT3fJer5iROOQmLpvzePwCK4qvNCQBAAA= - headers: - apim-request-id: 0c4ca252-cb2f-4696-8ffe-309154ed5e4f - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:27 GMT - etag: '"D3D4FBCDB3396659F9CF126BCD20F2816AC1BBF9B6ED9D5C1054BFFB061A2515"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 0c4ca252-cb2f-4696-8ffe-309154ed5e4f - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 -- 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/batches/f8975d16-3977-4caa-9088-b4b3d7859385 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE34VzFFiyZf1sRTsXAZoO7cbQSiLAtgCJGYog717JQLp2IY48fnd3 - iBN4OFtn9CRH0TtjxECIwnXWitNw6idjteuthh1QDshheqvjGJfwyVRZ1SkpOi2UPMrRa+eV2Wtt - BqfG78rMWPiFOKb1f2zsa5dyDSuMfCv17z3xB2Oute16WxbMP+DvwIlxBi93cMY4V9d3zScKpWw6 - roecLvm5rom/wl9U4whXCvMT3fJer5iROOQmLpvzePwCK4qvNCQBAAA= - headers: - apim-request-id: c46b1c65-64c9-4c1d-9418-adbe676059f3 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:28 GMT - etag: '"D3D4FBCDB3396659F9CF126BCD20F2816AC1BBF9B6ED9D5C1054BFFB061A2515"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: c46b1c65-64c9-4c1d-9418-adbe676059f3 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 -- 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/batches/f8975d16-3977-4caa-9088-b4b3d7859385 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPPW7DMAyF76I5CiTZsn62ID1AkaZDszG04giwZUCihyDI3Ssb7ZyFeOR7Hwk+ - WeyZZzfrjO5lxxtnDG8RgDthLb+216Y3VrvGarZjmANQ6D9qOccpfBNWVgkludBcybPsvHZemb3W - pnWqu1RmhEIHpDind5jbC1PvaLtihYCWUnOnJaWYhnW0TBPkB/NPRjPByLzcsRvEMdQXxOojhlI2 - HdNnnoe8tTWVZvoJ9EWQ6S+MkDCM/+i273iHDEghr2LYnNfrF4bjEKYhAQAA - headers: - apim-request-id: 8a907836-3dc9-4746-9886-df968a529551 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:29 GMT - etag: '"E10657FD6FBDBEF9E6554158BFDA6E4FCCE87D53E06D8CACB552B7E8E3740604"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 8a907836-3dc9-4746-9886-df968a529551 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 -- 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/batches/f8975d16-3977-4caa-9088-b4b3d7859385 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPPW7DMAyF76I5CiTZsn62ID1AkaZDszG04giwZUCihyDI3Ssb7ZyFeOR7Hwk+ - WeyZZzfrjO5lxxtnDG8RgDthLb+216Y3VrvGarZjmANQ6D9qOccpfBNWVgkludBcybPsvHZemb3W - pnWqu1RmhEIHpDind5jbC1PvaLtihYCWUnOnJaWYhnW0TBPkB/NPRjPByLzcsRvEMdQXxOojhlI2 - HdNnnoe8tTWVZvoJ9EWQ6S+MkDCM/+i273iHDEghr2LYnNfrF4bjEKYhAQAA - headers: - apim-request-id: 63d19a81-cf11-4831-a073-fb4d07724d3a - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:30 GMT - etag: '"E10657FD6FBDBEF9E6554158BFDA6E4FCCE87D53E06D8CACB552B7E8E3740604"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 63d19a81-cf11-4831-a073-fb4d07724d3a - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 -- 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/batches/f8975d16-3977-4caa-9088-b4b3d7859385 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPPW7DMAyF76I5CiTZsn62ID1AkaZDszG04giwZUCihyDI3Ssb7ZyFeOR7Hwk+ - WeyZZzfrjO5lxxtnDG8RgDthLb+216Y3VrvGarZjmANQ6D9qOccpfBNWVgkludBcybPsvHZemb3W - pnWqu1RmhEIHpDind5jbC1PvaLtihYCWUnOnJaWYhnW0TBPkB/NPRjPByLzcsRvEMdQXxOojhlI2 - HdNnnoe8tTWVZvoJ9EWQ6S+MkDCM/+i273iHDEghr2LYnNfrF4bjEKYhAQAA - headers: - apim-request-id: 38f912c4-6ed9-48ce-9474-b5e49b94f625 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:31 GMT - etag: '"E10657FD6FBDBEF9E6554158BFDA6E4FCCE87D53E06D8CACB552B7E8E3740604"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 38f912c4-6ed9-48ce-9474-b5e49b94f625 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 -- 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/batches/f8975d16-3977-4caa-9088-b4b3d7859385 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNy24DIQxF/8XrEAEzDI9dlH5ApSSLdOcASZDmIYFnUUX598KoXXdj2T732C9I - ARzcjdUqiIF1VmvWe0RmuTHs1t+6oI2ynVGwA58jUgwftZzTFC/kqyu5FIwrJsVZDE5ZJ/VeKd1b - OXxVZ8RCB09pmf/T7J7r+keZphVCWkvNnVbvYwwxtOU6TZi/wb2AFsIRnNjBHdNYqeON12wp2zrN - n3l55G2saF7oGulEmOk37HH2cfxTt3vHJ2b0FHNrHo1I/X7/AAlD04skAQAA - headers: - apim-request-id: 14abbdc1-8aea-4373-95d0-e7cb3177ee3e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:33 GMT - etag: '"B8AE8D551900D58CEED2DF742A6AB26768AC42FA1E20B2318C24C57BE8B41FD5"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 14abbdc1-8aea-4373-95d0-e7cb3177ee3e - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8975d16-3977-4caa-9088-b4b3d7859385 -- request: - body: null - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:59:33 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/srce342d286-0db3-4058-bcbe-3638af5994bd?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:59:32 GMT - etag: - - '"0x8D91C79CEC04B13"' - last-modified: - - Fri, 21 May 2021 16:59:33 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: This is written in english. - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Fri, 21 May 2021 16:59:33 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/srce342d286-0db3-4058-bcbe-3638af5994bd/5f831230-2288-44a0-9f73-2139d7c86156.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - mYgA0QpY6baiB+xZp8Hk+A== - date: - - Fri, 21 May 2021 16:59:32 GMT - etag: - - '"0x8D91C79CEC98653"' - last-modified: - - Fri, 21 May 2021 16:59: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-08-04' - 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.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Fri, 21 May 2021 16:59:33 GMT - x-ms-version: - - '2020-08-04' - method: PUT - uri: https://redacted.blob.core.windows.net/target6b51d261-0d69-445d-9f31-a9ffdf4a85ef?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Fri, 21 May 2021 16:59:33 GMT - etag: - - '"0x8D91C79CEE662E0"' - last-modified: - - Fri, 21 May 2021 16:59:33 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-08-04' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce342d286-0db3-4058-bcbe-3638af5994bd?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6b51d261-0d69-445d-9f31-a9ffdf4a85ef?se=end&sp=rw&sv=2020-08-04&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/batches - response: - body: - string: '' - headers: - apim-request-id: 2434c1b7-dc6a-4cd7-8e29-5d88cb8c353e - content-length: '0' - date: Fri, 21 May 2021 16:59:33 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 2434c1b7-dc6a-4cd7-8e29-5d88cb8c353e - status: - code: 202 - message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/6746fbfb-a00b-40b5-a752-86c183631360 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzVOjHkmNtRTsXBZoO7UYzciLAtgCJHoog717JQDp3IY53/I43 - iGfw4PrOTeM0CpRyFJ0crcDeanF0pI7GGWWchANQDsjh/FrHKS7hk6myWmolpBVanZTzdvDGPPWD - 7aQaviszY+Fn4pjWf2JaN6ww8lbq3VviD8Zc3zZ3WxbMP+BvwIlxBi8PMGGca9pk2YhCKbuO63tO - l/xY18Rf4a+qOYQrhfmB7n0vV8xIHHITlz25338BJWAPgyQBAAA= - headers: - apim-request-id: 4c79cd9f-42bb-465d-a2a4-83de41da9359 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:33 GMT - etag: '"AC76AE42F97DA8A94693F7C033BBA7D32DC85F15BF9329F6B3B655183A9849B5"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 4c79cd9f-42bb-465d-a2a4-83de41da9359 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE34VzVOjHkm1tRTsXBZoO7UYzciLAtgCJGYog717JQLp2IY48fnc3 - iCfw4PrOzdM8CZRyEp2crMDeajE4UoNxRhkn4QCUA3I4vdZxjGv4ZKqslloJaYVWR+W8Hb0xT/1o - O6nG78osWPiZOKbtf2wYjHFWN6ww8rXUv7fEH4y51rbrdV0x/4C/ASfGBbw6wIxxqa6XzScKpew6 - bu85nfNj3RJ/hb+oxhFuFJYHuue9XDAjcchNnHfnfv8FpqwExiQBAAA= - headers: - apim-request-id: aaaca867-09c1-4835-91be-6fc57dba1996 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:33 GMT - etag: '"118187E98572E56B38B989E555509E4877D63CE8F4FB0B2E7CC26996F8787EA1"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: aaaca867-09c1-4835-91be-6fc57dba1996 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 -- 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/batches/6746fbfb-a00b-40b5-a752-86c183631360 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE34VzVOjHkm1tRTsXBZoO7UYzciLAtgCJGYog717JQLp2IY48fnc3 - iCfw4PrOzdM8CZRyEp2crMDeajE4UoNxRhkn4QCUA3I4vdZxjGv4ZKqslloJaYVWR+W8Hb0xT/1o - O6nG78osWPiZOKbtf2wYjHFWN6ww8rXUv7fEH4y51rbrdV0x/4C/ASfGBbw6wIxxqa6XzScKpew6 - bu85nfNj3RJ/hb+oxhFuFJYHuue9XDAjcchNnHfnfv8FpqwExiQBAAA= - headers: - apim-request-id: 7d443939-6f88-451d-be1b-a48a27fb2555 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:34 GMT - etag: '"118187E98572E56B38B989E555509E4877D63CE8F4FB0B2E7CC26996F8787EA1"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 7d443939-6f88-451d-be1b-a48a27fb2555 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 -- 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/batches/6746fbfb-a00b-40b5-a752-86c183631360 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/4VzFEiWJcvaivYDijYd2o1mZEeALQMSPRRB/r2y0c5diCPv3gG8 - Q7yCB9u1dhzGQaCUg2jlYAR2phHOknLaaqWthBNQDsjh+lLHJS7hg6myjWyUkEY06qKsN73X+tz1 - ppWq/6rMjIWfiOOa/sPM2TndtcrtWGHkrdTc25ZSTNN+2pYF8zf4O/DKOINXJxgxzqG+IHefKJRy - 6Jhe8zrlY62ptPJn4HfGzL9hwkRh/kOPvucbZiQOeRfT4TweP3JbayIhAQAA - headers: - apim-request-id: ea44facc-cb9a-4d90-b7ea-c11f772806c3 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:35 GMT - etag: '"BB6429A0514E4A3D85C67604932FE8B22FF389937A64AC2AC726BE82973C77F5"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: ea44facc-cb9a-4d90-b7ea-c11f772806c3 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 -- 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/batches/6746fbfb-a00b-40b5-a752-86c183631360 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFOjHom1tRfsARZsO7UYzsiPAlgGJHoog717ZaOcuxJF33wG8 - i3gVXkDbwDiMg0SlBtmowUlsnZEdkO4sWG1BiZOgHJDD9aWOS1zCB1NljTJaKieNvmjwrvfWntve - NUr3X5WZsfATcVzTfxicVQ8dNGbHCiNvpebetpRimvbTtiyYv4W/C14ZZ+H1SYwY51BfULtPFEo5 - dEyveZ3ysdZUWvkz8Dtj5t8wYaIw/6FH3/MNMxKHvIvpcB6PH7J3DC4hAQAA - headers: - apim-request-id: 8a801f8b-1577-41f8-b251-d72b7150ff42 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:37 GMT - etag: '"DB4FC6BF4AB4B7A9D3658D512506E1EECE5F94A76949D2625829AAAEBDF42810"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 8a801f8b-1577-41f8-b251-d72b7150ff42 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 -- request: - body: null - headers: + 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 15:43:44 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/target2ff6195d-a02d-4b11-8ec2-93c5d79f7e57?restype=container response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFOjHom1tRfsARZsO7UYzsiPAlgGJHoog717ZaOcuxJF33wG8 - i3gVXkDbwDiMg0SlBtmowUlsnZEdkO4sWG1BiZOgHJDD9aWOS1zCB1NljTJaKieNvmjwrvfWntve - NUr3X5WZsfATcVzTfxicVQ8dNGbHCiNvpebetpRimvbTtiyYv4W/C14ZZ+H1SYwY51BfULtPFEo5 - dEyveZ3ysdZUWvkz8Dtj5t8wYaIw/6FH3/MNMxKHvIvpcB6PH7J3DC4hAQAA + string: '' headers: - apim-request-id: b670c15b-de90-41fe-8d7c-3c9d4b3a3795 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:38 GMT - etag: '"DB4FC6BF4AB4B7A9D3658D512506E1EECE5F94A76949D2625829AAAEBDF42810"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: b670c15b-de90-41fe-8d7c-3c9d4b3a3795 + content-length: + - '0' + date: + - Wed, 02 Jun 2021 15:43:43 GMT + etag: + - '"0x8D925DD3428C5DD"' + last-modified: + - Wed, 02 Jun 2021 15:43:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2112f128-846d-495c-bd23-7696b284b447?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2ff6195d-a02d-4b11-8ec2-93c5d79f7e57?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFOjHom1tRfsARZsO7UYzsiPAlgGJHoog717ZaOcuxJF33wG8 - i3gVXkDbwDiMg0SlBtmowUlsnZEdkO4sWG1BiZOgHJDD9aWOS1zCB1NljTJaKieNvmjwrvfWntve - NUr3X5WZsfATcVzTfxicVQ8dNGbHCiNvpebetpRimvbTtiyYv4W/C14ZZ+H1SYwY51BfULtPFEo5 - dEyveZ3ysdZUWvkz8Dtj5t8wYaIw/6FH3/MNMxKHvIvpcB6PH7J3DC4hAQAA + string: '' headers: - apim-request-id: ebe8bc1a-b84c-454b-9a1e-ae731af6d739 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:39 GMT - etag: '"DB4FC6BF4AB4B7A9D3658D512506E1EECE5F94A76949D2625829AAAEBDF42810"' + apim-request-id: 4474cfc5-4fac-4a2a-b4b9-f414341dbde3 + content-length: '0' + date: Wed, 02 Jun 2021 15:43:44 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/24d02912-bfb1-4762-b20c-a82ff6750cb1 set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ebe8bc1a-b84c-454b-9a1e-ae731af6d739 + x-requestid: 4474cfc5-4fac-4a2a-b4b9-f414341dbde3 status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/6746fbfb-a00b-40b5-a752-86c183631360 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/24d02912-bfb1-4762-b20c-a82ff6750cb1 response: body: - string: !!binary | - H4sIAAAAAAAEAIWMu27DMAxF/4VzFOhhyba2ov2AAkmHdqNpORHgByDRQxHk3ysZ7dyFIO+5hw+I - I3hwbeOmYRoESjmIRg5WYGu16BypzjijjJNwAkoBOYxvZVzjEj6YiqulVkJaodVVOW97b8y57W0j - Vf9VnBkzvxDHbf1Pc2fZu841umqZkfdcepedKIQxjDXclwXTN/gH8MY4g1cnmDDOhXpZeenmfMRx - fU/bLR1nQevGn4EvjIl/y4QrhflPPf693jEhcUh1uVWi2+fzB5wdnakkAQAA + string: '{"id":"24d02912-bfb1-4762-b20c-a82ff6750cb1","createdDateTimeUtc":"2021-06-02T15:43:44.3116426Z","lastActionDateTimeUtc":"2021-06-02T15:43:45.1997808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 32fb6a34-1b54-40b8-b481-ae630617c3d8 + apim-request-id: 99bddcc8-0360-4110-aa0f-384312eef2e4 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:40 GMT - etag: '"C9EBD2703FC74BA8C828E822A9C1CA38E929341013FC0054E3AAAA16F2F14222"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:44:14 GMT + etag: '"505F2B856294092752B66672CD50022E969E93D0E57CB6FE06E6A25A15A232E9"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 32fb6a34-1b54-40b8-b481-ae630617c3d8 + x-requestid: 99bddcc8-0360-4110-aa0f-384312eef2e4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6746fbfb-a00b-40b5-a752-86c183631360 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/24d02912-bfb1-4762-b20c-a82ff6750cb1 - request: body: null headers: @@ -1429,11 +568,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:40 GMT + - Wed, 02 Jun 2021 15:44:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src875821eb-8655-4378-b697-5b5722f66ec2?restype=container + uri: https://redacted.blob.core.windows.net/src1bbdc564-61c9-41dc-8ae5-a8a465ac8892?restype=container response: body: string: '' @@ -1441,11 +580,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:40 GMT + - Wed, 02 Jun 2021 15:44:13 GMT etag: - - '"0x8D91C79D308D3E2"' + - '"0x8D925DD46629E33"' last-modified: - - Fri, 21 May 2021 16:59:40 GMT + - Wed, 02 Jun 2021 15:44:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1473,11 +612,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:40 GMT + - Wed, 02 Jun 2021 15:44:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src875821eb-8655-4378-b697-5b5722f66ec2/635e4649-65d5-44be-858d-d322601178e6.txt + uri: https://redacted.blob.core.windows.net/src1bbdc564-61c9-41dc-8ae5-a8a465ac8892/ca75cb38-06de-449b-977f-d005e30bd66c.txt response: body: string: '' @@ -1487,11 +626,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:40 GMT + - Wed, 02 Jun 2021 15:44:13 GMT etag: - - '"0x8D91C79D31874C6"' + - '"0x8D925DD466AA120"' last-modified: - - Fri, 21 May 2021 16:59:40 GMT + - Wed, 02 Jun 2021 15:44:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1517,11 +656,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:40 GMT + - Wed, 02 Jun 2021 15:44:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target417840a4-0db2-406f-82d1-d8218fa8bcd1?restype=container + uri: https://redacted.blob.core.windows.net/targetde48f985-b9a3-4ad8-82e2-b00107101911?restype=container response: body: string: '' @@ -1529,11 +668,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:40 GMT + - Wed, 02 Jun 2021 15:44:14 GMT etag: - - '"0x8D91C79D3444487"' + - '"0x8D925DD46878F69"' last-modified: - - Fri, 21 May 2021 16:59:41 GMT + - Wed, 02 Jun 2021 15:44:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1542,14 +681,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src875821eb-8655-4378-b697-5b5722f66ec2?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target417840a4-0db2-406f-82d1-d8218fa8bcd1?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1bbdc564-61c9-41dc-8ae5-a8a465ac8892?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetde48f985-b9a3-4ad8-82e2-b00107101911?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '488' Content-Type: - application/json User-Agent: @@ -1560,247 +699,231 @@ interactions: body: string: '' headers: - apim-request-id: 77d9c2e5-4072-4582-b4b5-90884fb9b362 + apim-request-id: 3da2bea4-142a-44e1-a057-45db0d4a99c4 content-length: '0' - date: Fri, 21 May 2021 16:59:41 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:44:15 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bfefe5c6-e2d9-43c0-88c6-4462af997770 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 77d9c2e5-4072-4582-b4b5-90884fb9b362 + x-requestid: 3da2bea4-142a-44e1-a057-45db0d4a99c4 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bfefe5c6-e2d9-43c0-88c6-4462af997770 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVIiy7NjagnYuCjQd2o2hlUSAbQESPRRB/r2SgXTOQhzv+I43 - CCM46Myp8U3fK7RslLVDo3qNpM490QnHQVNjYQecPIkf38o4htl/CRfWaINKt8rgETvXDs7iC3ao - hz3+FGaiLAeWEJdnsbZiWUjWXO7eo3wKpfK2uus8U/oFdwOJQhM4vYMzhamkVeaV2ee86bB8pHhJ - j3WJ8u3/q6rDtLCfHujW93qlRCw+VXHZkvv9D8N45vAkAQAA + string: '{"id":"bfefe5c6-e2d9-43c0-88c6-4462af997770","createdDateTimeUtc":"2021-06-02T15:44:15.1438217Z","lastActionDateTimeUtc":"2021-06-02T15:44:20.2936473Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 68f58cd4-847c-4f12-9bd4-fed0809cabcc + apim-request-id: 1d1323e4-435f-4790-babb-9e418f30660d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:41 GMT - etag: '"56593A8E195B5F3DBE5403DBD909AF7282769BD1BBDDB8E9013B7BBB3F2F856B"' + date: Wed, 02 Jun 2021 15:44:44 GMT + etag: '"CD1B89652DF8036633B4AA54E58B914B5CB7131521D077A52AFDF659E2DE5309"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 68f58cd4-847c-4f12-9bd4-fed0809cabcc + x-requestid: 1d1323e4-435f-4790-babb-9e418f30660d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bfefe5c6-e2d9-43c0-88c6-4462af997770 - request: body: null headers: Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzFIiSbMvainYuAjQd2o2hlUSAbQESMxRB/r2SgXTtQhx5fHd3 - ESfhRa9PJhjnJFjS0trRSKcA5dkhnmAaFRordoJyQA7TWx3HuIRPpspqpUGqTmo4Qu+70VvYQw9q - HOC7MjMWfiGOaf0f025wnRkaVhj5Vurfe+IPxlxr2/W2LJh/hL8LToyz8LATZ4xzdb1qPlEoZdNx - PeR0yc91TfwV/qIaR7hSmJ/olvd6xYzEITdx2ZzH4xe2OsraJAEAAA== - headers: - apim-request-id: 0358c663-9815-487e-9cc6-6027b169e3c2 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:41 GMT - etag: '"CCDC3FD87A3749EDD96EA34D63AA853E5565296F0A89D62261705051F27975D0"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 0358c663-9815-487e-9cc6-6027b169e3c2 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 -- request: - body: null - headers: + - application/xml + 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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 15:44:45 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src8e1ee0a2-6273-4c50-a61b-4c1636f29308?restype=container response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzFIiSbMvainYuAjQd2o2hlUSAbQESMxRB/r2SgXTtQhx5fHd3 - ESfhRa9PJhjnJFjS0trRSKcA5dkhnmAaFRordoJyQA7TWx3HuIRPpspqpUGqTmo4Qu+70VvYQw9q - HOC7MjMWfiGOaf0f025wnRkaVhj5Vurfe+IPxlxr2/W2LJh/hL8LToyz8LATZ4xzdb1qPlEoZdNx - PeR0yc91TfwV/qIaR7hSmJ/olvd6xYzEITdx2ZzH4xe2OsraJAEAAA== + string: '' headers: - apim-request-id: bf8df41b-aac1-4185-8dfc-7f11d343a932 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:42 GMT - etag: '"CCDC3FD87A3749EDD96EA34D63AA853E5565296F0A89D62261705051F27975D0"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: bf8df41b-aac1-4185-8dfc-7f11d343a932 + content-length: + - '0' + date: + - Wed, 02 Jun 2021 15:44:45 GMT + etag: + - '"0x8D925DD58BC654D"' + last-modified: + - Wed, 02 Jun 2021 15:44:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Wed, 02 Jun 2021 15:44:45 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/src8e1ee0a2-6273-4c50-a61b-4c1636f29308/6baa589d-4615-4957-b5c9-172ce3c271af.txt response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/4VzFIiS4kraiuQDijYZ2o2RFVeALQMSPRRB/j2y0c5diCPv3gG8 - Q+rBQ6euOmprBZqghDFOCyuRxM0SXbF3krSBHYQSiWN/auOcpnjh0FglFQp5EArP2PmD8wb32KF0 - L/jVmJEqvwZOc/4P03vU0qIzK1aZeKkt977knPKwnpZpovID/g48M43gcQc3SmNsL8jVDyHWuumU - 38o8lG1tqTzzZ+QPpsK/4UA5xPEP3fqO31QocCyrGDbn8XgC5dpSlCEBAAA= + string: '' headers: - apim-request-id: f201ba48-9256-48d5-9a5f-a8b1ab26bc19 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:43 GMT - etag: '"B4046EB1DBE469FA51FB2EE365263A33B7A005E7D2C12D61A3DB38B6E0E63555"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: f201ba48-9256-48d5-9a5f-a8b1ab26bc19 + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Wed, 02 Jun 2021 15:44:45 GMT + etag: + - '"0x8D925DD58C5D60C"' + last-modified: + - Wed, 02 Jun 2021 15:44:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + 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-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Wed, 02 Jun 2021 15:44:45 GMT + x-ms-version: + - '2020-08-04' + method: PUT + uri: https://redacted.blob.core.windows.net/targetc992e9bb-67e0-4ba5-b6ef-59ad5ef42752?restype=container response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/4VzFIiS4kraiuQDijYZ2o2RFVeALQMSPRRB/j2y0c5diCPv3gG8 - Q+rBQ6euOmprBZqghDFOCyuRxM0SXbF3krSBHYQSiWN/auOcpnjh0FglFQp5EArP2PmD8wb32KF0 - L/jVmJEqvwZOc/4P03vU0qIzK1aZeKkt977knPKwnpZpovID/g48M43gcQc3SmNsL8jVDyHWuumU - 38o8lG1tqTzzZ+QPpsK/4UA5xPEP3fqO31QocCyrGDbn8XgC5dpSlCEBAAA= + string: '' headers: - apim-request-id: bb11622a-2074-41c1-aa26-c7ba7562e08c - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:44 GMT - etag: '"B4046EB1DBE469FA51FB2EE365263A33B7A005E7D2C12D61A3DB38B6E0E63555"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: bb11622a-2074-41c1-aa26-c7ba7562e08c + content-length: + - '0' + date: + - Wed, 02 Jun 2021 15:44:45 GMT + etag: + - '"0x8D925DD58EC29FD"' + last-modified: + - Wed, 02 Jun 2021 15:44:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-08-04' status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8e1ee0a2-6273-4c50-a61b-4c1636f29308?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc992e9bb-67e0-4ba5-b6ef-59ad5ef42752?se=end&sp=rw&sv=2020-08-04&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: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/4VzFIiS4kraiuQDijYZ2o2RFVeALQMSPRRB/j2y0c5diCPv3gG8 - Q+rBQ6euOmprBZqghDFOCyuRxM0SXbF3krSBHYQSiWN/auOcpnjh0FglFQp5EArP2PmD8wb32KF0 - L/jVmJEqvwZOc/4P03vU0qIzK1aZeKkt977knPKwnpZpovID/g48M43gcQc3SmNsL8jVDyHWuumU - 38o8lG1tqTzzZ+QPpsK/4UA5xPEP3fqO31QocCyrGDbn8XgC5dpSlCEBAAA= + string: '' headers: - apim-request-id: 0bf0b1a2-4f0d-49dc-90fc-cb52697dffed - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:45 GMT - etag: '"B4046EB1DBE469FA51FB2EE365263A33B7A005E7D2C12D61A3DB38B6E0E63555"' + apim-request-id: bd26b8e1-4f90-4465-9019-0665f48977b9 + content-length: '0' + date: Wed, 02 Jun 2021 15:44:45 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/35747bc7-da08-4dc5-b67a-9f6f51567313 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0bf0b1a2-4f0d-49dc-90fc-cb52697dffed + x-requestid: bd26b8e1-4f90-4465-9019-0665f48977b9 status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/35747bc7-da08-4dc5-b67a-9f6f51567313 response: body: - string: !!binary | - H4sIAAAAAAAEAIWMy24DIQxF/4V1iDCQCbCr2g+olHTR7hxwEqR5SOBZVFH+vTBq191Y9j33+CFy - EkEM+mLIOCfBRi2t9UY6BSivDvECySs0VuxELIRM6a2Nc57og2NztdIg1UFqOMMQDj5Y2MMAyh/h - qzkjVn6JnJf5P83swSgH3natMvJaW++0xkiUKPVwnSYs3yI8BC+MowiwE1fMY6NBdd66tW5xnt/L - civb2dC88CfxibHwbzniHGn8U7d/r3csGJlKX26d6OPz+QNEmxRXJAEAAA== + string: '{"id":"35747bc7-da08-4dc5-b67a-9f6f51567313","createdDateTimeUtc":"2021-06-02T15:44:46.0331186Z","lastActionDateTimeUtc":"2021-06-02T15:44:50.3666864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 57dbc0b7-0deb-44cd-9773-258305b271b0 + apim-request-id: 58054139-3af6-4762-bbf6-0cd5c2503fb6 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:46 GMT - etag: '"49BC5DDA5DCB7A775306395F340268807DDC32BFDA9CD23F36A1F6CA60C98CA2"' + date: Wed, 02 Jun 2021 15:45:15 GMT + etag: '"BA6BAF375ABFCF0F5B3D86A755B6FD8E901EAAE658DBA48A187872B1F16AFF01"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 57dbc0b7-0deb-44cd-9773-258305b271b0 + x-requestid: 58054139-3af6-4762-bbf6-0cd5c2503fb6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/62b3e388-14c2-4493-801a-f8aab1d90a34 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/35747bc7-da08-4dc5-b67a-9f6f51567313 - request: body: null headers: @@ -1815,11 +938,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:46 GMT + - Wed, 02 Jun 2021 15:45:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcb8ae3282-7b31-4b7d-a01f-d43f9430c367?restype=container + uri: https://redacted.blob.core.windows.net/src3f12af6a-f51d-48d3-8efc-32bb39920821?restype=container response: body: string: '' @@ -1827,11 +950,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:16 GMT etag: - - '"0x8D91C79D6DA7743"' + - '"0x8D925DD6B478EC4"' last-modified: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1859,11 +982,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcb8ae3282-7b31-4b7d-a01f-d43f9430c367/bfed96de-8052-469d-a84d-d6d73bf30de2.txt + uri: https://redacted.blob.core.windows.net/src3f12af6a-f51d-48d3-8efc-32bb39920821/e49364b6-e5ab-47e3-9e14-0c60b45dbb42.txt response: body: string: '' @@ -1873,11 +996,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:16 GMT etag: - - '"0x8D91C79D6E9DEE9"' + - '"0x8D925DD6B537105"' last-modified: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1903,11 +1026,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:16 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target466f635d-204d-43c7-addd-70b058f89336?restype=container + uri: https://redacted.blob.core.windows.net/target15303306-7df9-4c88-a21e-fa7238e7ec1b?restype=container response: body: string: '' @@ -1915,11 +1038,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:46 GMT + - Wed, 02 Jun 2021 15:45:16 GMT etag: - - '"0x8D91C79D71ECE68"' + - '"0x8D925DD6B72B33B"' last-modified: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:17 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1928,8 +1051,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb8ae3282-7b31-4b7d-a01f-d43f9430c367?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target466f635d-204d-43c7-addd-70b058f89336?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3f12af6a-f51d-48d3-8efc-32bb39920821?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target15303306-7df9-4c88-a21e-fa7238e7ec1b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1946,53 +1069,46 @@ interactions: body: string: '' headers: - apim-request-id: dea5d014-b1c2-4fa0-825e-b9573e7e6b2e + apim-request-id: 022846ae-7bb0-4853-b169-0ed7d78e8b4c content-length: '0' - date: Fri, 21 May 2021 16:59:47 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c30ebc75-715c-4298-8c06-9ddd17db84c1 + date: Wed, 02 Jun 2021 15:45:16 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/54b40e06-6cf7-401b-8537-bc9047946920 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: dea5d014-b1c2-4fa0-825e-b9573e7e6b2e + x-requestid: 022846ae-7bb0-4853-b169-0ed7d78e8b4c status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/c30ebc75-715c-4298-8c06-9ddd17db84c1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/54b40e06-6cf7-401b-8537-bc9047946920 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVEiqZdnainYuCjQZ0o2hlESAbQESPRRB/r2SgXTOQhzv+I43 - iB4c0KsMJ7JGWGVIdHocxECyF6P3Xll/GjpSsAPKATn4jzr2cQ4HpspqqZWQRmi1V70zo+vsS697 - M3T2pzITFn4jjml5EjONKoy8lnr2mfibMdevzV3nGfMvuBtwYpzAyR2cMU41bbKsRKGUTcflK6dL - fqxL4mP4r2oO4UJheqBb3/sVMxKH3MRlS+73Pz9WK8wjAQAA + string: '{"id":"54b40e06-6cf7-401b-8537-bc9047946920","createdDateTimeUtc":"2021-06-02T15:45:17.0771317Z","lastActionDateTimeUtc":"2021-06-02T15:45:20.4067204Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 7340aec6-400e-48bc-ae51-d2e331cb1391 + apim-request-id: 8a81b77b-1f5f-4b75-96c8-dc2e0d7d637a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:47 GMT - etag: '"58B67D9F934BB6816DF3956EA9F15F8966814F9CC198AA2239827AEB723EDD1D"' + date: Wed, 02 Jun 2021 15:45:46 GMT + etag: '"2A30AC289DDA85277D381BD18E9167B1FCD9C9DB09320947CE38AF9C6AF64FAC"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7340aec6-400e-48bc-ae51-d2e331cb1391 + x-requestid: 8a81b77b-1f5f-4b75-96c8-dc2e0d7d637a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c30ebc75-715c-4298-8c06-9ddd17db84c1 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/54b40e06-6cf7-401b-8537-bc9047946920 - request: body: null headers: @@ -2007,11 +1123,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:47 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src692a8059-b383-45ad-9177-82e836a614c5?restype=container + uri: https://redacted.blob.core.windows.net/src4844c058-d776-49b8-9b5f-4f9aaf423b56?restype=container response: body: string: '' @@ -2019,11 +1135,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:47 GMT etag: - - '"0x8D91C79D7623896"' + - '"0x8D925DD7DDB5E16"' last-modified: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2051,11 +1167,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:45:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src692a8059-b383-45ad-9177-82e836a614c5/6d0d69e6-38cf-4483-964d-0d4d0988746f.txt + uri: https://redacted.blob.core.windows.net/src4844c058-d776-49b8-9b5f-4f9aaf423b56/508efa9e-bc66-4681-b65a-e20b347ff67a.txt response: body: string: '' @@ -2065,11 +1181,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:47 GMT + - Wed, 02 Jun 2021 15:45:47 GMT etag: - - '"0x8D91C79D76C9437"' + - '"0x8D925DD7DF4BC27"' last-modified: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:45:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2095,11 +1211,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:45:48 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetd783d148-4a2c-4136-b9ea-fecd24aa4439?restype=container + uri: https://redacted.blob.core.windows.net/target6e89c852-b985-470a-abb7-ea4f15202cdc?restype=container response: body: string: '' @@ -2107,11 +1223,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:45:47 GMT etag: - - '"0x8D91C79D794E843"' + - '"0x8D925DD7E0F4317"' last-modified: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:45:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2120,14 +1236,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src692a8059-b383-45ad-9177-82e836a614c5?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd783d148-4a2c-4136-b9ea-fecd24aa4439?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4844c058-d776-49b8-9b5f-4f9aaf423b56?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6e89c852-b985-470a-abb7-ea4f15202cdc?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -2138,53 +1254,46 @@ interactions: body: string: '' headers: - apim-request-id: dcb4502b-54f4-41ef-86b0-153efc460d4a + apim-request-id: 3a9abe01-892f-4b80-a2da-15ecaf9082b0 content-length: '0' - date: Fri, 21 May 2021 16:59:47 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/49dfe15f-ebb3-4fbf-8225-3583fa55758c + date: Wed, 02 Jun 2021 15:45:47 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4bd89238-d6e6-45dc-8912-1b955eb512bc set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: dcb4502b-54f4-41ef-86b0-153efc460d4a + x-requestid: 3a9abe01-892f-4b80-a2da-15ecaf9082b0 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/49dfe15f-ebb3-4fbf-8225-3583fa55758c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4bd89238-d6e6-45dc-8912-1b955eb512bc response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFNiy1crainYuAjQd2o2mqUSAbQESPRRB/r2SgXTuQhzv+I43 - CBM46IfJc2u84nHsVO9Hr6zWRnXGdh6NeTaW4ACUGIWntzLOYeFPocLqRreqMUq35/bJmcH19tgV - xA7fBZkxywtJiOt/qb5iWVC2XO7eo3wIpvK1utuyYPoBdwOJgjO45gAew1zSKvNGxDnvOqynFC/p - sa5RvvivqjqEK/H8QPe+1ysmJOFUxWVP7vdfB1VdCSMBAAA= + string: '{"id":"4bd89238-d6e6-45dc-8912-1b955eb512bc","createdDateTimeUtc":"2021-06-02T15:45:48.3203318Z","lastActionDateTimeUtc":"2021-06-02T15:45:55.4118028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 863b81ea-bf14-4c14-9ab2-0e9be3b69b84 + apim-request-id: 97cc987c-0644-4311-b53e-d2bc859f2453 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:47 GMT - etag: '"983E2086CB60912FAC790185AB748777B6E61E457187316559A6DE345B5750FB"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:46:18 GMT + etag: '"0269C3966801E0E145A9D428F91BD87344F134C3AF37CE9B676B7C9E76F8AF2B"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 863b81ea-bf14-4c14-9ab2-0e9be3b69b84 + x-requestid: 97cc987c-0644-4311-b53e-d2bc859f2453 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/49dfe15f-ebb3-4fbf-8225-3583fa55758c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4bd89238-d6e6-45dc-8912-1b955eb512bc - request: body: null headers: @@ -2199,11 +1308,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:18 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdcaf7a99-dce2-45b5-adc2-02c205f31875?restype=container + uri: https://redacted.blob.core.windows.net/src7a1dabce-026c-4af1-805e-5e00b3179fb5?restype=container response: body: string: '' @@ -2211,11 +1320,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:18 GMT etag: - - '"0x8D91C79D7CF5373"' + - '"0x8D925DD9074C5D2"' last-modified: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2243,11 +1352,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdcaf7a99-dce2-45b5-adc2-02c205f31875/0f0fa7c0-a9d2-4130-bd06-8a5f80ed3bdc.txt + uri: https://redacted.blob.core.windows.net/src7a1dabce-026c-4af1-805e-5e00b3179fb5/47e6e98d-6bfb-41a7-b658-cadd46e25e39.txt response: body: string: '' @@ -2257,11 +1366,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:18 GMT etag: - - '"0x8D91C79D7DE5688"' + - '"0x8D925DD907C6067"' last-modified: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2287,11 +1396,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:19 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target4398f023-8aea-41b3-923d-97246cf496f2?restype=container + uri: https://redacted.blob.core.windows.net/target1bb76d9c-f319-41a9-9a68-61d8368dd260?restype=container response: body: string: '' @@ -2299,11 +1408,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:19 GMT etag: - - '"0x8D91C79D8055BE6"' + - '"0x8D925DD90C19AA0"' last-modified: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:46:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2312,14 +1421,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdcaf7a99-dce2-45b5-adc2-02c205f31875?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4398f023-8aea-41b3-923d-97246cf496f2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7a1dabce-026c-4af1-805e-5e00b3179fb5?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1bb76d9c-f319-41a9-9a68-61d8368dd260?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -2330,53 +1439,46 @@ interactions: body: string: '' headers: - apim-request-id: b9d3f601-0034-41c1-b6c5-ad57c23b4c81 + apim-request-id: f368bd6a-0210-4c61-9bd9-26387f048c1c content-length: '0' - date: Fri, 21 May 2021 16:59:48 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:46:19 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4d45fc1e-b2db-458b-a663-059795ae3c3c + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b9d3f601-0034-41c1-b6c5-ad57c23b4c81 + x-requestid: f368bd6a-0210-4c61-9bd9-26387f048c1c status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4d45fc1e-b2db-458b-a663-059795ae3c3c response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzFEj+URptRTsXAZoO7cZSVCLAtgCJHoog717JQDp3IY53/I43 - iB4csCXS5I0iewhqGL6tQt+T6kMYRv/EY+gRdkCZUdi/1nGOM38IVbbTnVF6VJ05G+vGoxuOe6ON - PpjuqzITFnkmiWn5L2YbVgRlLfXuLcm7YK5vm7vOM+YfcDeQJDiB0zsIGKeaNllWIi5l03E55XTJ - j3VJ8sl/Vc0hXIinB7r1vVwxIwnnJi5bcr//An25g1okAQAA + string: '{"id":"4d45fc1e-b2db-458b-a663-059795ae3c3c","createdDateTimeUtc":"2021-06-02T15:46:19.6722056Z","lastActionDateTimeUtc":"2021-06-02T15:46:20.4345527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 15b6723b-af85-4b3d-b9bc-3c14842e2de6 + apim-request-id: 6a2b9d72-378d-45f4-9a96-6d1d29fbb41f cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:48 GMT - etag: '"60E2E884F87FB83F19B9D0B954C3D7056A886E096D8899254B2F1016E6C9B1B0"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:46:49 GMT + etag: '"63E626E0EC57B90955D91A21BEF869DF73B35C1DF00D10A16670C58E0928EC04"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 15b6723b-af85-4b3d-b9bc-3c14842e2de6 + x-requestid: 6a2b9d72-378d-45f4-9a96-6d1d29fbb41f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4d45fc1e-b2db-458b-a663-059795ae3c3c - request: body: null headers: @@ -2391,11 +1493,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:46:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src65cbcc22-18f3-4228-a2ff-2c0157bd1e36?restype=container + uri: https://redacted.blob.core.windows.net/src0cff6d76-dcff-43e4-b2e3-a6b88f87495a?restype=container response: body: string: '' @@ -2403,11 +1505,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:49 GMT etag: - - '"0x8D91C79D8401122"' + - '"0x8D925DDA31D5CF5"' last-modified: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:46:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2435,11 +1537,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:46:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src65cbcc22-18f3-4228-a2ff-2c0157bd1e36/aecdcfec-8e2d-4b9a-9339-8ace00c80bcb.txt + uri: https://redacted.blob.core.windows.net/src0cff6d76-dcff-43e4-b2e3-a6b88f87495a/652f3863-89e2-414b-ae5b-1cf2f418a43f.txt response: body: string: '' @@ -2449,11 +1551,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:49 GMT etag: - - '"0x8D91C79D84E6AF4"' + - '"0x8D925DDA33900B3"' last-modified: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:46:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2479,11 +1581,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:46:50 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targeta06ed9b9-102c-441b-bab1-775cf0d1b89b?restype=container + uri: https://redacted.blob.core.windows.net/targetd77b704c-4423-4ecc-b689-25eb845d95ff?restype=container response: body: string: '' @@ -2491,11 +1593,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:48 GMT + - Wed, 02 Jun 2021 15:46:49 GMT etag: - - '"0x8D91C79D87AC999"' + - '"0x8D925DDA357BFDB"' last-modified: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:46:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2504,8 +1606,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src65cbcc22-18f3-4228-a2ff-2c0157bd1e36?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta06ed9b9-102c-441b-bab1-775cf0d1b89b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0cff6d76-dcff-43e4-b2e3-a6b88f87495a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd77b704c-4423-4ecc-b689-25eb845d95ff?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2522,53 +1624,46 @@ interactions: body: string: '' headers: - apim-request-id: 7aecae4f-6263-40e6-a72d-3c4c915ae4bf + apim-request-id: ddc9a390-0ea2-4765-ba3c-d7ba9d0d61b8 content-length: '0' - date: Fri, 21 May 2021 16:59:49 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/0761235f-bdc9-4756-af32-b5dd6791005a - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:46:50 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b311ad2c-e8ad-4d10-bc18-325a6f08cda0 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7aecae4f-6263-40e6-a72d-3c4c915ae4bf + x-requestid: ddc9a390-0ea2-4765-ba3c-d7ba9d0d61b8 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/0761235f-bdc9-4756-af32-b5dd6791005a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b311ad2c-e8ad-4d10-bc18-325a6f08cda0 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVEhKZEfainYuCjQZmo2h5ESAbQESPRRB/j2SgXTOQhzv+I43 - iB4cyL5TemsGcfZkxa43ncBhq8XZeN/1VklpEDZAOSAH/1nHIU7hyFRZLbUS0gitDqpzxrqdfdtb - Zc3enCozYuF34pjmVzHbsMLIS6l3X4l/GHN929xlmjD/gbsBJ8YRnNzAgHGsaZNlIQqlrDrO3zld - 8nOdE/+G/6rmEM4Uxie69n1cMSNxyE1c1uR+fwA6AW8qJAEAAA== + string: '{"id":"b311ad2c-e8ad-4d10-bc18-325a6f08cda0","createdDateTimeUtc":"2021-06-02T15:46:50.8668441Z","lastActionDateTimeUtc":"2021-06-02T15:46:55.4362423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: d2d0e080-997c-48e6-818e-e862ac2d218d + apim-request-id: d97c1c3f-d8bd-477f-a5f1-649870babe8f cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:49 GMT - etag: '"222E2F98FD91226A0559E63A634D70D8306697AD21A5F5445C3F239339DB6EB5"' + date: Wed, 02 Jun 2021 15:47:21 GMT + etag: '"D748A70C53E920A48EF35A379F1492D5BE9CA07A8E0DC2F08841196809842DD0"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d2d0e080-997c-48e6-818e-e862ac2d218d + x-requestid: d97c1c3f-d8bd-477f-a5f1-649870babe8f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/0761235f-bdc9-4756-af32-b5dd6791005a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b311ad2c-e8ad-4d10-bc18-325a6f08cda0 - request: body: null headers: @@ -2583,11 +1678,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:50 GMT + - Wed, 02 Jun 2021 15:47:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src98861cd7-a44e-417c-a19d-f12a71c3bcaf?restype=container + uri: https://redacted.blob.core.windows.net/src9f602bcc-3f08-455f-8803-ccc80b6a83d6?restype=container response: body: string: '' @@ -2595,11 +1690,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:47:21 GMT etag: - - '"0x8D91C79D8BEBA12"' + - '"0x8D925DDB5A285C2"' last-modified: - - Fri, 21 May 2021 16:59:50 GMT + - Wed, 02 Jun 2021 15:47:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2627,11 +1722,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 16:59:50 GMT + - Wed, 02 Jun 2021 15:47:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src98861cd7-a44e-417c-a19d-f12a71c3bcaf/4ccb56ef-da7e-4b9f-8c52-4ab6b516a78c.txt + uri: https://redacted.blob.core.windows.net/src9f602bcc-3f08-455f-8803-ccc80b6a83d6/25a97923-55f9-461d-8044-7b5b2920807a.txt response: body: string: '' @@ -2641,11 +1736,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:47:21 GMT etag: - - '"0x8D91C79D8D25930"' + - '"0x8D925DDB5B11184"' last-modified: - - Fri, 21 May 2021 16:59:50 GMT + - Wed, 02 Jun 2021 15:47:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2671,11 +1766,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 16:59:50 GMT + - Wed, 02 Jun 2021 15:47:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target09d3fc71-63f2-4b21-960a-13b6f97e73e0?restype=container + uri: https://redacted.blob.core.windows.net/target144ac45f-753b-4896-8053-ad349012c4bb?restype=container response: body: string: '' @@ -2683,11 +1778,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 16:59:49 GMT + - Wed, 02 Jun 2021 15:47:21 GMT etag: - - '"0x8D91C79D90128E8"' + - '"0x8D925DDB5DC7675"' last-modified: - - Fri, 21 May 2021 16:59:50 GMT + - Wed, 02 Jun 2021 15:47:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2696,8 +1791,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src98861cd7-a44e-417c-a19d-f12a71c3bcaf?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target09d3fc71-63f2-4b21-960a-13b6f97e73e0?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9f602bcc-3f08-455f-8803-ccc80b6a83d6?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target144ac45f-753b-4896-8053-ad349012c4bb?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2714,53 +1809,46 @@ interactions: body: string: '' headers: - apim-request-id: 05502c81-01be-4e4c-aefc-28b6b895a2c3 + apim-request-id: ceb54fcf-7ea5-45f7-a1df-729add079f75 content-length: '0' - date: Fri, 21 May 2021 16:59:50 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/3829367c-c8ec-4bff-a0a6-f80291d327c9 + date: Wed, 02 Jun 2021 15:47:21 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cbb3cde3-a42e-445d-b89d-70449e8840ef set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 05502c81-01be-4e4c-aefc-28b6b895a2c3 + x-requestid: ceb54fcf-7ea5-45f7-a1df-729add079f75 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/3829367c-c8ec-4bff-a0a6-f80291d327c9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cbb3cde3-a42e-445d-b89d-70449e8840ef response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFMhybEvagnYOCiQZ0o2lZUeAbQESPRRB/j2SgXTuQhzv+I4P - 8D1YqLUydduRIO1IHH6GQaDEVgxaKlP1terIwA4oOmTXf+Zx8bO7MmVWSVUJ2QhVXarWNsY2ct91 - jT7o9jszEyY+Evuw/BMzdcESI68p350CnxljflvcdZ4x/oJ9AAfGCazcwYB+ymmRaSVyKW3aL18x - jPG9LoFv7q+qOIQLuemNbn0fd4xI7GIR45Y8ny8k8bHHJAEAAA== + string: '{"id":"cbb3cde3-a42e-445d-b89d-70449e8840ef","createdDateTimeUtc":"2021-06-02T15:47:21.9381582Z","lastActionDateTimeUtc":"2021-06-02T15:47:25.5931992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 8b11df58-4571-47ee-95b6-c32a4b235d70 + apim-request-id: 0cc261d5-a800-4ae3-86d2-2d527fc2d355 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:50 GMT - etag: '"5C3D019B153FB2C808877B6D33E3E65FAF08EF6E5E0B06B8DBD2EED440DFFC24"' + date: Wed, 02 Jun 2021 15:47:51 GMT + etag: '"F32F9A2D7EAB7795CAF526877AAC18C22BE74F795614B69C9E22F168B7166803"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8b11df58-4571-47ee-95b6-c32a4b235d70 + x-requestid: 0cc261d5-a800-4ae3-86d2-2d527fc2d355 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/3829367c-c8ec-4bff-a0a6-f80291d327c9 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cbb3cde3-a42e-445d-b89d-70449e8840ef - request: body: null headers: @@ -2769,30 +1857,25 @@ 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/batches/c30ebc75-715c-4298-8c06-9ddd17db84c1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/54b40e06-6cf7-401b-8537-bc9047946920 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW4DIRBE/4XaWEDg4OiipLYsxS6cbr0QG+nukGBdRJb/3XCS06ZZze7Mm72z - FJhn+CbiGa3hVhrkWo2OOxQDH0MI0oaz0yjZhmGJQDF8tnFIczwSNlYJJbkwXMmDHLwZvbbbQQ3G - afvdmAkqvSOlvPyDGbEdldRauI5VArrVlttl+iIo7W2/3uYZyi/zd0aZYGJebtgPpKm5XnQfMda6 - 6rTsS76UdW2pJdMp/lX1AMKCcXqha9/HFQogxdLFZXUejyfptJ2IJAEAAA== - headers: - apim-request-id: f47c997f-95b1-4114-8209-a53dd75fa652 - content-encoding: gzip + string: '{"id":"54b40e06-6cf7-401b-8537-bc9047946920","createdDateTimeUtc":"2021-06-02T15:45:17.0771317Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.4223719Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 66c78070-d967-4bef-9bb4-7db53f7412e7 content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:50 GMT + date: Wed, 02 Jun 2021 15:47:52 GMT set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f47c997f-95b1-4114-8209-a53dd75fa652 + x-requestid: 66c78070-d967-4bef-9bb4-7db53f7412e7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c30ebc75-715c-4298-8c06-9ddd17db84c1 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/54b40e06-6cf7-401b-8537-bc9047946920 - request: body: null headers: @@ -2801,30 +1884,25 @@ 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/batches/49dfe15f-ebb3-4fbf-8225-3583fa55758c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4bd89238-d6e6-45dc-8912-1b955eb512bc response: body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/0VzFFiS1cragnQuCjQd0o2mqUSAbQESMxRB/r2SgXTtQhx59453 - ESfhRT9MgZQNksbRyD6MQTqtrTTWmQDWvlqHYicwEzBNb3Wc4kJfjJXVnVays1Krk3rxdvC925uK - uOG7IjMUPiDHtP5DWbXvjDNqMA0rDHwrNfee+JMh16/telsWyD/C3wUnhll4tRMB4lxd3zUfkUrZ - dFw/crrkba2pNfGZ/qpaAGFFmp/o1ne8QgZkyk1cNufx+AUySBiSIwEAAA== - headers: - apim-request-id: 4a0f89af-8962-4dd4-b471-6df22c845626 - content-encoding: gzip + string: '{"id":"4bd89238-d6e6-45dc-8912-1b955eb512bc","createdDateTimeUtc":"2021-06-02T15:45:48.3203318Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.5535213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: f98eea67-a0c9-4a67-80b8-d8f7c804b872 content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:50 GMT + date: Wed, 02 Jun 2021 15:47:52 GMT set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4a0f89af-8962-4dd4-b471-6df22c845626 + x-requestid: f98eea67-a0c9-4a67-80b8-d8f7c804b872 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/49dfe15f-ebb3-4fbf-8225-3583fa55758c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4bd89238-d6e6-45dc-8912-1b955eb512bc - request: body: null headers: @@ -2833,30 +1911,25 @@ 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/batches/e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4d45fc1e-b2db-458b-a663-059795ae3c3c response: body: - string: !!binary | - H4sIAAAAAAAEAIWNMU8DMQyF/0vmporvLinNhmCukCgDbMZxSqS7i5S4A6r630lOgpXFevZ73/NN - paC8YkdkKIAmd4h6mj6dxjCSHmOcbHhgG0dUO0WFUTg8t3FOC78JNXYwA2hj9QBncN4e/XTcgwFz - gOGjMTNWeSRJef0Hs9CwEaxxHauCcq0td8ryKlja2369LguWb+VvSrLgrDzsVMQ0N9eb7hNxrZtO - 60vJl7KtLbVmeee/qh4gXInnX3Tre/rCgiRcurhszv3+A+qBmJokAQAA - headers: - apim-request-id: 2e2ea444-9562-4a78-a2e9-76ed425a04fd - content-encoding: gzip + string: '{"id":"4d45fc1e-b2db-458b-a663-059795ae3c3c","createdDateTimeUtc":"2021-06-02T15:46:19.6722056Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.6264139Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 44e7cc55-3ef5-4925-9259-205046cfdfa9 content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:50 GMT + date: Wed, 02 Jun 2021 15:47:52 GMT set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2e2ea444-9562-4a78-a2e9-76ed425a04fd + x-requestid: 44e7cc55-3ef5-4925-9259-205046cfdfa9 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4d45fc1e-b2db-458b-a663-059795ae3c3c - request: body: null headers: @@ -2865,30 +1938,25 @@ 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/batches/0761235f-bdc9-4756-af32-b5dd6791005a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b311ad2c-e8ad-4d10-bc18-325a6f08cda0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNMW/DIBCF/8vNIQJisGGL0rmK1HRotgvgBMk2ElyGKMp/L1hq1yynd/fe9+4J - 0YMF3mshd2pkF+8M63qlGY47yS7Ke90bwblC2IDLASn4jzpOcQ7f5CoruRSMKybFSWirjO3MdjDC - qEGdKzNhob2jmJY3mBJbMfDO9LphhZDupeY+E30R5vq2Xe/zjPkB9gmUCCewYgMjxqm6ljffuVDK - quNyzOma17WmlkQ/4b+qBRwuLkx/6Np3uGFGRyE3cV2d1+sXrfb5ayQBAAA= - headers: - apim-request-id: 26f2806d-c545-4532-9835-f8236fedfc1f - content-encoding: gzip + string: '{"id":"b311ad2c-e8ad-4d10-bc18-325a6f08cda0","createdDateTimeUtc":"2021-06-02T15:46:50.8668441Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.7482384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 6fb41edb-5319-469b-9787-c630ca9e1634 content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:50 GMT + date: Wed, 02 Jun 2021 15:47:52 GMT set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 26f2806d-c545-4532-9835-f8236fedfc1f + x-requestid: 6fb41edb-5319-469b-9787-c630ca9e1634 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/0761235f-bdc9-4756-af32-b5dd6791005a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b311ad2c-e8ad-4d10-bc18-325a6f08cda0 - request: body: null headers: @@ -2897,30 +1965,25 @@ 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/batches/3829367c-c8ec-4bff-a0a6-f80291d327c9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cbb3cde3-a42e-445d-b89d-70449e8840ef response: body: - string: !!binary | - H4sIAAAAAAAEAIWNvW7DMAyE30VzFEiyrb8tSOeiQJMh3VhaTgTYFiAxQxHk3SsZSNcuxJHH7+7B - 4sg866xynTbI0Qbk/fc0cRCg+WSFcnLslEHHdgxzAArjWx2nuIQzYWWVUJKLgSt5ktoPzg9ib8xg - e6u/KjNDoQNSTOt/mNwr0xvt+oYVArqX+vee6JMg19p2vS8L5B/mH4wSwcy83LEJ4lxdL5qPGErZ - dFw/crrm17omuoS/qMYhrBjmF7rlHW+QASnkJq6b83z+AqgO6IokAQAA - headers: - apim-request-id: 85a9ae5e-7b58-4f98-8e3c-38c3671f78ee - content-encoding: gzip + string: '{"id":"cbb3cde3-a42e-445d-b89d-70449e8840ef","createdDateTimeUtc":"2021-06-02T15:47:21.9381582Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.8271606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: a5f900d2-33c6-43d3-8da7-af8d2a225c9f content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 16:59:50 GMT + date: Wed, 02 Jun 2021 15:47:52 GMT set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 85a9ae5e-7b58-4f98-8e3c-38c3671f78ee + x-requestid: a5f900d2-33c6-43d3-8da7-af8d2a225c9f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/3829367c-c8ec-4bff-a0a6-f80291d327c9 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cbb3cde3-a42e-445d-b89d-70449e8840ef - request: body: null headers: @@ -2932,28 +1995,22 @@ interactions: uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&statuses=Cancelled response: body: - string: !!binary | - H4sIAAAAAAAEAK2Qy2rDMBBF/0Vry0iyXtYupB9QaLpoSxeTsZQa/AB5XCgh/17bpF22DXQjRpp7 - LuKc2Tt0c2Th5czahgVWeVVX1iFHH5HrY0ocBFievFC1bCrlsGYFwxyBYnO3HIe2j4+EC6uEklwY - ruRB2mDqYETpnPHa2+eF6WCiHVI7Dr9hsjRCei83bCKgeVpyexgwdl1s1se57yF/sHBmNBJ0LMiC - JWjXbRDrHjFO0za3w30eT/nrOoz0FOmBINM1jN/Fa8vWt3+DDEgxr8Npy10uxdWR0kbqVBkubaW4 - rpPlx4SCW1M5hc5aEPaPjnQwqlTOSFP7GxwtmCmXbzih5Q2O/L848j85er18AiYezN1TAgAA - headers: - apim-request-id: 1bf3a6f3-84b3-4794-9b33-9ea8c42aaced + string: '{"value":[{"id":"f00445aa-49dc-4412-87eb-553ea2bf7d04","createdDateTimeUtc":"2021-06-02T06:39:08.6574795Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1874519Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba2f1009-fb37-4b26-9028-4b0fff7782e1","createdDateTimeUtc":"2021-06-02T06:39:08.1487463Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1891904Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: 7111f18e-3e74-4794-b7d1-1091cf586d83 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:01 GMT - etag: '"2B8254B2595182E7A5F767244E469574B5659DEB78D49A65C37ACAC27C186CF5"' + date: Wed, 02 Jun 2021 15:48:02 GMT + etag: '"0AAD969DF0E2651658FC0D4C8DD2046822D5DCF57D2F59CCE26C86451300C80B"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1bf3a6f3-84b3-4794-9b33-9ea8c42aaced + x-requestid: 7111f18e-3e74-4794-b7d1-1091cf586d83 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0&statuses=Cancelled + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&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 index 6fcadf0289ac..1a85757ed56d 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca1ef747b-7607-44f1-88cc-215ce3e401cf?restype=container + uri: https://redacted.blob.core.windows.net/src50bc076c-4222-415c-9e93-413e3bb88c8e?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:01 GMT + - Wed, 02 Jun 2021 15:48:02 GMT etag: - - '"0x8D91C79DFF3BC62"' + - '"0x8D925DDCEAD56AF"' last-modified: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 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: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca1ef747b-7607-44f1-88cc-215ce3e401cf/b4070b81-8ecc-47eb-8ecd-cb90ea0b4cf9.txt + uri: https://redacted.blob.core.windows.net/src50bc076c-4222-415c-9e93-413e3bb88c8e/8f14e758-6631-4bee-90c5-12ec41d8cced.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 GMT etag: - - '"0x8D91C79E0008439"' + - '"0x8D925DDCEB965A0"' last-modified: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 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: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca1ef747b-7607-44f1-88cc-215ce3e401cf/835699cd-f997-4dfd-a6a6-8ed575e79ef8.txt + uri: https://redacted.blob.core.windows.net/src50bc076c-4222-415c-9e93-413e3bb88c8e/14aae67f-0428-4153-a5a4-44927f2d3b44.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 GMT etag: - - '"0x8D91C79E00D30C3"' + - '"0x8D925DDCEC28F0C"' last-modified: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc7adc861-9f5e-44ef-aa53-cc2a12268527?restype=container + uri: https://redacted.blob.core.windows.net/target89ac618a-5e6c-4e59-b838-8ede96313764?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:02 GMT etag: - - '"0x8D91C79E038F684"' + - '"0x8D925DDCEDCD615"' last-modified: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,14 +176,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca1ef747b-7607-44f1-88cc-215ce3e401cf?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc7adc861-9f5e-44ef-aa53-cc2a12268527?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src50bc076c-4222-415c-9e93-413e3bb88c8e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target89ac618a-5e6c-4e59-b838-8ede96313764?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -194,53 +194,46 @@ interactions: body: string: '' headers: - apim-request-id: 2ae60059-2e3e-4f16-8cf8-19ed56252f4d + apim-request-id: aecf9e3f-53d0-4380-b8ac-6e527fcf4e99 content-length: '0' - date: Fri, 21 May 2021 17:00:02 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c911d37b-d17c-41d4-abf8-a57302ddc335 + date: Wed, 02 Jun 2021 15:48:03 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8cef6dc-9699-46b5-9097-17c86e9d428a set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2ae60059-2e3e-4f16-8cf8-19ed56252f4d + x-requestid: aecf9e3f-53d0-4380-b8ac-6e527fcf4e99 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/c911d37b-d17c-41d4-abf8-a57302ddc335 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8cef6dc-9699-46b5-9097-17c86e9d428a response: body: - string: !!binary | - H4sIAAAAAAAEAI2NzWoDMQyE30XnOPhnjVPfSnsugSaH5KbITmrYXYOtPZSQd4+9kJ57EaMZfaM7 - pAAe6E2pYNxFBOVIDCoMAi/XnUDrjNQhkDEWNkAlIsfw2cYhTfHI1FgttRLSCq0OynkpvTRbNRjt - rD03ZsTK78Qpz//Fdh2rjLzUdveV+ZuxtLfdXaYJyy/4O3BmHMHLDVwxjS3tsi5EsdZVp3lf8q28 - 1jnzKf5VdYdwpji+0LXv4wcLEsfSxW1NHo8nh37g1yQBAAA= + string: '{"id":"f8cef6dc-9699-46b5-9097-17c86e9d428a","createdDateTimeUtc":"2021-06-02T15:48:04.0354645Z","lastActionDateTimeUtc":"2021-06-02T15:48:10.6299243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: a83d858a-696e-4ce7-9a0a-107113c5c3ba + apim-request-id: b7cdedc0-9494-4e25-98e5-71b6e12a6d44 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:02 GMT - etag: '"D0249FAEC15BDC77A5C378B627068ABFC38852C1D5762E2A0959E6260A147C6E"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:48:33 GMT + etag: '"EF210A67E13A623F1AE30F619DF20ED93C2E4BE21370127755E8AD94DAFCDFBC"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a83d858a-696e-4ce7-9a0a-107113c5c3ba + x-requestid: b7cdedc0-9494-4e25-98e5-71b6e12a6d44 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c911d37b-d17c-41d4-abf8-a57302ddc335 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8cef6dc-9699-46b5-9097-17c86e9d428a - request: body: null headers: @@ -255,11 +248,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd01024be-07a6-467b-961d-246524f018c3?restype=container + uri: https://redacted.blob.core.windows.net/src79f0572f-614e-4ac5-9afa-16fb358b7088?restype=container response: body: string: '' @@ -267,11 +260,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:34 GMT etag: - - '"0x8D91C79E0964D60"' + - '"0x8D925DDE155284E"' last-modified: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -299,11 +292,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd01024be-07a6-467b-961d-246524f018c3/2a45a9bb-598b-4e32-a335-aac4681e876b.txt + uri: https://redacted.blob.core.windows.net/src79f0572f-614e-4ac5-9afa-16fb358b7088/dca17af7-d8ff-4200-aae3-6822511c2990.txt response: body: string: '' @@ -313,11 +306,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:02 GMT + - Wed, 02 Jun 2021 15:48:34 GMT etag: - - '"0x8D91C79E0A14E4E"' + - '"0x8D925DDE15FE20C"' last-modified: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -349,11 +342,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd01024be-07a6-467b-961d-246524f018c3/50fbd4a6-701d-4237-a4e2-10ade2d416e8.txt + uri: https://redacted.blob.core.windows.net/src79f0572f-614e-4ac5-9afa-16fb358b7088/ed955d93-e9d9-49e8-b6ee-245c61f96983.txt response: body: string: '' @@ -363,11 +356,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT etag: - - '"0x8D91C79E0ABB074"' + - '"0x8D925DDE166E83A"' last-modified: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -393,11 +386,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targeta23a4e24-8362-4d76-b4b8-80bfd0274639?restype=container + uri: https://redacted.blob.core.windows.net/target831676b4-3ad0-4142-8337-aa04a8559046?restype=container response: body: string: '' @@ -405,11 +398,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:34 GMT etag: - - '"0x8D91C79E0D3B8CC"' + - '"0x8D925DDE185D5F3"' last-modified: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:48:35 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -418,14 +411,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd01024be-07a6-467b-961d-246524f018c3?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta23a4e24-8362-4d76-b4b8-80bfd0274639?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src79f0572f-614e-4ac5-9afa-16fb358b7088?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target831676b4-3ad0-4142-8337-aa04a8559046?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -436,53 +429,46 @@ interactions: body: string: '' headers: - apim-request-id: 15b699e6-5baf-4c8e-8875-5697f0e43ec3 + apim-request-id: 6c69fe71-1801-4139-8769-a182ed59c169 content-length: '0' - date: Fri, 21 May 2021 17:00:03 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fc90b8fc-adac-4044-823b-d7eab778cfb6 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:48:34 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a67c541d-2ea3-4341-9be7-7c6baf258327 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 15b699e6-5baf-4c8e-8875-5697f0e43ec3 + x-requestid: 6c69fe71-1801-4139-8769-a182ed59c169 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/fc90b8fc-adac-4044-823b-d7eab778cfb6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a67c541d-2ea3-4341-9be7-7c6baf258327 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzFNA/jWRtRTsHBZoM6UbTcirAtgCJHoog7x7JQDJ3IY53/I43 - 8ANYGLnD3oysaCBWLbatMnXTq0E76rU2PPYH2AFHR+KGzzxOfnZn4czWWFcK31RdnSptES02e3Po - tMHuJzMTJXln8WH5J1Y1BUtCsqZ8dwzyLRTz2+Ku80zxD+wNJAhNYHEHI/kpp0WmldmltGm/fMVw - jc91CXJxr6riMC3spie69X38UiQWF4u4bsn9/gDGjFUXJAEAAA== + string: '{"id":"a67c541d-2ea3-4341-9be7-7c6baf258327","createdDateTimeUtc":"2021-06-02T15:48:35.1898562Z","lastActionDateTimeUtc":"2021-06-02T15:48:40.6793835Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 594e96a2-aa34-453c-b968-171a2fa4ec5a + apim-request-id: fd3b248f-5bb7-4c96-a086-717f84ff7d49 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:03 GMT - etag: '"65D7F896742F4A49C69A5C4B5F9C83185B339914A293AFDC355B7E3DB89835CE"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:49:05 GMT + etag: '"344DB6685968F34AE8BCA65CB5A84B99C558EE1AA6BDDBBB808C1E5F1C76A983"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 594e96a2-aa34-453c-b968-171a2fa4ec5a + x-requestid: fd3b248f-5bb7-4c96-a086-717f84ff7d49 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/fc90b8fc-adac-4044-823b-d7eab778cfb6 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/a67c541d-2ea3-4341-9be7-7c6baf258327 - request: body: null headers: @@ -497,11 +483,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:49:05 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0f07c581-58e9-47ed-bcd4-082b946ef88f?restype=container + uri: https://redacted.blob.core.windows.net/srcac1b29f7-77f1-4bc1-824c-54465baa5118?restype=container response: body: string: '' @@ -509,11 +495,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:49:05 GMT etag: - - '"0x8D91C79E10FD2E0"' + - '"0x8D925DDF3C5DD4C"' last-modified: - - Fri, 21 May 2021 17:00:04 GMT + - Wed, 02 Jun 2021 15:49:05 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -541,11 +527,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:04 GMT + - Wed, 02 Jun 2021 15:49:05 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0f07c581-58e9-47ed-bcd4-082b946ef88f/60cb287b-3803-4ca0-b967-ba4690a489f0.txt + uri: https://redacted.blob.core.windows.net/srcac1b29f7-77f1-4bc1-824c-54465baa5118/dbee62b9-1e65-4f74-a479-61de14fc6836.txt response: body: string: '' @@ -555,11 +541,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:49:05 GMT etag: - - '"0x8D91C79E128BF97"' + - '"0x8D925DDF3CEC97F"' last-modified: - - Fri, 21 May 2021 17:00:04 GMT + - Wed, 02 Jun 2021 15:49:05 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -591,11 +577,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:04 GMT + - Wed, 02 Jun 2021 15:49:05 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0f07c581-58e9-47ed-bcd4-082b946ef88f/96c91b81-1382-4f58-9403-a5ffb350a086.txt + uri: https://redacted.blob.core.windows.net/srcac1b29f7-77f1-4bc1-824c-54465baa5118/b638340b-20ba-468b-9a50-c3a6229f31d3.txt response: body: string: '' @@ -605,11 +591,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:03 GMT + - Wed, 02 Jun 2021 15:49:05 GMT etag: - - '"0x8D91C79E1382BB9"' + - '"0x8D925DDF3D7A4BD"' last-modified: - - Fri, 21 May 2021 17:00:04 GMT + - Wed, 02 Jun 2021 15:49:05 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -635,11 +621,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:04 GMT + - Wed, 02 Jun 2021 15:49:05 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf3fd4702-9c9a-466f-86ae-433778963727?restype=container + uri: https://redacted.blob.core.windows.net/target13cea667-a2cf-491f-b2af-f82ab0c1292b?restype=container response: body: string: '' @@ -647,11 +633,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:04 GMT + - Wed, 02 Jun 2021 15:49:05 GMT etag: - - '"0x8D91C79E16C3FAA"' + - '"0x8D925DDF3F5BD58"' last-modified: - - Fri, 21 May 2021 17:00:04 GMT + - Wed, 02 Jun 2021 15:49:06 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -660,14 +646,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0f07c581-58e9-47ed-bcd4-082b946ef88f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf3fd4702-9c9a-466f-86ae-433778963727?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcac1b29f7-77f1-4bc1-824c-54465baa5118?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target13cea667-a2cf-491f-b2af-f82ab0c1292b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -678,19 +664,76 @@ interactions: body: string: '' headers: - apim-request-id: 5dec1bad-058b-48f2-93ec-1cbdd4b7c0fd + apim-request-id: 5f04fd68-34d0-4bf7-92ae-3006089881b8 content-length: '0' - date: Fri, 21 May 2021 17:00:04 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/37e95053-452a-40e1-81ce-8da108cd99a2 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:49:05 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b7d138c6-34b9-4862-86fb-cdabc214d204 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5dec1bad-058b-48f2-93ec-1cbdd4b7c0fd + x-requestid: 5f04fd68-34d0-4bf7-92ae-3006089881b8 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches +- 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/batches/b7d138c6-34b9-4862-86fb-cdabc214d204 + response: + body: + string: '{"id":"b7d138c6-34b9-4862-86fb-cdabc214d204","createdDateTimeUtc":"2021-06-02T15:49:06.1046823Z","lastActionDateTimeUtc":"2021-06-02T15:49:15.7707124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: d5ff2478-fe57-4c30-b586-5ed5dacf7cc8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:49:35 GMT + etag: '"40A608279801830916A6BEC1B82C3F286089DFBE4BD34AA5D0AA5A477DA02926"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d5ff2478-fe57-4c30-b586-5ed5dacf7cc8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b7d138c6-34b9-4862-86fb-cdabc214d204 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=407&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 6ddc96f6-1766-4d96-9d26-a7586c08a593 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:49:35 GMT + etag: '"C4861E5B7F81CABDD4C917EEF1E04476792DD0FA805C7FF56E078EFB2C2294E3"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6ddc96f6-1766-4d96-9d26-a7586c08a593 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc - request: body: null headers: @@ -699,32 +742,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/batches/37e95053-452a-40e1-81ce-8da108cd99a2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=407&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFEiyVcvainYuAjQd2o2g2USAbQESPRRB/r2SgXTuQhzv+I43 - iBME6AYenXad6p1F1Ws2yhti5Sc02tM0jmjhAJQZhafXOs5x4Q+hylptjdJOWXM2Q9A66P7ovRue - uvGrMjMWeSaJaf0n1ruGFUHZSr17S/IumOvb5m7LgvkHwg0kCc4Q9AG+Mc41bbJsRFzKruN6yumS - H+ua5JP/qppDuBLPD3Tve7liRhLOTVz25H7/BUR6J6QkAQAA + string: '{"value":[{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","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/batches?$skip=100&$top=357&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' headers: - apim-request-id: 5150675f-4342-43cd-bd0e-4133e99b565a + apim-request-id: ef9f21d5-913e-4200-a6eb-292dc529562a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:04 GMT - etag: '"1D94421857C350081EC37549F2FFD4C575E63CF8574EFEC5E993F3F508695229"' + date: Wed, 02 Jun 2021 15:49:35 GMT + etag: '"0D82D26B987C790C727D06C8CFB8FC84E479668B386A6F6F2E3A956E51DECC95"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5150675f-4342-43cd-bd0e-4133e99b565a + x-requestid: ef9f21d5-913e-4200-a6eb-292dc529562a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/37e95053-452a-40e1-81ce-8da108cd99a2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=407&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc - request: body: null headers: @@ -733,73 +772,32 @@ 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/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=357&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc response: body: - string: !!binary | - H4sIAAAAAAAEAM2bS29dtxWF/0ohBBmZx/tJcl8g6CMddlAg6aAtOiB5SEeILRnStZEH8t+7eZ2m - Dmq3h4ArXA8s6V5ROvy89+JaJP3jzdvy8k2/Of39x5vb/eZ0Q5QqSZTQCDFIjnuo3EZgkTYIVPeS - bp7dtIdezn3/o//19e2r/pdzm2OBMIAGwq8BT0AnTlsGEIryNx/zsjyef9/Ot/d3/2OY4JYpJ5I8 - hz2ey/nNo3/fV29a633v+3zxzatX5eH7m9OPN+f7c3l5c9JnN6PcvvR3TzDf9+99fLy8fHv354f7 - Fw+XL/2tu/vzX/v5q3N5OP/8za3ctf7yX0MvP+/Lb8pDaef+MD95Md9B1p9+evYzJWu9iIEFFatB - aqFg3GLYRUYqIxlLP0AJ40nxJLwJJUimBym9G6a4UcpKia+XUhNBoRBrVacEMRTLNaShVgtXG1IP - UiKviy0SoGJeoOTD0qYWld7BvUZKO3WF2FvYcfeOG+gdh1BCLV00auxjh8OUvOM0xYyAS5S8BMF/ - mZBdKyUqg6s/YBgjS5CdW6i9R5/FnhTBZ5ToMCWFjTHGzGmJkrqc5WwRr1aX6vAHxNhCssjecQzB - zHlZ6YAxiZV0RL3ndPkEupExkNkCJfYH8kb1AlwpJYQPU5qvfxpMLrD/xtT3YbEwBpt9J6PEYI1j - aLEJW8l5349jIt1ABRiOLnI/D8ubCcSlNe6JMVEjk5jqtAEQBH0G1ohC6dkgaYuc8DCmqUyUkuQV - /eaTyMbuR1LGa+25JmbYOQVvNO+5BjVk1+5gqbuHGkrDjlOayhRNlFe8gA+jTSQnMFmppo9gwk/G - SeA9TqU0hp00pMrdOSmFXFhDk+j/vA2tX57zIKc8RUYBeYGTnAA2tBTjFWtThRLH2Dm4EfemS9CC - m3AJ1CpSUh1uxA9ikinhEQVhaaGTi2ki8SVkpZyedqETKIX8sbG33fXJMLhB8B5s3oBt+DPm45SQ - NjZgjSumyYfFLatO536tlEZlX2AkhhiRvOU8x5UCKXCGfQBpKYkPU/J1DsHdQF6RJjmxK5pj8niz - QCl9mFL6ZJSy/cpaWh7mMcV27zjtXkbeMaEbQWXae16oJc5bcoUBXes4N+DIOYrQtdYSiaIM12uM - 7LVkI4Y6GoSonKi5phaIhyn5euVahmorZsCHuSMVTSC/NgNf/jKZD1HKH6a0qN75o5Te027rpLGN - FvzJzfutSKjiIQW5tLpXF5l6NMrpCWxLyL40xgVG6svS5nWUmVcME35kiftklZTe80tlz7F41GVI - IwhpD5XZQsE9leIPDnzUL+mJ2JOcKzCstJtOLcsk/luX/NITQlLvpra3FpoVDcLZ427hHEYlzZR3 - 8LY7DIlx8xgXKa0EOR8mG5CA6NW6AOixYqnebzg3BTiWUNugwJbKAKU2MB+nRBskQl6JcRdIFM1j - 8tXuCYyCFEf1iNvNlzdQh4R7D8n7DBxU73K833iuU0loKcVdKGlmket1Sq1hd60O7ue83/JeHVKu - oXsdRZj9ZseVezaOZe+4VUYGFk2vtpIaNcXhy1vKc6fSXLRrH+KzIGg5VhnlqFHy6aqri0/YVky3 - D4vuHOafqxWlUq03thFqQs+5MUOo2jkwuwSPXMizy3FKcYsSU7TFWkobc5a0dDZAH6ZEn4qSynvK - 7aabomqIXDy/0Z5DsSSeTMyIcTSko0cD72ZrU7rXTIBbdTZLurQF95SQSLF7g7gKyTQBXlfB26WG - XdCskem+Aim7KLGwLiq3ucEi4HcFeIWQyj6XeilBOrmdLFBDad01qvfc3SXF0Y8eDFxm63k+c17Z - VtKTeMYFAFnaL/l/20l6z05mVInzzMQ6uFEa7pF8icuuSZ5WOFXLKIchCW3sxZdozSl5xHXDHZck - 6SkZxRJ9So2D5WkBWtdQuGOIHah5guupLDBSr4iMMa2tbhI3N0mQ4rUW0l72sQNS2HOZ5wLaQlbI - PgNq2QNc9Q+HISltHuY1rjWb8ibuyZIsbeI+ISPZ6+BevHJknp1Yi/NoAEPS1rMwqC/nxxnppgYK - i4Wkl0Iyg2vtNkq757M8Qnf36IrUwBWJSygJpFVOI/Xja5vmTYWTxrWAq7aJZVs7W3pKSB24GkYI - KRV2lyQtlD0mz7cIlDKXqkfXtngC3KJG0CWXFOe9C5YU4WrbLdeMEKtbyS45zH/QULN/uddkEhvW - 0o5WUpwnH5kSeXhbg2TvNCmtbN8+JSSkbsPMrXZq5u0GPRSpNQz1ZDs0GRyObvGEupGSe4AVAxDn - eYkCgYO6VkgYWfbsSt00uZ8EDEVbC+xRxcqefc07usUdT4SbeuCjpeQW54amDzPM1wqpQEHAeUnJ - g+y81MUh07w70SGqcU3uX45DSluEuFxJjJuRuu+41uTmz+ZeqGGoNXklGVGwfUSfQXFgbc8cFyop - bzSP8WxNuC+QKBmv3Hx7Skg9jlZLTu6TzJOb7BCsJAlpyLwAh8bjqJe8QLKITnoREm2EiXDpRsBT - QhLqO2W0gNXSvA7QQ027hVI4N0zRg9jRVOKQbMspxwwrPukCCX0pxbRSSU+pSVo6QuceuImbyVrR - U4lxmNerdo1aChyHxGnzueKiA5g7B5IjXa2XhJR7TbmFVPtls6SFip520VfkvY+m2o9Lkoh7yZxg - sds83s4tX/fqVwpp0LAkJQWPpW6TMFbXbS3zrATc3fXaTA9DUhdgcKOU1yrJ8y0rxqVjgKdk5BJr - 4NodXA/q3CeZYmQxQM3k/Haoh+++xxnB0F0z2MoeQJr3uHhGkqVTgCdVJKuevb2Q9rS7S9K5TzIP - KnNu2qh1DxlHuy3NW1yCDAlXus2H5c0dUhL9dbf999sSH4G0eFsCj9yWKFABzf1RNfZ0y3vy9Z8p - MLG6r+z9eCbxycZ5WO0OdOV20oURepjGrNfJqA2UMsbcqVUPb+x9Vnhee+dsnJgkHb4HcGEUI2dc - ugdwYeTVikIrt26ekBHuEXep7iPntVuZWwFmnk1iJd3nHTfEowfcaW4AMCCjrByTXBiJ+cB0pb0W - cbQ8xG0kytzcng7J5kU3q626Q+pVj954vzCaa7ge/m9dvzBSF3vkeJ2MOE4XOTCYzIPbUXOoAhD6 - 4IKlG0A9rkcEGwKrLSXbNON/RLJIKzbyKfNIjjJzWw56if84SsjVBWmetElq3nPj6Op/geT1QLp0 - B+AdJEnEvLLb9hSQ/vHs5nd3/bvzn27vvvUH+uZ8fv14ev7824fXD+V827Z2/+Lu9nz7tj/2h7e3 - /gBb+eHNQ/fXXz0/P5S7x5flfP/w/Ow/4nkt5/bN87e4wbtP++NvP3v89vb1Fwqff3a+94/8+Wev - ynevy4v+ePtDv7x+/7D3hz98/8V/4v9NeWw3P/0TPkBn7O85AAA= - headers: - apim-request-id: 1a536ec8-6ded-4e92-bd45-88f66c19d8c4 + string: '{"value":[{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=307&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: bc7388dc-2df1-4ee3-884d-8d0ffa8176c8 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:04 GMT - etag: '"C65CF9C76EF98A6D27A08C7DF1B8E3C343F63CD3895194F93FDABACE14556670"' + date: Wed, 02 Jun 2021 15:49:35 GMT + etag: '"524FFCEEF6CA51BB9943921D31A5E204F974F87BD430926A01B88543BB5B5229"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1a536ec8-6ded-4e92-bd45-88f66c19d8c4 + x-requestid: bc7388dc-2df1-4ee3-884d-8d0ffa8176c8 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=357&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc - request: body: null headers: @@ -808,71 +806,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/batches?$skip=50&$top=53&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=307&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc response: body: - string: !!binary | - H4sIAAAAAAAEAM2b3WtkxxHF/5UgjJ+271Z1V1dXC5Z8OI95CDh5SEIe+nMtvCsto1njD/y/51yt - EozjkNtgxGVBSDNzNXN/qjp1TnfvDzfflHcfx83tP364ues3tzczEnnP3rWeupOe2VWj6FqcnnKd - IVm5eXXTLqNcR/8jvvzl7v3467XhWk+eHV7r+S+stzHdet7EcuRsf8c178rj9fftevdw//8uC1sm - 8WK6X/Z4LdePj3jdlx9bG6OPvj/48f37cvnu5vaHm+vDtby7ufWvbma5e4dnb2l/Hq99fHx6+O7+ - z5eHt5enH/HU/cP1b+P65bVcrs8vbuW+jXf/vvTp933xVbmUdh2X/Zu3+zNRfvzx1TOk7tkkWHXZ - e3FCKbqSU3EKPr0X4y52HJLfjMWHxMuQRL1EOSkkrc2GSnFV8nTSNOK7xk5Cb1ryNOoLlRQ23CxZ - WGMkmw+Ws/BJGSWlUKgkZ9zUSQzJ1em9oz6jVw2jaD3MSMKmmY3XGIlsGjzezU7KaEhn30J1FCI5 - EQuukK9ANrylwHEGOs4obhSTcpI1SHFLHEXTWQuphjBblw40AYVElZzl2VzTNmYXmW2EFUhGlEzW - ZFt0SyHFxGetJPNj1gQ+QWZyUjHbLKOSkgztgYbUtNBtukWSlHixktKWsoYY00khodcwVNBpuLMM - sY7m8pzFpU4Q4NRT4+OyjbvlIGi4tArJxKvks1YSsaDjBE2m4p2kiUrSiu4bqrN7/IGrX4GUQlTz - fg1S3sgs4L1OCqlJHG3wcCUa2g3dBc1mcmPM4TOVlsJxSJE3MCLluAQp+o09BbGzVpKP2mbOzZWK - TpMACc9timMqWUovpZZxHBLuVhjTbY1R2BkR5bMOt+mL5QC1HqABJynN1UoAZaXn2lpufq4wshhC - zouFJBsrbBKfNZMwR2iIkoP+QJLKbiUTCgn2yRu0m2DDj0MK2+6SEHKWIXHAJzlrJeWoBZ+QENwa - gpuP01lCekuhAJDiS2zHIQkkKcdsi5UUt5BFJPuTQtKCWkklOvYGwx1HdCatwzCFrupLmBaPQ9oN - d4YnXLNJUZH3DHPjrLod9gTLlV3AyHfoMXJVqTlf8uCUUrfZVyAlnzynxUoCpKQq4awOIE3l3GN3 - c+6LSdyjy3EUh1mTUhU8MNJxSIq+iRnmdA2SbTErCZ/VcBc2i6VOx7PBJkVFvp0K12QeXnv07HnB - JiW0G8D6ZUhJjPRTAZ4QUgvafG3eBVQUKikml0eIjkooKXbCpFvQJBhu0rBqk2wz+O102oUSRaLt - iQMMJMpHog2X675a0hQBLtko83i8jXnzsJK2tCppt0SbZzHVFZsUfxlS/LUgcYg/abceesYMc9Nz - dBgyw6HwiwsIJGNGE/jug5Sebpc87ORSvsVlvEUPIbMV4X5RSjqSMLXsgiWMt1phuXUAmmKy+c5p - 8NFaeqKEqMe0lN2eKCETy3PkOyOlGIgLZ3OJO6Q7T3humuommRZJSaUc3Qf4VBTMPsWVZQBc9mn9 - NizNtxelFDh4gkt2eSK5SZ3mikKhGKmOIDECvTpOyW/eQtCcVynlQCnKini/KCUv6KyMLOLJ+r6C - G0GJh6uYbHnUzub5OKWwBcusecV1P1OCnJ01mWSkN1il4ULluW9OeodokVw3wsNVQ09HF0uebpZp - v9s1RHHzKFnLZ/XcvhjcUA1OK0abVIJTaiQuRa6VYyW1o8HkiVHSRJ7WIaFFo561kCy2Ehl95glq - JEXMVfbeJT/6HFlySEcXS57uNlPgpb1JXIXwlr2ZrEw3/mVG/Gsx8uknw4161JKTKxGDX+DqIOAe - CVcsDUM6ybTQbAgYgciHRUh538BlbyvD7SUhySgqKBiXhmK26SQUkgpaDsOOyshUju6W2C3vtpAT - pTUHwBiJGUOCzlpJFd7PW1enWWG5Q4VN2mPc7CraZUbtxyWJZQve5LkkjkOKWxBE46XjEi8JiUJL - BR3n2Cpj/ot3CG/NZZk8R62m6bhLYtvIgtqiJj2d11EVWnFJLwmpZO2a+3B+zrafBUCnkTU3rNLI - sFAzHd3mxt1iSkUjW4wl3raYGIb7pIx6QtZXK64WH/aAm11mgRWA+pJXxKkFRsFvlpL5RUkKcTeS - DD97UkiSaHYew1HI5KRZdRhpyUHKSdrsOR/edrN9PSkEn9JKJMl7KoaNNJIVJ/mSjLSU1gxBLQ5F - uqXCrkCGXBs1VdoXm9rRQsq7kwzZY7StyDYuSwjFCT2+4iRfEtIsonX64XrbTydxUlcjI5eQr7P2 - qnke3VHKuwFQeM+1Je68j8QoXr0/K6SYubaazcWW0p7bpiuFuiuzNfx5h0o82m15n20CuxOXglve - ZxtkLK7p9oueKemx+X3iFy3dSc7B1RGh4MFq1zQj8dFMAkgwzsQal4LbJ0gUc45nXeOmgY4aSCGj - yN5uKKLaCrnS22g+z3x8H+AJkkWmENbaDZD2HU3Ws+4oSa8+UahO5oSVVEYl9RIcrI42iYEgToch - edrQbfacLlYgqQR+zjIn1KROVKUjlKRG2YlHTVmF8x7cRy464zh8rDTvx5PVC/6tWQC/r92K+bMG - t7kvSHZWF/Ku262U3W6bq/tRgGRxXyw8zgijPCbJXtcY5Y0S3mdJkl7UJiXEfsx6V1BRzwu3KXpn - 2hgZLHDQ44UUwpZyFEj9EqSgG2XdDyOeFZKvYQSUDkvzCG4YbkZc3LRSKvdMJRzddcu3whsrU17a - m8z7+XgO0MB81iWAFjDe2n4ciSPSrYdhskbqcu+dU68m7egWQN5PlarXaLJmuCPk3rP8fAngi//c - ywIkWoPE/xMS/WS25T4Hx+lGrfBGaDxn3kcXooVZIDDRjvttsW0/iW1rzRZ5o2CBf7YFcBpEQ1uj - 1tk1uMb93K3CHsFXhglz1G3EGY6uSeb9lDETxjivLAA8MYKx4kh6TkaUlH1AGdXeMP1TBKMZPLIb - LEHKTBSXGFlmmOY1i7QzQvzP6aSMgvkcNDXXbDzt2yK1UVFoNvnMPfjUjgcS6EpCbz7/n74VRsg9 - ZnwyRv98dfO7+/Ht9U9391/j83x1vX54vH39+uvLh0u53rWtPby9v7vefTMex+WbO7z/Vr7/eBl4 - /P3r66XcP74r14fL6yt+xetaru2r199AVT59Ox5/+9nj13cf3qAKP//s+vDhTfj8s/fl2w/l7Xi8 - +368iXj44dLH5Q/fvflv+r8pj+3mx38B7+eTHNk5AAA= - headers: - apim-request-id: b7919144-1784-4faa-a2d2-da0fd80b04c8 + string: '{"value":[{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=257&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: e6f85383-81e0-42e0-a76c-da6b63494226 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:04 GMT - etag: '"FA698F6D8354EBFD58C411ABE1B74BF07C278C9CF638450394B0C5D26B4928FE"' + date: Wed, 02 Jun 2021 15:49:36 GMT + etag: '"C3E7AF60D7D8CE729DC549E4EF80A0F15219EEC0DF51104D89A23B34F13365BB"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b7919144-1784-4faa-a2d2-da0fd80b04c8 + x-requestid: e6f85383-81e0-42e0-a76c-da6b63494226 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=50&$top=53&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=307&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc - request: body: null headers: @@ -881,32 +836,179 @@ 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/batches?$skip=100&$top=3&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=257&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc response: body: - string: !!binary | - H4sIAAAAAAAEAM2QTUsDMRCG/0vOTcnnTpJb0bMI1oOKh9lJti5sdyGbClL6380W61V76yVM5p1n - Bp4j+8ThkFh4O7I+ssDISxk1tDxKIG5kNBzbznG0oIWKkbS2bMUoJywp3tdn2+/Tc6HKKqEkF5Yr - uZUQhAhCr6XRCqx9rcyAc9lQ6afxb0xZo42FBZsLlsNc5x6m8lQw17NL97DfY/5i4cjKVHBgQa1Y - h/1Q0yCWnCjN87nux8c87fLlO07lJf2uWjjCkdJwQc/77j4wI5WUl2J3Tk6n1Y+kjrxoXUccI1ZJ - whjulK7OIGEL4Khrm2skucaDE/5aSR6UMOBuVJKG5K2wmhursEpKkjtJibuIUjiK3qP6vySzds5C - o6+UZNdC2kZpc2OS3k/fEZ+F2noDAAA= - headers: - apim-request-id: db36f50f-a44a-42e9-8750-26b8224b6516 + string: '{"value":[{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=207&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 7ed72d46-3277-4f81-bd08-698e28354bfe cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:04 GMT - etag: '"C89BBE1EB22997449BAD7F8C1F983B204986B2EF66D36A343209D6B871526A35"' + date: Wed, 02 Jun 2021 15:49:36 GMT + etag: '"39A0D2BFA5E4BAB13C5B1C48D2D070207F8A5CF648D57CE940906BB8A5B403D9"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: db36f50f-a44a-42e9-8750-26b8224b6516 + x-requestid: 7ed72d46-3277-4f81-bd08-698e28354bfe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=257&$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/batches?$skip=250&$top=207&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=157&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: cbaf4705-0415-4bb8-a997-c1377381d7c7 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:49:36 GMT + etag: '"BE355C578FF0CDDE6FEB665E3B0AC9C71A6C9E7F393F835B892CE33BEEBD8CAA"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cbaf4705-0415-4bb8-a997-c1377381d7c7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=207&$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/batches?$skip=300&$top=157&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1237295c-47ea-4710-a84e-ed65a8f49dda","createdDateTimeUtc":"2021-06-02T06:36:26.6950836Z","lastActionDateTimeUtc":"2021-06-02T06:36:28.3693909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754d7123-41c6-45bb-9214-20ccbb325d5c","createdDateTimeUtc":"2021-06-02T06:36:57.8535231Z","lastActionDateTimeUtc":"2021-06-02T06:37:03.3442448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9b96b537-29be-4194-a7b4-a05959950142","createdDateTimeUtc":"2021-06-02T06:37:22.0011983Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.6381334Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2bbaa78d-f6a0-43b2-8352-bd0aa6edd744","createdDateTimeUtc":"2021-06-02T06:37:23.0437961Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.9407465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b719446-a83e-4bc7-9deb-659eebb51328","createdDateTimeUtc":"2021-06-02T06:37:23.7379948Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.2183805Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0eba3d56-4b51-4fc6-b9ea-755fe87fe711","createdDateTimeUtc":"2021-06-02T06:37:24.8468851Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.4997727Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"88f6806b-a28c-43b3-80c7-9a3e2a18f98a","createdDateTimeUtc":"2021-06-02T06:37:25.5121262Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.6483773Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b4e16297-da6d-44a3-b537-2e179b5c57c8","createdDateTimeUtc":"2021-06-02T06:37:27.4859883Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.4461178Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0eafff35-c835-435f-8ba6-5c62ccbcac05","createdDateTimeUtc":"2021-06-02T06:37:28.0226232Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.688448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a414371-9c16-4f5b-b78f-54a1b14f3cb3","createdDateTimeUtc":"2021-06-02T06:37:28.605251Z","lastActionDateTimeUtc":"2021-06-02T06:37:29.7618353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=107&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: fe5a61ec-03cc-4155-8a52-81c10b414560 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:49:36 GMT + etag: '"09B0338832BD085A8E3FFAC8ABE1BB7388131313E9D0DC650D89562DC54BAEEB"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fe5a61ec-03cc-4155-8a52-81c10b414560 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=157&$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/batches?$skip=350&$top=107&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"e46e697b-4b91-4cc1-bdc8-d1b5f4f29316","createdDateTimeUtc":"2021-06-02T06:37:29.6705576Z","lastActionDateTimeUtc":"2021-06-02T06:37:30.751147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9c7cc60-4eb3-4e1c-b45e-a4604a064ffa","createdDateTimeUtc":"2021-06-02T06:37:35.3559821Z","lastActionDateTimeUtc":"2021-06-02T06:37:35.9147701Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"527a3c66-ace4-4790-8c11-5a91053508e0","createdDateTimeUtc":"2021-06-02T06:37:40.8885591Z","lastActionDateTimeUtc":"2021-06-02T06:37:42.8973152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3a0d3c0-f2fc-4ab6-b669-8c3761494c57","createdDateTimeUtc":"2021-06-02T06:37:47.5767386Z","lastActionDateTimeUtc":"2021-06-02T06:37:49.9643054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1ab36b51-3fd7-42b0-806b-e3186a953d2e","createdDateTimeUtc":"2021-06-02T06:37:54.3117337Z","lastActionDateTimeUtc":"2021-06-02T06:37:55.7664263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86272760-b346-482a-87d3-d8b3eeb1431e","createdDateTimeUtc":"2021-06-02T06:38:02.0547056Z","lastActionDateTimeUtc":"2021-06-02T06:38:02.7777345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d921bb3-d049-4b73-806c-257c1dc96953","createdDateTimeUtc":"2021-06-02T06:38:07.6875606Z","lastActionDateTimeUtc":"2021-06-02T06:38:09.8465419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee6090f4-643f-4016-a931-dacd57b43fa1","createdDateTimeUtc":"2021-06-02T06:38:14.4144376Z","lastActionDateTimeUtc":"2021-06-02T06:38:15.0321792Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bb2b0f6-8ac2-418a-9b10-b360447a89a5","createdDateTimeUtc":"2021-06-02T06:38:20.0075742Z","lastActionDateTimeUtc":"2021-06-02T06:38:22.1577533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2d8f3f86-0803-4bac-9ea8-419278691b54","createdDateTimeUtc":"2021-06-02T06:38:25.681571Z","lastActionDateTimeUtc":"2021-06-02T06:38:29.2106941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fc1f463-3f90-463c-a8e5-c06153becb1d","createdDateTimeUtc":"2021-06-02T06:38:33.0953339Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9133298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbe70865-551f-49f3-ab11-8e71503fb250","createdDateTimeUtc":"2021-06-02T06:38:33.6329499Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9745495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f820ac8-68e8-402b-890a-bb2bdda717e0","createdDateTimeUtc":"2021-06-02T06:38:34.2347962Z","lastActionDateTimeUtc":"2021-06-02T06:38:35.1762805Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d95d4dcd-6301-4006-a1ac-ac471411900b","createdDateTimeUtc":"2021-06-02T06:38:35.1857718Z","lastActionDateTimeUtc":"2021-06-02T06:38:36.248059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f90c5227-f225-471d-9453-024721f9518f","createdDateTimeUtc":"2021-06-02T06:38:40.7600205Z","lastActionDateTimeUtc":"2021-06-02T06:38:42.2207707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"79d237c0-c8ac-4a3b-99bc-de2b9a1e76ef","createdDateTimeUtc":"2021-06-02T06:38:46.309884Z","lastActionDateTimeUtc":"2021-06-02T06:38:49.2573517Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"773b73df-42ae-4197-8198-bc90c557b188","createdDateTimeUtc":"2021-06-02T06:38:54.0646034Z","lastActionDateTimeUtc":"2021-06-02T06:38:56.3798465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e38339f-b8f6-422a-afdf-4d1de19fbab3","createdDateTimeUtc":"2021-06-02T06:39:00.7494268Z","lastActionDateTimeUtc":"2021-06-02T06:39:01.3181011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8cb80008-0ccb-480d-9ed1-01b8e5f22b0b","createdDateTimeUtc":"2021-06-02T06:39:06.3306336Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.708013Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"430d6fdb-2ede-4359-8866-84f6afd6bdcd","createdDateTimeUtc":"2021-06-02T06:39:06.9117078Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8128538Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0e4ce759-4155-4371-8b1e-5856d993a09b","createdDateTimeUtc":"2021-06-02T06:39:07.405402Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8980215Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba2f1009-fb37-4b26-9028-4b0fff7782e1","createdDateTimeUtc":"2021-06-02T06:39:08.1487463Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1891904Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f00445aa-49dc-4412-87eb-553ea2bf7d04","createdDateTimeUtc":"2021-06-02T06:39:08.6574795Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1874519Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"525194bb-ef96-4db2-ab08-a915dadddfac","createdDateTimeUtc":"2021-06-02T06:39:20.2491928Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.4901556Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"675c93a1-a854-4990-8389-7a61b2727f07","createdDateTimeUtc":"2021-06-02T06:39:20.9472043Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.5120454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6d5cec9-56ba-49eb-a706-f23d8726364c","createdDateTimeUtc":"2021-06-02T06:39:21.4737853Z","lastActionDateTimeUtc":"2021-06-02T06:39:22.7942225Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"348397fe-5a6d-4254-917e-8a417fe69a18","createdDateTimeUtc":"2021-06-02T06:39:23.6466581Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4112274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23632a5-a3cd-4415-8ca9-49d9af346f4c","createdDateTimeUtc":"2021-06-02T06:39:24.1530166Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4860761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60d59bd2-31c5-4cd7-9a2c-2f4fb5a66a28","createdDateTimeUtc":"2021-06-02T06:39:40.9473475Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8600715Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da019c4-f930-419b-8fd0-a26dfc37c494","createdDateTimeUtc":"2021-06-02T06:39:42.9890121Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8240778Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be268620-2e05-4ba2-89ae-1c0b72751bca","createdDateTimeUtc":"2021-06-02T06:39:43.4699657Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7031927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3415cb23-56af-4ba6-85c6-dfc4b5542ad8","createdDateTimeUtc":"2021-06-02T06:39:43.9656836Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7506612Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"840ef30b-a12f-49a9-b85b-01cb39acc87b","createdDateTimeUtc":"2021-06-02T06:39:44.5163768Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9895247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e302853f-5306-4a81-9d21-62ab1c3cb24f","createdDateTimeUtc":"2021-06-02T06:39:45.0213389Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9897041Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d8840d4-2706-43e3-9db7-726ade4b28e8","createdDateTimeUtc":"2021-06-02T06:40:00.283617Z","lastActionDateTimeUtc":"2021-06-02T06:40:00.7436838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964a78c0-3ac4-4769-bbd8-526686f22c42","createdDateTimeUtc":"2021-06-02T06:40:00.9118738Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.6168181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7a23650d-bb6a-4ca8-9569-84fa94fe6800","createdDateTimeUtc":"2021-06-02T06:40:01.4873529Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.5950808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05f6af9f-6f99-476f-b95d-02e7b30ba973","createdDateTimeUtc":"2021-06-02T06:40:02.0118203Z","lastActionDateTimeUtc":"2021-06-02T06:40:03.6115399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5aeaacbc-3228-435a-b713-ffb6e835188a","createdDateTimeUtc":"2021-06-02T06:40:02.5798533Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4688227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d44aa0e2-e11e-4510-8470-b090bd9b2f82","createdDateTimeUtc":"2021-06-02T06:40:03.1588409Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4667969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d84f2015-a418-440f-aa40-c3c4a2c0f535","createdDateTimeUtc":"2021-06-02T06:40:03.8571077Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2818175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"de6d7efa-e94a-43a6-a5e0-10b28f9615ec","createdDateTimeUtc":"2021-06-02T06:40:04.3970363Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2868525Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fd88caa7-54b7-44ad-a5df-b3f38b2006f4","createdDateTimeUtc":"2021-06-02T06:40:04.9897959Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.5795126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba008d05-8564-4475-9031-2d3e54e8f8bc","createdDateTimeUtc":"2021-06-02T06:40:05.638911Z","lastActionDateTimeUtc":"2021-06-02T06:40:06.5216871Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ea655e95-0404-4808-bc60-29d5023b58fa","createdDateTimeUtc":"2021-06-02T06:40:30.9135072Z","lastActionDateTimeUtc":"2021-06-02T06:40:31.7975375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4808cb29-461a-4bdc-849a-b8b2402cca93","createdDateTimeUtc":"2021-06-02T06:40:53.7154483Z","lastActionDateTimeUtc":"2021-06-02T06:40:54.3761813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c345e3b-2a71-4786-a3a9-c1703081324f","createdDateTimeUtc":"2021-06-02T06:41:05.9240834Z","lastActionDateTimeUtc":"2021-06-02T06:41:06.0023015Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"964fbde3-cb72-4679-815a-b68cb3145f58","createdDateTimeUtc":"2021-06-02T06:41:12.0098122Z","lastActionDateTimeUtc":"2021-06-02T06:41:16.688651Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8070372d-232c-4903-9b76-258c28a454bc","createdDateTimeUtc":"2021-06-02T06:41:18.3169725Z","lastActionDateTimeUtc":"2021-06-02T06:41:18.4692647Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"68544ede-a20e-444e-a0ae-022199af016c","createdDateTimeUtc":"2021-06-02T06:41:24.4796213Z","lastActionDateTimeUtc":"2021-06-02T06:41:29.4908652Z","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/batches?$skip=400&$top=57&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: fb8ba276-3072-40c0-988d-c7b702d40431 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:49:36 GMT + etag: '"5D6B90094AD38D5BFB7BE960F38A252C64FCA8B317529B01A2C0355A4AC732D4"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fb8ba276-3072-40c0-988d-c7b702d40431 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=107&$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/batches?$skip=400&$top=57&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a9e762d-814f-4d12-b2cf-a686f3c572dd","createdDateTimeUtc":"2021-06-02T06:46:49.3275525Z","lastActionDateTimeUtc":"2021-06-02T06:46:57.3306415Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0ab12764-59ff-4e7c-b9a7-88c62f9b9627","createdDateTimeUtc":"2021-06-02T06:56:55.0366689Z","lastActionDateTimeUtc":"2021-06-02T06:57:00.755663Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5948f436-c1b1-414c-9b2c-6d3af57f3021","createdDateTimeUtc":"2021-06-02T07:02:43.6134937Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.2264979Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386e26c8-49dd-4eb5-ae3f-95bbc1809b38","createdDateTimeUtc":"2021-06-02T07:03:22.7902994Z","lastActionDateTimeUtc":"2021-06-02T07:03:23.1220631Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2295cf18-0237-4b0b-ac37-42d91ba98d4e","createdDateTimeUtc":"2021-06-02T07:06:14.1851872Z","lastActionDateTimeUtc":"2021-06-02T07:06:16.4424397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c4182d40-ee61-40f5-b3ac-31bc4aaed8b8","createdDateTimeUtc":"2021-06-02T07:06:22.1439114Z","lastActionDateTimeUtc":"2021-06-02T07:06:22.2296325Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"384343e6-a44b-49e9-91ef-d62cf39d44dc","createdDateTimeUtc":"2021-06-02T07:06:28.0100687Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.4305067Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"171c4e8e-4733-4b42-b3ed-cbe9481c0d3d","createdDateTimeUtc":"2021-06-02T07:06:34.1550079Z","lastActionDateTimeUtc":"2021-06-02T07:06:34.2834432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"113ad1aa-d9f6-4b15-a610-267b51c8a138","createdDateTimeUtc":"2021-06-02T07:06:40.2876379Z","lastActionDateTimeUtc":"2021-06-02T07:06:43.4469925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70081137-fe6d-466f-953e-2670c8f5e6da","createdDateTimeUtc":"2021-06-02T07:07:08.454661Z","lastActionDateTimeUtc":"2021-06-02T07:07:10.4666065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72d34ce8-d861-4d6c-a410-d6337f303948","createdDateTimeUtc":"2021-06-02T07:07:14.7915463Z","lastActionDateTimeUtc":"2021-06-02T07:07:15.5245593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"58d95d16-9284-48bd-ace3-dd961197bcde","createdDateTimeUtc":"2021-06-02T07:07:21.3198845Z","lastActionDateTimeUtc":"2021-06-02T07:07:22.583496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"952041da-4da4-43c8-a8f3-8e1742f2beb9","createdDateTimeUtc":"2021-06-02T15:30:48.630454Z","lastActionDateTimeUtc":"2021-06-02T15:30:52.4630271Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"037a7fa0-4dc3-4883-8f79-a92aa2b1bf20","createdDateTimeUtc":"2021-06-02T15:31:20.0453083Z","lastActionDateTimeUtc":"2021-06-02T15:31:23.4805698Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f32e8631-bc29-48a4-94f1-de98861fa26b","createdDateTimeUtc":"2021-06-02T15:31:51.3977201Z","lastActionDateTimeUtc":"2021-06-02T15:31:58.5898438Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6932315e-6bda-408a-a072-d5a13492cbae","createdDateTimeUtc":"2021-06-02T15:32:22.5094146Z","lastActionDateTimeUtc":"2021-06-02T15:32:23.8496169Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0bcccc81-50c4-4930-b8c7-8166cd494fd0","createdDateTimeUtc":"2021-06-02T15:33:11.144037Z","lastActionDateTimeUtc":"2021-06-02T15:33:14.3246317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f459e67d-3ef8-4dd5-9441-f037a9ef7bb9","createdDateTimeUtc":"2021-06-02T15:33:45.8406241Z","lastActionDateTimeUtc":"2021-06-02T15:33:48.97718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d538b50a-4739-437e-a430-4a39d552ae9b","createdDateTimeUtc":"2021-06-02T15:34:19.3119357Z","lastActionDateTimeUtc":"2021-06-02T15:34:24.1613577Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"227d7245-54a1-4383-81be-7b1679cf252d","createdDateTimeUtc":"2021-06-02T15:34:50.3214464Z","lastActionDateTimeUtc":"2021-06-02T15:34:54.5445251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"70889650-7a9b-4928-a36f-6f06dd2c8a9c","createdDateTimeUtc":"2021-06-02T15:35:37.9362618Z","lastActionDateTimeUtc":"2021-06-02T15:35:39.1768098Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b849ea0a-e4a9-46a3-8b28-32a190e543d0","createdDateTimeUtc":"2021-06-02T15:36:08.9101301Z","lastActionDateTimeUtc":"2021-06-02T15:36:09.5400119Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5042709-8ee3-43ca-bd9b-fa7bd59c7265","createdDateTimeUtc":"2021-06-02T15:36:40.1565566Z","lastActionDateTimeUtc":"2021-06-02T15:36:44.3046541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a28a0dd-a1f9-41d7-84c1-f0b1113f8789","createdDateTimeUtc":"2021-06-02T15:37:30.8922028Z","lastActionDateTimeUtc":"2021-06-02T15:37:34.9631268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14b4a15e-8a19-4b18-9005-324a40790e0a","createdDateTimeUtc":"2021-06-02T15:38:01.9108422Z","lastActionDateTimeUtc":"2021-06-02T15:38:09.4423062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"483f1e94-ed29-4561-b05e-93f8108a250e","createdDateTimeUtc":"2021-06-02T15:38:32.8282822Z","lastActionDateTimeUtc":"2021-06-02T15:38:34.5245464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b1dffbc6-abe0-4650-9da1-bada8545f067","createdDateTimeUtc":"2021-06-02T15:39:03.7253899Z","lastActionDateTimeUtc":"2021-06-02T15:39:09.6415436Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcf5d3bd-350e-48d0-849f-cd30c5c70f6c","createdDateTimeUtc":"2021-06-02T15:39:34.6738498Z","lastActionDateTimeUtc":"2021-06-02T15:39:39.9418091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64fcc7b4-da11-4673-8df5-94b579a2a941","createdDateTimeUtc":"2021-06-02T15:40:05.5995431Z","lastActionDateTimeUtc":"2021-06-02T15:40:14.7288062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"671ec3e7-7651-49de-b5e2-abf216ba6a00","createdDateTimeUtc":"2021-06-02T15:40:36.3117467Z","lastActionDateTimeUtc":"2021-06-02T15:40:39.8287338Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49a4073e-a77c-43a8-a5df-624e4353512b","createdDateTimeUtc":"2021-06-02T15:41:09.4884568Z","lastActionDateTimeUtc":"2021-06-02T15:41:15.079891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb","createdDateTimeUtc":"2021-06-02T15:41:40.4875824Z","lastActionDateTimeUtc":"2021-06-02T15:41:45.0055865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0daad36d-d58b-464a-bf3f-24756c168dab","createdDateTimeUtc":"2021-06-02T15:42:11.4829756Z","lastActionDateTimeUtc":"2021-06-02T15:42:20.0459031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"74bd8d8b-10e9-4f02-8480-80f6043c2330","createdDateTimeUtc":"2021-06-02T15:42:42.618931Z","lastActionDateTimeUtc":"2021-06-02T15:42:45.1068144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa247fd3-6fb5-4c4f-ab03-4dac197b79df","createdDateTimeUtc":"2021-06-02T15:43:13.4363016Z","lastActionDateTimeUtc":"2021-06-02T15:43:20.1331654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"24d02912-bfb1-4762-b20c-a82ff6750cb1","createdDateTimeUtc":"2021-06-02T15:43:44.3116426Z","lastActionDateTimeUtc":"2021-06-02T15:43:45.1997808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bfefe5c6-e2d9-43c0-88c6-4462af997770","createdDateTimeUtc":"2021-06-02T15:44:15.1438217Z","lastActionDateTimeUtc":"2021-06-02T15:44:20.2936473Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35747bc7-da08-4dc5-b67a-9f6f51567313","createdDateTimeUtc":"2021-06-02T15:44:46.0331186Z","lastActionDateTimeUtc":"2021-06-02T15:44:50.3666864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54b40e06-6cf7-401b-8537-bc9047946920","createdDateTimeUtc":"2021-06-02T15:45:17.0771317Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.4223719Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=450&$top=7&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: c0b315ad-bc91-4518-bff4-f2623ecf734d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:49:36 GMT + etag: '"1084C7F95FF1D2EE9ECAA3CFC655557BAC5E0B94D9157ACAE73C90CC4BDC6B2D"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c0b315ad-bc91-4518-bff4-f2623ecf734d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=57&$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/batches?$skip=450&$top=7&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"4bd89238-d6e6-45dc-8912-1b955eb512bc","createdDateTimeUtc":"2021-06-02T15:45:48.3203318Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.5535213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d45fc1e-b2db-458b-a663-059795ae3c3c","createdDateTimeUtc":"2021-06-02T15:46:19.6722056Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.6264139Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b311ad2c-e8ad-4d10-bc18-325a6f08cda0","createdDateTimeUtc":"2021-06-02T15:46:50.8668441Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.7482384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbb3cde3-a42e-445d-b89d-70449e8840ef","createdDateTimeUtc":"2021-06-02T15:47:21.9381582Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.8271606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8cef6dc-9699-46b5-9097-17c86e9d428a","createdDateTimeUtc":"2021-06-02T15:48:04.0354645Z","lastActionDateTimeUtc":"2021-06-02T15:48:10.6299243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a67c541d-2ea3-4341-9be7-7c6baf258327","createdDateTimeUtc":"2021-06-02T15:48:35.1898562Z","lastActionDateTimeUtc":"2021-06-02T15:48:40.6793835Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7d138c6-34b9-4862-86fb-cdabc214d204","createdDateTimeUtc":"2021-06-02T15:49:06.1046823Z","lastActionDateTimeUtc":"2021-06-02T15:49:15.7707124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}]}' + headers: + apim-request-id: cf495f94-6c89-439e-b0ae-dc07998fbb1e + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:49:36 GMT + etag: '"83D0FE1603E90A73AA5B98B3E2B9AE4139064FE75B993164E1099E347410556F"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cf495f94-6c89-439e-b0ae-dc07998fbb1e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=100&$top=3&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=450&$top=7&$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 index d4700dff44c6..d31deb88a7fb 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:22 GMT + - Wed, 02 Jun 2021 15:49:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src637ebd6b-7a5e-435a-b7a0-7732c5e8c35a?restype=container + uri: https://redacted.blob.core.windows.net/srcfc6d57dc-6a0a-4022-9308-b333815e668d?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:22 GMT + - Wed, 02 Jun 2021 15:49:37 GMT etag: - - '"0x8D91C79EC2EE324"' + - '"0x8D925DE071BEEA2"' last-modified: - - Fri, 21 May 2021 17:00:22 GMT + - Wed, 02 Jun 2021 15:49:38 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: - - Fri, 21 May 2021 17:00:22 GMT + - Wed, 02 Jun 2021 15:49:38 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src637ebd6b-7a5e-435a-b7a0-7732c5e8c35a/f8b0f67d-9e98-4843-9cf7-70813d9ba805.txt + uri: https://redacted.blob.core.windows.net/srcfc6d57dc-6a0a-4022-9308-b333815e668d/fbfbc3a2-159f-47ce-80da-a8eeae3a81bc.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:22 GMT + - Wed, 02 Jun 2021 15:49:38 GMT etag: - - '"0x8D91C79EC3C5580"' + - '"0x8D925DE072358A4"' last-modified: - - Fri, 21 May 2021 17:00:22 GMT + - Wed, 02 Jun 2021 15:49:38 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: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:49:38 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src637ebd6b-7a5e-435a-b7a0-7732c5e8c35a/168e19da-4d08-4313-b438-f57755b25227.txt + uri: https://redacted.blob.core.windows.net/srcfc6d57dc-6a0a-4022-9308-b333815e668d/23cf8ee6-a226-4687-8c28-6edb15604cc7.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:22 GMT + - Wed, 02 Jun 2021 15:49:38 GMT etag: - - '"0x8D91C79EC47F060"' + - '"0x8D925DE072A1096"' last-modified: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:49:38 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:49:38 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetfcfb2780-5ead-4795-976d-062017bd473f?restype=container + uri: https://redacted.blob.core.windows.net/targetf7a6a270-1223-449a-8560-074b28a6354f?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:22 GMT + - Wed, 02 Jun 2021 15:49:37 GMT etag: - - '"0x8D91C79EC6C4DBC"' + - '"0x8D925DE0742034D"' last-modified: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:49:38 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,14 +176,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src637ebd6b-7a5e-435a-b7a0-7732c5e8c35a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfcfb2780-5ead-4795-976d-062017bd473f?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfc6d57dc-6a0a-4022-9308-b333815e668d?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf7a6a270-1223-449a-8560-074b28a6354f?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '488' Content-Type: - application/json User-Agent: @@ -194,53 +194,46 @@ interactions: body: string: '' headers: - apim-request-id: c4551dbe-2e12-4359-a2bb-85c9d7c11912 + apim-request-id: 194b9413-62d2-46b6-8b30-5080e549d3d6 content-length: '0' - date: Fri, 21 May 2021 17:00:23 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/260f82c2-cea6-4a22-8861-f44b2687ec0a - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:49:38 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2df049c2-88f2-4d49-ad7b-b51f852ce3ae + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c4551dbe-2e12-4359-a2bb-85c9d7c11912 + x-requestid: 194b9413-62d2-46b6-8b30-5080e549d3d6 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/260f82c2-cea6-4a22-8861-f44b2687ec0a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2df049c2-88f2-4d49-ad7b-b51f852ce3ae response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVMisrbjaimYOCiQd0o1l6FSAbQESPQRB/r2SgWTuQhzv+I43 - CGfwgM4OPTIaFnKmJUTT964xQ9v+oOu3wpZgA5yEVM67Mo5hki/lylpsjO0MNsdm6631+PrSWcTW - dd+FGSnrO2uI83+xt4plJV1yudtHPSil8ra6yzRRuoK/gUalEbzdwEBhLGmVeWGWnFcd5s8UL+mx - zlFP8qyqDtPMMj7Qte/jlxKxSqrisib3+x9mUxtsJAEAAA== + string: '{"id":"2df049c2-88f2-4d49-ad7b-b51f852ce3ae","createdDateTimeUtc":"2021-06-02T15:49:38.5642201Z","lastActionDateTimeUtc":"2021-06-02T15:49:40.7209902Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 65d3b3d9-bc38-49fb-bdf9-bd8a23bdc36b + apim-request-id: a70970fb-53e2-4c4d-bd4c-228afe0dd884 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:23 GMT - etag: '"5ED583D40582B2209AEA65101EB532A12D9580FF5526F384A333C8EDDFF71BC5"' + date: Wed, 02 Jun 2021 15:50:08 GMT + etag: '"9E5D197CC23F136A3F7969821F29DD82A51ACEC822F352575119FAAD0392C9A8"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 65d3b3d9-bc38-49fb-bdf9-bd8a23bdc36b + x-requestid: a70970fb-53e2-4c4d-bd4c-228afe0dd884 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/260f82c2-cea6-4a22-8861-f44b2687ec0a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2df049c2-88f2-4d49-ad7b-b51f852ce3ae - request: body: null headers: @@ -255,11 +248,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src84b6252c-1912-44c7-8bcd-58ccfff8c71b?restype=container + uri: https://redacted.blob.core.windows.net/srcec262ce4-df5a-4fcd-a26f-2dd970e158c7?restype=container response: body: string: '' @@ -267,11 +260,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:08 GMT etag: - - '"0x8D91C79ECBE5FDE"' + - '"0x8D925DE19A2D48B"' last-modified: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -299,11 +292,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:09 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src84b6252c-1912-44c7-8bcd-58ccfff8c71b/c7eb9337-b510-495a-b7b1-bfd3a41e152b.txt + uri: https://redacted.blob.core.windows.net/srcec262ce4-df5a-4fcd-a26f-2dd970e158c7/82087713-3add-4d5e-8562-25e7d149d490.txt response: body: string: '' @@ -313,11 +306,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:08 GMT etag: - - '"0x8D91C79ECCBB759"' + - '"0x8D925DE19C2A798"' last-modified: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -349,11 +342,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:09 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src84b6252c-1912-44c7-8bcd-58ccfff8c71b/4dd10e34-69df-486d-981a-f0d7e5d8f30c.txt + uri: https://redacted.blob.core.windows.net/srcec262ce4-df5a-4fcd-a26f-2dd970e158c7/e927f5b5-2c15-4157-b195-4c44e8d66e9b.txt response: body: string: '' @@ -363,11 +356,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:08 GMT etag: - - '"0x8D91C79ECD83CC5"' + - '"0x8D925DE19CDF442"' last-modified: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -393,11 +386,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:09 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target7d450fa3-65e3-4509-aa13-0ba4423145eb?restype=container + uri: https://redacted.blob.core.windows.net/targetaf6d407c-8e20-4dd4-a7d7-f36505a61653?restype=container response: body: string: '' @@ -405,11 +398,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:23 GMT + - Wed, 02 Jun 2021 15:50:09 GMT etag: - - '"0x8D91C79ECFB4678"' + - '"0x8D925DE19E7910E"' last-modified: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -418,14 +411,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src84b6252c-1912-44c7-8bcd-58ccfff8c71b?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7d450fa3-65e3-4509-aa13-0ba4423145eb?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcec262ce4-df5a-4fcd-a26f-2dd970e158c7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetaf6d407c-8e20-4dd4-a7d7-f36505a61653?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -436,53 +429,46 @@ interactions: body: string: '' headers: - apim-request-id: 07d9ab57-7432-4e4f-a909-74945178c8cc + apim-request-id: 2ba2aae3-c15f-4f4a-b21c-e41a3ec9afc7 content-length: '0' - date: Fri, 21 May 2021 17:00:23 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8b9e35b5-9343-4414-805e-105f6e9a923a + date: Wed, 02 Jun 2021 15:50:09 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/3ced8397-8a10-4f04-8976-146727a17265 set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 07d9ab57-7432-4e4f-a909-74945178c8cc + x-requestid: 2ba2aae3-c15f-4f4a-b21c-e41a3ec9afc7 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/8b9e35b5-9343-4414-805e-105f6e9a923a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/3ced8397-8a10-4f04-8976-146727a17265 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzVOjXjrUF6VwUaDK0G6MwiQDbAiR6KIK8eyQD6dyFON7xO94h - nsHD9jSQcScnBmONsFZZsZWOhJLu0tGAgzYIGwiZkOn8XschTnTkUFkttRLSCa0OqvdSem3fdNc5 - 25ufyoxYeBc4pvm/WN+wwshLqXcfib8Yc33b3GWaMP+CvwMnxhG83MAF41jTJssSApWy6jh/5nTN - r3VO/E1/Vc0JOAcaX+jat79hxsCUm7iuyePxBPdnTbUkAQAA + string: '{"id":"3ced8397-8a10-4f04-8976-146727a17265","createdDateTimeUtc":"2021-06-02T15:50:09.7703098Z","lastActionDateTimeUtc":"2021-06-02T15:50:15.7782398Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 69fb9924-38ce-4805-86ce-7af4373f3777 + apim-request-id: 652c616b-604f-40ce-9f7e-7ba0f5a39019 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:23 GMT - etag: '"073059365C9AD32351C0DE60DB8C75C756F9F60A4B952F1366E86BE0619923F9"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:50:39 GMT + etag: '"D126EE883DED400F63BC3676B4E3B6B5730D44A69D9DD1CB3271BEAB52C86763"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 69fb9924-38ce-4805-86ce-7af4373f3777 + x-requestid: 652c616b-604f-40ce-9f7e-7ba0f5a39019 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8b9e35b5-9343-4414-805e-105f6e9a923a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/3ced8397-8a10-4f04-8976-146727a17265 - request: body: null headers: @@ -497,11 +483,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdc07890a-6564-44ed-944e-39b35baf7b91?restype=container + uri: https://redacted.blob.core.windows.net/src9f97f9b9-922e-440e-be50-e9cba4bfda0e?restype=container response: body: string: '' @@ -509,11 +495,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:39 GMT etag: - - '"0x8D91C79ED4B6656"' + - '"0x8D925DE2C27D71C"' last-modified: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -541,11 +527,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdc07890a-6564-44ed-944e-39b35baf7b91/d82ac30c-38d9-4e4a-a10a-878622f3961a.txt + uri: https://redacted.blob.core.windows.net/src9f97f9b9-922e-440e-be50-e9cba4bfda0e/933112c7-91aa-4cc3-9646-88afe77c5f91.txt response: body: string: '' @@ -555,11 +541,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:39 GMT etag: - - '"0x8D91C79ED576F24"' + - '"0x8D925DE2C2F92DD"' last-modified: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -591,11 +577,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcdc07890a-6564-44ed-944e-39b35baf7b91/446fb190-e13f-4cf0-a261-e2f40ce57cf6.txt + uri: https://redacted.blob.core.windows.net/src9f97f9b9-922e-440e-be50-e9cba4bfda0e/6bdfddf4-0421-4b1f-8438-7ab92f31508e.txt response: body: string: '' @@ -605,11 +591,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:39 GMT etag: - - '"0x8D91C79ED641BAE"' + - '"0x8D925DE2C375C7C"' last-modified: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -635,11 +621,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target1915ea50-bb77-4b2d-a85d-d54113fdbf41?restype=container + uri: https://redacted.blob.core.windows.net/target7112a098-0503-4ae5-b351-6b66869175a1?restype=container response: body: string: '' @@ -647,11 +633,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:24 GMT + - Wed, 02 Jun 2021 15:50:40 GMT etag: - - '"0x8D91C79ED8E2577"' + - '"0x8D925DE2C5303CD"' last-modified: - - Fri, 21 May 2021 17:00:25 GMT + - Wed, 02 Jun 2021 15:50:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -660,8 +646,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdc07890a-6564-44ed-944e-39b35baf7b91?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1915ea50-bb77-4b2d-a85d-d54113fdbf41?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9f97f9b9-922e-440e-be50-e9cba4bfda0e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7112a098-0503-4ae5-b351-6b66869175a1?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -678,19 +664,46 @@ interactions: body: string: '' headers: - apim-request-id: 0cf8b896-223f-48a0-97ce-9df7e072e59c + apim-request-id: 69063a5d-2f2d-4329-b88f-c82e3ae9847f content-length: '0' - date: Fri, 21 May 2021 17:00:24 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8a70868e-5199-49fe-b631-b8e6807e257d - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:50:40 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ae7acfb8-b962-4978-942c-6cba3de07e8f + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0cf8b896-223f-48a0-97ce-9df7e072e59c + x-requestid: 69063a5d-2f2d-4329-b88f-c82e3ae9847f status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches +- 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/batches/ae7acfb8-b962-4978-942c-6cba3de07e8f + response: + body: + string: '{"id":"ae7acfb8-b962-4978-942c-6cba3de07e8f","createdDateTimeUtc":"2021-06-02T15:50:40.6703242Z","lastActionDateTimeUtc":"2021-06-02T15:50:50.7401416Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: a2b12472-b235-4eb9-aeff-acc518e972b5 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:51:10 GMT + etag: '"C8CDCCE2C1514CBE21AAAD306BBA6F690D22022D4833F6A34CD46612A0AB2139"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a2b12472-b235-4eb9-aeff-acc518e972b5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ae7acfb8-b962-4978-942c-6cba3de07e8f - request: body: null headers: @@ -699,32 +712,30 @@ 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/batches/8a70868e-5199-49fe-b631-b8e6807e257d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMY/CMAyF/4tnckoCTdNsJ5jRSXDDsZnU9CK1jZS4A0L890sqcTOL9fyev+cH - hB4cWGylNZZEo7pO7LobiavZKnG1ZKxsSTdtDxvwiZCpP5RxDhN9sy+slloJ2Qitzqp1UjrdfOit - KYi5FGbEzJ+eQ5zfxbqKZUZecrk7Rj4xpvK2uss0YbqDewBHxhGc3MANw1jSKvPiPeW86jB/pTik - 1zpH/qH/qup4nD2NL3Tt2/9iQs+UqhjW5Pn8A7BnpuIkAQAA + string: '{"value":[{"id":"ae7acfb8-b962-4978-942c-6cba3de07e8f","createdDateTimeUtc":"2021-06-02T15:50:40.6703242Z","lastActionDateTimeUtc":"2021-06-02T15:50:50.7401416Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ced8397-8a10-4f04-8976-146727a17265","createdDateTimeUtc":"2021-06-02T15:50:09.7703098Z","lastActionDateTimeUtc":"2021-06-02T15:50:15.7782398Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2df049c2-88f2-4d49-ad7b-b51f852ce3ae","createdDateTimeUtc":"2021-06-02T15:49:38.5642201Z","lastActionDateTimeUtc":"2021-06-02T15:49:40.7209902Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7d138c6-34b9-4862-86fb-cdabc214d204","createdDateTimeUtc":"2021-06-02T15:49:06.1046823Z","lastActionDateTimeUtc":"2021-06-02T15:49:15.7707124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a67c541d-2ea3-4341-9be7-7c6baf258327","createdDateTimeUtc":"2021-06-02T15:48:35.1898562Z","lastActionDateTimeUtc":"2021-06-02T15:48:40.6793835Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8cef6dc-9699-46b5-9097-17c86e9d428a","createdDateTimeUtc":"2021-06-02T15:48:04.0354645Z","lastActionDateTimeUtc":"2021-06-02T15:48:10.6299243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbb3cde3-a42e-445d-b89d-70449e8840ef","createdDateTimeUtc":"2021-06-02T15:47:21.9381582Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.8271606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b311ad2c-e8ad-4d10-bc18-325a6f08cda0","createdDateTimeUtc":"2021-06-02T15:46:50.8668441Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.7482384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d45fc1e-b2db-458b-a663-059795ae3c3c","createdDateTimeUtc":"2021-06-02T15:46:19.6722056Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.6264139Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4bd89238-d6e6-45dc-8912-1b955eb512bc","createdDateTimeUtc":"2021-06-02T15:45:48.3203318Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.5535213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54b40e06-6cf7-401b-8537-bc9047946920","createdDateTimeUtc":"2021-06-02T15:45:17.0771317Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.4223719Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35747bc7-da08-4dc5-b67a-9f6f51567313","createdDateTimeUtc":"2021-06-02T15:44:46.0331186Z","lastActionDateTimeUtc":"2021-06-02T15:44:50.3666864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bfefe5c6-e2d9-43c0-88c6-4462af997770","createdDateTimeUtc":"2021-06-02T15:44:15.1438217Z","lastActionDateTimeUtc":"2021-06-02T15:44:20.2936473Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"24d02912-bfb1-4762-b20c-a82ff6750cb1","createdDateTimeUtc":"2021-06-02T15:43:44.3116426Z","lastActionDateTimeUtc":"2021-06-02T15:43:45.1997808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa247fd3-6fb5-4c4f-ab03-4dac197b79df","createdDateTimeUtc":"2021-06-02T15:43:13.4363016Z","lastActionDateTimeUtc":"2021-06-02T15:43:20.1331654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"74bd8d8b-10e9-4f02-8480-80f6043c2330","createdDateTimeUtc":"2021-06-02T15:42:42.618931Z","lastActionDateTimeUtc":"2021-06-02T15:42:45.1068144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0daad36d-d58b-464a-bf3f-24756c168dab","createdDateTimeUtc":"2021-06-02T15:42:11.4829756Z","lastActionDateTimeUtc":"2021-06-02T15:42:20.0459031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb","createdDateTimeUtc":"2021-06-02T15:41:40.4875824Z","lastActionDateTimeUtc":"2021-06-02T15:41:45.0055865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49a4073e-a77c-43a8-a5df-624e4353512b","createdDateTimeUtc":"2021-06-02T15:41:09.4884568Z","lastActionDateTimeUtc":"2021-06-02T15:41:15.079891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"671ec3e7-7651-49de-b5e2-abf216ba6a00","createdDateTimeUtc":"2021-06-02T15:40:36.3117467Z","lastActionDateTimeUtc":"2021-06-02T15:40:39.8287338Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64fcc7b4-da11-4673-8df5-94b579a2a941","createdDateTimeUtc":"2021-06-02T15:40:05.5995431Z","lastActionDateTimeUtc":"2021-06-02T15:40:14.7288062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcf5d3bd-350e-48d0-849f-cd30c5c70f6c","createdDateTimeUtc":"2021-06-02T15:39:34.6738498Z","lastActionDateTimeUtc":"2021-06-02T15:39:39.9418091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b1dffbc6-abe0-4650-9da1-bada8545f067","createdDateTimeUtc":"2021-06-02T15:39:03.7253899Z","lastActionDateTimeUtc":"2021-06-02T15:39:09.6415436Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"483f1e94-ed29-4561-b05e-93f8108a250e","createdDateTimeUtc":"2021-06-02T15:38:32.8282822Z","lastActionDateTimeUtc":"2021-06-02T15:38:34.5245464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14b4a15e-8a19-4b18-9005-324a40790e0a","createdDateTimeUtc":"2021-06-02T15:38:01.9108422Z","lastActionDateTimeUtc":"2021-06-02T15:38:09.4423062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a28a0dd-a1f9-41d7-84c1-f0b1113f8789","createdDateTimeUtc":"2021-06-02T15:37:30.8922028Z","lastActionDateTimeUtc":"2021-06-02T15:37:34.9631268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5042709-8ee3-43ca-bd9b-fa7bd59c7265","createdDateTimeUtc":"2021-06-02T15:36:40.1565566Z","lastActionDateTimeUtc":"2021-06-02T15:36:44.3046541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b849ea0a-e4a9-46a3-8b28-32a190e543d0","createdDateTimeUtc":"2021-06-02T15:36:08.9101301Z","lastActionDateTimeUtc":"2021-06-02T15:36:09.5400119Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70889650-7a9b-4928-a36f-6f06dd2c8a9c","createdDateTimeUtc":"2021-06-02T15:35:37.9362618Z","lastActionDateTimeUtc":"2021-06-02T15:35:39.1768098Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"227d7245-54a1-4383-81be-7b1679cf252d","createdDateTimeUtc":"2021-06-02T15:34:50.3214464Z","lastActionDateTimeUtc":"2021-06-02T15:34:54.5445251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d538b50a-4739-437e-a430-4a39d552ae9b","createdDateTimeUtc":"2021-06-02T15:34:19.3119357Z","lastActionDateTimeUtc":"2021-06-02T15:34:24.1613577Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f459e67d-3ef8-4dd5-9441-f037a9ef7bb9","createdDateTimeUtc":"2021-06-02T15:33:45.8406241Z","lastActionDateTimeUtc":"2021-06-02T15:33:48.97718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bcccc81-50c4-4930-b8c7-8166cd494fd0","createdDateTimeUtc":"2021-06-02T15:33:11.144037Z","lastActionDateTimeUtc":"2021-06-02T15:33:14.3246317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6932315e-6bda-408a-a072-d5a13492cbae","createdDateTimeUtc":"2021-06-02T15:32:22.5094146Z","lastActionDateTimeUtc":"2021-06-02T15:32:23.8496169Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f32e8631-bc29-48a4-94f1-de98861fa26b","createdDateTimeUtc":"2021-06-02T15:31:51.3977201Z","lastActionDateTimeUtc":"2021-06-02T15:31:58.5898438Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"037a7fa0-4dc3-4883-8f79-a92aa2b1bf20","createdDateTimeUtc":"2021-06-02T15:31:20.0453083Z","lastActionDateTimeUtc":"2021-06-02T15:31:23.4805698Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"952041da-4da4-43c8-a8f3-8e1742f2beb9","createdDateTimeUtc":"2021-06-02T15:30:48.630454Z","lastActionDateTimeUtc":"2021-06-02T15:30:52.4630271Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"58d95d16-9284-48bd-ace3-dd961197bcde","createdDateTimeUtc":"2021-06-02T07:07:21.3198845Z","lastActionDateTimeUtc":"2021-06-02T07:07:22.583496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72d34ce8-d861-4d6c-a410-d6337f303948","createdDateTimeUtc":"2021-06-02T07:07:14.7915463Z","lastActionDateTimeUtc":"2021-06-02T07:07:15.5245593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70081137-fe6d-466f-953e-2670c8f5e6da","createdDateTimeUtc":"2021-06-02T07:07:08.454661Z","lastActionDateTimeUtc":"2021-06-02T07:07:10.4666065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"113ad1aa-d9f6-4b15-a610-267b51c8a138","createdDateTimeUtc":"2021-06-02T07:06:40.2876379Z","lastActionDateTimeUtc":"2021-06-02T07:06:43.4469925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"171c4e8e-4733-4b42-b3ed-cbe9481c0d3d","createdDateTimeUtc":"2021-06-02T07:06:34.1550079Z","lastActionDateTimeUtc":"2021-06-02T07:06:34.2834432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"384343e6-a44b-49e9-91ef-d62cf39d44dc","createdDateTimeUtc":"2021-06-02T07:06:28.0100687Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.4305067Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c4182d40-ee61-40f5-b3ac-31bc4aaed8b8","createdDateTimeUtc":"2021-06-02T07:06:22.1439114Z","lastActionDateTimeUtc":"2021-06-02T07:06:22.2296325Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2295cf18-0237-4b0b-ac37-42d91ba98d4e","createdDateTimeUtc":"2021-06-02T07:06:14.1851872Z","lastActionDateTimeUtc":"2021-06-02T07:06:16.4424397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386e26c8-49dd-4eb5-ae3f-95bbc1809b38","createdDateTimeUtc":"2021-06-02T07:03:22.7902994Z","lastActionDateTimeUtc":"2021-06-02T07:03:23.1220631Z","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/batches?$skip=50&$top=410&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' headers: - apim-request-id: 277086e1-fa60-4e03-9ac8-edda55cbe040 + apim-request-id: 1a25e03a-efc2-4591-b615-87e2606633ce cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:24 GMT - etag: '"7BA23FBB91EA1DC273FE254E63443F5974C00A00670DEF7813B93EBFB8A729D5"' + date: Wed, 02 Jun 2021 15:51:11 GMT + etag: '"9376230D76763A212FC95C871D96385226CD911DA9ADA6BDAFB8B1B0DEAFEC07"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 277086e1-fa60-4e03-9ac8-edda55cbe040 + x-requestid: 1a25e03a-efc2-4591-b615-87e2606633ce status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8a70868e-5199-49fe-b631-b8e6807e257d + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc - request: body: null headers: @@ -733,72 +744,90 @@ 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/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=410&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5948f436-c1b1-414c-9b2c-6d3af57f3021","createdDateTimeUtc":"2021-06-02T07:02:43.6134937Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.2264979Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0ab12764-59ff-4e7c-b9a7-88c62f9b9627","createdDateTimeUtc":"2021-06-02T06:56:55.0366689Z","lastActionDateTimeUtc":"2021-06-02T06:57:00.755663Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a9e762d-814f-4d12-b2cf-a686f3c572dd","createdDateTimeUtc":"2021-06-02T06:46:49.3275525Z","lastActionDateTimeUtc":"2021-06-02T06:46:57.3306415Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"68544ede-a20e-444e-a0ae-022199af016c","createdDateTimeUtc":"2021-06-02T06:41:24.4796213Z","lastActionDateTimeUtc":"2021-06-02T06:41:29.4908652Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8070372d-232c-4903-9b76-258c28a454bc","createdDateTimeUtc":"2021-06-02T06:41:18.3169725Z","lastActionDateTimeUtc":"2021-06-02T06:41:18.4692647Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"964fbde3-cb72-4679-815a-b68cb3145f58","createdDateTimeUtc":"2021-06-02T06:41:12.0098122Z","lastActionDateTimeUtc":"2021-06-02T06:41:16.688651Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c345e3b-2a71-4786-a3a9-c1703081324f","createdDateTimeUtc":"2021-06-02T06:41:05.9240834Z","lastActionDateTimeUtc":"2021-06-02T06:41:06.0023015Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4808cb29-461a-4bdc-849a-b8b2402cca93","createdDateTimeUtc":"2021-06-02T06:40:53.7154483Z","lastActionDateTimeUtc":"2021-06-02T06:40:54.3761813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea655e95-0404-4808-bc60-29d5023b58fa","createdDateTimeUtc":"2021-06-02T06:40:30.9135072Z","lastActionDateTimeUtc":"2021-06-02T06:40:31.7975375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ba008d05-8564-4475-9031-2d3e54e8f8bc","createdDateTimeUtc":"2021-06-02T06:40:05.638911Z","lastActionDateTimeUtc":"2021-06-02T06:40:06.5216871Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fd88caa7-54b7-44ad-a5df-b3f38b2006f4","createdDateTimeUtc":"2021-06-02T06:40:04.9897959Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.5795126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"de6d7efa-e94a-43a6-a5e0-10b28f9615ec","createdDateTimeUtc":"2021-06-02T06:40:04.3970363Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2868525Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d84f2015-a418-440f-aa40-c3c4a2c0f535","createdDateTimeUtc":"2021-06-02T06:40:03.8571077Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2818175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d44aa0e2-e11e-4510-8470-b090bd9b2f82","createdDateTimeUtc":"2021-06-02T06:40:03.1588409Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4667969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5aeaacbc-3228-435a-b713-ffb6e835188a","createdDateTimeUtc":"2021-06-02T06:40:02.5798533Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4688227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05f6af9f-6f99-476f-b95d-02e7b30ba973","createdDateTimeUtc":"2021-06-02T06:40:02.0118203Z","lastActionDateTimeUtc":"2021-06-02T06:40:03.6115399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7a23650d-bb6a-4ca8-9569-84fa94fe6800","createdDateTimeUtc":"2021-06-02T06:40:01.4873529Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.5950808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964a78c0-3ac4-4769-bbd8-526686f22c42","createdDateTimeUtc":"2021-06-02T06:40:00.9118738Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.6168181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d8840d4-2706-43e3-9db7-726ade4b28e8","createdDateTimeUtc":"2021-06-02T06:40:00.283617Z","lastActionDateTimeUtc":"2021-06-02T06:40:00.7436838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e302853f-5306-4a81-9d21-62ab1c3cb24f","createdDateTimeUtc":"2021-06-02T06:39:45.0213389Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9897041Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"840ef30b-a12f-49a9-b85b-01cb39acc87b","createdDateTimeUtc":"2021-06-02T06:39:44.5163768Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9895247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3415cb23-56af-4ba6-85c6-dfc4b5542ad8","createdDateTimeUtc":"2021-06-02T06:39:43.9656836Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7506612Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be268620-2e05-4ba2-89ae-1c0b72751bca","createdDateTimeUtc":"2021-06-02T06:39:43.4699657Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7031927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da019c4-f930-419b-8fd0-a26dfc37c494","createdDateTimeUtc":"2021-06-02T06:39:42.9890121Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8240778Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60d59bd2-31c5-4cd7-9a2c-2f4fb5a66a28","createdDateTimeUtc":"2021-06-02T06:39:40.9473475Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8600715Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23632a5-a3cd-4415-8ca9-49d9af346f4c","createdDateTimeUtc":"2021-06-02T06:39:24.1530166Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4860761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"348397fe-5a6d-4254-917e-8a417fe69a18","createdDateTimeUtc":"2021-06-02T06:39:23.6466581Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4112274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6d5cec9-56ba-49eb-a706-f23d8726364c","createdDateTimeUtc":"2021-06-02T06:39:21.4737853Z","lastActionDateTimeUtc":"2021-06-02T06:39:22.7942225Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"675c93a1-a854-4990-8389-7a61b2727f07","createdDateTimeUtc":"2021-06-02T06:39:20.9472043Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.5120454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"525194bb-ef96-4db2-ab08-a915dadddfac","createdDateTimeUtc":"2021-06-02T06:39:20.2491928Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.4901556Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f00445aa-49dc-4412-87eb-553ea2bf7d04","createdDateTimeUtc":"2021-06-02T06:39:08.6574795Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1874519Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba2f1009-fb37-4b26-9028-4b0fff7782e1","createdDateTimeUtc":"2021-06-02T06:39:08.1487463Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1891904Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0e4ce759-4155-4371-8b1e-5856d993a09b","createdDateTimeUtc":"2021-06-02T06:39:07.405402Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8980215Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"430d6fdb-2ede-4359-8866-84f6afd6bdcd","createdDateTimeUtc":"2021-06-02T06:39:06.9117078Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8128538Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8cb80008-0ccb-480d-9ed1-01b8e5f22b0b","createdDateTimeUtc":"2021-06-02T06:39:06.3306336Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.708013Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8e38339f-b8f6-422a-afdf-4d1de19fbab3","createdDateTimeUtc":"2021-06-02T06:39:00.7494268Z","lastActionDateTimeUtc":"2021-06-02T06:39:01.3181011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"773b73df-42ae-4197-8198-bc90c557b188","createdDateTimeUtc":"2021-06-02T06:38:54.0646034Z","lastActionDateTimeUtc":"2021-06-02T06:38:56.3798465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"79d237c0-c8ac-4a3b-99bc-de2b9a1e76ef","createdDateTimeUtc":"2021-06-02T06:38:46.309884Z","lastActionDateTimeUtc":"2021-06-02T06:38:49.2573517Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f90c5227-f225-471d-9453-024721f9518f","createdDateTimeUtc":"2021-06-02T06:38:40.7600205Z","lastActionDateTimeUtc":"2021-06-02T06:38:42.2207707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d95d4dcd-6301-4006-a1ac-ac471411900b","createdDateTimeUtc":"2021-06-02T06:38:35.1857718Z","lastActionDateTimeUtc":"2021-06-02T06:38:36.248059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f820ac8-68e8-402b-890a-bb2bdda717e0","createdDateTimeUtc":"2021-06-02T06:38:34.2347962Z","lastActionDateTimeUtc":"2021-06-02T06:38:35.1762805Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbe70865-551f-49f3-ab11-8e71503fb250","createdDateTimeUtc":"2021-06-02T06:38:33.6329499Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9745495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fc1f463-3f90-463c-a8e5-c06153becb1d","createdDateTimeUtc":"2021-06-02T06:38:33.0953339Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9133298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=360&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: e6a10fd4-5d38-438d-8de2-ccc0c6837406 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:51:11 GMT + etag: '"88ACC9B1FA6B0C80D89049B937A302FDCE5441F2B5517525C316BC1041DA00E3"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e6a10fd4-5d38-438d-8de2-ccc0c6837406 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=410&$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/batches?$skip=100&$top=360&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"2d8f3f86-0803-4bac-9ea8-419278691b54","createdDateTimeUtc":"2021-06-02T06:38:25.681571Z","lastActionDateTimeUtc":"2021-06-02T06:38:29.2106941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bb2b0f6-8ac2-418a-9b10-b360447a89a5","createdDateTimeUtc":"2021-06-02T06:38:20.0075742Z","lastActionDateTimeUtc":"2021-06-02T06:38:22.1577533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee6090f4-643f-4016-a931-dacd57b43fa1","createdDateTimeUtc":"2021-06-02T06:38:14.4144376Z","lastActionDateTimeUtc":"2021-06-02T06:38:15.0321792Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d921bb3-d049-4b73-806c-257c1dc96953","createdDateTimeUtc":"2021-06-02T06:38:07.6875606Z","lastActionDateTimeUtc":"2021-06-02T06:38:09.8465419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86272760-b346-482a-87d3-d8b3eeb1431e","createdDateTimeUtc":"2021-06-02T06:38:02.0547056Z","lastActionDateTimeUtc":"2021-06-02T06:38:02.7777345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1ab36b51-3fd7-42b0-806b-e3186a953d2e","createdDateTimeUtc":"2021-06-02T06:37:54.3117337Z","lastActionDateTimeUtc":"2021-06-02T06:37:55.7664263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3a0d3c0-f2fc-4ab6-b669-8c3761494c57","createdDateTimeUtc":"2021-06-02T06:37:47.5767386Z","lastActionDateTimeUtc":"2021-06-02T06:37:49.9643054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"527a3c66-ace4-4790-8c11-5a91053508e0","createdDateTimeUtc":"2021-06-02T06:37:40.8885591Z","lastActionDateTimeUtc":"2021-06-02T06:37:42.8973152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9c7cc60-4eb3-4e1c-b45e-a4604a064ffa","createdDateTimeUtc":"2021-06-02T06:37:35.3559821Z","lastActionDateTimeUtc":"2021-06-02T06:37:35.9147701Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e46e697b-4b91-4cc1-bdc8-d1b5f4f29316","createdDateTimeUtc":"2021-06-02T06:37:29.6705576Z","lastActionDateTimeUtc":"2021-06-02T06:37:30.751147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a414371-9c16-4f5b-b78f-54a1b14f3cb3","createdDateTimeUtc":"2021-06-02T06:37:28.605251Z","lastActionDateTimeUtc":"2021-06-02T06:37:29.7618353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0eafff35-c835-435f-8ba6-5c62ccbcac05","createdDateTimeUtc":"2021-06-02T06:37:28.0226232Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.688448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4e16297-da6d-44a3-b537-2e179b5c57c8","createdDateTimeUtc":"2021-06-02T06:37:27.4859883Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.4461178Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88f6806b-a28c-43b3-80c7-9a3e2a18f98a","createdDateTimeUtc":"2021-06-02T06:37:25.5121262Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.6483773Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0eba3d56-4b51-4fc6-b9ea-755fe87fe711","createdDateTimeUtc":"2021-06-02T06:37:24.8468851Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.4997727Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b719446-a83e-4bc7-9deb-659eebb51328","createdDateTimeUtc":"2021-06-02T06:37:23.7379948Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.2183805Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2bbaa78d-f6a0-43b2-8352-bd0aa6edd744","createdDateTimeUtc":"2021-06-02T06:37:23.0437961Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.9407465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b96b537-29be-4194-a7b4-a05959950142","createdDateTimeUtc":"2021-06-02T06:37:22.0011983Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.6381334Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"754d7123-41c6-45bb-9214-20ccbb325d5c","createdDateTimeUtc":"2021-06-02T06:36:57.8535231Z","lastActionDateTimeUtc":"2021-06-02T06:37:03.3442448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1237295c-47ea-4710-a84e-ed65a8f49dda","createdDateTimeUtc":"2021-06-02T06:36:26.6950836Z","lastActionDateTimeUtc":"2021-06-02T06:36:28.3693909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=310&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 6eb8e0da-e834-466b-969a-9871e68a276c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:51:11 GMT + etag: '"C80859FC79F94B7FCA4B8244D02259678E7ADE98ACA52765C62A49D632AF46D4"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6eb8e0da-e834-466b-969a-9871e68a276c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=360&$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/batches?$skip=150&$top=310&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc response: body: - string: !!binary | - H4sIAAAAAAAEAM2aW28cxxGF/0pAGH5yj6q669YEjFycxyAI4OQhCfLQV5uwJArkyvAF/u+pWUqO - 7TjwdGAQAwHUale9u/Ox6tQ53fPtzZfl5dtxc/vPb2/u+s3tjRUFExuBMedAeY5QJWGoNsRAR2Tt - Nx/dtIdRLqP/0X/89e7V+Nul+doIEQNwiPhX1FuA28hbTOJL5B++5mV5vPy+Xe7uX//yskQgTGlf - 9ngpl7eP/v/+fH/59FIe/GP3Z9++elUevr65/fbmcn8pL29u40c3s9y99FdvYX+9tfH4eH189/ov - D/efPbz/5+v7y9/H92+1r2vldRsv3y+9vt8nn5eH0i7jYX/w2fWV77776D2kmkfiyiEnSoEIKRjw - CAg8ZeSSYyrHIdEWxS9W0xok2lJGJDgrpCgwLbYY2igSqMQYzATDJKpRTEeDBUhpY4iRhNcgpU0w - +7p8UkhJR2ZgLyKOJRAMDIZtBOsFwVrPucTDkIA2M2+2lJcggW1JLCWkH0H6dL/u0dcYxV9iBAcZ - Mf0H0mwZqs0WSi/NIZG3W0w1dB2lqlqbVY5DSptJVoNlSJCACfCkkJqLQU/qVFAdEnYKpU4LhTVB - 7L2lxCuQkFJUXmu3HRIRmeaTQkoWcxLn02w4pDpnKODqNA1idnxRWz4CSW453zJsqmxkh6fb0zJ0 - KUMzlB9B+uT7a/k5SPh/StKPIeERSQIVjIlnqL25A1CWUGaKoXLvohkB+JBuXy+W8mYZM9vhQnrP - CA0o60kZDWkNWsfQRKcbgOqMemohzUncbfA8ZgDeM0JAUIzLjCAhw0kZUe5zoNfRqNXn26zTVTty - SGxpFmZvnXackc8oX2KHRfs9IkiWMKdzImoJRm3KQZFdjmK2YA0k5N5dxXs1angckW4SxfVI1xjB - liMSgZ2TkcSaRjILSO4liXJyr43FJbuUij1DSXSckfeMIGTFJUbk4zCBYV5xSP+DEf5acy3qDyAp - iTdY9WkG1R2SR5Oi7IZbGlry/JYEDkNKadO8O521ZkuyQRYTiieFNC0rd5SQsmqgVkrI4IVVqaau - xjnZIYd0vdqom+sR5bg2/GPeQP1z2E4KqXsBkQ/6oA18+sfYgtWKYWD3YCuTRzpeSXv8iuR/1irJ - o60kssgnZUS9RgUPIDQnBhJM7pVKCq4Q0ogTZDgU2p4u1vWX2DKsOaSIm1By13DWbvPJJnl4+YxC - 4HkEeqitgPukNlrMM7tTOgwJ3Uayu520DIld61H0pHkEOrdobhyLlB4o+3CrY98NSFbdbE8PCsfz - iEOKgMJweCPpPSQDznlJkp4TEmesrbo34rbrds8e2oqXU5mtMeoQ4nEckm3k/ca8DmmPw+ms8X8W - kjrjCL3x3m4qHtgw+oSL7gu69+I87rZxF5ecIq21G9LGFCXGs2qSlNKayQg8xCsJCoZSTUIbVStQ - zb2lw5Bg34CNLsBrfhvcOKC68TgrJFKYHccIkLJXUrMarJiGkQmozX1L8mi72S3rllJUXTMAABtZ - NvjJAcB5GHUtamIl1BJdrcVyyEjDSyomiCLIerSQ7DbFzVRdXlbyvy/jzR0ruqk9KaSSpUvuI8Q5 - Pd2S0e633RBYhZEj6VyAtB8lsbnDWpEkX2Ybe7heku1ndUmpaeksAc1NtjdYDHX3A5kmzlFdnPTQ - 1vb1Yn22gac9s5XZZvtsIxP56Q7AeSDViBDNM4lkYfdGVUMVzGF2Iek0WfqhM8knSC7b0Sjaimz7 - suuZJBOfdQuARhFyjQ5uiLzbZEKoKN5yzZ02lJGhHN2StN0AcESFRUnCuEU3V++yzAkhsRtuKVlD - 4THdJZGFPD2jRDIdPuVihuOzDWzTBK74a+0GbtNdt98V4AkhGbfCaD1EmBaoOKSKMQaNo0+vsJz0 - aCjxq/UpBQkXJQnEXXo0o7MWUiwGOmsKUs3HfgX1RgNvPsZakSuIHZckd5IqCnEpuF3RxiSZZcVJ - PmcmyVKQSx0hVZx7cPM4oqihe94stUrqutBttB932FJue2Ik5mZyxUk+JyO3QX3fl/Rm84572rkV - HKFO19FRO1o8egRg+7FtsozytE99HBLtTpLTWesoYYqQjV2r6Xpqa87IUxwWy4D+683tuEkCn1GW - vG9WIsk7RqBMKyaJfx4S/1qQMPEPZlsCLJgtKHbd79xylwRTwgSTQqpCxY5TcgOAGJXXDADsO7fR - 7fbKbHtWSjKUEFoOyVS8lmpzL+leYIr3YeyoA+txSuAOwM3pYiiBfTMpkuDKdHtWSqWnnktyLBF5 - z7cjGEgJCUobk41KPnrodqXk9p2TrDnuvQSdEtuKdD9vLe07RorJR7+rkX/TEbKnt1CazFnURplH - a0lv2W0huZgtHU1e4Ubc45uclVJL0mJtMaQ9sxGyW6WROEBJRbm7jTp8EKD7fpKCvNOXg5B8lW3m - qVjlrFvcBc3cEs2As7l2s3gRTa8pTyTacLhzwqMnSldGHlQJ44oqXSEpeZfriio9JySdXkCde5hT - +36HmxsCHiUAZNXqF9yHHockW8qc17a4r5A4C9DSgHtWr1TyNKwY0hCfbz2CzzfwhFvyQFUfcvNo - MPGr5U2jRtRFSJ7eVITSWU23FKikhYOncPB2GxyMmtdUTV0k+uA7fCfAFRLsp4y2YrqfIImx6Vk1 - yYNlQUwQcmwUKPIMpvu9SqkIVPEffPREya+WtsTeb0v3AV7ZpkxE+azRBJFZTCDMHmOgktx0+0AL - wzvPOjgoOrpX4lebNlbxQlrJuFe2/nvyb3Las8noQS1lDKPUEqh5iKsVeshWeq6t5RbncUhxcy+Z - cl6sJIckkSOu+KRn3QhgaTPnFkplC5TI+TSvJAT32qUXR3d0s+QKCd1MrtqktGEEH6dnLaTmUt0G - ui9y3dxvu9VgiBDGmCNmzyaexo4zQpckAVkKb09oIySys+o2oI+xRBD2W/EC6UR/VHsobghcpbKk - ehwSud92ShZX9gF0v6UZ3HD7Z50UEsbm1o8hKJKHksT7QcAsQV2zI2h31330tOQKCRO5dK+1my8z - ikL5rJVkccyqSUKi6e1WXcEtxxqUhvQEw/vveL4l2RhIFdds0l6AXkbMZzPc//ro5nevx1eXP929 - /sK/0OeXy5vH2xcvvnh481Aud21r95+9vrvcfTkex8OXd/4FtvLN24fhz796cXkorx9flsv9w4uL - v8WLWi7t8xdf4gZPD8fjbz94/OLuzccMH35wufe/5cMPXpWv3pTPxuPdN+P6/P1DHw9/+Prj/8b/ - mz4e2813/wYE6XOs3DkAAA== - headers: - apim-request-id: 7e92778c-892e-43a6-81d8-40279707bac3 + string: '{"value":[{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","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/batches?$skip=200&$top=260&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 4809e40a-6e0e-4e68-bee4-0ba13ac7eee8 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:24 GMT - etag: '"2F59052C5CAE44F0C8A97BE9DBE3A85C26506FBD03B1BFBE336C6260913B63AE"' + date: Wed, 02 Jun 2021 15:51:11 GMT + etag: '"6A6AC276026A10A950A96414C233A6412D54C3533B47990FEF4B99A53618822D"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7e92778c-892e-43a6-81d8-40279707bac3 + x-requestid: 4809e40a-6e0e-4e68-bee4-0ba13ac7eee8 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=310&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc - request: body: null headers: @@ -807,72 +836,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/batches?$skip=50&$top=56&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=260&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc response: body: - string: !!binary | - H4sIAAAAAAAEAM2b2W4cxxWGXyUYGL5Stc5aCwEhi3OZiwB2LpwgF7XKhCVSGI4E24LePadGSqwk - UtIFCEQTBDlbc7q/Ocv/Vx2+Pb3JL173083f3p5u2+nmVJhHbdJcBvZOoICLaVRXfe2jiYza+fTk - VM89X3r7o/347vZl/8ul2rEEhA7UEX6H/kbDjegWAUKU+Fc75kV+uPy+Xm7v7/7fYX4LHDTg9bCH - S768frDXffu61t5bb/PB1y9f5vPPp5u3p8v9Jb843dCT08i3L+zZG5jP22sfHq4P3979+Xz//Hy9 - a0/d3V++75dvL/l8+fDimu9qf/HPQ69/75sf8jnXSz/PG8/nMyrv3j35AKlLQ6pcHLCCE4lsuKi4 - iJ1iYNTBsAIJNHgMsgZJt4AqPuBBIQUPnCEHo1ItkpSDK4PIQRtK3nPPvuyHxJtPGJHXGMnmmezd - jhpIvtTYvWRXJA0n1avdquiEW/U5jQgt72ZEvIkniGuMSDbimJIcNY4aYRSOxSUisYoU1OUUsvNl - cGs5YpO4nxFtEYX4fdbsh8RbMraiclBIQwGIkFxtoTlpCV2JdgVVB0EyUiEuBBJuEpNiWivbExII - SfQHhRS9dD9qdErFIglHdrF077yyl1B9odH3Q4ItBCRNy5Fk70XMdFBI7DtCH+isInQno0QrSQCu - D86YewIodQUSWo+06rIMCSl5OmpN8mhhNCQ5RFGr2wVNJfXgUiq1qNdeNOyGBGFLKqx+DRLETdFC - kP893b7517V8ChJ+GhKsQcLPQoJfGWHzVppLsEKdLZB80YlH7C5p05wDIq4wYkDGRSVpjCTZgYGP - yagOlDxGdMxqZZuTd5mtIoF1ZA5MEnS/2ga/mayKGNIqIzL5Kf+RbIdhlM2DYAqmHhPzVEaWZpnJ - MbFKgd4h7y9IxghIvCZdZYQJAaMek5GmkkxtB2fd3zqbanUxF/sRq1aqPdonvJ+RboIMAcMqI4gx - mNA/JqNEIYH1f4dBi9XsnlzOlnBQIg0aDYrs7f72nTarvSat1sQ2wMYeJIUVHfkZRvilGhuFj3Qk - DTs5C6QAmkwieZPdVqztLpuRD73UpPshoQlCs1+RFiDZN2+s6HXFtD0mIwixlxCrC6VnJ52qK1jZ - IYG0Pqpq35ts/mpRNQaglWTzc4mEEkzZcFBImqeM5O64CjkpUyFpYgdeYjOFlDPIbkgczNkiwloc - cdqmGaG4oiIfk5FQb3Z2piJLCk4CdFdCm2WJY8XgyT7f3YwobTFEH2Gl+xskss5mcIMeFNJ0bCVH - k5HXJRJpYO0/iAtDCkLGxGOv/TdIcUsmddJithkkwkDo00H9iCq0UKqZ/mJCya6PrGwPb1eQC3Bt - kf3+kmSQyLLUutQaJKv2ZD2WVyLpMSFlixZAbK5c7b+BcZHYu9rBBCGXYBm4H1LYPHimJWf7AZJ9 - WvGoK5KInqVFdKGqRVIHdFlrdTzIp9xii3khknBT8mROfgmS2X87LOHSQtJj1iSknkZK5thCNZU0 - rHBna3FuKPg01HTmbkvib1A300jLkYR+UzDFAUeFFEtEmK7fd4lWk2JyJdrdVoI1nIol173r/376 - f/MwFBclAKTNAJlwXVlte9TuBlwSenAhZDO3JNXl5oNjc5sUIueitB8Smpb0oLxWuIE2ljBtyUEh - UWhKNQ7XQU1LjgouNs4uB5BaOAzzJTsh6Y3GzVRzUL+ik3QavhnC4bhispXBPaPppGD2NlXvUhSr - 42r2X3huMab9kHTTBApL2yR2mN9EQkpwVFfScjOjj+SsjRmkONdJrBnbFVh8oUko+7UfEm1qNtmv - LAHodLfXknTYbPPZB6tDbOET5tp217kmaXHVgSpy7iHvdSU6d6kZIvrFQJJrIEHwR10niXPrvXF1 - qYNpyTHISlKZ67h1VA4lRVyAZAXYvJ5RX4PEG3Py4ajJllseoHJdIjHnlqG4XHt1offY557b6Ht7 - m17NfIDIS7vbxggs/gCEjxpIpNghpeK6ZMu2krpLCYtrgilVi4pG+3sbxw0SC+vKLsmVLSMBp6Nu - 3AJlsx9qUpKziW5qcY4AiJtzC8Q4Kq5AChsnM/NLKunKllMKKkd1btlip3IaroS5cesjuKKdrSSZ - BRsxm+nda2/tav3mxZtkWHFu79lylLBUkx4TUqWqOIYVodjQVBKbKelD7CIIavRFxm7nZlerG8xV - 2KURgCtbCvNrpSbppyHpl4KErB/tAtSKvUh3SlMCWGdzBaPVKCvoHmIzl7sQSmJFyYzbYiTJZmR9 - WtoFeFxIGcmPYjK7J3ACmg1S63OrBCGF3Lvs3d+2y+XNCpJQXKzcsmlkk0pHhQTdF5w7kXOIywl7 - g1RNLFkFnuKA6sD9gptpg1m412SSMSKfksnQo0LSDL62Wl1NUwNwrK5kjm4U0kgz3XZPAehcYWRL - NlqaAnifpSSwNuH2qJRqbtFnq9oMweQkaXfF9K/L5ttyjsyWd7spkWlnNIMBayKAdIsk9q5HkpP4 - kZxMndSbBXF26snMWxZnddw78221tMIJyv7KDWmb40UhrpVuhC16sQ/kSEslH0MiUZTB6tAzmQgY - 3pW5qGRpFqgG7y0fd0KSuQpgTRJ1aVhS5gqLnUYAWZm6iV9kWiLumZYwxZ3iSOR8atbddA63AQfX - E0Fhaj3GvUJJpnYOKXjQlWyTaXCRLZRkZfX2cTVA4blT5p33aJFU63A5QzBjAm0AzSm3vZVbZnFB - sLSNK7NJBtcsblSFsLKgFD5NKXwxSjH9SsmMR85kp429mn2LCV0eFkupSoU67BwXYgnJfBiw+hXR - LXO7xCDRh4J/xFgqkP0YjR2FAnMaoLromziqBa3C6BDZTwl08ygISyZX5jaLkiS/tFzyqJRyrgyN - 1IXC5nKrkovZSnkVb42qYurXs9xDiedegCdUWPq3EplTXGjlbGkaAOEzDW6xeP+vVaWPB0vFXGmf - ORaFDRMUF+cYbgq9Eg6lkfaKJcM0p9aSKK8UJp6dUSQGWBNLn4km/GLhZE7tozZXKYmfGybRW9Kh - XUKqRC73mCBo9Rz2c+KZPWbrl0wczxEwJjuJpa2lR0263kbymY2N79XJyGZ665yc8FU45Rhb2zvu - zrPNgQowrNg4vo7uyJweO17S/f3J6Xd3/afLn27vfrRz+uFyefVw8/Tpj+dX53y5rVu9f353e7l9 - 0x/6+c2tncKWf3l97vb4y6eXc757eJEv9+enF/sTT0u+1B+evsEN3t/sD7/96uHH21fPTBp8/dXl - /tUz//VXL/NPr/Lz/nD7S3+m9vD9ufXzH35+9t8fwG9af6ind/8A9IaUdec5AAA= - headers: - apim-request-id: 4b43c238-efda-42c3-bb16-a55faa141d41 + string: '{"value":[{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=210&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 446ed3fd-6ca0-4c91-9f5d-c61018d53588 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:25 GMT - etag: '"B877A95E7225F2AD853920777E833292CD1C219BD296DB88A060BE481E3808BC"' + date: Wed, 02 Jun 2021 15:51:11 GMT + etag: '"AAED3EDBE860F98D42421A56F29D357632323F9545FD53053CB13AC6B57F7D11"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4b43c238-efda-42c3-bb16-a55faa141d41 + x-requestid: 446ed3fd-6ca0-4c91-9f5d-c61018d53588 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=50&$top=56&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=260&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc - request: body: null headers: @@ -881,35 +866,149 @@ 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/batches?$skip=100&$top=6&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=210&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc response: body: - string: !!binary | - H4sIAAAAAAAEAM2Uy4obMRBF/6XXVlNVKr16NyQfEJjJIglZ6Dkx+AFtORCM/z1le0I2gbQhBEMj - WlLdburoXp2G73FzrMP05TSsyzANqXnv0WblgtWKkwYVgmcVYgW0jkN0blgNea6x1/Jehpf1tn7s - WbQEhAqMInxBOxk9gRkpaKAQPotmEw/9Kff1fvcXGerREgJeVYce+/EgZc/HnGsttVwWj9ttnH8M - 02no+x43w4SwGlpcb2R7gkuBFB8Ot/X17sO8f52vc5nu9v1T7c89zv2tOsddrptf2usX332Lc8y9 - zpeX18sOOTifV2+YKDadLJNqTeBw0VmlWq20UZxBkJYcLcREk4FRo7VeuzswicyNclbBor+Dk/kz - JvOvKKE2vykVqgZszapgQcUNi0oIUaVY2VhjayuwmJJ2o3HWiy/uosR6BPkZ0z1u+q+UQs7MKF6y - KRmJHFgVg0/KNRNS1Ck0TospAUl2AM3NFIspgcAN1lAwj0upRg4QlOGQhFIkFXS2qjA3F5sLmutC - SngxBUue3a3dhZRQnpGcN+T0o1IiconYssqEkjhvJXE6N6WZcyMwpsQl1zegGOmSOA/AZHkhpZuM - cfTkHfHD3Utfzz8B5SrFL/AGAAA= - headers: - apim-request-id: f3f22df4-19ac-4cdd-9960-2818916574b1 + string: '{"value":[{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=160&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 59779b4e-8bef-48a6-ad47-c14a4dca6850 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:51:11 GMT + etag: '"420B738DFB7758208DDDE40AD8950A1559165EB5D57D3E3DFD68FEBE347BC6DB"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 59779b4e-8bef-48a6-ad47-c14a4dca6850 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=210&$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/batches?$skip=300&$top=160&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=110&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 2a87bc49-5dc2-4cb7-b7ad-867287438329 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:51:12 GMT + etag: '"7A5ABE048214A918986F2DE2CC97751D66CCD9959102F64986137DB785717048"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2a87bc49-5dc2-4cb7-b7ad-867287438329 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=160&$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/batches?$skip=350&$top=110&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=60&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 28284082-9c74-49c0-9694-bfb75eca1866 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:51:12 GMT + etag: '"08B3127150A111079DAB57DDC0FC1ADA067217BF3950F1D06264745F98207F80"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 28284082-9c74-49c0-9694-bfb75eca1866 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=110&$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/batches?$skip=400&$top=60&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","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/batches?$skip=450&$top=10&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: ed9534b0-e998-4743-a546-100af59629ed + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:51:12 GMT + etag: '"40055480D3BB757696273746C5F4B3967A9EB9CF59F137E1D8B55A7684666F98"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ed9534b0-e998-4743-a546-100af59629ed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=60&$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/batches?$skip=450&$top=10&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + headers: + apim-request-id: cb434f67-d2b5-4ce0-ac94-aaaccc4a024d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:25 GMT - etag: '"202FE4C2E7449D0B4B002E9244F40BC168E04A9E24C6DD8B8D3F6828D63C2B44"' + date: Wed, 02 Jun 2021 15:51:12 GMT + etag: '"6549D4755C2F03F49C11661222BD48FBA6BE5EAFF3A21EDB4A09254F41DCDE7B"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f3f22df4-19ac-4cdd-9960-2818916574b1 + x-requestid: cb434f67-d2b5-4ce0-ac94-aaaccc4a024d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=100&$top=6&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=450&$top=10&$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 index fd2fe128cc99..0c2f17e82527 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:12 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcb506a070-ac20-4af3-9f76-1b86af417c78?restype=container + uri: https://redacted.blob.core.windows.net/srcc3400f71-a66d-40cc-be65-61816075740e?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:25 GMT + - Wed, 02 Jun 2021 15:51:12 GMT etag: - - '"0x8D91C79EE335360"' + - '"0x8D925DE3F9FED90"' last-modified: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:13 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: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:13 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcb506a070-ac20-4af3-9f76-1b86af417c78/f34f581f-1be5-40fb-ae1f-b201bcef18bf.txt + uri: https://redacted.blob.core.windows.net/srcc3400f71-a66d-40cc-be65-61816075740e/b4e82573-4b7d-44e1-95f9-8c8f73a2ecd6.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:12 GMT etag: - - '"0x8D91C79EE3F88C1"' + - '"0x8D925DE3FAC71C0"' last-modified: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:13 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: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:13 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcb506a070-ac20-4af3-9f76-1b86af417c78/54950e17-68fc-4aaf-b199-aaebb7f9b92e.txt + uri: https://redacted.blob.core.windows.net/srcc3400f71-a66d-40cc-be65-61816075740e/bdca72b7-3208-4ef8-8d0a-20eb85d2a07e.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:12 GMT etag: - - '"0x8D91C79EE4D6DFB"' + - '"0x8D925DE3FB7703C"' last-modified: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:13 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:13 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetfba39ded-cf95-4adf-9c82-94a4cde03681?restype=container + uri: https://redacted.blob.core.windows.net/target8eb3fa3b-a1c0-48ef-8ae6-8455982c4830?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:12 GMT etag: - - '"0x8D91C79EE783DDD"' + - '"0x8D925DE3FD5511F"' last-modified: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:13 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,14 +176,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb506a070-ac20-4af3-9f76-1b86af417c78?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfba39ded-cf95-4adf-9c82-94a4cde03681?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc3400f71-a66d-40cc-be65-61816075740e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8eb3fa3b-a1c0-48ef-8ae6-8455982c4830?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '484' Content-Type: - application/json User-Agent: @@ -194,53 +194,46 @@ interactions: body: string: '' headers: - apim-request-id: 08418d06-a521-432e-a7da-5d34e52a2a37 + apim-request-id: 15b99478-e9b8-448a-b5ca-3d52b68434bc content-length: '0' - date: Fri, 21 May 2021 17:00:26 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/749a96d8-8c66-4cd4-96d0-a2052583b90e + date: Wed, 02 Jun 2021 15:51:13 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/aa77e970-5a22-4be5-9d72-27f73226679a set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 08418d06-a521-432e-a7da-5d34e52a2a37 + x-requestid: 15b99478-e9b8-448a-b5ca-3d52b68434bc status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/749a96d8-8c66-4cd4-96d0-a2052583b90e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/aa77e970-5a22-4be5-9d72-27f73226679a response: body: - string: !!binary | - H4sIAAAAAAAEAI2Nu67CMAyG38UzQWlIQ5vt6DAjJGCAzbgBIrWNlLgDQrw7SSWYWaz/4s9+gu/A - wlq32JquEQ0ZIzR1WmQrBSpZq7pZXVrpYAEUHbLrNnkc/OCOTJlVUlVC1kJVh2ptpbTKLNvGGL06 - Z6THxH/EPoy/UrpgiZGnlPe2gfeMMX8t6TQMGB9gn8CBsQcrF3BF3+e2yDQRuZRm7cddDLf4sWPg - k/ueKgnhSK7/oPO9/ztGJHaxiNvcvF5v7xMUsyMBAAA= + string: '{"id":"aa77e970-5a22-4be5-9d72-27f73226679a","createdDateTimeUtc":"2021-06-02T15:51:13.6071265Z","lastActionDateTimeUtc":"2021-06-02T15:51:15.9210393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 3ba77293-6ed4-4bd0-a605-df07b3e4f25b + apim-request-id: 4d54b537-ba67-46be-8f6e-fbef41c5d147 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:26 GMT - etag: '"80B9C16FBF566088119DD5DA639EA64D64CED4EFABAB7A073AA777AB9B2AA3D4"' + date: Wed, 02 Jun 2021 15:51:43 GMT + etag: '"A52ED9D739F9C45A22D9CA8BDACC86EDC1DE8E807DA61517C302E7A389C29DD8"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3ba77293-6ed4-4bd0-a605-df07b3e4f25b + x-requestid: 4d54b537-ba67-46be-8f6e-fbef41c5d147 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/749a96d8-8c66-4cd4-96d0-a2052583b90e + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/aa77e970-5a22-4be5-9d72-27f73226679a - request: body: null headers: @@ -255,11 +248,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:43 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src11394772-054d-4855-8106-e8abff4d5471?restype=container + uri: https://redacted.blob.core.windows.net/src87a9c08a-7154-4e2b-8d27-44d9bf0e6ef6?restype=container response: body: string: '' @@ -267,11 +260,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:43 GMT etag: - - '"0x8D91C79EED26A05"' + - '"0x8D925DE5232796A"' last-modified: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -299,11 +292,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src11394772-054d-4855-8106-e8abff4d5471/16c9bec7-186a-416b-9fed-693400bef98e.txt + uri: https://redacted.blob.core.windows.net/src87a9c08a-7154-4e2b-8d27-44d9bf0e6ef6/9762b43f-cfa6-4e91-967c-ce042a1f85e6.txt response: body: string: '' @@ -313,11 +306,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:43 GMT etag: - - '"0x8D91C79EEE5D24C"' + - '"0x8D925DE523D8D5F"' last-modified: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -349,11 +342,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src11394772-054d-4855-8106-e8abff4d5471/b9c7fd56-7588-427f-b8a7-b0ddd1a961d6.txt + uri: https://redacted.blob.core.windows.net/src87a9c08a-7154-4e2b-8d27-44d9bf0e6ef6/ef6de05c-b6fd-4727-8f7d-1200deb714a7.txt response: body: string: '' @@ -363,11 +356,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:43 GMT etag: - - '"0x8D91C79EEF5176B"' + - '"0x8D925DE524A8804"' last-modified: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -393,11 +386,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:44 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target80777428-cab0-4fbf-9f29-3f18ba345713?restype=container + uri: https://redacted.blob.core.windows.net/target1cbc6eeb-b22a-4cb5-9b7d-3ae8ae918c7c?restype=container response: body: string: '' @@ -405,11 +398,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:26 GMT + - Wed, 02 Jun 2021 15:51:43 GMT etag: - - '"0x8D91C79EF20E8F8"' + - '"0x8D925DE526B50C1"' last-modified: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:51:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -418,14 +411,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src11394772-054d-4855-8106-e8abff4d5471?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target80777428-cab0-4fbf-9f29-3f18ba345713?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src87a9c08a-7154-4e2b-8d27-44d9bf0e6ef6?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1cbc6eeb-b22a-4cb5-9b7d-3ae8ae918c7c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '488' + - '484' Content-Type: - application/json User-Agent: @@ -436,53 +429,46 @@ interactions: body: string: '' headers: - apim-request-id: 761f2fc8-31d0-43fc-a631-509632ec8c1a + apim-request-id: 463c656f-f26f-4bff-9069-566740ead313 content-length: '0' - date: Fri, 21 May 2021 17:00:27 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6e3eb0c0-8495-4314-b2bf-35db0019901b + date: Wed, 02 Jun 2021 15:51:43 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/641d98b3-adad-43f5-9d47-8a0a0d63c40f set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 761f2fc8-31d0-43fc-a631-509632ec8c1a + x-requestid: 463c656f-f26f-4bff-9069-566740ead313 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/6e3eb0c0-8495-4314-b2bf-35db0019901b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/641d98b3-adad-43f5-9d47-8a0a0d63c40f response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE30VzVFDyT2JtQTsXBZoO7UbRTCLAtgCJHoog717JQDpnIY53/I43 - FUblVM8NeyDQh3bodNuYVnvrz7rpRg9ghgGMVztFiVF4fCvjFGb+EiqsBWs0dNqak9k7AGf3L0Nj - +r61P4WZMMuRJMTlWayrWBaUNZe79yifgqm8re46z5h+lbspiYKTcrBTZwxTSavMKxHnvOmwfKR4 - SY91ifLN/1XVIVyIpwe69b1eMSEJpyouW3K//wE3LGpBJAEAAA== + string: '{"id":"641d98b3-adad-43f5-9d47-8a0a0d63c40f","createdDateTimeUtc":"2021-06-02T15:51:44.5778968Z","lastActionDateTimeUtc":"2021-06-02T15:51:50.9685839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 6b5a169b-2d8d-4f6f-9e2e-b14d28952b3a + apim-request-id: e84a2768-59f0-4bcb-ab78-6e7b58a1e055 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:27 GMT - etag: '"EA9201C4C62398458E01AD19E1635BCD2A2D897EDAB682CD68A89C02A56A2581"' + date: Wed, 02 Jun 2021 15:52:14 GMT + etag: '"68E7178E9BFDC981F49610E60B7CEE128E2A427E6DFC1C2348A585BB5ACEC7DE"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6b5a169b-2d8d-4f6f-9e2e-b14d28952b3a + x-requestid: e84a2768-59f0-4bcb-ab78-6e7b58a1e055 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6e3eb0c0-8495-4314-b2bf-35db0019901b + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/641d98b3-adad-43f5-9d47-8a0a0d63c40f - request: body: null headers: @@ -497,11 +483,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcceb3b144-dcb5-4684-9ecb-55e4cf7c12f9?restype=container + uri: https://redacted.blob.core.windows.net/srcabb0bb0a-0116-4270-8a79-cfb10a908e41?restype=container response: body: string: '' @@ -509,11 +495,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:52:14 GMT etag: - - '"0x8D91C79EF5FBA3D"' + - '"0x8D925DE64A0EADA"' last-modified: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -541,11 +527,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:15 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcceb3b144-dcb5-4684-9ecb-55e4cf7c12f9/10843aa5-a0a2-4bd2-a8a1-d4727926784b.txt + uri: https://redacted.blob.core.windows.net/srcabb0bb0a-0116-4270-8a79-cfb10a908e41/b69fc9a0-aea4-40a1-9ce4-ecec6801e0d4.txt response: body: string: '' @@ -555,11 +541,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:52:14 GMT etag: - - '"0x8D91C79EF722647"' + - '"0x8D925DE64ABD8B9"' last-modified: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -591,11 +577,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:15 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcceb3b144-dcb5-4684-9ecb-55e4cf7c12f9/f3601e24-be10-4616-9746-3496d82b7b54.txt + uri: https://redacted.blob.core.windows.net/srcabb0bb0a-0116-4270-8a79-cfb10a908e41/f8e125f5-1a9c-4af5-8073-9a0c4061665d.txt response: body: string: '' @@ -605,11 +591,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:14 GMT etag: - - '"0x8D91C79EF7E367C"' + - '"0x8D925DE64B5504A"' last-modified: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -635,11 +621,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:15 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target0f91a4a7-fd0b-4cc1-b58b-b2bc6e6ac304?restype=container + uri: https://redacted.blob.core.windows.net/targetf8719f00-cd02-42da-be82-faff0e2153df?restype=container response: body: string: '' @@ -647,11 +633,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:27 GMT + - Wed, 02 Jun 2021 15:52:14 GMT etag: - - '"0x8D91C79EFB34E87"' + - '"0x8D925DE64D3BE6D"' last-modified: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:52:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -660,14 +646,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcceb3b144-dcb5-4684-9ecb-55e4cf7c12f9?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0f91a4a7-fd0b-4cc1-b58b-b2bc6e6ac304?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcabb0bb0a-0116-4270-8a79-cfb10a908e41?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf8719f00-cd02-42da-be82-faff0e2153df?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -678,53 +664,46 @@ interactions: body: string: '' headers: - apim-request-id: 6ae0d21d-cddd-4fe4-aa54-2082c7f7e065 + apim-request-id: 27389b3a-0fa5-4092-9dc4-147297e4d73e content-length: '0' - date: Fri, 21 May 2021 17:00:28 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d8fa5d40-42ed-4219-ae7e-29a7563327b6 + date: Wed, 02 Jun 2021 15:52:14 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/841ddedc-73a2-41cd-afc3-3a3c5865197b set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6ae0d21d-cddd-4fe4-aa54-2082c7f7e065 + x-requestid: 27389b3a-0fa5-4092-9dc4-147297e4d73e status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/d8fa5d40-42ed-4219-ae7e-29a7563327b6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/841ddedc-73a2-41cd-afc3-3a3c5865197b response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzFMjyj2xtQTsHBZIOzcZKjCPAtgCJHoog7x7JQDJ3ORzv+JF3 - 8A4MuP6KrWukaBS5LNUgkDQJNaBuu7pW+reDHdhIyOQ+s5z9TN9sM6ukqoRsharOlTZSGtXv+7Yb - mrq+ZGbCxAfLPiz/xXTBEiOvKe8dA58YY35b0nWeMf6BuQMHxgmM3MEV/ZTbYtNqLaW0eb98xTDG - 17gE/qH3qZJYXCxNL3S793HDiJYpFjNuzePxBC5qVrQkAQAA + string: '{"id":"841ddedc-73a2-41cd-afc3-3a3c5865197b","createdDateTimeUtc":"2021-06-02T15:52:15.460274Z","lastActionDateTimeUtc":"2021-06-02T15:52:21.0234394Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 3972fd60-a64e-4302-8ce4-aab4b358f150 + apim-request-id: 20fc90cd-3526-4324-8b55-ebe8437bbaee cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:28 GMT - etag: '"AAC9262C6D18922F1E094E404CDBA4B8FC62D1675B8982B88189476E48A3629C"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:52:45 GMT + etag: '"7380BD23A0F11BBFC0F37C5773E1E95B49D5956A9670E0CAD506E1BF129C7239"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3972fd60-a64e-4302-8ce4-aab4b358f150 + x-requestid: 20fc90cd-3526-4324-8b55-ebe8437bbaee status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d8fa5d40-42ed-4219-ae7e-29a7563327b6 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/841ddedc-73a2-41cd-afc3-3a3c5865197b - request: body: null headers: @@ -739,11 +718,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:53:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src22966ded-4bee-4386-8c76-facd31b353d0?restype=container + uri: https://redacted.blob.core.windows.net/srcfbf8b15c-d2de-4373-a3df-a5749ae63477?restype=container response: body: string: '' @@ -751,11 +730,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:53:31 GMT etag: - - '"0x8D91C79EFF5B6EB"' + - '"0x8D925DE92E4918F"' last-modified: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:53:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -783,11 +762,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:53:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src22966ded-4bee-4386-8c76-facd31b353d0/13e8332b-7660-4537-b5d1-78d474f3af7d.txt + uri: https://redacted.blob.core.windows.net/srcfbf8b15c-d2de-4373-a3df-a5749ae63477/63de6c4d-bc00-40ce-b3ed-dc34cb444eaf.txt response: body: string: '' @@ -797,11 +776,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:53:31 GMT etag: - - '"0x8D91C79F001D671"' + - '"0x8D925DE92EF389B"' last-modified: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:53:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -833,11 +812,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:53:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src22966ded-4bee-4386-8c76-facd31b353d0/2e010961-e3df-48e5-bf65-d846c176c730.txt + uri: https://redacted.blob.core.windows.net/srcfbf8b15c-d2de-4373-a3df-a5749ae63477/3d32fee5-60b2-4a45-b776-cc31cf5e7835.txt response: body: string: '' @@ -847,11 +826,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:53:31 GMT etag: - - '"0x8D91C79F00F4668"' + - '"0x8D925DE92F6B414"' last-modified: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:53:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -877,11 +856,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:53:32 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target28bc3430-8d1c-49a1-80a3-2c9d587d97d7?restype=container + uri: https://redacted.blob.core.windows.net/target00fd5f15-450f-4103-b229-dc3ff93fd811?restype=container response: body: string: '' @@ -889,11 +868,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:28 GMT + - Wed, 02 Jun 2021 15:53:32 GMT etag: - - '"0x8D91C79F0360858"' + - '"0x8D925DE9312B8EC"' last-modified: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:53:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -902,14 +881,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src22966ded-4bee-4386-8c76-facd31b353d0?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target28bc3430-8d1c-49a1-80a3-2c9d587d97d7?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfbf8b15c-d2de-4373-a3df-a5749ae63477?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target00fd5f15-450f-4103-b229-dc3ff93fd811?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '488' + - '484' Content-Type: - application/json User-Agent: @@ -920,53 +899,46 @@ interactions: body: string: '' headers: - apim-request-id: 108e7330-3787-4baa-9d9e-595b6ac8c153 + apim-request-id: 3cb8142c-6b19-4a01-9c35-add5bbca5017 content-length: '0' - date: Fri, 21 May 2021 17:00:29 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/00e3c6b6-5b1e-43fb-977d-0044a7fb0c95 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:53:32 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ca100a2c-9da7-4f39-b0ab-31fa617d9948 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 108e7330-3787-4baa-9d9e-595b6ac8c153 + x-requestid: 3cb8142c-6b19-4a01-9c35-add5bbca5017 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/00e3c6b6-5b1e-43fb-977d-0044a7fb0c95 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ca100a2c-9da7-4f39-b0ab-31fa617d9948 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/0VzFFCyHNXainYOCiQZ0o2m5VSAbQESPRRB/j2SgXTuQhzv+I53 - EQbhBIBv6NAfZNsrL00z9rKzdpAAxqAde6CuFTtBySP74bOMc5j9hamwGrSS0Eqtzso6AKe7vW20 - eTP2uzATZn4nDnH5J9aqimVGXnO5O0Y+MabytrrrPGP6Fe4uODJOwsFOjBimklaZVyKf86bD8pXi - Lb3WJfLV/1VVh3AhP73Qre/jBxMS+1TFbUsejyfqZKKyJAEAAA== + string: '{"id":"ca100a2c-9da7-4f39-b0ab-31fa617d9948","createdDateTimeUtc":"2021-06-02T15:53:33.2513281Z","lastActionDateTimeUtc":"2021-06-02T15:53:36.035775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 3ce8eaaf-fcf9-425c-a9ad-f267dadb8c9d + apim-request-id: 252ec01d-3a77-45da-95e7-5459eb251a9c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:29 GMT - etag: '"CDB83FFE00CB79C5A40ECE0DE0916E2F67AC4AFEE5D4F018CA61FDCDC8AA8467"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:54:03 GMT + etag: '"784FEB749D25C59667043B295CBA683D5A551FEFCD628DC68F872FB0B9FF437B"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3ce8eaaf-fcf9-425c-a9ad-f267dadb8c9d + x-requestid: 252ec01d-3a77-45da-95e7-5459eb251a9c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/00e3c6b6-5b1e-43fb-977d-0044a7fb0c95 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ca100a2c-9da7-4f39-b0ab-31fa617d9948 - request: body: null headers: @@ -981,11 +953,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:54:03 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcb60a00e8-9bcf-407f-8f83-0d41774cb5b0?restype=container + uri: https://redacted.blob.core.windows.net/src90f5ac2b-4470-4ef7-903d-a600f8ad3e79?restype=container response: body: string: '' @@ -993,11 +965,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:54:03 GMT etag: - - '"0x8D91C79F07827AE"' + - '"0x8D925DEA5895B31"' last-modified: - - Fri, 21 May 2021 17:00:30 GMT + - Wed, 02 Jun 2021 15:54:03 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1025,11 +997,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:30 GMT + - Wed, 02 Jun 2021 15:54:04 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcb60a00e8-9bcf-407f-8f83-0d41774cb5b0/a1f4a8fd-5767-401c-95b1-a8b90ff519d4.txt + uri: https://redacted.blob.core.windows.net/src90f5ac2b-4470-4ef7-903d-a600f8ad3e79/ccd21ea7-0a7e-4807-a944-480855be6f10.txt response: body: string: '' @@ -1039,11 +1011,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:54:03 GMT etag: - - '"0x8D91C79F0832C10"' + - '"0x8D925DEA5953FC4"' last-modified: - - Fri, 21 May 2021 17:00:30 GMT + - Wed, 02 Jun 2021 15:54:04 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1075,11 +1047,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:30 GMT + - Wed, 02 Jun 2021 15:54:04 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcb60a00e8-9bcf-407f-8f83-0d41774cb5b0/6685fc13-96a2-4c20-9d8d-012c7167709c.txt + uri: https://redacted.blob.core.windows.net/src90f5ac2b-4470-4ef7-903d-a600f8ad3e79/35268552-033d-4411-9883-5d1d03523d75.txt response: body: string: '' @@ -1089,11 +1061,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:54:03 GMT etag: - - '"0x8D91C79F08EEE06"' + - '"0x8D925DEA5A06555"' last-modified: - - Fri, 21 May 2021 17:00:30 GMT + - Wed, 02 Jun 2021 15:54:04 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1119,11 +1091,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:30 GMT + - Wed, 02 Jun 2021 15:54:04 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target003e1569-f00f-4f93-80ce-0d5f4fc8cb46?restype=container + uri: https://redacted.blob.core.windows.net/target3fe0820c-0eac-4083-a101-0b665baf47e5?restype=container response: body: string: '' @@ -1131,11 +1103,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:29 GMT + - Wed, 02 Jun 2021 15:54:04 GMT etag: - - '"0x8D91C79F0B81522"' + - '"0x8D925DEA5C3F08D"' last-modified: - - Fri, 21 May 2021 17:00:30 GMT + - Wed, 02 Jun 2021 15:54:04 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1144,8 +1116,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb60a00e8-9bcf-407f-8f83-0d41774cb5b0?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target003e1569-f00f-4f93-80ce-0d5f4fc8cb46?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src90f5ac2b-4470-4ef7-903d-a600f8ad3e79?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3fe0820c-0eac-4083-a101-0b665baf47e5?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -1162,19 +1134,75 @@ interactions: body: string: '' headers: - apim-request-id: 58594033-1b88-4ee3-a3df-995566efd3ec + apim-request-id: 8068c303-aadd-4780-90a6-72a081388d72 content-length: '0' - date: Fri, 21 May 2021 17:00:30 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2d9ba06f-faaa-4813-9ae4-52b0275d64d9 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:54:04 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6c308dab-d685-4f39-afda-99bd95fb5854 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 58594033-1b88-4ee3-a3df-995566efd3ec + x-requestid: 8068c303-aadd-4780-90a6-72a081388d72 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches +- 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/batches/6c308dab-d685-4f39-afda-99bd95fb5854 + response: + body: + string: '{"id":"6c308dab-d685-4f39-afda-99bd95fb5854","createdDateTimeUtc":"2021-06-02T15:54:04.4107814Z","lastActionDateTimeUtc":"2021-06-02T15:54:06.1602589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: bd4c07da-61ac-4163-8fce-b589c04b6122 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"AA51DB1C1560BFBD2C6879711095EA90CD63F12905AF0FDBA7AF535E325FA37D"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bd4c07da-61ac-4163-8fce-b589c04b6122 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6c308dab-d685-4f39-afda-99bd95fb5854 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6c308dab-d685-4f39-afda-99bd95fb5854","createdDateTimeUtc":"2021-06-02T15:54:04.4107814Z","lastActionDateTimeUtc":"2021-06-02T15:54:06.1602589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca100a2c-9da7-4f39-b0ab-31fa617d9948","createdDateTimeUtc":"2021-06-02T15:53:33.2513281Z","lastActionDateTimeUtc":"2021-06-02T15:53:36.035775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=2&$top=463&$maxpagesize=2"}' + headers: + apim-request-id: d62adb92-b016-4c1c-84d8-fb27a6ee6904 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"8CEF9C57ACE286162C67652053416882BD85E2A9CDF27D19CFC098BD1A073999"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d62adb92-b016-4c1c-84d8-fb27a6ee6904 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0&$maxpagesize=2 - request: body: null headers: @@ -1183,32 +1211,27 @@ 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/batches/2d9ba06f-faaa-4813-9ae4-52b0275d64d9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=2&$top=463&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFNCy7MTaimQOCtQdmo2R5FSAbQESPRSB/72SgWTOQhzv+I4P - 8BY0SNvdCNtBDEQk1LGqRUdOiUbeUB4a2yrbwQ5MdMTOnvPo/eS+2RQWZSWwEbLqq4NG1DXuG6Ww - VvU1MyMl/jDsw/wu1hYsMfGS8t0l8BdTzG+Lu0wTxT/QD+DANILGHQzkx5wWmRZjXEqb9vNnDPf4 - XOfAP+5VVRxDs3HjE936Tr8UybCLRdy3ZF3/ARjIQv8kAQAA + string: '{"value":[{"id":"841ddedc-73a2-41cd-afc3-3a3c5865197b","createdDateTimeUtc":"2021-06-02T15:52:15.460274Z","lastActionDateTimeUtc":"2021-06-02T15:52:21.0234394Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"641d98b3-adad-43f5-9d47-8a0a0d63c40f","createdDateTimeUtc":"2021-06-02T15:51:44.5778968Z","lastActionDateTimeUtc":"2021-06-02T15:51:50.9685839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=4&$top=461&$maxpagesize=2"}' headers: - apim-request-id: 71fcb958-4c22-4416-b480-772c8078520a + apim-request-id: 85208e44-7118-4e63-a260-563a49170ba7 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:30 GMT - etag: '"3C74EB77A2C769D40A8D9681D23F7CB2DE6D648917E5C42FCC7D1B76C879BACE"' + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"E4DEEA091307FDFE58EBB3F2209066AACFA2B8C89A025D7EADB15BFB9CA856D9"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 71fcb958-4c22-4416-b480-772c8078520a + x-requestid: 85208e44-7118-4e63-a260-563a49170ba7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2d9ba06f-faaa-4813-9ae4-52b0275d64d9 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=2&$top=463&$maxpagesize=2 - request: body: null headers: @@ -1217,35 +1240,5110 @@ 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/batches?$skip=0&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=4&$top=461&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa77e970-5a22-4be5-9d72-27f73226679a","createdDateTimeUtc":"2021-06-02T15:51:13.6071265Z","lastActionDateTimeUtc":"2021-06-02T15:51:15.9210393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ae7acfb8-b962-4978-942c-6cba3de07e8f","createdDateTimeUtc":"2021-06-02T15:50:40.6703242Z","lastActionDateTimeUtc":"2021-06-02T15:50:50.7401416Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=6&$top=459&$maxpagesize=2"}' + headers: + apim-request-id: e94d2dbd-f0d9-4d80-b25d-e69aaadfdc84 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"02119CC86A5B0DC0973E79BE452560857692D18A74FA5812971802589E359B69"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e94d2dbd-f0d9-4d80-b25d-e69aaadfdc84 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=4&$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/batches?$skip=6&$top=459&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3ced8397-8a10-4f04-8976-146727a17265","createdDateTimeUtc":"2021-06-02T15:50:09.7703098Z","lastActionDateTimeUtc":"2021-06-02T15:50:15.7782398Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2df049c2-88f2-4d49-ad7b-b51f852ce3ae","createdDateTimeUtc":"2021-06-02T15:49:38.5642201Z","lastActionDateTimeUtc":"2021-06-02T15:49:40.7209902Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=8&$top=457&$maxpagesize=2"}' + headers: + apim-request-id: 627ee7a0-21c5-4263-a791-1791c63cc067 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"0D11A93F6B934AD9995F20ED310763F548EA22AF44B9BF92395932A5B6AF2D3F"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 627ee7a0-21c5-4263-a791-1791c63cc067 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=6&$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/batches?$skip=8&$top=457&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b7d138c6-34b9-4862-86fb-cdabc214d204","createdDateTimeUtc":"2021-06-02T15:49:06.1046823Z","lastActionDateTimeUtc":"2021-06-02T15:49:15.7707124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a67c541d-2ea3-4341-9be7-7c6baf258327","createdDateTimeUtc":"2021-06-02T15:48:35.1898562Z","lastActionDateTimeUtc":"2021-06-02T15:48:40.6793835Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=10&$top=455&$maxpagesize=2"}' + headers: + apim-request-id: 16e57417-597d-4c18-a855-72cfd22b1fdd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"AC89F058685A2AB9AFA0C62AA39F6209A02C0599454B4A138FA21C8C091A3E3F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 16e57417-597d-4c18-a855-72cfd22b1fdd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=8&$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/batches?$skip=10&$top=455&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8cef6dc-9699-46b5-9097-17c86e9d428a","createdDateTimeUtc":"2021-06-02T15:48:04.0354645Z","lastActionDateTimeUtc":"2021-06-02T15:48:10.6299243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbb3cde3-a42e-445d-b89d-70449e8840ef","createdDateTimeUtc":"2021-06-02T15:47:21.9381582Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.8271606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=12&$top=453&$maxpagesize=2"}' + headers: + apim-request-id: 6f5a899d-f7d8-49e4-abc7-0d7f4309d144 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"D0A7A03094686498877D8C54C9C947399D75E06AC2020403EE2028B9A2D49867"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6f5a899d-f7d8-49e4-abc7-0d7f4309d144 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=10&$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/batches?$skip=12&$top=453&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b311ad2c-e8ad-4d10-bc18-325a6f08cda0","createdDateTimeUtc":"2021-06-02T15:46:50.8668441Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.7482384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d45fc1e-b2db-458b-a663-059795ae3c3c","createdDateTimeUtc":"2021-06-02T15:46:19.6722056Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.6264139Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=14&$top=451&$maxpagesize=2"}' + headers: + apim-request-id: 3beec6cf-0f08-48cd-b6a8-dcf986319296 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"6E9321E7F17D78650E131BFADF97D4EC5659B6503B12D9DEF7B1071F31791FA5"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3beec6cf-0f08-48cd-b6a8-dcf986319296 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=12&$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/batches?$skip=14&$top=451&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4bd89238-d6e6-45dc-8912-1b955eb512bc","createdDateTimeUtc":"2021-06-02T15:45:48.3203318Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.5535213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54b40e06-6cf7-401b-8537-bc9047946920","createdDateTimeUtc":"2021-06-02T15:45:17.0771317Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.4223719Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=16&$top=449&$maxpagesize=2"}' + headers: + apim-request-id: 006ece57-c884-4fe8-b632-3deb7f390aa0 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"FCD42B3EC155CB8B18F78DDE052B91FE1987B59874C7F7068040DA0B7919B33F"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 006ece57-c884-4fe8-b632-3deb7f390aa0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=14&$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/batches?$skip=16&$top=449&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"35747bc7-da08-4dc5-b67a-9f6f51567313","createdDateTimeUtc":"2021-06-02T15:44:46.0331186Z","lastActionDateTimeUtc":"2021-06-02T15:44:50.3666864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bfefe5c6-e2d9-43c0-88c6-4462af997770","createdDateTimeUtc":"2021-06-02T15:44:15.1438217Z","lastActionDateTimeUtc":"2021-06-02T15:44:20.2936473Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=18&$top=447&$maxpagesize=2"}' + headers: + apim-request-id: 074bc3a2-97fe-4aff-99fe-da2e65119999 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"E027A33833C4918873DB31BF5CFA15D223280CB610FD9F8AB5452AD323031801"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 074bc3a2-97fe-4aff-99fe-da2e65119999 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=16&$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/batches?$skip=18&$top=447&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"24d02912-bfb1-4762-b20c-a82ff6750cb1","createdDateTimeUtc":"2021-06-02T15:43:44.3116426Z","lastActionDateTimeUtc":"2021-06-02T15:43:45.1997808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa247fd3-6fb5-4c4f-ab03-4dac197b79df","createdDateTimeUtc":"2021-06-02T15:43:13.4363016Z","lastActionDateTimeUtc":"2021-06-02T15:43:20.1331654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=20&$top=445&$maxpagesize=2"}' + headers: + apim-request-id: 78359d46-f859-4534-b356-41c4b0ce8ba7 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"0027F5DEE10292105E40510C78B23C2F8E4E98462BFEBB446C6F95D62620B14D"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 78359d46-f859-4534-b356-41c4b0ce8ba7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=18&$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/batches?$skip=20&$top=445&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"74bd8d8b-10e9-4f02-8480-80f6043c2330","createdDateTimeUtc":"2021-06-02T15:42:42.618931Z","lastActionDateTimeUtc":"2021-06-02T15:42:45.1068144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0daad36d-d58b-464a-bf3f-24756c168dab","createdDateTimeUtc":"2021-06-02T15:42:11.4829756Z","lastActionDateTimeUtc":"2021-06-02T15:42:20.0459031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=22&$top=443&$maxpagesize=2"}' + headers: + apim-request-id: 0ea4e839-1e80-4161-b68c-23a8f73d8de1 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"C26ECB918A332B22CEB1F7147543336E59256CA42869ADB9D450E55F524BA38C"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0ea4e839-1e80-4161-b68c-23a8f73d8de1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=20&$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/batches?$skip=22&$top=443&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb","createdDateTimeUtc":"2021-06-02T15:41:40.4875824Z","lastActionDateTimeUtc":"2021-06-02T15:41:45.0055865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49a4073e-a77c-43a8-a5df-624e4353512b","createdDateTimeUtc":"2021-06-02T15:41:09.4884568Z","lastActionDateTimeUtc":"2021-06-02T15:41:15.079891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=24&$top=441&$maxpagesize=2"}' + headers: + apim-request-id: 1ccf4290-fd97-4987-b7c3-a74e5c8d523b + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:34 GMT + etag: '"B02AE8121F1245E8B5B67626677FDAAB81EF147DA89E48EC5C1C45D1FA64302D"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1ccf4290-fd97-4987-b7c3-a74e5c8d523b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=22&$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/batches?$skip=24&$top=441&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"671ec3e7-7651-49de-b5e2-abf216ba6a00","createdDateTimeUtc":"2021-06-02T15:40:36.3117467Z","lastActionDateTimeUtc":"2021-06-02T15:40:39.8287338Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64fcc7b4-da11-4673-8df5-94b579a2a941","createdDateTimeUtc":"2021-06-02T15:40:05.5995431Z","lastActionDateTimeUtc":"2021-06-02T15:40:14.7288062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=26&$top=439&$maxpagesize=2"}' + headers: + apim-request-id: c09fcf35-87cd-4306-87f5-75d977d21bf3 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"59B29E66D67B0BA44EEC7442E801BC3E2FC3C6915B80D8FE1717E2DE19CFDAF5"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c09fcf35-87cd-4306-87f5-75d977d21bf3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=24&$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/batches?$skip=26&$top=439&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fcf5d3bd-350e-48d0-849f-cd30c5c70f6c","createdDateTimeUtc":"2021-06-02T15:39:34.6738498Z","lastActionDateTimeUtc":"2021-06-02T15:39:39.9418091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b1dffbc6-abe0-4650-9da1-bada8545f067","createdDateTimeUtc":"2021-06-02T15:39:03.7253899Z","lastActionDateTimeUtc":"2021-06-02T15:39:09.6415436Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=28&$top=437&$maxpagesize=2"}' + headers: + apim-request-id: a4368f75-2951-48ab-8029-71bbff249902 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"BF17955C3F6E5D726911CAE78B2E8678A24EE467156D7EB10FE521A2591F6A00"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a4368f75-2951-48ab-8029-71bbff249902 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=26&$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/batches?$skip=28&$top=437&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"483f1e94-ed29-4561-b05e-93f8108a250e","createdDateTimeUtc":"2021-06-02T15:38:32.8282822Z","lastActionDateTimeUtc":"2021-06-02T15:38:34.5245464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14b4a15e-8a19-4b18-9005-324a40790e0a","createdDateTimeUtc":"2021-06-02T15:38:01.9108422Z","lastActionDateTimeUtc":"2021-06-02T15:38:09.4423062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=30&$top=435&$maxpagesize=2"}' + headers: + apim-request-id: d16e0609-e394-4eab-8874-4e4b1685971d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"346FBD78A1015FA5E08A38DEB89A5037EF6704E02CA48C8FEB117B2F323A7401"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d16e0609-e394-4eab-8874-4e4b1685971d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=28&$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/batches?$skip=30&$top=435&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a28a0dd-a1f9-41d7-84c1-f0b1113f8789","createdDateTimeUtc":"2021-06-02T15:37:30.8922028Z","lastActionDateTimeUtc":"2021-06-02T15:37:34.9631268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5042709-8ee3-43ca-bd9b-fa7bd59c7265","createdDateTimeUtc":"2021-06-02T15:36:40.1565566Z","lastActionDateTimeUtc":"2021-06-02T15:36:44.3046541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=32&$top=433&$maxpagesize=2"}' + headers: + apim-request-id: 949c3a84-5ae2-4b71-a0b6-b0c0b1fad517 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"4698BA3690897C0B91D20BD77E9E111885134826EBDB2A76715B5B458B2ECD97"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 949c3a84-5ae2-4b71-a0b6-b0c0b1fad517 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=30&$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/batches?$skip=32&$top=433&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b849ea0a-e4a9-46a3-8b28-32a190e543d0","createdDateTimeUtc":"2021-06-02T15:36:08.9101301Z","lastActionDateTimeUtc":"2021-06-02T15:36:09.5400119Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70889650-7a9b-4928-a36f-6f06dd2c8a9c","createdDateTimeUtc":"2021-06-02T15:35:37.9362618Z","lastActionDateTimeUtc":"2021-06-02T15:35:39.1768098Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=34&$top=431&$maxpagesize=2"}' + headers: + apim-request-id: cd73e5a6-a438-4c31-bc70-fe27c699a9e0 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"CFB8F49E5D8A65C6176DB16A16A3255811E73189CFBBA88D3F416ED46EDFBA19"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cd73e5a6-a438-4c31-bc70-fe27c699a9e0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=32&$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/batches?$skip=34&$top=431&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"227d7245-54a1-4383-81be-7b1679cf252d","createdDateTimeUtc":"2021-06-02T15:34:50.3214464Z","lastActionDateTimeUtc":"2021-06-02T15:34:54.5445251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d538b50a-4739-437e-a430-4a39d552ae9b","createdDateTimeUtc":"2021-06-02T15:34:19.3119357Z","lastActionDateTimeUtc":"2021-06-02T15:34:24.1613577Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=36&$top=429&$maxpagesize=2"}' + headers: + apim-request-id: 066bea36-eb20-4aa4-a48b-3edd884de2db + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"DA68DC92F021FAD061C320CE119779EBB2D0114CD97B105654FD7C2C86537554"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 066bea36-eb20-4aa4-a48b-3edd884de2db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=34&$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/batches?$skip=36&$top=429&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f459e67d-3ef8-4dd5-9441-f037a9ef7bb9","createdDateTimeUtc":"2021-06-02T15:33:45.8406241Z","lastActionDateTimeUtc":"2021-06-02T15:33:48.97718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bcccc81-50c4-4930-b8c7-8166cd494fd0","createdDateTimeUtc":"2021-06-02T15:33:11.144037Z","lastActionDateTimeUtc":"2021-06-02T15:33:14.3246317Z","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/batches?$skip=38&$top=427&$maxpagesize=2"}' + headers: + apim-request-id: 7a2e0a69-fc16-41df-acf9-6fb8e9ebf716 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"7831ADF2CA8BB34E1C8694B97A00C9B96A091A583357501EF520F2A1A04E8B88"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7a2e0a69-fc16-41df-acf9-6fb8e9ebf716 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=36&$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/batches?$skip=38&$top=427&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6932315e-6bda-408a-a072-d5a13492cbae","createdDateTimeUtc":"2021-06-02T15:32:22.5094146Z","lastActionDateTimeUtc":"2021-06-02T15:32:23.8496169Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f32e8631-bc29-48a4-94f1-de98861fa26b","createdDateTimeUtc":"2021-06-02T15:31:51.3977201Z","lastActionDateTimeUtc":"2021-06-02T15:31:58.5898438Z","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/batches?$skip=40&$top=425&$maxpagesize=2"}' + headers: + apim-request-id: 002ec0b2-8aef-462e-b7bc-9244590c4c19 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"B26F5C5A4054340C501558E4DE29914C31D361A76A37852F146A49EB43F39C12"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 002ec0b2-8aef-462e-b7bc-9244590c4c19 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=38&$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/batches?$skip=40&$top=425&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"037a7fa0-4dc3-4883-8f79-a92aa2b1bf20","createdDateTimeUtc":"2021-06-02T15:31:20.0453083Z","lastActionDateTimeUtc":"2021-06-02T15:31:23.4805698Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"952041da-4da4-43c8-a8f3-8e1742f2beb9","createdDateTimeUtc":"2021-06-02T15:30:48.630454Z","lastActionDateTimeUtc":"2021-06-02T15:30:52.4630271Z","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/batches?$skip=42&$top=423&$maxpagesize=2"}' + headers: + apim-request-id: 6d79acdc-f3c9-430c-8213-28c7c153b2cd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"1F0A250FA1A9AAFA66BB48D9E3DCA81BB7933B1C7AD4C0B9F6754626020DC9E9"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d79acdc-f3c9-430c-8213-28c7c153b2cd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=40&$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/batches?$skip=42&$top=423&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"58d95d16-9284-48bd-ace3-dd961197bcde","createdDateTimeUtc":"2021-06-02T07:07:21.3198845Z","lastActionDateTimeUtc":"2021-06-02T07:07:22.583496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=44&$top=421&$maxpagesize=2"}' + headers: + apim-request-id: de1b7d6c-bcd8-440b-8c64-e7fc652ae557 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"A7E8D0059C4100ADE505DF385CFBD8B71DA7FF1F05CC1F8CFB8A0D4A8E7DD6C3"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: de1b7d6c-bcd8-440b-8c64-e7fc652ae557 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=42&$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/batches?$skip=44&$top=421&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72d34ce8-d861-4d6c-a410-d6337f303948","createdDateTimeUtc":"2021-06-02T07:07:14.7915463Z","lastActionDateTimeUtc":"2021-06-02T07:07:15.5245593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70081137-fe6d-466f-953e-2670c8f5e6da","createdDateTimeUtc":"2021-06-02T07:07:08.454661Z","lastActionDateTimeUtc":"2021-06-02T07:07:10.4666065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=46&$top=419&$maxpagesize=2"}' + headers: + apim-request-id: f6c1a91a-ef9b-4d0d-bf86-cf26a78a9c82 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"3BD9FE805C8B20FF713BF2FAE482CD74F1F7122CA7E16D366E71E488C0A0F537"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6c1a91a-ef9b-4d0d-bf86-cf26a78a9c82 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=44&$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/batches?$skip=46&$top=419&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=48&$top=417&$maxpagesize=2"}' + headers: + apim-request-id: 2a3bb418-9a8d-4444-be2a-86f1e36d8dcf + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:35 GMT + etag: '"DBEC194346CE01200C1E61800820EFF1040302BBB0435F75B3967DA442AA6A04"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2a3bb418-9a8d-4444-be2a-86f1e36d8dcf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=46&$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/batches?$skip=48&$top=417&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"113ad1aa-d9f6-4b15-a610-267b51c8a138","createdDateTimeUtc":"2021-06-02T07:06:40.2876379Z","lastActionDateTimeUtc":"2021-06-02T07:06:43.4469925Z","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/batches?$skip=50&$top=415&$maxpagesize=2"}' + headers: + apim-request-id: 9e95b05b-192c-4057-a43e-3abec721390c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"A6CC4A19E82C658916C27D098DCAAAF08197AB5CA914901F35FEE1E744B9A6A5"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9e95b05b-192c-4057-a43e-3abec721390c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=48&$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/batches?$skip=50&$top=415&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"171c4e8e-4733-4b42-b3ed-cbe9481c0d3d","createdDateTimeUtc":"2021-06-02T07:06:34.1550079Z","lastActionDateTimeUtc":"2021-06-02T07:06:34.2834432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"384343e6-a44b-49e9-91ef-d62cf39d44dc","createdDateTimeUtc":"2021-06-02T07:06:28.0100687Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.4305067Z","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/batches?$skip=52&$top=413&$maxpagesize=2"}' + headers: + apim-request-id: 1e504b7f-63f4-4c72-9415-8b95a0d534c8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"83174415C8EE055ACF91DEA2DC4350811297E5C7DA07C3317D2B01DDECC7B718"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1e504b7f-63f4-4c72-9415-8b95a0d534c8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$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/batches?$skip=52&$top=413&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c4182d40-ee61-40f5-b3ac-31bc4aaed8b8","createdDateTimeUtc":"2021-06-02T07:06:22.1439114Z","lastActionDateTimeUtc":"2021-06-02T07:06:22.2296325Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2295cf18-0237-4b0b-ac37-42d91ba98d4e","createdDateTimeUtc":"2021-06-02T07:06:14.1851872Z","lastActionDateTimeUtc":"2021-06-02T07:06:16.4424397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=54&$top=411&$maxpagesize=2"}' + headers: + apim-request-id: 07642376-a9f7-4dad-8aeb-c95121da25f3 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"77E578CA25A35F0EF77690520170377191BC0DBE7397C16CCB262F2913E2EDA4"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 07642376-a9f7-4dad-8aeb-c95121da25f3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=52&$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/batches?$skip=54&$top=411&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"386e26c8-49dd-4eb5-ae3f-95bbc1809b38","createdDateTimeUtc":"2021-06-02T07:03:22.7902994Z","lastActionDateTimeUtc":"2021-06-02T07:03:23.1220631Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","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/batches?$skip=56&$top=409&$maxpagesize=2"}' + headers: + apim-request-id: 623b1edd-e422-403d-8334-02f7fab87b5e + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"3A241B9C83A1DA9F0D5B9CE058534615178D86C9A883CB26C7E2C394E56AAF22"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 623b1edd-e422-403d-8334-02f7fab87b5e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=54&$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/batches?$skip=56&$top=409&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5948f436-c1b1-414c-9b2c-6d3af57f3021","createdDateTimeUtc":"2021-06-02T07:02:43.6134937Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.2264979Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0ab12764-59ff-4e7c-b9a7-88c62f9b9627","createdDateTimeUtc":"2021-06-02T06:56:55.0366689Z","lastActionDateTimeUtc":"2021-06-02T06:57:00.755663Z","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/batches?$skip=58&$top=407&$maxpagesize=2"}' + headers: + apim-request-id: 9fdd4078-916b-4a3f-9b19-857222b3338d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"1B337BD03E5CABA8DC0C2CBF5C00E0E082131DA93706858E000046F9856AB3E8"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9fdd4078-916b-4a3f-9b19-857222b3338d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=56&$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/batches?$skip=58&$top=407&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4a9e762d-814f-4d12-b2cf-a686f3c572dd","createdDateTimeUtc":"2021-06-02T06:46:49.3275525Z","lastActionDateTimeUtc":"2021-06-02T06:46:57.3306415Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=60&$top=405&$maxpagesize=2"}' + headers: + apim-request-id: c2c43405-d89d-4837-ac29-2875738c9b7a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"81EFA09E191573D2A8CF8EC9BF0E9CD6BE34C1DD7ACB8D76A0A17A1BAAC19843"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c2c43405-d89d-4837-ac29-2875738c9b7a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=58&$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/batches?$skip=60&$top=405&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=62&$top=403&$maxpagesize=2"}' + headers: + apim-request-id: 430a9fdf-2c54-4a92-8a1d-11ebc0f69dfa + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"43E8327CC5CEDAFAA752FD3E54662B19941FAAB90564B89429345BAEA7B81ABF"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 430a9fdf-2c54-4a92-8a1d-11ebc0f69dfa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=60&$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/batches?$skip=62&$top=403&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=64&$top=401&$maxpagesize=2"}' + headers: + apim-request-id: 69ed768a-85f2-4ff4-b658-a515924bdae3 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"37FCF576E5F8027240786E31FBE855E6BCDE671744D3E01DC069555236A25442"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 69ed768a-85f2-4ff4-b658-a515924bdae3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=62&$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/batches?$skip=64&$top=401&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"68544ede-a20e-444e-a0ae-022199af016c","createdDateTimeUtc":"2021-06-02T06:41:24.4796213Z","lastActionDateTimeUtc":"2021-06-02T06:41:29.4908652Z","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/batches?$skip=66&$top=399&$maxpagesize=2"}' + headers: + apim-request-id: acd22318-a9c8-4132-a604-75f4638dcf92 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"DC8C79044CDEA920B3E91E936C0A31ACCFF046AD0C7D9004B5770A1711378DB6"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: acd22318-a9c8-4132-a604-75f4638dcf92 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=64&$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/batches?$skip=66&$top=399&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8070372d-232c-4903-9b76-258c28a454bc","createdDateTimeUtc":"2021-06-02T06:41:18.3169725Z","lastActionDateTimeUtc":"2021-06-02T06:41:18.4692647Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"964fbde3-cb72-4679-815a-b68cb3145f58","createdDateTimeUtc":"2021-06-02T06:41:12.0098122Z","lastActionDateTimeUtc":"2021-06-02T06:41:16.688651Z","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/batches?$skip=68&$top=397&$maxpagesize=2"}' + headers: + apim-request-id: cde124d6-0afc-42f0-8a4c-c4e830d47e38 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"68C28D8F4228CEE30020764471C9A29553E41446EAF22C4141F91483B7D43CF9"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cde124d6-0afc-42f0-8a4c-c4e830d47e38 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=66&$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/batches?$skip=68&$top=397&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6c345e3b-2a71-4786-a3a9-c1703081324f","createdDateTimeUtc":"2021-06-02T06:41:05.9240834Z","lastActionDateTimeUtc":"2021-06-02T06:41:06.0023015Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4808cb29-461a-4bdc-849a-b8b2402cca93","createdDateTimeUtc":"2021-06-02T06:40:53.7154483Z","lastActionDateTimeUtc":"2021-06-02T06:40:54.3761813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=70&$top=395&$maxpagesize=2"}' + headers: + apim-request-id: 6fc4045e-50b1-40d7-8b75-8d09082359bd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"3AE20F1A6222C71658036D5D67FECEA002DB6F28BA6DAD6990DD8124470E21C2"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6fc4045e-50b1-40d7-8b75-8d09082359bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=68&$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/batches?$skip=70&$top=395&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea655e95-0404-4808-bc60-29d5023b58fa","createdDateTimeUtc":"2021-06-02T06:40:30.9135072Z","lastActionDateTimeUtc":"2021-06-02T06:40:31.7975375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ba008d05-8564-4475-9031-2d3e54e8f8bc","createdDateTimeUtc":"2021-06-02T06:40:05.638911Z","lastActionDateTimeUtc":"2021-06-02T06:40:06.5216871Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=72&$top=393&$maxpagesize=2"}' + headers: + apim-request-id: 66ec9dce-4358-4bd4-b165-1bc83666a558 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:36 GMT + etag: '"20695251FC6902D513429959F5EF26E38B5708C4F4CE447CFB8417B08F6387F9"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 66ec9dce-4358-4bd4-b165-1bc83666a558 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=70&$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/batches?$skip=72&$top=393&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fd88caa7-54b7-44ad-a5df-b3f38b2006f4","createdDateTimeUtc":"2021-06-02T06:40:04.9897959Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.5795126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"de6d7efa-e94a-43a6-a5e0-10b28f9615ec","createdDateTimeUtc":"2021-06-02T06:40:04.3970363Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2868525Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=74&$top=391&$maxpagesize=2"}' + headers: + apim-request-id: 0dd47fc5-58c2-4907-8416-46ca716ee161 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"587C4E19DAA486DACB1959A3313B5B700045B492DEE5DD4845615E61B93DE15C"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0dd47fc5-58c2-4907-8416-46ca716ee161 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=72&$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/batches?$skip=74&$top=391&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d84f2015-a418-440f-aa40-c3c4a2c0f535","createdDateTimeUtc":"2021-06-02T06:40:03.8571077Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2818175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d44aa0e2-e11e-4510-8470-b090bd9b2f82","createdDateTimeUtc":"2021-06-02T06:40:03.1588409Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4667969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=76&$top=389&$maxpagesize=2"}' + headers: + apim-request-id: f549d6d3-5956-4bf3-9f91-de66802e9864 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"DB179F5DC3903FCE135E6F3D4558A5F4EA22B7A206E72AD7FEDE43F8E09CF577"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f549d6d3-5956-4bf3-9f91-de66802e9864 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=74&$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/batches?$skip=76&$top=389&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5aeaacbc-3228-435a-b713-ffb6e835188a","createdDateTimeUtc":"2021-06-02T06:40:02.5798533Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4688227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05f6af9f-6f99-476f-b95d-02e7b30ba973","createdDateTimeUtc":"2021-06-02T06:40:02.0118203Z","lastActionDateTimeUtc":"2021-06-02T06:40:03.6115399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=78&$top=387&$maxpagesize=2"}' + headers: + apim-request-id: 35cbd373-eef5-4eed-92d9-72f56b05bea4 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"A74EDB3B9ABCA5A4F65CAF314F66DC685A94C6CD47827BD94452A984A22317DD"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 35cbd373-eef5-4eed-92d9-72f56b05bea4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=76&$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/batches?$skip=78&$top=387&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7a23650d-bb6a-4ca8-9569-84fa94fe6800","createdDateTimeUtc":"2021-06-02T06:40:01.4873529Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.5950808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964a78c0-3ac4-4769-bbd8-526686f22c42","createdDateTimeUtc":"2021-06-02T06:40:00.9118738Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.6168181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=80&$top=385&$maxpagesize=2"}' + headers: + apim-request-id: 189f432d-3cae-4a91-bdba-5fb7ba63f31d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"17B00C5A563D5BCFA4E2D253820CB0E22A084ECE96931F0955C466C97B5FC366"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 189f432d-3cae-4a91-bdba-5fb7ba63f31d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=78&$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/batches?$skip=80&$top=385&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4d8840d4-2706-43e3-9db7-726ade4b28e8","createdDateTimeUtc":"2021-06-02T06:40:00.283617Z","lastActionDateTimeUtc":"2021-06-02T06:40:00.7436838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e302853f-5306-4a81-9d21-62ab1c3cb24f","createdDateTimeUtc":"2021-06-02T06:39:45.0213389Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9897041Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=82&$top=383&$maxpagesize=2"}' + headers: + apim-request-id: 514a8018-1e63-456d-ad2a-772ca606e367 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"1D97FB4CC0C255B91162149418166BA69EF81E62707142024156A290365DD6E8"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 514a8018-1e63-456d-ad2a-772ca606e367 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=80&$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/batches?$skip=82&$top=383&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"840ef30b-a12f-49a9-b85b-01cb39acc87b","createdDateTimeUtc":"2021-06-02T06:39:44.5163768Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9895247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3415cb23-56af-4ba6-85c6-dfc4b5542ad8","createdDateTimeUtc":"2021-06-02T06:39:43.9656836Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7506612Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=84&$top=381&$maxpagesize=2"}' + headers: + apim-request-id: 3c3309b8-6a4a-4ac4-b7a5-c2c007a37cf2 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"6AD20821813E803CD008761372A85E03C1EBFA622525E8A37300CAABF3310095"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3c3309b8-6a4a-4ac4-b7a5-c2c007a37cf2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=82&$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/batches?$skip=84&$top=381&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be268620-2e05-4ba2-89ae-1c0b72751bca","createdDateTimeUtc":"2021-06-02T06:39:43.4699657Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7031927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da019c4-f930-419b-8fd0-a26dfc37c494","createdDateTimeUtc":"2021-06-02T06:39:42.9890121Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8240778Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=86&$top=379&$maxpagesize=2"}' + headers: + apim-request-id: a0875074-6eb6-4496-b29f-c627ab23bc0d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"001096B1CCF27BD58F0BACBD752185439968D3E6455ECC7DDEEB41D8C90A71CB"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a0875074-6eb6-4496-b29f-c627ab23bc0d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=84&$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/batches?$skip=86&$top=379&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"60d59bd2-31c5-4cd7-9a2c-2f4fb5a66a28","createdDateTimeUtc":"2021-06-02T06:39:40.9473475Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8600715Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23632a5-a3cd-4415-8ca9-49d9af346f4c","createdDateTimeUtc":"2021-06-02T06:39:24.1530166Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4860761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=88&$top=377&$maxpagesize=2"}' + headers: + apim-request-id: 72fe6fa3-0939-4641-85a2-4a99376dc161 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"F7BA0A8689BE0A79EF70052AD9470269411262E3D77684A3A04EE2F40EFC40DA"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 72fe6fa3-0939-4641-85a2-4a99376dc161 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=86&$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/batches?$skip=88&$top=377&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"348397fe-5a6d-4254-917e-8a417fe69a18","createdDateTimeUtc":"2021-06-02T06:39:23.6466581Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4112274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6d5cec9-56ba-49eb-a706-f23d8726364c","createdDateTimeUtc":"2021-06-02T06:39:21.4737853Z","lastActionDateTimeUtc":"2021-06-02T06:39:22.7942225Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=90&$top=375&$maxpagesize=2"}' + headers: + apim-request-id: 16078601-de32-4fdb-854a-3197a8b81c71 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"459627558A1AAF6A8335F44FDEE3E383671FD19CCB2F0F3C44810C4CB6A19BD5"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 16078601-de32-4fdb-854a-3197a8b81c71 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=88&$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/batches?$skip=90&$top=375&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"675c93a1-a854-4990-8389-7a61b2727f07","createdDateTimeUtc":"2021-06-02T06:39:20.9472043Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.5120454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"525194bb-ef96-4db2-ab08-a915dadddfac","createdDateTimeUtc":"2021-06-02T06:39:20.2491928Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.4901556Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=92&$top=373&$maxpagesize=2"}' + headers: + apim-request-id: aa2a43ed-803e-4edd-b1c2-f6f750007e84 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"35E9BDF2B19700F0CF823800E15B77532930139EB330AC33C90898C7959AC786"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: aa2a43ed-803e-4edd-b1c2-f6f750007e84 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=90&$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/batches?$skip=92&$top=373&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f00445aa-49dc-4412-87eb-553ea2bf7d04","createdDateTimeUtc":"2021-06-02T06:39:08.6574795Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1874519Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba2f1009-fb37-4b26-9028-4b0fff7782e1","createdDateTimeUtc":"2021-06-02T06:39:08.1487463Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1891904Z","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/batches?$skip=94&$top=371&$maxpagesize=2"}' + headers: + apim-request-id: d45d3913-139f-493d-a7b8-c97302a4c2f8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"84A55AB55CBD98AF944664209629C72FF77DAD9893846095A91A0F04BCFC4778"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d45d3913-139f-493d-a7b8-c97302a4c2f8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=92&$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/batches?$skip=94&$top=371&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0e4ce759-4155-4371-8b1e-5856d993a09b","createdDateTimeUtc":"2021-06-02T06:39:07.405402Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8980215Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"430d6fdb-2ede-4359-8866-84f6afd6bdcd","createdDateTimeUtc":"2021-06-02T06:39:06.9117078Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8128538Z","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/batches?$skip=96&$top=369&$maxpagesize=2"}' + headers: + apim-request-id: 261cef9a-e2a4-4070-afcf-d3c8062771d9 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"F70E232DF7187E4BB70D9CDA5A980D3C1F50C5B3EEDA76D7E228E656A5E71D37"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 261cef9a-e2a4-4070-afcf-d3c8062771d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=94&$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/batches?$skip=96&$top=369&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8cb80008-0ccb-480d-9ed1-01b8e5f22b0b","createdDateTimeUtc":"2021-06-02T06:39:06.3306336Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.708013Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8e38339f-b8f6-422a-afdf-4d1de19fbab3","createdDateTimeUtc":"2021-06-02T06:39:00.7494268Z","lastActionDateTimeUtc":"2021-06-02T06:39:01.3181011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=98&$top=367&$maxpagesize=2"}' + headers: + apim-request-id: b08cd687-4d17-4ec5-84d7-04bf6d9f348e + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:37 GMT + etag: '"7DE410F107494195CBC7170905E288D56731CF20E8DACCC24ECC8B0A7FA7BFAC"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b08cd687-4d17-4ec5-84d7-04bf6d9f348e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=96&$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/batches?$skip=98&$top=367&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"773b73df-42ae-4197-8198-bc90c557b188","createdDateTimeUtc":"2021-06-02T06:38:54.0646034Z","lastActionDateTimeUtc":"2021-06-02T06:38:56.3798465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"79d237c0-c8ac-4a3b-99bc-de2b9a1e76ef","createdDateTimeUtc":"2021-06-02T06:38:46.309884Z","lastActionDateTimeUtc":"2021-06-02T06:38:49.2573517Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=365&$maxpagesize=2"}' + headers: + apim-request-id: 95426645-6205-4b90-99bb-d781c2ebf3b9 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"1BD057B978B7136DD2EFF9FB4C631A65754EF4D34C378AB38887B8AEE221B6BD"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 95426645-6205-4b90-99bb-d781c2ebf3b9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=98&$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/batches?$skip=100&$top=365&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f90c5227-f225-471d-9453-024721f9518f","createdDateTimeUtc":"2021-06-02T06:38:40.7600205Z","lastActionDateTimeUtc":"2021-06-02T06:38:42.2207707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d95d4dcd-6301-4006-a1ac-ac471411900b","createdDateTimeUtc":"2021-06-02T06:38:35.1857718Z","lastActionDateTimeUtc":"2021-06-02T06:38:36.248059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=102&$top=363&$maxpagesize=2"}' + headers: + apim-request-id: 5cbb37a4-8d38-417f-afe4-313f466f874d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"BA8E469ECCDC412D469676A57EB5DCFC3577A97E9CDA8C5D01AA3CD3977DC3D1"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5cbb37a4-8d38-417f-afe4-313f466f874d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$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/batches?$skip=102&$top=363&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6f820ac8-68e8-402b-890a-bb2bdda717e0","createdDateTimeUtc":"2021-06-02T06:38:34.2347962Z","lastActionDateTimeUtc":"2021-06-02T06:38:35.1762805Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbe70865-551f-49f3-ab11-8e71503fb250","createdDateTimeUtc":"2021-06-02T06:38:33.6329499Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9745495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=104&$top=361&$maxpagesize=2"}' + headers: + apim-request-id: 55dd1dee-4a5b-4e86-b9b7-9c0c884bb71c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"62E6ACB3EF4E046719E7666BDD76ED0D3C0CD8DB71564D1B1D51208421513E6F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 55dd1dee-4a5b-4e86-b9b7-9c0c884bb71c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=102&$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/batches?$skip=104&$top=361&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2fc1f463-3f90-463c-a8e5-c06153becb1d","createdDateTimeUtc":"2021-06-02T06:38:33.0953339Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9133298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d8f3f86-0803-4bac-9ea8-419278691b54","createdDateTimeUtc":"2021-06-02T06:38:25.681571Z","lastActionDateTimeUtc":"2021-06-02T06:38:29.2106941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=106&$top=359&$maxpagesize=2"}' + headers: + apim-request-id: d7173373-eb52-42b8-965a-9a8da5d4db66 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"2E7B85C44A6B36CE93F16381CFE976372766E8AADFEAB0C1B317182587092E14"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d7173373-eb52-42b8-965a-9a8da5d4db66 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=104&$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/batches?$skip=106&$top=359&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0bb2b0f6-8ac2-418a-9b10-b360447a89a5","createdDateTimeUtc":"2021-06-02T06:38:20.0075742Z","lastActionDateTimeUtc":"2021-06-02T06:38:22.1577533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee6090f4-643f-4016-a931-dacd57b43fa1","createdDateTimeUtc":"2021-06-02T06:38:14.4144376Z","lastActionDateTimeUtc":"2021-06-02T06:38:15.0321792Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=108&$top=357&$maxpagesize=2"}' + headers: + apim-request-id: 21b59c29-9bbf-4337-9b04-23d8f95feb1a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"9EA3F7897942B08529F322A407F543FE06EFDAE35D6B62685F778DD5BACEF6B7"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 21b59c29-9bbf-4337-9b04-23d8f95feb1a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=106&$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/batches?$skip=108&$top=357&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d921bb3-d049-4b73-806c-257c1dc96953","createdDateTimeUtc":"2021-06-02T06:38:07.6875606Z","lastActionDateTimeUtc":"2021-06-02T06:38:09.8465419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86272760-b346-482a-87d3-d8b3eeb1431e","createdDateTimeUtc":"2021-06-02T06:38:02.0547056Z","lastActionDateTimeUtc":"2021-06-02T06:38:02.7777345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=110&$top=355&$maxpagesize=2"}' + headers: + apim-request-id: f79729f1-ffe4-4a15-be5b-3c41cc985c5d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"B86079D851EBF7D4B58988CE32B2CF4D5AEFBF54625348A04A1576EBF74E86CD"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f79729f1-ffe4-4a15-be5b-3c41cc985c5d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=108&$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/batches?$skip=110&$top=355&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1ab36b51-3fd7-42b0-806b-e3186a953d2e","createdDateTimeUtc":"2021-06-02T06:37:54.3117337Z","lastActionDateTimeUtc":"2021-06-02T06:37:55.7664263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3a0d3c0-f2fc-4ab6-b669-8c3761494c57","createdDateTimeUtc":"2021-06-02T06:37:47.5767386Z","lastActionDateTimeUtc":"2021-06-02T06:37:49.9643054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=112&$top=353&$maxpagesize=2"}' + headers: + apim-request-id: 23e52b11-e939-4470-babc-0ad5ddce9368 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"A03C96B9976FC69A52F90A48D887D3D8F8E4AE2272F06F1E9CB3557DE921705F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 23e52b11-e939-4470-babc-0ad5ddce9368 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=110&$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/batches?$skip=112&$top=353&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"527a3c66-ace4-4790-8c11-5a91053508e0","createdDateTimeUtc":"2021-06-02T06:37:40.8885591Z","lastActionDateTimeUtc":"2021-06-02T06:37:42.8973152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9c7cc60-4eb3-4e1c-b45e-a4604a064ffa","createdDateTimeUtc":"2021-06-02T06:37:35.3559821Z","lastActionDateTimeUtc":"2021-06-02T06:37:35.9147701Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=114&$top=351&$maxpagesize=2"}' + headers: + apim-request-id: d9bad167-8fff-4b5f-8461-734eccdf58b7 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"6F2EFA848830E7BEB9AE780FBDD9D4C16DBF2FF162AE1354C92D6EE9FFB3DE19"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d9bad167-8fff-4b5f-8461-734eccdf58b7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=112&$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/batches?$skip=114&$top=351&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e46e697b-4b91-4cc1-bdc8-d1b5f4f29316","createdDateTimeUtc":"2021-06-02T06:37:29.6705576Z","lastActionDateTimeUtc":"2021-06-02T06:37:30.751147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a414371-9c16-4f5b-b78f-54a1b14f3cb3","createdDateTimeUtc":"2021-06-02T06:37:28.605251Z","lastActionDateTimeUtc":"2021-06-02T06:37:29.7618353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=116&$top=349&$maxpagesize=2"}' + headers: + apim-request-id: 8fc2b972-d6f2-49ce-abf4-0cee423c9d87 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"A912EFC1409868DFE166B8676A3884859C004E13A1E924D153BA3698062384C3"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8fc2b972-d6f2-49ce-abf4-0cee423c9d87 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=114&$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/batches?$skip=116&$top=349&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0eafff35-c835-435f-8ba6-5c62ccbcac05","createdDateTimeUtc":"2021-06-02T06:37:28.0226232Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.688448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4e16297-da6d-44a3-b537-2e179b5c57c8","createdDateTimeUtc":"2021-06-02T06:37:27.4859883Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.4461178Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=118&$top=347&$maxpagesize=2"}' + headers: + apim-request-id: 1a8dcd45-ccaa-48a0-82d0-a7f3e800d89c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"937EA5020F269B464D9DC257390B0C323B2861AFD78DEA902295438F3789A1E4"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a8dcd45-ccaa-48a0-82d0-a7f3e800d89c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=116&$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/batches?$skip=118&$top=347&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"88f6806b-a28c-43b3-80c7-9a3e2a18f98a","createdDateTimeUtc":"2021-06-02T06:37:25.5121262Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.6483773Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0eba3d56-4b51-4fc6-b9ea-755fe87fe711","createdDateTimeUtc":"2021-06-02T06:37:24.8468851Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.4997727Z","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/batches?$skip=120&$top=345&$maxpagesize=2"}' + headers: + apim-request-id: 70e918bc-b38c-4ef3-9710-17849c314aed + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"2E79356B2B25243E1DBB56AE6677EC56E3F5D34C9058EAD6B91B918F2C6F0D29"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 70e918bc-b38c-4ef3-9710-17849c314aed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=118&$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/batches?$skip=120&$top=345&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9b719446-a83e-4bc7-9deb-659eebb51328","createdDateTimeUtc":"2021-06-02T06:37:23.7379948Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.2183805Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2bbaa78d-f6a0-43b2-8352-bd0aa6edd744","createdDateTimeUtc":"2021-06-02T06:37:23.0437961Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.9407465Z","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/batches?$skip=122&$top=343&$maxpagesize=2"}' + headers: + apim-request-id: 641df08b-fd2e-4c68-af9c-a7324ee9b47a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:38 GMT + etag: '"96D82BC2131A1014CDB218E21ACBFE5FD2ADA2D29DE64CCD3A0042237FC3B33D"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 641df08b-fd2e-4c68-af9c-a7324ee9b47a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=120&$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/batches?$skip=122&$top=343&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9b96b537-29be-4194-a7b4-a05959950142","createdDateTimeUtc":"2021-06-02T06:37:22.0011983Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.6381334Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"754d7123-41c6-45bb-9214-20ccbb325d5c","createdDateTimeUtc":"2021-06-02T06:36:57.8535231Z","lastActionDateTimeUtc":"2021-06-02T06:37:03.3442448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=124&$top=341&$maxpagesize=2"}' + headers: + apim-request-id: 7aee2eb4-1d62-4304-a7d8-2f3497e0eb7c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"FA29E49D9E879456E99CB40840BAA514C4CC2FFDA9213CA1312F3737A8751CB5"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7aee2eb4-1d62-4304-a7d8-2f3497e0eb7c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=122&$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/batches?$skip=124&$top=341&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1237295c-47ea-4710-a84e-ed65a8f49dda","createdDateTimeUtc":"2021-06-02T06:36:26.6950836Z","lastActionDateTimeUtc":"2021-06-02T06:36:28.3693909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=126&$top=339&$maxpagesize=2"}' + headers: + apim-request-id: 1e18dc7e-57fb-420c-b58a-eaa71dfd5b79 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"9F939875001DB13354BCA35C70D3CDFDEB73EE0FB59F0CD12BB10E84E00E3E60"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1e18dc7e-57fb-420c-b58a-eaa71dfd5b79 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=124&$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/batches?$skip=126&$top=339&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=128&$top=337&$maxpagesize=2"}' + headers: + apim-request-id: 8e8e65f3-8df6-4494-b803-b393ad9ea21b + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"C8EA686716A1B52FE647B66DAC3D57A8947007DEFA07F673255F6F91E7A7A43E"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8e8e65f3-8df6-4494-b803-b393ad9ea21b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=126&$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/batches?$skip=128&$top=337&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=130&$top=335&$maxpagesize=2"}' + headers: + apim-request-id: d82e0285-e1ab-4d70-8523-93d6a6f03c1a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"403398356EA959159B45B50E0170A0355BE6C6CE30EFC3D5A27343444FBAC156"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d82e0285-e1ab-4d70-8523-93d6a6f03c1a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=128&$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/batches?$skip=130&$top=335&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=132&$top=333&$maxpagesize=2"}' + headers: + apim-request-id: e3f9debb-47b0-453d-b4b5-527f82113208 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"FA3DCB6C57E742899B8BD6628FB6D911FD64EDF00B7FDC8E13703D444F78FEF5"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e3f9debb-47b0-453d-b4b5-527f82113208 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=130&$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/batches?$skip=132&$top=333&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=134&$top=331&$maxpagesize=2"}' + headers: + apim-request-id: 2e623bcd-b744-4261-90db-87502abb8608 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"AE738E3546AF40EB041A2A4AFB4BCF4B6AEEF4826007F3F880B7CE42D34B4A81"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2e623bcd-b744-4261-90db-87502abb8608 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=132&$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/batches?$skip=134&$top=331&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=136&$top=329&$maxpagesize=2"}' + headers: + apim-request-id: 992b5955-e195-424a-bea2-bf0d6cee1d8b + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"9EF81D7F08F2D321A184F1DFDE1330D01B85983537E18C776CEF164F080086C6"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 992b5955-e195-424a-bea2-bf0d6cee1d8b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=134&$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/batches?$skip=136&$top=329&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=138&$top=327&$maxpagesize=2"}' + headers: + apim-request-id: e728b5bd-7b94-45be-8111-47f339cc4b16 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"786E93CEA9AD71698AAD92EACA77C130F13A5E24CCC22E8144DA6FD0C239DC9D"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e728b5bd-7b94-45be-8111-47f339cc4b16 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=136&$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/batches?$skip=138&$top=327&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=140&$top=325&$maxpagesize=2"}' + headers: + apim-request-id: 3710f1b0-ad79-4b6d-8b47-667282a9be13 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"3D556ABAD0D64492DEC9F2D1B2D6A96C9672320A963596DCF1DB4FE185A70D42"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3710f1b0-ad79-4b6d-8b47-667282a9be13 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=138&$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/batches?$skip=140&$top=325&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=142&$top=323&$maxpagesize=2"}' + headers: + apim-request-id: 1b22750d-989c-451f-858e-fe3377b93294 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"83351551304735376DC36912F62F1338645A03EF504F32D92670FDF1A0AA0824"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1b22750d-989c-451f-858e-fe3377b93294 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=140&$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/batches?$skip=142&$top=323&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=144&$top=321&$maxpagesize=2"}' + headers: + apim-request-id: c3671a8d-a10e-4239-a6b9-543646f3e2b6 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"10B2D852ED1540658B3FA17DC3084D7AF0276BEEA14348A1A183285C5F62AD02"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c3671a8d-a10e-4239-a6b9-543646f3e2b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=142&$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/batches?$skip=144&$top=321&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=146&$top=319&$maxpagesize=2"}' + headers: + apim-request-id: 02cec930-967e-4a76-be6d-dbba8890d7a6 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:39 GMT + etag: '"9AD9E9E30393A64F7F53EDC64E630D5105D873328BA784572875D7239F69E699"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 02cec930-967e-4a76-be6d-dbba8890d7a6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=144&$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/batches?$skip=146&$top=319&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=148&$top=317&$maxpagesize=2"}' + headers: + apim-request-id: 0d33d2fd-79cb-4a98-b8d3-b489bb52aebd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:40 GMT + etag: '"B6C798A9640ADE695699693C04D54E83D3C361196D86DD4B1C3D19DC768FED50"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0d33d2fd-79cb-4a98-b8d3-b489bb52aebd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=146&$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/batches?$skip=148&$top=317&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=315&$maxpagesize=2"}' + headers: + apim-request-id: bfe5b9aa-b7e8-4c0b-bca8-7ebf48b2a27f + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:40 GMT + etag: '"6AB732EDD2DBDE91C4E9823B25FFCD180FF5142AE0DEEEF54E41F58CADAFF0A3"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bfe5b9aa-b7e8-4c0b-bca8-7ebf48b2a27f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=148&$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/batches?$skip=150&$top=315&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=152&$top=313&$maxpagesize=2"}' + headers: + apim-request-id: 0fe23cad-82fa-4fb3-9e3d-e91a3835934b + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:40 GMT + etag: '"CFF56BC4C119858818443707DAA6BE5DBA274360420404BBDCB0AF86ECCAA286"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0fe23cad-82fa-4fb3-9e3d-e91a3835934b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$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/batches?$skip=152&$top=313&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=154&$top=311&$maxpagesize=2"}' + headers: + apim-request-id: 937b4e04-e168-4cb6-9f05-e0ce862db648 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:40 GMT + etag: '"ED58D1568EC80E850694431C165DC7AE97F11E848F018559EA60009E6FC42147"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 937b4e04-e168-4cb6-9f05-e0ce862db648 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=152&$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/batches?$skip=154&$top=311&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=156&$top=309&$maxpagesize=2"}' + headers: + apim-request-id: 303fc480-ef2c-4d36-b48a-e4e76d55db93 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:40 GMT + etag: '"B4277AC8936BCB36333FCEA136D1A51BD21799BECD57E91ADB4FAEB85F9D517C"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 303fc480-ef2c-4d36-b48a-e4e76d55db93 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=154&$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/batches?$skip=156&$top=309&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=158&$top=307&$maxpagesize=2"}' + headers: + apim-request-id: 7b4a2855-57e3-4a06-b066-76e53d614e22 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:40 GMT + etag: '"ECF96F14BA31D28895FE675675C9CFDB92AA55DBD8ED76D776BDB67A7251920A"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7b4a2855-57e3-4a06-b066-76e53d614e22 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=156&$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/batches?$skip=158&$top=307&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=160&$top=305&$maxpagesize=2"}' + headers: + apim-request-id: cd9cc653-1ac9-4ef7-932c-6fe4b5915fe3 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"572D5F0CBDE70088CED65AC7ED5743ABC9C44FBED595350621CA5A1C5A34D238"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cd9cc653-1ac9-4ef7-932c-6fe4b5915fe3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=158&$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/batches?$skip=160&$top=305&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=162&$top=303&$maxpagesize=2"}' + headers: + apim-request-id: 3c5bb223-8725-4f93-9f1b-42dc2e00861d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"ED8E5B5A5EF5FB4A474332FA257E1A3D5CA2E222B3B4046F61EAD87C223FC5CD"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3c5bb223-8725-4f93-9f1b-42dc2e00861d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=160&$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/batches?$skip=162&$top=303&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=164&$top=301&$maxpagesize=2"}' + headers: + apim-request-id: 779df176-db21-4fa9-be74-700956fc37ed + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"A0FD35D69577D48CAB4C10FFAF8B368597F92EB24CF7A8FB6362D57E1897DB78"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 779df176-db21-4fa9-be74-700956fc37ed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=162&$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/batches?$skip=164&$top=301&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=166&$top=299&$maxpagesize=2"}' + headers: + apim-request-id: 9c95d47b-45e3-442d-be5c-9e758ffa7cc9 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"B6FA19571D5A4C9623C51E31ABC7867F7900B0BEB1D0F68663563DD7FD9B1934"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9c95d47b-45e3-442d-be5c-9e758ffa7cc9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=164&$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/batches?$skip=166&$top=299&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=168&$top=297&$maxpagesize=2"}' + headers: + apim-request-id: ec5965ea-283d-403f-9317-0369324c3cec + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"A591E69BC382F68A560A40AAD61539A3805CE6D6C514AA96EB1296ABAF955D00"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ec5965ea-283d-403f-9317-0369324c3cec + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=166&$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/batches?$skip=168&$top=297&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=170&$top=295&$maxpagesize=2"}' + headers: + apim-request-id: d515cf29-81f4-4a40-8e8f-65e4efb0a2e4 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"384EF1F1AFF904E1810DB07ADE4112438BC97F576A4E1858982EEAC89AF3D16D"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d515cf29-81f4-4a40-8e8f-65e4efb0a2e4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=168&$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/batches?$skip=170&$top=295&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=172&$top=293&$maxpagesize=2"}' + headers: + apim-request-id: 852463c3-027d-4296-a16a-e9b0aa2fb22a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"58B246AB4D53E37EB26F1C169DAC433A87153D265251C886F3BE3F04A8F57E44"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 852463c3-027d-4296-a16a-e9b0aa2fb22a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=170&$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/batches?$skip=172&$top=293&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","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/batches?$skip=174&$top=291&$maxpagesize=2"}' + headers: + apim-request-id: 972d4275-9ffb-4b0c-a419-e81f93ce00ab + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"BB22E5489BE415D68BE4BB68A75E93B8E18381D2DDA6933DDEDD6BB3AB787E82"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 972d4275-9ffb-4b0c-a419-e81f93ce00ab + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=172&$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/batches?$skip=174&$top=291&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","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/batches?$skip=176&$top=289&$maxpagesize=2"}' + headers: + apim-request-id: ee8c3b0e-4a97-4a87-a35a-086f0bf18dfe + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:42 GMT + etag: '"BCE4F1FEBCE3FB28F3221CE555901A649D74F7A4C817B103E43EC5B2A8358CFE"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ee8c3b0e-4a97-4a87-a35a-086f0bf18dfe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=174&$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/batches?$skip=176&$top=289&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=178&$top=287&$maxpagesize=2"}' + headers: + apim-request-id: ed139560-e765-4b58-89ae-1af69b4d86d5 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"77249FC3EBAD9D065581973089692B9ABE41F8BE1FB8DCC7284046D4B30CE17D"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ed139560-e765-4b58-89ae-1af69b4d86d5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=176&$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/batches?$skip=178&$top=287&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=180&$top=285&$maxpagesize=2"}' + headers: + apim-request-id: 9fd6116e-af29-4450-93d1-e8d82dddbccb + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"DF46E0D1F459CF2A94785BF6FBEFC789F041D85544121C2F85D855AE6EBB1DA1"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9fd6116e-af29-4450-93d1-e8d82dddbccb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=178&$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/batches?$skip=180&$top=285&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=182&$top=283&$maxpagesize=2"}' + headers: + apim-request-id: 1046eb21-a438-48d1-a0cb-91263416e985 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"C1E4921EF00C29234806A652097F65517FD6DBCEFE60D013F3B5B7B006511FC6"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1046eb21-a438-48d1-a0cb-91263416e985 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=180&$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/batches?$skip=182&$top=283&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","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/batches?$skip=184&$top=281&$maxpagesize=2"}' + headers: + apim-request-id: 2c0bf51c-d840-4fd3-9bc5-147c4061251c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"1529DAEA16D6241FBBDA2D764AAC18A9209F6C6BD7930C318E93B0846E9BEB59"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2c0bf51c-d840-4fd3-9bc5-147c4061251c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=182&$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/batches?$skip=184&$top=281&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","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/batches?$skip=186&$top=279&$maxpagesize=2"}' + headers: + apim-request-id: 9b431b4f-931d-4a49-9600-16ef0535e1e5 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"9115E8A2D193E2F28B584DC61DFDCCBEEE66F1F64818C8053300A371A9C87834"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9b431b4f-931d-4a49-9600-16ef0535e1e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=184&$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/batches?$skip=186&$top=279&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","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/batches?$skip=188&$top=277&$maxpagesize=2"}' + headers: + apim-request-id: d3d16f53-f221-450e-ab28-52c67877dc42 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"514D9DC1187D218915488FC534FC4E4067530B3AC3C3052C4AC3671C6AB9D95F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d3d16f53-f221-450e-ab28-52c67877dc42 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=186&$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/batches?$skip=188&$top=277&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","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/batches?$skip=190&$top=275&$maxpagesize=2"}' + headers: + apim-request-id: ef568a35-3e95-45f0-9b9d-131341170b4e + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"C8D877D055DFECF98F80D0C4E333DAF66B5EF122659E1F963E4FAAB9B295B84E"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ef568a35-3e95-45f0-9b9d-131341170b4e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=188&$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/batches?$skip=190&$top=275&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","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/batches?$skip=192&$top=273&$maxpagesize=2"}' + headers: + apim-request-id: 542d97cb-f995-4140-b450-d50a718d0798 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"AC11225E2FFB9C33717F8F32813DFBE2CD0DC331010AC492760E1E514D444F9D"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 542d97cb-f995-4140-b450-d50a718d0798 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=190&$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/batches?$skip=192&$top=273&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","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/batches?$skip=194&$top=271&$maxpagesize=2"}' + headers: + apim-request-id: a4a62b6f-d29e-44b4-947e-abe6fc7ebe25 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:43 GMT + etag: '"F99D53EF85FC53B8A15730AA60C5078441ABE9A8D480ABDAB02677B145B9632B"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a4a62b6f-d29e-44b4-947e-abe6fc7ebe25 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=192&$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/batches?$skip=194&$top=271&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","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/batches?$skip=196&$top=269&$maxpagesize=2"}' + headers: + apim-request-id: eef0cd3e-0123-4f66-9ad7-1586a6f0886b + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"FE2455C3820C7C4DEA9242385C8D957AD4403230E1B2E4BC268BE1C955816FE1"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eef0cd3e-0123-4f66-9ad7-1586a6f0886b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=194&$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/batches?$skip=196&$top=269&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","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/batches?$skip=198&$top=267&$maxpagesize=2"}' + headers: + apim-request-id: 1273813e-c25f-4bcc-b27b-760558056212 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"302A288E36F6890ECDC2F039BA5E49BCFE4164FB4578F58B2FFBC308D83B9B5B"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1273813e-c25f-4bcc-b27b-760558056212 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=196&$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/batches?$skip=198&$top=267&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=265&$maxpagesize=2"}' + headers: + apim-request-id: 42e734ee-b613-4571-b898-7dac329efdba + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"CFAB3BF57D45154185ADC98AA6509C3A1BE6D5984C1969265575B95469855508"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 42e734ee-b613-4571-b898-7dac329efdba + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=198&$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/batches?$skip=200&$top=265&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","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/batches?$skip=202&$top=263&$maxpagesize=2"}' + headers: + apim-request-id: 9d91485a-1400-43b6-908f-4f303896b1c8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"A6732740B1113643C785F0B899F69FC69F3AE0DD16ABF94EA2356CE901494CA0"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9d91485a-1400-43b6-908f-4f303896b1c8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$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/batches?$skip=202&$top=263&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","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/batches?$skip=204&$top=261&$maxpagesize=2"}' + headers: + apim-request-id: 776c1554-01d0-4275-9f85-1733df511108 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"0C226CFDBD9C11EDFD1344F99F07179127C7B29E20152D3EA2FAF11BDA3F16CC"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 776c1554-01d0-4275-9f85-1733df511108 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=202&$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/batches?$skip=204&$top=261&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=206&$top=259&$maxpagesize=2"}' + headers: + apim-request-id: 6ae87f13-4cd5-47e4-af55-f61d5ff03c96 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"7BE8C590206B9AFE6219562DDBE4A1A67A5F9BA41169B838DC143F9E52346B42"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6ae87f13-4cd5-47e4-af55-f61d5ff03c96 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=204&$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/batches?$skip=206&$top=259&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=208&$top=257&$maxpagesize=2"}' + headers: + apim-request-id: e89b2a2f-ec7b-4245-988b-a993c848f91d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"7B256AB2A177265CABBDAABBA6F2890CB13EFEC6B93809236CB92D8D181BF265"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e89b2a2f-ec7b-4245-988b-a993c848f91d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=206&$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/batches?$skip=208&$top=257&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","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/batches?$skip=210&$top=255&$maxpagesize=2"}' + headers: + apim-request-id: 3fa7810a-7ed8-4748-ab99-e6234fbe1a43 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"133BD36F0BCE9084B6276B957A0F675CEDCB9FCD02CA632D3246D59075AB6937"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3fa7810a-7ed8-4748-ab99-e6234fbe1a43 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=208&$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/batches?$skip=210&$top=255&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=212&$top=253&$maxpagesize=2"}' + headers: + apim-request-id: e373b3dd-b7b2-4242-971a-0426c3afb488 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"B93A6F30FFBF94E406357D5BCF9CAD2A95E9FA44F32EAE7F34132AA0F2B282C0"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e373b3dd-b7b2-4242-971a-0426c3afb488 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=210&$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/batches?$skip=212&$top=253&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=214&$top=251&$maxpagesize=2"}' + headers: + apim-request-id: 3a247e77-8253-404d-8ef0-c0459b625637 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:44 GMT + etag: '"7FA1EC45AF4F026315F74DEE071306DF50304ACDBFFBC99E203A7F646551CB54"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3a247e77-8253-404d-8ef0-c0459b625637 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=212&$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/batches?$skip=214&$top=251&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=216&$top=249&$maxpagesize=2"}' + headers: + apim-request-id: 28a20b04-4809-4cb9-b4cb-836672877e8c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"2D30D23C714534A0BF6CC0066B18C072BA4321C6B84ADD93916F8609F563640F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 28a20b04-4809-4cb9-b4cb-836672877e8c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=214&$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/batches?$skip=216&$top=249&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=218&$top=247&$maxpagesize=2"}' + headers: + apim-request-id: 74921ab0-859d-4d0e-8915-0695903ce264 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"AEC687C5AD3DE5DDE2D3804E2E36DF8E69A7250B98A74649D10ABE48CCD98C48"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 74921ab0-859d-4d0e-8915-0695903ce264 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=216&$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/batches?$skip=218&$top=247&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=220&$top=245&$maxpagesize=2"}' + headers: + apim-request-id: 9c05c809-3f4d-4f86-925a-bb51babf115a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"5B747AC2569622B394F3A90B7E4007428593505E731794ED3AC3CCD0FF262ABC"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9c05c809-3f4d-4f86-925a-bb51babf115a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=218&$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/batches?$skip=220&$top=245&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=222&$top=243&$maxpagesize=2"}' + headers: + apim-request-id: 9e2cca1c-6ea5-4962-8e25-b546a798eb22 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"DE1CCA0E0AC36401E3D5157E3B2D67CCF830485E6F1296E58B14E7AAF0310C1B"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9e2cca1c-6ea5-4962-8e25-b546a798eb22 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=220&$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/batches?$skip=222&$top=243&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","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/batches?$skip=224&$top=241&$maxpagesize=2"}' + headers: + apim-request-id: 4a0ecd1f-3b36-49df-a7db-0968d2b3d482 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"4AC2D9E43348C6BD8F4E9E2B7CCFC4325B0ACEE1F32F914DDD14E5074EFDFE5F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4a0ecd1f-3b36-49df-a7db-0968d2b3d482 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=222&$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/batches?$skip=224&$top=241&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","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/batches?$skip=226&$top=239&$maxpagesize=2"}' + headers: + apim-request-id: 1a42e164-fa18-4406-a901-ccdc13203a70 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"DBF93CB471BFE7960DD076E9FCC6A2818A996191053159BD507E5645B3E495C8"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a42e164-fa18-4406-a901-ccdc13203a70 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=224&$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/batches?$skip=226&$top=239&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","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/batches?$skip=228&$top=237&$maxpagesize=2"}' + headers: + apim-request-id: 8d335fe7-b8e3-4264-92d3-a01f1fb2053c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"4F26EA7CA8DB974055F7F61F41A8E1BC5D67DE663B87298E188AC0E6CAACD9F7"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8d335fe7-b8e3-4264-92d3-a01f1fb2053c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=226&$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/batches?$skip=228&$top=237&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","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/batches?$skip=230&$top=235&$maxpagesize=2"}' + headers: + apim-request-id: 00343a15-04e6-48ff-9f3e-71baac32d374 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"1BBBBA43CD50EBFF2315380F9AF716214876994F973A39BEE5C1D2A2DAD240EE"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 00343a15-04e6-48ff-9f3e-71baac32d374 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=228&$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/batches?$skip=230&$top=235&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","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/batches?$skip=232&$top=233&$maxpagesize=2"}' + headers: + apim-request-id: 6868150f-2544-48cd-bbed-5a9953e1b792 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"2B0D0EAAF031B524A79F0B7EB0A039574678960BD0ABD592C9CA4C334FE76488"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6868150f-2544-48cd-bbed-5a9953e1b792 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=230&$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/batches?$skip=232&$top=233&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","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/batches?$skip=234&$top=231&$maxpagesize=2"}' + headers: + apim-request-id: 983bdac4-af2a-4a1a-bec5-89c0d18a9434 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"57D82E3CEDB3258B521F9C3ED88E947EF68112967B8AC406507F96C8A441D0C9"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 983bdac4-af2a-4a1a-bec5-89c0d18a9434 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=232&$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/batches?$skip=234&$top=231&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","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/batches?$skip=236&$top=229&$maxpagesize=2"}' + headers: + apim-request-id: 353c3341-d05b-4dee-b542-1cdc464b0a11 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:45 GMT + etag: '"6E65BA22DDD433E200BC43A44CEC3E9A6DFBFD35FFD3FA3C82AD8C6190358B6B"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 353c3341-d05b-4dee-b542-1cdc464b0a11 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=234&$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/batches?$skip=236&$top=229&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","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/batches?$skip=238&$top=227&$maxpagesize=2"}' + headers: + apim-request-id: f09f5d97-42d7-4f41-aaad-028f477e5ad6 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"3E1FC50C821B6E75DC23B2C7904538E08EEEC14C875D56145A782FFCFD04B436"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f09f5d97-42d7-4f41-aaad-028f477e5ad6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=236&$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/batches?$skip=238&$top=227&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","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/batches?$skip=240&$top=225&$maxpagesize=2"}' + headers: + apim-request-id: 8f453a60-bc93-41cf-b293-e2ab58d4325d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"DC29ABB7F8857D63319FCD2CC18E9AE06623ADFD2C89A67087EDE9EDEA40425C"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8f453a60-bc93-41cf-b293-e2ab58d4325d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=238&$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/batches?$skip=240&$top=225&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=242&$top=223&$maxpagesize=2"}' + headers: + apim-request-id: d9288b14-358e-4b1d-8fa1-9e6c060ac795 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"7567B671937C8AEA560BDFA178A3C706CC525510BA98E4EF46AD1C3C3998CC89"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d9288b14-358e-4b1d-8fa1-9e6c060ac795 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=240&$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/batches?$skip=242&$top=223&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=244&$top=221&$maxpagesize=2"}' + headers: + apim-request-id: bb0c4d2f-a5b9-4259-b1c9-63aad7492461 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"13135608CCECEA667E184A0E8010702E3319F5133623F74DD4BD438F8A7DF10E"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bb0c4d2f-a5b9-4259-b1c9-63aad7492461 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=242&$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/batches?$skip=244&$top=221&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=246&$top=219&$maxpagesize=2"}' + headers: + apim-request-id: cf665eb0-b4c2-4ac7-9cd6-a0552a1fb7cd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"39967B2DB8AFA98DB48F9ED18F56376D43C0AB0EC68E9F9EA6FFFCC84D3EAA1D"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cf665eb0-b4c2-4ac7-9cd6-a0552a1fb7cd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=244&$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/batches?$skip=246&$top=219&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=248&$top=217&$maxpagesize=2"}' + headers: + apim-request-id: 43dd7a65-d09a-4912-b1f9-7674a863572c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"42F1EE41D2DBD1F55D6958BAF9B9D9AC3A7C6B7A8E4510321CAAE48C4969CF59"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 43dd7a65-d09a-4912-b1f9-7674a863572c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=246&$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/batches?$skip=248&$top=217&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=215&$maxpagesize=2"}' + headers: + apim-request-id: 5c8e4cff-f5db-448c-a22b-175e60e14899 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"AFE3A936B44550B868A12CC66BC0D060B31D9C14D79031324F92274939D34C7F"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5c8e4cff-f5db-448c-a22b-175e60e14899 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=248&$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/batches?$skip=250&$top=215&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=252&$top=213&$maxpagesize=2"}' + headers: + apim-request-id: 83576ed8-6612-4bb9-bcd4-b41fc81a569f + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"D3F9BD0546D9C8143CF202BB42152BBC6399EC501763632585341787BEA7BB4F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 83576ed8-6612-4bb9-bcd4-b41fc81a569f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$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/batches?$skip=252&$top=213&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=254&$top=211&$maxpagesize=2"}' + headers: + apim-request-id: 710339e6-4189-4b1d-9c08-cf60d0a7c5f9 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"C99876CEA72B29232EB3D52D2A446431896EEF943D9FF67081E1224C0866DBBD"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 710339e6-4189-4b1d-9c08-cf60d0a7c5f9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=252&$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/batches?$skip=254&$top=211&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=256&$top=209&$maxpagesize=2"}' + headers: + apim-request-id: 6e9b9c8b-8b4b-4341-adf6-a197d3906c57 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:46 GMT + etag: '"A4BB6AA89B8684E9E971A9074293AF9CADA71BF2BD01ADCD6B7B2B4A4A368320"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6e9b9c8b-8b4b-4341-adf6-a197d3906c57 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=254&$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/batches?$skip=256&$top=209&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=258&$top=207&$maxpagesize=2"}' + headers: + apim-request-id: 8481dcf8-51a6-43e0-8bdd-ece699014d15 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"A6B1C515238F74017001E093C1AF998CC1F9A712D94B44DC2D867AEA94ED6818"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8481dcf8-51a6-43e0-8bdd-ece699014d15 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=256&$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/batches?$skip=258&$top=207&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=260&$top=205&$maxpagesize=2"}' + headers: + apim-request-id: ebce612b-ebd4-469f-9c9a-3c0bd29cdf46 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"96B08CE592EA0A09E8132925F5C83E4570213D772252404AE4FBFF1E0E541C5A"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ebce612b-ebd4-469f-9c9a-3c0bd29cdf46 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=258&$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/batches?$skip=260&$top=205&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=262&$top=203&$maxpagesize=2"}' + headers: + apim-request-id: f45d5840-bf9c-4b55-ba33-5673d3c03621 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"A972A4AFF8801F5CC59F7DCD00751EAB08ECBF86954C771A92C98940F65BC584"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f45d5840-bf9c-4b55-ba33-5673d3c03621 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=260&$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/batches?$skip=262&$top=203&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=264&$top=201&$maxpagesize=2"}' + headers: + apim-request-id: bc115358-d8d2-4111-a65a-f8e26ba23716 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"10B20B42D7BB1B46FCC9A2C31F50797212F5586449998DBC36610CFC09CC12E4"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bc115358-d8d2-4111-a65a-f8e26ba23716 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=262&$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/batches?$skip=264&$top=201&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=266&$top=199&$maxpagesize=2"}' + headers: + apim-request-id: eed9d4ea-2ef2-4ec2-bd15-68c2049d6525 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"8194CAE247AB8C4F835CD5D776564A00F202E9842BDB9A393F77F44AAD467FBB"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eed9d4ea-2ef2-4ec2-bd15-68c2049d6525 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=264&$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/batches?$skip=266&$top=199&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=268&$top=197&$maxpagesize=2"}' + headers: + apim-request-id: 77393b88-addd-4c3d-8ac3-f0d7baea0d28 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"46916714F61D7243449D6E99D7F3C8A29A975FD316366608D9538F5084EBAE75"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 77393b88-addd-4c3d-8ac3-f0d7baea0d28 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=266&$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/batches?$skip=268&$top=197&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=270&$top=195&$maxpagesize=2"}' + headers: + apim-request-id: 274104c5-8439-438e-a38d-168770dc115f + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"D981CEFC092833C5B419F393CA8DFCC044CB94A15EF9BFD77DA2F3282E31F2EB"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 274104c5-8439-438e-a38d-168770dc115f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=268&$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/batches?$skip=270&$top=195&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=272&$top=193&$maxpagesize=2"}' + headers: + apim-request-id: 105747cb-6538-4145-b11a-2cbec7d2aac7 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"1C7D77D33F5EB34A4245A34A5975B3F99F438C1B5BE56906B9E78D7653B70A8F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 105747cb-6538-4145-b11a-2cbec7d2aac7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=270&$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/batches?$skip=272&$top=193&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=274&$top=191&$maxpagesize=2"}' + headers: + apim-request-id: ccc07503-638d-455f-b6e5-5c11f632a003 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"CABA5FEFE7A26C8B97D7A996F0DAEDEEB02F2D9CFB5D9EF9A91F7BB14D6B44D1"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ccc07503-638d-455f-b6e5-5c11f632a003 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=272&$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/batches?$skip=274&$top=191&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=276&$top=189&$maxpagesize=2"}' + headers: + apim-request-id: 53e0e9cb-27e8-4252-84d9-7800f877e91b + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"56B5A4D62AC25BE1E70AF58B9D7201C794903E15A7D534C8E12404C6E1E4CB61"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 53e0e9cb-27e8-4252-84d9-7800f877e91b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=274&$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/batches?$skip=276&$top=189&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=278&$top=187&$maxpagesize=2"}' + headers: + apim-request-id: 2eb701ee-adc7-431b-b3c2-df27802f30b7 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:47 GMT + etag: '"4886BC55809B2D58BDB943877BEDB37DB2F3D0AC90658E206F47C1FA7DB5F06A"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2eb701ee-adc7-431b-b3c2-df27802f30b7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=276&$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/batches?$skip=278&$top=187&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=280&$top=185&$maxpagesize=2"}' + headers: + apim-request-id: c30c09b8-4b24-4412-82c1-60b3e03a5a3e + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"7EFB5A36290C621B5686D3E18FCA68AA32CCEF5D20124880BA1153695564DC6E"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c30c09b8-4b24-4412-82c1-60b3e03a5a3e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=278&$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/batches?$skip=280&$top=185&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=282&$top=183&$maxpagesize=2"}' + headers: + apim-request-id: f6c67fd4-a189-4cb6-b8ca-41236851fb5d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"BE58F17A6FAF7938C5E692B42E5367B5CF9C7BDD8DED3E267944E4B97EAB82B0"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6c67fd4-a189-4cb6-b8ca-41236851fb5d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=280&$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/batches?$skip=282&$top=183&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=284&$top=181&$maxpagesize=2"}' + headers: + apim-request-id: ac6b8c3e-7861-47f8-a068-d076c6062336 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"72FF90345C2C3510A90DEE08C1822523E43D3EF322FBDF3A901D56F4C06B31CD"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ac6b8c3e-7861-47f8-a068-d076c6062336 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=282&$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/batches?$skip=284&$top=181&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=286&$top=179&$maxpagesize=2"}' + headers: + apim-request-id: dacbfa7d-898b-4e2e-b08f-b9f5fe3b88e8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"A1D3D01D028008771B1E9816D9E7F27E435055E5AB8493B9C61FCE0AD8655481"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dacbfa7d-898b-4e2e-b08f-b9f5fe3b88e8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=284&$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/batches?$skip=286&$top=179&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=288&$top=177&$maxpagesize=2"}' + headers: + apim-request-id: 51ea911c-bfec-48a6-8590-8f67860c19b5 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"57C7E918880D62FDEBB037C42898D9F9588CDA87ECA4649EEB5B824226D2E2C3"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 51ea911c-bfec-48a6-8590-8f67860c19b5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=286&$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/batches?$skip=288&$top=177&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=290&$top=175&$maxpagesize=2"}' + headers: + apim-request-id: 6b4fba6c-1ee4-4660-832a-cf1b1da11f61 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"7306BAE61C78CE9320FE038F8F7029E97E7C76E53C04C5EE0B40BEB570E81C28"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6b4fba6c-1ee4-4660-832a-cf1b1da11f61 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=288&$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/batches?$skip=290&$top=175&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=292&$top=173&$maxpagesize=2"}' + headers: + apim-request-id: b25dbdf5-c823-4cb2-bff1-f98aa2a68b6d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"49CB9B4F214E5B92FF58FEEB8AB211210DE1F3AE78661222B8FCA4A279C3FDBF"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b25dbdf5-c823-4cb2-bff1-f98aa2a68b6d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=290&$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/batches?$skip=292&$top=173&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=294&$top=171&$maxpagesize=2"}' + headers: + apim-request-id: f086d781-5e64-4ac0-85ac-056076bb6a11 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"0067C907D221C1EDC640A511620E51D3A147AD2ED0D6EBB9525B90FB9C1B3CDD"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f086d781-5e64-4ac0-85ac-056076bb6a11 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=292&$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/batches?$skip=294&$top=171&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=296&$top=169&$maxpagesize=2"}' + headers: + apim-request-id: c113d8a7-cfd9-48a8-b831-b1efff5b477f + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"D217A837BE89DD55BED29F568F3351D5AB2C9246A2D932A284BA37FA3D1BA3EC"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c113d8a7-cfd9-48a8-b831-b1efff5b477f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=294&$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/batches?$skip=296&$top=169&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=298&$top=167&$maxpagesize=2"}' + headers: + apim-request-id: 0335089f-7255-4953-86e6-1960a9164afa + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"F9441FF0ECB8174DE05F94482000E51B0DEAB98C3DE5835D730B267337C90E22"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0335089f-7255-4953-86e6-1960a9164afa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=296&$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/batches?$skip=298&$top=167&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=165&$maxpagesize=2"}' + headers: + apim-request-id: 0cdbfd78-63b7-4313-905a-6f275d8c418d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:48 GMT + etag: '"3E4EEE8D51B7BB0DD6F2C124EC2C4607B042E42FC36536467883548C2CFDE114"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0cdbfd78-63b7-4313-905a-6f275d8c418d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=298&$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/batches?$skip=300&$top=165&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=302&$top=163&$maxpagesize=2"}' + headers: + apim-request-id: af208806-a721-432d-8bce-48c3cddace02 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:49 GMT + etag: '"630C15DF9533D0B0EE1658FEA1ADBCAFCCDA0400B7B336B4F41408C7F7929DDF"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: af208806-a721-432d-8bce-48c3cddace02 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$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/batches?$skip=302&$top=163&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=304&$top=161&$maxpagesize=2"}' + headers: + apim-request-id: a469b871-4c5a-400d-a425-d278022e02c8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:49 GMT + etag: '"E8DC0732279E85B4548BFA41529E2B1CF304B56890C580AD8C37EFDB75BBC9C1"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a469b871-4c5a-400d-a425-d278022e02c8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=302&$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/batches?$skip=304&$top=161&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=306&$top=159&$maxpagesize=2"}' + headers: + apim-request-id: 1a3e808c-8e23-4210-b0c7-d07cac2592d8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:49 GMT + etag: '"3E6994CC4136EAF5FEBE8D26E9F19335914ABD9207054B7B9CBE5CD27AF24CD6"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a3e808c-8e23-4210-b0c7-d07cac2592d8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=304&$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/batches?$skip=306&$top=159&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=308&$top=157&$maxpagesize=2"}' + headers: + apim-request-id: 2a1e8772-5e58-4640-9ec3-c50c3cf15672 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:49 GMT + etag: '"9712F39EBF2EB976B5703A1860CD0259E979A69137AFCFB3D52BA86A8959C865"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2a1e8772-5e58-4640-9ec3-c50c3cf15672 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=306&$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/batches?$skip=308&$top=157&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=310&$top=155&$maxpagesize=2"}' + headers: + apim-request-id: 01a6684d-eea6-4346-854d-69cb1db6f52f + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:49 GMT + etag: '"0B853FA65D882661DF8A733CDBEF8618E490C7E66EFFD0C276FEBE91F83A91F9"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 01a6684d-eea6-4346-854d-69cb1db6f52f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=308&$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/batches?$skip=310&$top=155&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=312&$top=153&$maxpagesize=2"}' + headers: + apim-request-id: 874e64f0-a184-411e-9450-843a2b57e25f + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:49 GMT + etag: '"1118886EDC75A89DBC14048B2A513159DEF5C88918A77C364396947E8D3146E6"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 874e64f0-a184-411e-9450-843a2b57e25f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=310&$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/batches?$skip=312&$top=153&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=314&$top=151&$maxpagesize=2"}' + headers: + apim-request-id: 1018cafd-8945-48f8-8940-82c919167a29 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:49 GMT + etag: '"D7D5895D04C9E69EA2F817B34A0B7964CB83EAA1ADFEAE1F0FBFEB8A125D0CE4"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1018cafd-8945-48f8-8940-82c919167a29 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=312&$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/batches?$skip=314&$top=151&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=316&$top=149&$maxpagesize=2"}' + headers: + apim-request-id: 425d4693-44d8-4689-bc88-7a6051d812a1 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:49 GMT + etag: '"5C3EA2002A250BF204FB70D553A6016CBFE1BAADCA60CCB22ACA415C811A2F66"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 425d4693-44d8-4689-bc88-7a6051d812a1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=314&$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/batches?$skip=316&$top=149&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=318&$top=147&$maxpagesize=2"}' + headers: + apim-request-id: e9ed361f-6d55-41a5-92c2-055989f57781 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"106C59916474387101C2F4B9F67931357609E915A330003288E983C6053B6852"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e9ed361f-6d55-41a5-92c2-055989f57781 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=316&$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/batches?$skip=318&$top=147&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=320&$top=145&$maxpagesize=2"}' + headers: + apim-request-id: 27b1df02-0f36-4011-9b88-4a5708245c7d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"24F68FA235D3C6A75712D4CC9A99EBCDCAA907342388EEA1F291E8AFD61CD972"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 27b1df02-0f36-4011-9b88-4a5708245c7d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=318&$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/batches?$skip=320&$top=145&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=322&$top=143&$maxpagesize=2"}' + headers: + apim-request-id: 49c9170e-c336-43c4-98e6-b186fc9e4184 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"7083CFC9C93493C26C422BFAA60C8F7F9F626DED89F2266FC2101CFBD91DE750"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 49c9170e-c336-43c4-98e6-b186fc9e4184 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=320&$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/batches?$skip=322&$top=143&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","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/batches?$skip=324&$top=141&$maxpagesize=2"}' + headers: + apim-request-id: 8ea66b62-7971-4d26-a144-dc6b574fcce6 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"9FC430F84ED22D288084D8BE6696A7D86DB279C9191895DE711FAA0B05272555"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8ea66b62-7971-4d26-a144-dc6b574fcce6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=322&$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/batches?$skip=324&$top=141&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=326&$top=139&$maxpagesize=2"}' + headers: + apim-request-id: 4ebaa2aa-c080-433c-bcc8-1586126d2e78 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"9F3A0BAC51EDA973C19861B4125B7CE2F4B0762C58E9FE440D3000B8868A4920"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4ebaa2aa-c080-433c-bcc8-1586126d2e78 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=324&$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/batches?$skip=326&$top=139&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=328&$top=137&$maxpagesize=2"}' + headers: + apim-request-id: 6e044206-d914-4d52-b001-2e26ea1bd0cf + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"7467E9912E1DA44B1D0134D7C532D7B329206E782B48DE038E52B4735FC9089B"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6e044206-d914-4d52-b001-2e26ea1bd0cf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=326&$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/batches?$skip=328&$top=137&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=330&$top=135&$maxpagesize=2"}' + headers: + apim-request-id: 0d5c298f-f745-44f9-8f0f-e1b1192f7ede + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"2FF972004C2284E8FB81DC2DB98513EB0EAE14640E61A648B8C4F4A9A3ADC87E"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0d5c298f-f745-44f9-8f0f-e1b1192f7ede + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=328&$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/batches?$skip=330&$top=135&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","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/batches?$skip=332&$top=133&$maxpagesize=2"}' + headers: + apim-request-id: b539726f-2def-4929-a51d-b2f88f2e62ea + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"4581D25D9F8F976C804EBAB42E45431B50FEA750F619667CFEC82D22AA8A612A"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b539726f-2def-4929-a51d-b2f88f2e62ea + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=330&$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/batches?$skip=332&$top=133&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"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/batches?$skip=334&$top=131&$maxpagesize=2"}' + headers: + apim-request-id: 698f4e75-752b-4377-b303-dc98fa1ba010 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"DFBD3D774139676996DEFA3C7F8D5114F7C7D9FAFFD865FC80637E50886125D7"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 698f4e75-752b-4377-b303-dc98fa1ba010 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=332&$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/batches?$skip=334&$top=131&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","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/batches?$skip=336&$top=129&$maxpagesize=2"}' + headers: + apim-request-id: 6d3a7ae3-0f25-4529-9501-1a22f5c01dcd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:50 GMT + etag: '"B42524F29D7460132BE35A417F084D2C98B24DAB8598D6A7D6B0A62A7F4A4366"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d3a7ae3-0f25-4529-9501-1a22f5c01dcd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=334&$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/batches?$skip=336&$top=129&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=338&$top=127&$maxpagesize=2"}' + headers: + apim-request-id: 7f703491-ba58-46ab-a5e0-c84e68c24ccd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"47F665A800589D5A3D1613A0D84E785002453B4B4D9E200DC6B0B68FC6AE3447"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7f703491-ba58-46ab-a5e0-c84e68c24ccd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=336&$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/batches?$skip=338&$top=127&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","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/batches?$skip=340&$top=125&$maxpagesize=2"}' + headers: + apim-request-id: bf291d95-f818-46fb-b1ba-013bfdf495cd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"A5D3C9DE67D1FF08A04C3DAC4D7F8C871B4F11906FD18B4DCB39A018F55A3287"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bf291d95-f818-46fb-b1ba-013bfdf495cd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=338&$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/batches?$skip=340&$top=125&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","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/batches?$skip=342&$top=123&$maxpagesize=2"}' + headers: + apim-request-id: f9351098-5e47-4360-926b-9655e90593a8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"11D7B318E2282E2CAAF61D6108564C1AEAC59FED63B893386CA34CA5E2A65135"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f9351098-5e47-4360-926b-9655e90593a8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=340&$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/batches?$skip=342&$top=123&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"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/batches?$skip=344&$top=121&$maxpagesize=2"}' + headers: + apim-request-id: 42062320-160a-4691-ad20-905264589c71 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"1F610BFCAF638EEFAC63441808A9E263E102A72D0B31E0D34C9C0EBCF658B06B"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 42062320-160a-4691-ad20-905264589c71 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=342&$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/batches?$skip=344&$top=121&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=346&$top=119&$maxpagesize=2"}' + headers: + apim-request-id: 27d067e5-b3d5-45d2-92eb-2942b790ca68 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"F2B461C704031DE8C8ED8CDBCF367056D00B752DD6D9213AD00FCF59AAA2B7BA"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 27d067e5-b3d5-45d2-92eb-2942b790ca68 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=344&$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/batches?$skip=346&$top=119&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=348&$top=117&$maxpagesize=2"}' + headers: + apim-request-id: f17d95c6-cb31-47b3-9ce1-3494d563939a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"6CE89E6C421B262B970B94FA2FB613C31921CD74C3AF2D16D000C5C1043386AD"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f17d95c6-cb31-47b3-9ce1-3494d563939a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=346&$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/batches?$skip=348&$top=117&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=115&$maxpagesize=2"}' + headers: + apim-request-id: a6e59795-9297-48c1-a551-b52b2bd00e7d + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"724EE609E52A6CDF8C34DE2B1F5A6CE518424B99781C9CFD48C7FFC3A82E87CF"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6e59795-9297-48c1-a551-b52b2bd00e7d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=348&$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/batches?$skip=350&$top=115&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=352&$top=113&$maxpagesize=2"}' + headers: + apim-request-id: 49fb5701-b043-42da-b3b0-62f3197f67d8 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"5DF1245FBEC4A9DBDE661F5D45ABA31BB49909DDF9EDE03C26735EBB2951472F"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 49fb5701-b043-42da-b3b0-62f3197f67d8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$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/batches?$skip=352&$top=113&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=354&$top=111&$maxpagesize=2"}' + headers: + apim-request-id: 23aa94c9-5bef-42e9-8777-22d682adf38a + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"B44B24E87CB08AE64AC5097BA2065560A2D35865F90CDB2E26A6A8213651BDFE"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 23aa94c9-5bef-42e9-8777-22d682adf38a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=352&$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/batches?$skip=354&$top=111&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QS2/bMBCE/wth5GRKK4p6AkZStMeiCJD00BQ9rKiVTVgvkGsjieH/HspJem1z - y4UY7vCbJeYkjtgfSNS/T8K2ohaqrRqEvJMdIkpdJqmskLTMVAOqyNpct5VYC+MImdpv4bi3A/1k - s7CgEgmZVMl9UtQAdQpRpjWkOn0ITI+evxi20/hvLM9VCaAWzDPywYd3Pya+Y3Rh7TI9DAO6J1Gf - BE+MvajVWnRo++DWsPjGkPcXbcdbN23d+3Wc+Bf9jVo4g6Oh/h295H3doUPD5BaxvTjn8/qtJABK - Td7kMmsSkjrtGlkVRSsBtMaia8BU2X+XpKqoSJUudfGhkgJWap2WUH2ykv6sxc1Ij/zdjvvwoR3z - 7Os43rvZIVsTmWk7WrZH8uSONuyP8PngKMyHmB2OvkeeXMwhIm6QzS4+JhG8SvLXK7+380ZdrXia - NwlUV6sBH2fckrfPtFHi/ALqQlYI0wIAAA== + string: '{"value":[{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=356&$top=109&$maxpagesize=2"}' headers: - apim-request-id: ecb14284-8183-4417-91a3-35253a95a324 + apim-request-id: cb6e67ba-67f9-4022-b129-435795accd69 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:30 GMT - etag: '"4B0976488E0AB521744AAE0C3DBF32C084E5373F4BA1BFF479C069025CE04C68"' + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"7F2022AFDD79EBAD5CBFC1071F33858C0CB709AD1AFED004E459B8CCC20667A6"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ecb14284-8183-4417-91a3-35253a95a324 + x-requestid: cb6e67ba-67f9-4022-b129-435795accd69 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=354&$top=111&$maxpagesize=2 - request: body: null headers: @@ -1254,35 +6352,27 @@ 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/batches?$skip=2&$top=109&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=356&$top=109&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2Qy27bMBBF/4UwsjIlkqKoB2AkQbosggJNFknQxYga24T1Ajk20hj+91LOY5tm - l83gcobnzuAe2QG6PbL66chcy2rWlmvIWy24VtjGIisOWCBXFRS5yTJVNIYtmfUIhO2PWO5cj/dk - I6uEklzkXMk7WdRC1KpMytxUOsseI9NBoGtLbhw+w6pEGlXKopyxQED7EP/djvSbwMe1c3ff9+D/ - svrIaCToWK2WbA2ui9NazHNrMYSzdsMvP278+3MY6QE/rGbOwmCxe0fPfjdb8GAJ/Sw258nptHwL - yWCGjbCCl7rKuc6k5o1q1jzL20YIWVVCNv8fUpFUmTRGq6+FVCaiNMYI/c1C+rNkVwM+00837OJB - W6Ip1Gm685MHcjax42Zw5A4Y0B9c3J/Ay95j7PcpeRhCBzT6lKJF2gDZbXqQiXiVGC4XYeemlb5Y - 0DitpCguFj08T7DB4F5wpdjpH5bHNe7TAgAA + string: '{"value":[{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=358&$top=107&$maxpagesize=2"}' headers: - apim-request-id: 4d655787-19ad-420a-960f-c46e846c2080 + apim-request-id: 25eb3ec4-7ff9-458a-a777-58c759127cd4 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:30 GMT - etag: '"71037E55F9A40D4DFD6F32FA36D9B2791A70408D09BA348AAA8010C4E6C4D83D"' + date: Wed, 02 Jun 2021 15:54:51 GMT + etag: '"C029634FF5CFA16756B450632F7C488EB7DBD94E095923903D70E10364F32DFA"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4d655787-19ad-420a-960f-c46e846c2080 + x-requestid: 25eb3ec4-7ff9-458a-a777-58c759127cd4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=2&$top=109&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=356&$top=109&$maxpagesize=2 - request: body: null headers: @@ -1291,35 +6381,27 @@ 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/batches?$skip=4&$top=107&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=358&$top=107&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QT4/aMBDFv4uFOOHEcWLHiYS2VXusqkqlh261h8EZwCL/ZA+IgvjudaDstd3b - Xqw3M/69Gb0LO0J7QFb/ujDXsJqVRQWVbgw3Vmte2KbgsRQcpFBSmXxdCWQLZj0CYfM5PivX4Q+y - kZVCZlwoLrNVVtZC1FInldG6yJ8j0kKgj5bc0P+LKpNMllLKasICAR1C/Pd1oO8EPm6duoeuA/+b - 1RdGA0HLarlgG3BtnNZimluLIdy067/5YesfZT/QT3y1mjgLvcX2gd78Pu3AgyX0k9jeJtfr4m9G - BkphtEGusqriRbVBvtZ5xtcGtRElSlU2/5+RSmSuI6LfFpJK8kJodc/2HYX0smAfejzRF9fv40E7 - ojHUabr3owdyNrHDtnfkjhjQH13cn8D54DH2u5Q89KEFGnxK0SJdA9ldeswScZcYnmZh78alns9o - GJeZUPNZB6cRthjcGZeSXf8AyKYpqNICAAA= + string: '{"value":[{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=360&$top=105&$maxpagesize=2"}' headers: - apim-request-id: 911e6474-126a-4678-bce1-efd5eb105369 + apim-request-id: e5c8f95c-d5f5-49fb-962a-f4aacbaa9c66 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:30 GMT - etag: '"F1B6C1FDC90862570CACD94F349474FAC109C9A63DD4DBDF35B86AAFA3F88E37"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"57C0F0E681A9A48D91E4F04988E04ED0BBB0FFD53E886493EA59BAB8F89E998A"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 911e6474-126a-4678-bce1-efd5eb105369 + x-requestid: e5c8f95c-d5f5-49fb-962a-f4aacbaa9c66 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=4&$top=107&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=358&$top=107&$maxpagesize=2 - request: body: null headers: @@ -1328,35 +6410,27 @@ 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/batches?$skip=6&$top=105&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=360&$top=105&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QS0sDMRSF/0sorpqZvCadGSgquhQRrAsVF7fxtg2dF8lt0Zb+d9P62Io7N+Hk - nnznhrNnW2g2yOrnPfOvrGblvEJdzAteaaO5MdLwUhTIpSgWFiuolAY2Zi4gEL5ep2PmW3wgl1gl - lOSi4ErO5KQWolYmU9YWZqKfEtNApEtHvu9+x3QlpREnLBLQJqZ3tz3dE4S09jjdtC2Ed1bvGfUE - DavVmC3AN8mtxdF3DmM8ad/dhX4Zvq9dT4/4E3XkHHQOm2/0lHe1ggCOMBzF8uQcDuOvkpQVi1I5 - xR2C5QaU4mVpJV8YM1e2nKATfyhJZ4VQytjibyXpzMoqcdU/K+llzC46fKMb363Th1ZEQ6zzfB2G - AORd5vpl58lvMWLY+rQ/g90mYJq3OQXoYgPUh5xSRD4Hcqt8KzPxKTGej+LaD9PybET9MJVCn41a - eBtgidHvcKrY4QOLhWcq0wIAAA== + string: '{"value":[{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=362&$top=103&$maxpagesize=2"}' headers: - apim-request-id: 25843bb9-0ef6-43da-9240-310a2d87440b + apim-request-id: 4e8941aa-b57e-4a00-85e2-c8e3422154f3 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:30 GMT - etag: '"497C5CB257712145B3C5CA100A8D21CF8216951C4A77B4018D4B94BCF69D3730"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"A6EE981625899A4B358F9CC651163148695A05946809B5C607FEF9666C6D31E3"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 25843bb9-0ef6-43da-9240-310a2d87440b + x-requestid: 4e8941aa-b57e-4a00-85e2-c8e3422154f3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=6&$top=105&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=360&$top=105&$maxpagesize=2 - request: body: null headers: @@ -1365,35 +6439,27 @@ 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/batches?$skip=8&$top=103&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=362&$top=103&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS0/jMBD+L1bFqU7sOGmcSAgQHDmsBHtYVhwmk2lrNY/KnlRA1f+OU+C8y43L - PL7HaPQdxQG6iUT99yhcK2phSqoKVRiZFxnIXJGWViNJ24JWFtuqgkwsBXoCpvYulkfX02/G6M1U - pqUqZKYfdVkrVas8sbYoV6Z6ip4OAt8gu3H4l80mZmWN0flsCww8hah7mBCJWmpncOp78K+iPgoe - GTpRZ0uxBtdFtlYzH7UhnGE3/PLjxp/XSA0j/yF+YPD8KUYYkLov6/ne7RY8IJOfh83MFPnptPwM - aY2VauwaJbSAMaQ8lzYzjWxLgqYsLa6b1f+HZBK7qkqrvh2SMqrIlf5hIT0vxfVAL3zvhl18aMu8 - D3Wa7vzeAztMcNwMjt2BAvmDiw8k8DZ5inifsochdMCjTzmeSBtg3KYHnaiPkcLVIuzc/lKriwWP - c9cXix5e9rCh4N7oMhOnd80M6KTUAgAA + string: '{"value":[{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=364&$top=101&$maxpagesize=2"}' headers: - apim-request-id: d8e5d620-bb0a-4310-89b3-94dc65c16cce + apim-request-id: 858eb9a5-e555-4826-88b0-cad62a2bc2f1 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:30 GMT - etag: '"52409233FB1DA87B67BF365A5596A1F6921FE8E5EEEF842DB9F73ED9D9E351D1"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"2532FBC227F069CF1ED2F162FFFEECE517D12E564B3082C593B494BD984F08C4"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d8e5d620-bb0a-4310-89b3-94dc65c16cce + x-requestid: 858eb9a5-e555-4826-88b0-cad62a2bc2f1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=8&$top=103&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=362&$top=103&$maxpagesize=2 - request: body: null headers: @@ -1402,35 +6468,27 @@ 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/batches?$skip=10&$top=101&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=364&$top=101&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAJWQT2/cIBDFvwta5bS2ARuDkVZtlR57qJT00FY9zALeRet/gvEqzcrfvXiTVKqU - qukFDe/Nm4HfhZyhmx3R3y/EW6KJaRizpdxnlkmTVcxWGexblYGQJeXWmrIUZEtMcIDOfkzHve/d - FzQpyylnGRUZZ/dMako1LXNWlVwK8S1lOoj4waAfh3/FVE6rqlKyWWMRAeeY+u5mY5yzzq7i3PcQ - fhJ9ITgidETzLWnBd8nVdPVTb4xX2Q+fw3gI12uyhhG/OrxDCPjcbGAwrnuJXufdHiGAQRfW4rA6 - olqW7TOkUvGmrBMfo1yCtG/bDCjUWasobxI+Lk3zFki1Fo0WNJdSqErVb4X0FGO5oEwpVv8B6fb3 - X16DxF6HRP8PEvsrJLosP7bk/eAe8JMfTuk9R8Qp6qI4hSkAepOb8TB49GcXXTj7tD+Hxzm4pPcF - BhhiBziGAtOIYg9ojsWZ5fSpdPHdJp78tGP8ZoPjtGuam00PDxMcXPSPbsfJ8gujOT9u0gIAAA== + string: '{"value":[{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","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/batches?$skip=366&$top=99&$maxpagesize=2"}' headers: - apim-request-id: 55e0f1b3-2ad1-4580-bb4b-2daf00c6b0de + apim-request-id: 9bfaace2-429a-4fa2-8b08-0e9e95499377 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:30 GMT - etag: '"A0010DCAB467D8919FA0FC18F2D30E573E0F4C5EA7C3E7D6296A598C70F556B1"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"E74278FB06E79401346A125CCDB5F292EDA55C958D7CF4E6D566756FA098E478"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 55e0f1b3-2ad1-4580-bb4b-2daf00c6b0de + x-requestid: 9bfaace2-429a-4fa2-8b08-0e9e95499377 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=10&$top=101&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=364&$top=101&$maxpagesize=2 - request: body: null headers: @@ -1439,35 +6497,27 @@ 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/batches?$skip=12&$top=99&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=366&$top=99&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QT0/jMBDFv4tVcaoTO4mTJlIFCI57WAn2sIs4TMeT1mr+yZ5WLFW/O06X5Yq4 - cbGeZ957tn4ncYTuQKJ5OglnRSNUVeosN63cWKxlUZlSQptncmOsLataK2VALAV6AiZ7H49H19Mv - xpjNVKalMjLTj7psTN0UdbKqdW1W5k/MdBD4FtmNwycxoxO9UkVdlXMsMPAhRN8dDEhdR3YeHvoe - /F/RnASPDJ1o9FK04OZto+Y9IoVw0W746cet/38dRv5N/MDg+d2MH8Vzy6XvbgcekMnPYnvxnc/L - d0ZUIiq0WmJZtbIoNpGRzVHmbVsYuyLT5l9ipJVWlc6+zEjl2qhvxuh5KW4GeuEfbtjH/+yYp9Ck - 6d5PHthhguN2cOyOFMgfXXw/gdeDpzjvU/YwhA549CnHinQDjLv0qBP1T1K4XoS9m9a6uFrwOK3r - 6mrRw8sEWwruldaZOL8BfThYC9ECAAA= + string: '{"value":[{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","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/batches?$skip=368&$top=97&$maxpagesize=2"}' headers: - apim-request-id: 807e96f9-7c43-4a8d-8701-c4f05e896b11 + apim-request-id: 68f3900b-24f2-4ce4-9c1f-a4c0a9216373 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:30 GMT - etag: '"90A26BBF860AD92C5397728342B46DA2FB33D184D777F53A4CADE403F5A0BB66"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"533A62A9D1F353D571D27287F9EBE9234F90B0F5BCC6E29AEC2697AE173A5327"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 807e96f9-7c43-4a8d-8701-c4f05e896b11 + x-requestid: 68f3900b-24f2-4ce4-9c1f-a4c0a9216373 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=12&$top=99&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=366&$top=99&$maxpagesize=2 - request: body: null headers: @@ -1476,35 +6526,27 @@ 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/batches?$skip=14&$top=97&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=368&$top=97&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1STW/bMAz9L0LQU2RbsmXLBoJu6I47DFh32IodaJpOhPgLEhN0DfLfJ2fdrttu - vQhP5HuPxAMv4gzDiUTzdBGuE40o6q4nZXpJbZvLom97abU2Mjc278GYylgUW4GegKn7EJ9HN9IX - xqjVmVYyM1KrR1U2pm4Km+RRYutvUTJA4PfIbp7+ojIqyXKbqzpfZYGBTyHyHmBCGgbq1uJpHMH/ - EM1F8MwwiEZtRQ9u7TbZ2kekEG7YTZ/8vPe/v9PMX4k/M3h+JeMf49Xl5vdwAA/I5Fewv/Gu1+1r - RJhn1GJlZKUMykLXVlrMSll3XaeqrrUFqn+PqEpKXRpbVP+XUZbUWhVFZt9WRt+34t1Ez/zRTce4 - z4F5CU2aHv3igR0mOO8nx+5MgfzZxfkJvJw8xfqYsocpDMCzTzlapC0wHtJzvIZfkML9JhzdslPl - 3YbnZVebu80IzwvsKbgX2mlx/QkGxPN20AIAAA== + string: '{"value":[{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","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/batches?$skip=370&$top=95&$maxpagesize=2"}' headers: - apim-request-id: 04278e93-aa81-4f13-832b-5e0c4a11377d + apim-request-id: af7f64f9-ee21-479c-886d-27520e5f861f cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"FFDD950A88556F87920B630DA10AC2C15F069E31553F66812DD613399488CBCE"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"3588B30AA0157DA1CA8A546C9AF0C6220751B1793F3758E7C84685CF579443C7"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 04278e93-aa81-4f13-832b-5e0c4a11377d + x-requestid: af7f64f9-ee21-479c-886d-27520e5f861f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=14&$top=97&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=368&$top=97&$maxpagesize=2 - request: body: null headers: @@ -1513,35 +6555,27 @@ 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/batches?$skip=16&$top=95&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=370&$top=95&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QS2/bMBCE/wth5GRKfIkiBRhtkR57KJD00BY9rCjaJqwXyJWRxPB/D+Um57a3 - XojlzHyLxVzIGfrFk+bnhYSONESLVnppDOXKCaqUldQwDnRvAFreWQZSkS1x0QP67nN+HsPgv6HL - rGCCU1ZRwR+5birbKF5wzZmt+Y/M9JDwk8MwjX/CZMElM9yqFUsIuKSce1ic877z3SouwwDxmTQX - ghNCTxq+JXsIfXYbtvo5m9JNDuPXOB3i7ZutccLvHh8QIr6FHYzO9+/obd/9ESI49HEdDqsj6ut1 - +15SrfS+3bcUGGupYm1Foa4ENdpxI7XkUrO/LknKoraVYtz+U0lSF8xqo5X4z0r6tSUfR/+EX8J4 - ygcdEefUlOUpzhEwuMJNhzFgOPvk4znkAwp4WaLP+lBihDH1gFMsMa8oW0B3LM+8YL9Hnz5s0inM - O27uNjjNOyvvNgM8zXDwKbz4nSDXV5ufawrTAgAA + string: '{"value":[{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=372&$top=93&$maxpagesize=2"}' headers: - apim-request-id: 7c989611-f287-46ab-b51d-068874a03075 + apim-request-id: ac1303d7-4e39-4d2f-9252-e973c0e5fe81 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"D3F955D33329091A5AAE2D2EF9EE02681BA804807A89D09550AE1B462ACDC96B"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"31DD8A0ABB0BFCC90730AEC6EEFA9B64952C4A8204D0E71FE455556DD7ABB0F6"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7c989611-f287-46ab-b51d-068874a03075 + x-requestid: ac1303d7-4e39-4d2f-9252-e973c0e5fe81 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=16&$top=95&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=370&$top=95&$maxpagesize=2 - request: body: null headers: @@ -1550,35 +6584,27 @@ 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/batches?$skip=18&$top=93&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=372&$top=93&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS2/bMAz+L0LQU2RLsmVbBoJt2I47DGh76IYdaIlJhPgFiQ7aBvnvlbPuvO02 - ECCo70ER34WdoV+QtT8uzDvWsn1jau1kxQtT17y0ANyIpuFd2RWubrQpGs22zAYEQvcltQc/4CPZ - 5FVCSS40V/JBVq02raozrevSqOp78vQQ6ZMlP41/splM1Okf3ay2SEBLTLr7xVpEh24Fl2GA8MLa - C6OJoGet3LI9+D6xrVj5pI3xBvvxW5gO4fZM1DjRE9I9QaB3sYXRYv/betv3+QgBLGFYh8PKqPp6 - 3b6H5IToSucqXltheKmU5U3XSY7SoYFqr7EQfx9SkVWqTGX+LaQyq4qyUfo/y+jnln0c8Zm++vGU - DjoSzbHN81OYA5C3mZ0Ooyd/xojh7NMBGbwuARM+5BRgjD3QFHJKK/IOyB7zs8zErxHjh008+Xmn - xN2Gpnln5N1mgOcZDhj9K+4Uu74BNXVAR9ICAAA= + string: '{"value":[{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=374&$top=91&$maxpagesize=2"}' headers: - apim-request-id: 5c97fa72-cf24-4905-bb16-2de386f2d5ed + apim-request-id: f3674995-bbf5-442b-ad1a-bfbcbf22b283 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"76C5610A997FD5A86287C032195D2C3CCFF9FF48CAEC01ECE42D78C71E7C4C1A"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"53C6084DC87A29056DBD501D2CD8D8875A587ADB126BF868828703F945B9E1EB"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5c97fa72-cf24-4905-bb16-2de386f2d5ed + x-requestid: f3674995-bbf5-442b-ad1a-bfbcbf22b283 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=18&$top=93&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=372&$top=93&$maxpagesize=2 - request: body: null headers: @@ -1587,35 +6613,27 @@ 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/batches?$skip=20&$top=91&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=374&$top=91&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAK2QTWvcMBCG/4tYclrZkizbK8PShOTYQyHpoS09jOXxrlh/IY2XNIv/e+Vtcgu0 - gV7E6P0YhufCztDNyKofF+YaVjHd1KoUWc1120quC5nxuoGMi50srM4zYYRiW2Y9AmHzEJ8n1+NX - srGrhJJc5FzJJ1lUuamUSIzOd0bk32Ong0B3ltw4/K0mk0JnUpRqrQUCmkPMPc7WIjbYrOLc9+B/ - serCaCToWCW3rAXXRbcSqx+zIVxlN3zx48Ffv9EaRvqG9Ejg6TVsYbDYvVWv++6P4MES+nU4rI4q - l2X7CklgXRhUliNowbUUDa8tCA6NRatMa1qd/zMkaZJdLkWWfRhSbkopi/IDkNT7kNT/gpTrZfm5 - ZbcDPtNnN5ziQUeiKVRpevKTB3I2seNhcOTOGNCfXTwggZfZY9T7lDwMoQMafUpxRVoD2WN6lon4 - M2L4tAknN+2VutnQOO135mbTw/MEBwzuBfeKLb8BrznLjtMCAAA= + string: '{"value":[{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=376&$top=89&$maxpagesize=2"}' headers: - apim-request-id: f1cb183e-aa0f-4029-80bd-8ee7e565e618 + apim-request-id: 55d4e548-aebe-4dae-a586-ca0753fb770c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"27B099E0D67800A98B56A772C330A3B304D74E44A4E9D5BAC69079D34488B2E6"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"F9B6469F2C87C0F378CBC56185F38598C0F3642FD6F08ACA7FD8AB320F401FD9"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f1cb183e-aa0f-4029-80bd-8ee7e565e618 + x-requestid: 55d4e548-aebe-4dae-a586-ca0753fb770c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=20&$top=91&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=374&$top=91&$maxpagesize=2 - request: body: null headers: @@ -1624,35 +6642,27 @@ 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/batches?$skip=22&$top=89&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=376&$top=89&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QzW7bMBCE34UwcjIlkhIlUYDRFu2xhwJJDmnRw4pc24T1B3JlJDH87qHc9Nz2 - 1guxnJlvsZgLO0O/IGt/XJh3rGXCaauawnKowPHSmIJ3qAteFk3nqnqvhTRsy2xAIHRf0vPgB3wk - m1gllORCcyUfZNVq00qTKSErLYrviekh0idLfhr/gCmZNUIbo5sViwS0xJS7X6xFdOhWcRkGCC+s - vTCaCHrWqi3bg++T24rVT9kYb7Ifv4XpEG7fZI0TPSHdEwR6D1sYLfa/0du+z0cIYAnDOhxWR5fX - 6/a9JG1kZzvTcG3rmpfO7DmAcBz21mpZY1Vq/PuSmqw0pdb630tSdaLkf1bSzy37OOIzffXjKR10 - JJpjm+enMAcgbzM7HUZP/owRw9mnAzJ4XQImfcgpwBh7oCnklFbkHZA95meZiV8jxg+bePLzTpV3 - G5rmXVPfbQZ4nuGA0b/iTrHrG/HN1A/TAgAA + string: '{"value":[{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=378&$top=87&$maxpagesize=2"}' headers: - apim-request-id: b3bd7e68-22d5-4556-8d6d-2f0468a4e69e + apim-request-id: ce80e007-1210-4803-b611-316e341f3bbb cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"493DF936255E364E912AD5421F201EF5FC02B50A82E79D1E16038BDC304AB59F"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"DE90224DEB4CCE20A50DD4457800A575524ED92B4D29747FBAB9DF3AA8F21949"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b3bd7e68-22d5-4556-8d6d-2f0468a4e69e + x-requestid: ce80e007-1210-4803-b611-316e341f3bbb status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=22&$top=89&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=376&$top=89&$maxpagesize=2 - request: body: null headers: @@ -1661,35 +6671,27 @@ 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/batches?$skip=24&$top=87&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=378&$top=87&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QPW/bMBD9L4SRyZRImqQsAUZbtGOHAkmGtOhwpM42YX2BPBlJDP/3UG46t926 - HO7ex+HhXdgZuhlZ8+PCQssatgdt3V4hb70RXMvKcmek4rVQbu9aZ+u9Z2vmIwJh+yWPh9DjI/ns - VUJJLgxX8kHaxtSNlIXV9UZp8z17Okj0yVMYhz/ZdGG0skqpxZYIaE5Zdz97j9hiu4Bz30N8Yc2F - 0UjQsUauc/bQZbYRC5+1Kd3gMHyL4yHezkwNIz0h3RNEehd7GDx2v623f5+PEMETxmU5LIyqrtf1 - e0kWwPutRW7QVlwLkBzc1nKPrnJCu7r1m78uSehiUytRqeqfShJVYWRVi+3/VtLPNfs44DN9DcMp - BzoSTakpy1OcIlDwhR8PQ6BwxoTxHHKAAl7niBnvS4owpA5ojCXlF6UD8sfyLAvxa8X0YZVOYdop - e7eicdptzd2qh+cJDpjCK+4Uu74BYP9vt9MCAAA= + string: '{"value":[{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=380&$top=85&$maxpagesize=2"}' headers: - apim-request-id: 5e7b81fd-dc8d-4927-b2b9-81ad243c5a6c + apim-request-id: 3dedda4c-b4d2-475b-a288-c3ead688b04e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"F6416EAEFA074F5C3FE71CA7CA350A69BD94900D9C9403A7DCC9A5EE7D297A8D"' + date: Wed, 02 Jun 2021 15:54:52 GMT + etag: '"34BBBAF83FCDA607CE73780387185EFEC760D94052F3CA1A2593768D69BAD0E1"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5e7b81fd-dc8d-4927-b2b9-81ad243c5a6c + x-requestid: 3dedda4c-b4d2-475b-a288-c3ead688b04e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=24&$top=87&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=378&$top=87&$maxpagesize=2 - request: body: null headers: @@ -1698,35 +6700,27 @@ 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/batches?$skip=26&$top=85&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=380&$top=85&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QzY/TMBDF/xer2lOd+COJ7UgVIDhyQNrlAIjD1Jm2VvMle1ItW/V/xynLFcGN - izV+7/1Go3dlF+gXZO23Kwsda1llxKGTiFxoJ3jl7Z5bsIajq0TlD51zgGzLfEQg7D7k5ykM+Jl8 - ZpVQkouaK/kkm7a2bW0KrZUx7mtGekj0zlOYxj9SrhWiqKyzotIrlghoSTn3uHiP2GG3isswQPzB - 2iujiaBnrdyyA4Q+u61Y/ZxN6S6H8VOcjvH+zdY40RekR4JIr2EPo8f+N3rf9/4EETxhXIfj6ihz - u21fO+oMGNtY4HtQmleNddzJCnkllBaqaWRt9F93pFVhjbHKqH8oKWN14bSV1pn/rKTvW/Z2xGf6 - GMZzPuhENKe2LM9xjkDBF346joHCBRPGS8gHFPCyRMz6UFKEMfVAUywpryj3QP5UXmQhfo2Y3mzS - Ocw7ZR82NM07qx82AzzPcMQUXnCn2O0nJmjkb9ICAAA= + string: '{"value":[{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=382&$top=83&$maxpagesize=2"}' headers: - apim-request-id: e2387c3b-682b-49d0-adf1-8fcca89dc53d + apim-request-id: 5130101c-96b1-4fdd-93d6-fbcdefca5845 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"51740673B8DC5489369E52ADED8BA609B56812D60ABF5E11F1CB9E221BF06879"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"4DC36E9E97976B666F251954F93093ABE6A708261281766A2B2B4C49D8BDE510"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e2387c3b-682b-49d0-adf1-8fcca89dc53d + x-requestid: 5130101c-96b1-4fdd-93d6-fbcdefca5845 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=26&$top=85&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=380&$top=85&$maxpagesize=2 - request: body: null headers: @@ -1735,35 +6729,27 @@ 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/batches?$skip=28&$top=83&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=382&$top=83&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QT4/TMBDFv4tV7alObMdxnEgVIDhyQNrlAIjDxJm0VvNP9qRatup3xynLGbhx - scbvvd9o9K7sAsOKrPl2Zb5jDYPadKbukKu+d1xrq3ktrONoW4G10lVfFWzPXEAg7D6k58mP+Jlc - YpVQkouSK/kkTVPaRpWZKq2wsvyamAEivXPk5+lPmM3KSpaF3KhIQGtMscfVOcQOu01cxxHCD9Zc - Gc0EA2vknvXgh+Q2YvNTNsa77KdPYT6G+zdZ00xfkB4JAr2GHUwOh9/ofd/7EwRwhGEbjpujqttt - /9qRKFwFXWm4tK3kWmjFW1s4Xute9ti21lTmrzuSNhO2MNYW/9aRzLQ1Rgv7n5X0fc/eTvhMH/10 - TgediJbY5Pk5LAHIu8zNx8mTv2DEcPHpgAxe1oBJH3MKMMUBaA45pRV5C+RO+UVm4teI8c0unv1y - KMTDjublYOXDboTnBY4Y/QseFLv9BFsXldrSAgAA + string: '{"value":[{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=384&$top=81&$maxpagesize=2"}' headers: - apim-request-id: 15fd1d94-76db-4e77-a456-86383f3606ba + apim-request-id: bb4362a2-07f9-4214-851d-8801756b2f3c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"A2961FAF61006DD6E06A3E892592736057E5431C91164B44B0513A75D4DCAE08"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"B56153387FBC8D5C1FBD013CD9FA4DDBDED7B1B39EF57D6538075F9E1F3C53FE"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 15fd1d94-76db-4e77-a456-86383f3606ba + x-requestid: bb4362a2-07f9-4214-851d-8801756b2f3c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=28&$top=83&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=382&$top=83&$maxpagesize=2 - request: body: null headers: @@ -1772,35 +6758,27 @@ 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/batches?$skip=30&$top=81&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=384&$top=81&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QT4/TMBDFv4tV7alObNd26kgVIDhyQNrlAIjDxJm0VvNP9qRatup3xynLGbhx - scbz3m9m9K7sAv2CrP52ZaFlNWuUFGrfWm6dNVzvmoo3VjretVbbVnfGti3bMh8RCNsP+XkKA34m - n1kllOTCcCWfpK3Nvpa62Km9Vvvqa2Z6SPTOU5jGP2Gm2GlhtNErlghoSdn3uHiP2OK6Py3DAPEH - q6+MJoKe1XLLOgh9Vmux6tmb0r0dxk9xOsb7N0vjRF+QHgkivZo9jB773+h93vsTRPCEcS2Oq6Kq - 2237GpJGsBqd5hVaz7XtBG+k1dx512kB6ATA34ckC6NkJSr1byGpQjltnDD/WUjft+ztiM/0MYzn - fNCJaE51WZ7jHIGCL/x0HAOFCyaMl5APKOBliZj7Q0kRxtQDTbGkPKJsgPypvMhC/Coxvdmkc5gP - O/WwoWk+VO5hM8DzDEdM4QUPit1+ArI8GinTAgAA + string: '{"value":[{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=386&$top=79&$maxpagesize=2"}' headers: - apim-request-id: 463af220-3967-40f2-8453-7ba438244368 + apim-request-id: 85531955-4939-4f0e-9f0f-a5de11877130 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"40AB4FF9687C365CFD28C10551E70B01D06480B8D6302707A2D9B8B5D567B54D"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"1402F777A331F4C611103CABF0344E34C92EEDE4DA7160198AC5CE7467AF1DF4"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 463af220-3967-40f2-8453-7ba438244368 + x-requestid: 85531955-4939-4f0e-9f0f-a5de11877130 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=30&$top=81&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=384&$top=81&$maxpagesize=2 - request: body: null headers: @@ -1809,35 +6787,27 @@ 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/batches?$skip=32&$top=79&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=386&$top=79&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QTY/TMBCG/4tV7alObCeu7UgVu4IjB6RdDoA4zDqT1mq+ZE+qZav+d5yynIEb - F2v8foxGz4WdoV+QNd8uLLSsYVq0egfOcNDY8VrWlrtOea5qa9CCVU4g2zIfEQjbD/l5CgN+Jp+7 - SijJheZKPsldo20jbGEqIVRVfc2dHhI9eArT+KeaK1RlpbJmrSUCWlLOPS7eI7bYruIyDBB/sObC - aCLoWSO3rIPQZ7cRq5+zKd3kMH6K0yHevtkaJ/qC9EgQ6S3sYfTY/67e9r0/QgRPGNfhsDrKXK/b - N0hWe9DStlyJzvIaMqRnqRQ3CtsOXe0q4/4eki6cqKT9R0a7onbK2lr/Z4y+b9n9iC/0MYynfNCR - aE5NWZ7iHIGCL/x0GAOFMyaM55APKOB1iZj1oaQIY+qBplhSXlE+A/ljeZaF+DVierdJpzDvq/pu - Q9O8N+ZuM8DLDAdM4RX3il1/AvGR7Z/SAgAA + string: '{"value":[{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=388&$top=77&$maxpagesize=2"}' headers: - apim-request-id: e3669e02-5fde-4d5a-bcef-821be660ff73 + apim-request-id: 955f2bf1-7368-40e9-a888-45747597f861 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"D9F63C024817815DA425672CAC3BDDAB3283DADEB61D97A6BE08110E02C746FB"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"8F6D2D9592CECA3AE3E4183D68D97C8789067F1693B4F5AA15ACDBAB14E17084"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e3669e02-5fde-4d5a-bcef-821be660ff73 + x-requestid: 955f2bf1-7368-40e9-a888-45747597f861 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=32&$top=79&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=386&$top=79&$maxpagesize=2 - request: body: null headers: @@ -1846,35 +6816,27 @@ 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/batches?$skip=34&$top=77&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=388&$top=77&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS2/bMAz+L0LQU2RLsiU/gGAr2mMPA9odtmEHSmYSIX5BooOuQf775Kw7D73t - QpDfgyS+CztDvyBrf1yY71jLFNSi2tuCG1sjL62oeONEySstrZXaClN3bMtcQCDsHlN58QN+Jbd6 - hZJcaK7kizStrltRZpWphBLF9+TpIdK9Iz+N/7LpTBWm0UattkhAS0y658U5xA7X+3EZBgi/WHth - NBH0rFVbtgffJ7YVK5+0Md5gP34J0yHcxkSNE31DeiYI9C52MDrs/1pv+x6OEMARhrU5rIwur9ft - e0iNAanBIi+s3POyaxRvKlnxrhYJtqboKvxISFIUtf54RqYu66b4zzL6uWWfR3ylJz+e0kNHojm2 - eX4KcwDyLnPTYfTkzxgxnH16IIO3JWDCh5wCjLEHmkJOaUVugdwxP8tM/GkxftrEk593hbnb0DTv - Kn23GeB1hgNG/4Y7xa6/AdGwxY/SAgAA + string: '{"value":[{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=390&$top=75&$maxpagesize=2"}' headers: - apim-request-id: fa689117-df9b-4c10-9e27-fc8cc045571c + apim-request-id: 5464d9e7-9ce1-49ea-a151-ee7d394a20b4 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"883956F27A958260538D58EBEFF4FA2BEC8699CB32D76EB7F3ECA49F10E49F66"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"546452C86830DD8A8B6650BE2CBB5AD0AC0AFD9915527CD02BEDDBB405B9FE7F"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: fa689117-df9b-4c10-9e27-fc8cc045571c + x-requestid: 5464d9e7-9ce1-49ea-a151-ee7d394a20b4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=34&$top=77&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=388&$top=77&$maxpagesize=2 - request: body: null headers: @@ -1883,35 +6845,27 @@ 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/batches?$skip=36&$top=75&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=390&$top=75&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAK2QS4vbMBDHv4sIe4ptPSxHMoTu0h57KOz20JYexvIkEfELaRy2G/zdK6fbW6Fd - 6EWM/o9h+F3ZBboZWf3tynzLaibLXWvsTmeSmzYreaMzqARmzaHUFptWGCnYlrmAQNh+SM+T7/Ez - ubXLpch4qoonUdXa1FzlylhR2fJr6nQQ6cGRH4e/1crcKqOVXFuRgOaYYo+zc4gttqs49z2EH6y+ - MhoJOlbLLTuA75Jb89VP2Rhvsh8+hfEYbt9kDSN9QXokCPQadjA47H5Xb/venyCAIwzrcFwdXS7L - 9pWREkpya3RmD6XLyuZgEqMKMwHGclGZ0rrq3xnJXBqlKmvfzojvdGneAEn/GZL+X5CE0svyfcvu - B3ymj344p4tORFOsi+IcpgDkXe7G4+DJXzBiuPh0QQ4vc8Ck9wUFGGIHNIaC0oqiAXKn4iJy/mvE - +G4Tz37aK3O3oXHa79TdpofnCY4Y/QvuJVt+AqSFJF3TAgAA + string: '{"value":[{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","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/batches?$skip=392&$top=73&$maxpagesize=2"}' headers: - apim-request-id: 32ed796b-29b6-468e-951c-69bd4c95dd69 + apim-request-id: 27f8b983-5118-41b9-b620-7a5aefcd0b55 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"D2D8F443996835C8992287FBF39D94F32E6C7B6107ED3E3229A21CAE6B0F7CFB"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"0E374158AE1E77E2577C4BCACC410925755D5EDAC3C18B41EC1FE1E63FB0524D"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 32ed796b-29b6-468e-951c-69bd4c95dd69 + x-requestid: 27f8b983-5118-41b9-b620-7a5aefcd0b55 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=36&$top=75&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=390&$top=75&$maxpagesize=2 - request: body: null headers: @@ -1920,35 +6874,27 @@ 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/batches?$skip=38&$top=73&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=392&$top=73&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QzW7bMBCE34UwcjIlkhJJWYCRFO2xhwJJD23Qw4pa2YT1B3JlpDH87qWc9Nz2 - 1guxnJlvsZgLO0O/IKufL8y3rGa6EBLkruJWtpaXu87yRnSGd6IyUFprSqjYlrmAQNh+Ss+TH/Ar - ucQqoSQXmiv5JE2tq1rITEuprFbfE9NDpA+O/DT+CSszUyhdSLtikYCWmHKPi3OILbaruAwDhJ+s - vjCaCHpW6y3rwPfJrcXqp2yMN9mPX8J0CLdvssaJviE9EgR6DzsYHfa/0du+j0cI4AjDOhxWRxb6 - et2+t2TQllK4HS8qa3jZNI43BjveGdtWqpUWZfP3LYnMFkoKqf+tJZlVSpXmDfufWvqxZQ8jvtBn - P57SRUeiOdZ5fgpzAPIuc9Nh9OTPGDGcfbogg9clYNKHnAKMsQeaQk5pRd4AuWN+lpl4GzHeb+LJ - z/tS3G1omvdW3m0GeJnhgNG/4l6x6y8LI5+e1QIAAA== + string: '{"value":[{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","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/batches?$skip=394&$top=71&$maxpagesize=2"}' headers: - apim-request-id: 6ba0b851-cf67-4a28-86ff-4101ea2a6685 + apim-request-id: f73e2b1d-d880-4e4f-9060-41084079ea09 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"CC93D60234AB57280DEE3C37B4C0911341B6BCA12A7F76AAD805AF4FE706AB05"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"36B2B5EF0D45A2B6FD9FD2EEEA62C348202DDD9322D5286B1FB6E8E03FB302DE"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6ba0b851-cf67-4a28-86ff-4101ea2a6685 + x-requestid: f73e2b1d-d880-4e4f-9060-41084079ea09 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=38&$top=73&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=392&$top=73&$maxpagesize=2 - request: body: null headers: @@ -1957,35 +6903,27 @@ 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/batches?$skip=40&$top=71&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=394&$top=71&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QPW/bMBD9L4SRyZRISqQoAUZbtGOHAkmGtOhwpk42YX2BPBlJDP/3UG46t926 - HO7ex+HhXdgZ+gVZ8+PCfMsaBm3R1lB0vFNS89JY5FYY4IUAh522JdQl2zIXEAjbL2k8+AEfySWv - EkpyobmSD9I02jZCZEJZXZjqe/L0EOmTIz+Nf7LJTCtValustkhAS0y6+8U5xBbbFVyGAcILay6M - JoKeNXrLOvB9Yhux8kkb4w3247cwHcLtTNQ40RPSPUGgd7GD0WH/23r79/kIARxhWJfDyshCX6/b - 95ZMua/bSha8dgZ5Soq83tuCgzNdB5VF6PZ/2VLV6DpTpTS2kv/WksiULK0x5n9r6eeWfRzxmb76 - 8ZQSHYnm2OT5KcwByLvMTYfRkz9jxHD2KUEGr0vAhA85BRhjDzSFnNKLfA/kjvlZZuLXivHDJp78 - vCvV3YameWfqu80AzzMcMPpX3Cl2fQOs7irw1QIAAA== + string: '{"value":[{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","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/batches?$skip=396&$top=69&$maxpagesize=2"}' headers: - apim-request-id: a52c1928-57de-4fce-a5ae-c9a56d042226 + apim-request-id: c36d96f8-7ca3-4675-ad10-73c83f523b5b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:31 GMT - etag: '"BFB5F245DFE16A2CBC0B2865A9012DBD6075C613C26C75D87CD2A228B65DB402"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"A87DD1EC8755B7F53FE048FCB566C4FAAB33BE1540FE68D84231B274331AB2FD"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a52c1928-57de-4fce-a5ae-c9a56d042226 + x-requestid: c36d96f8-7ca3-4675-ad10-73c83f523b5b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=40&$top=71&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=394&$top=71&$maxpagesize=2 - request: body: null headers: @@ -1994,35 +6932,27 @@ 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/batches?$skip=42&$top=69&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=396&$top=69&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS4vbMBD+LyLsKbIlWbIUQ2hLe+yhsNtDW3qYyONExC+kcdhuyH+vnG7PZW+F - YZj5HsPwXdkF+gVZ8+PKQssa5qvaq4NXvKrljmtpLN9hZbiACqxphe20YVvmIwJh+ym3pzDgV/LZ - q4SSXBiu5JOsG2NzFVbUlbTfs6WHRB88hWn8l8sVzrnK1m61JQJaUtY9Lt4jttiu4DIMEH+x5spo - IuhZo7asg9BnthErn7Up3eEwfonTMd7XTI0TfUN6JIj0KvYweuz/Wu/3Pp4ggieM63BcGaNvt+1r - RiCdM3DouOy85drUFYeuRg5OWS+x3Smp3pKRMFpLZd4aktVO1Nb8ZyH93LL3Iz7T5zCe80Mnojk1 - ZXmOcwQKvvDTcQwULpgwXkJ+oICXJWLGh5IijKkHmmJJ+UR5APKn8iIL8WfE9G6TzmHea/2woWne - 1/ZhM8DzDEdM4QX3it1+A4f0XavSAgAA + string: '{"value":[{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=398&$top=67&$maxpagesize=2"}' headers: - apim-request-id: 6c1edfc2-8ea2-4a80-9230-3712e563d1c3 + apim-request-id: 15371802-e22c-4369-9557-777e3c5e685a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"D77D30BBF0CE38BB2ABF201A62B8E47E074DCD6CF6B11009586DACE69D40D7A0"' + date: Wed, 02 Jun 2021 15:54:53 GMT + etag: '"D2C473CA6B88C95FFB98500EC136F454EEDCEFFBCD9A2972C63EE8F5B48724B1"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6c1edfc2-8ea2-4a80-9230-3712e563d1c3 + x-requestid: 15371802-e22c-4369-9557-777e3c5e685a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=42&$top=69&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=396&$top=69&$maxpagesize=2 - request: body: null headers: @@ -2031,35 +6961,27 @@ 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/batches?$skip=44&$top=67&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=398&$top=67&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QT4/TMBDFv4tV7alObCe2m0gVIDhyQNrlAIjD1J60VvNP9qRatup3xynLGbhx - scbvvd9o9K7sAv2CrP12ZcGzltnOyMZrz7vOel5Lr3mjEbgQjbWHOgto2Za5iEDoP+TnKQz4mVxm - lVCSC82VfJKm1bbVpqga3ahaf81MD4neOQrT+CdsV+jGiFraFUsEtKSce1ycQ/ToV3EZBog/WHtl - NBH0rFVb1kHos9uK1c/ZlO5yGD/F6Rjv32yNE31BeiSI9Bp2MDrsf6P3fe9PEMERxnU4ro6ub7ft - a0kVNN1OHiSv0BheeyX4wQjHFTQorbV+1/m/L0kXVlkl7T+WZIraGlNX1X9W0vctezviM30M4zkf - dCKaU1uW5zhHoOAKNx3HQOGCCeMl5AMKeFkiZn0oKcKYeqAplpRXlAcgdyovshC/RkxvNukc5n1t - HjY0zXujHzYDPM9wxBRecK/Y7SerlSvA0wIAAA== + string: '{"value":[{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=65&$maxpagesize=2"}' headers: - apim-request-id: c5889b71-dba9-41f0-876e-6283271f58de + apim-request-id: bf89b3c5-ced6-46a1-9c65-f61b45959046 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"BB50CC7BFF9DC26CE657B86FBC0A58B3813C801F94E553B62FA69233E901B631"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"985713FD33D4F48744633C013C6A9A1B43A37AD72B5FEFE1337AC957840EF1F8"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c5889b71-dba9-41f0-876e-6283271f58de + x-requestid: bf89b3c5-ced6-46a1-9c65-f61b45959046 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=44&$top=67&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=398&$top=67&$maxpagesize=2 - request: body: null headers: @@ -2068,35 +6990,27 @@ 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/batches?$skip=46&$top=65&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=65&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS4/TMBD+L1a1pzoPx+M4kSpAcOSAtMsBEIepM22t5iV7Ui1b9b/jlOUM3LiM - Zr6XRt9VXLBfSLTfrsJ3ohUGi72uEWSpbCE1EEirXSf1vuqMUVgdLIitcIGQqfuQxpMf6DO75FWF - KmUBUpVPpWmhbgGyApq6tPpr8vQY+Z1jP41/splMGwu2tqstMvISk+5xcY6oo24Fl2HA8EO0V8ET - Yy9atRUH9H1i22LlkzbGO+zHT2E6hvuZqHHiL8SPjIFfxQ5HR/1v6z3v/QkDOqawLseVAX27bV9L - asBgWVaFbJTTUis4SFvXIOsKTbE3aYD7+5J0VkEDjYV/KwmyqtFaN+o/K+n7Vrwd6Zk/+vGcHjox - z7HN83OYA7J3mZuOo2d/oUjh4tMDGb4sgRI+5BxwjD3yFHJOEfke2Z3yS5kVv1aKbzbx7Oedtg8b - nuadqR42Az7PeKToX2inxO0nJwmUKNMCAAA= + string: '{"value":[{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=402&$top=63&$maxpagesize=2"}' headers: - apim-request-id: a6aa9317-8241-40f7-a261-1cfa3df47860 + apim-request-id: ffe27a97-0f34-4f1c-ad7c-1fc5536a4168 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"65E37E97510D33A49E630A2283925EE53D488858148DCC9870AF9847FB401B2A"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"2DFA8B25E879EFB3DA191348F49F9DA0529D6EFF9C119F70FC76DB807133827D"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a6aa9317-8241-40f7-a261-1cfa3df47860 + x-requestid: ffe27a97-0f34-4f1c-ad7c-1fc5536a4168 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=46&$top=65&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=65&$maxpagesize=2 - request: body: null headers: @@ -2105,35 +7019,27 @@ 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/batches?$skip=48&$top=63&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=402&$top=63&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QPW/bMBD9L4SRyZRIipQlAUZbtGOHAkmGtOhwIk82YX2BPBlJDP/3UG46t926 - HO7ex+HhXdgZ+gVZ8+PCvGMNk9KYsioF75xSXEOx4+2u0xy1U5UTpWh1zbbMBgRC9yWNBz/gI9nk - VUJJLgxX8kGWjdk1psjMrpSVLr4nTw+RPlny0/gnm86kLFISudoiAS0x6e4XaxEduhVchgHCC2su - jCaCnjVqyzrwfWIbsfJJG+MN9uO3MB3C7UzUONET0j1BoHexhdFi/9t6+/f5CAEsYViXw8oYfb1u - 30vqFFR1UUuO0ALXVlvetsLxugJXt9bWVnV/X5LKKlMUdW3+uaRSGSXL/6ykn1v2ccRn+urHUwp0 - JJpjk+enMAcgbzM7HUZP/owRw9mnABm8LgETPuQUYIw90BRySi/yFsge87PMxK8V44dNPPl5b8Td - hqZ5X8q7zQDPMxww+lfcK3Z9A0mCOS3TAgAA + string: '{"value":[{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=404&$top=61&$maxpagesize=2"}' headers: - apim-request-id: d1220799-3d16-4bb8-b4ab-c025f9c42bf2 + apim-request-id: ffa646de-9e3e-4fff-81c5-956c5b33994f cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"748F1DEBB3554B4C1DE765322784BF9B227A5B21B1D47FD87D623455A90EF11E"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"D043B6A74BA592F4A7937C317BFD8A635053C4EA54F648BFF8046F35062D3D76"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d1220799-3d16-4bb8-b4ab-c025f9c42bf2 + x-requestid: ffa646de-9e3e-4fff-81c5-956c5b33994f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=48&$top=63&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=402&$top=63&$maxpagesize=2 - request: body: null headers: @@ -2142,35 +7048,27 @@ 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/batches?$skip=50&$top=61&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=404&$top=61&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QyW7bMBD9F8LIyZRIitQGBE2QHHsokPTQFj2MR2ObsBaDHBlJDP97KDc9t731 - MstbBoN3FifoZxLtj7PwnWiFcSVumwYlbFwtbWE72eDWSq2gsdABbIDEWmAgYOoeU3n2A31lXLzK - aKmcNPpZl62rWmcybXWpq+/J0kPke2Q/jX9yFZk2SqlGL7bIwHNMuqcZkaijbgHnYYDwKtqz4Imh - F61Ziy34PrGtWvikjfEK+/FLmHbhuiZqnPgb8RND4A8xwojU/7Ze7z3sIQAyhWXYLYyzl8v6IyO0 - jpA0SXB1Ja3dVLLWWkmiLZlGAVaF+fuMdFa4UpXa/VtIZgmpsHX9n4X0cy3uRnrhz348pIf2zMfY - 5vkhHAOwxwyn3ejZnyhSOPn0QAZvc6CEDzkHGGMPPIWc04l8A4z7/KQz9Wuk+GkVD/5468zNiqfU - m5vVAC9H2FH0b3RrxOUdp/2zF9ICAAA= + string: '{"value":[{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=406&$top=59&$maxpagesize=2"}' headers: - apim-request-id: 17ee92cb-8959-4d47-bdf2-fe248010cc95 + apim-request-id: e417d9d2-5d49-4271-a3c7-7f1d3930a2db cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"B7F91A0EC6D741B457D7035D97910CFDA55964BFB563CA4B21C6822171F4B14E"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"1CA7C041EB04BBB2CD66B5A4AA7E0F1D74D1FA86794C8012EB48B9A1728FEE81"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 17ee92cb-8959-4d47-bdf2-fe248010cc95 + x-requestid: e417d9d2-5d49-4271-a3c7-7f1d3930a2db status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=50&$top=61&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=404&$top=61&$maxpagesize=2 - request: body: null headers: @@ -2179,35 +7077,27 @@ 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/batches?$skip=52&$top=59&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=406&$top=59&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QyW7bMBD9F8LIyZRIioskIEiK9thDgaSHtuhhTI1swloMcmSkMfzvpdz0XOTW - C/n4luHgXdgZhgVZ++PCQsdaJqTeVZUWvLZace16mdGu44DW9p1qbLVTbMt8RCDsPuXjOYz4lXzO - KqEkF4Yr+Sxta1yrXeEqY2ulvufMAIk+eArz9K9YU4i6rvJfaywR0JKy72nxHrHDbiWXcYT4i7UX - RjPBwFq1ZT2EIautWPXsTelGh+lLnPfx9szSNNM3pCeCSG9mD5PH4W/0Nu/jASJ4wriC/aoYfb1u - 30qSyittjOBO6obrytS86XvgrhNWCdc5L+E9JclKG2fd+0pyRa2V1U39n5X0c8seJ3yhz2E65oUO - RKfUluUxniJQ8IWf91OgcMaE8RzyAgW8LhEzP5YUYUoD0BxLyiPKHZA/lGdZiD8Q08MmHcPp3ui7 - Dc35dnebEV5OsMcUXvFesetvB+zk29MCAAA= + string: '{"value":[{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=408&$top=57&$maxpagesize=2"}' headers: - apim-request-id: 703500a0-7339-40e2-bc63-d362e86e4998 + apim-request-id: c8720f77-55f5-405a-88a2-adbd024f05f0 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"23B406E5C32C7DB4D6789B3580922802288C684B845C9A869F2A34A34056188E"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"F9727B5965836545E6C5CBD39EC8B14141C292207243B5DF395CA5E278FEA1DC"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 703500a0-7339-40e2-bc63-d362e86e4998 + x-requestid: c8720f77-55f5-405a-88a2-adbd024f05f0 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=52&$top=59&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=406&$top=59&$maxpagesize=2 - request: body: null headers: @@ -2216,35 +7106,27 @@ 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/batches?$skip=54&$top=57&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=408&$top=57&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QT0/DMAzFv0s07bS2aZs0XaUJEBw5IG0cAHFwU3eL1j9T4k5j07476Rhn4MYl - sf3es6zfie2hGZAVbydmKlawPMG6VGkWpKJWgSjncZDPkzJQArMq5ShKVbIZ0xaBsHrwz8q0+Eza - ZxOexAGXQRKv4qyQqhBZKLlQKhavPtOAoztNpu9+iqlQzbNUSjXGHAENzvuWg9aIFVbjcGhbsB+s - ODHqCRpWJDNWg2m8WvBR917nLmPTPdl+bS+tl7qeXpCWBJauZg2dxuY7etl3vwELmtCOxXpUpDif - Z1dIZZrWuhJVANyTErzkHlKtA51prCshao3p7yHJMOdc5SL/G6QsVKmSKs7/GaT3Gbvt8ECPptv6 - gzZEO1dE0dbuLJDRoe7XnSGzR4d2b/wBIRwHi37eRmShcw1QbyPyK6ISSG+ifRzyrxLdzcRtzW4h - s+mEev/L6aSFww7W6MwRFwk7fwL8uk7c0wIAAA== + string: '{"value":[{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=410&$top=55&$maxpagesize=2"}' headers: - apim-request-id: 5c354c3d-cfea-4d42-98b3-939a3b00300b + apim-request-id: 5c04194b-ad38-49d9-bebc-3623356107c4 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"3D4551440554E5CBF01E457FBC84F08910CC0B576825D35423F0F19EE64FDBD6"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"940E3C5E7269F55927560388DE909762B275221B1C4C396DD828E17C98BD2EB1"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5c354c3d-cfea-4d42-98b3-939a3b00300b + x-requestid: 5c04194b-ad38-49d9-bebc-3623356107c4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=54&$top=57&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=408&$top=57&$maxpagesize=2 - request: body: null headers: @@ -2253,35 +7135,27 @@ 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/batches?$skip=56&$top=55&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=410&$top=55&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS4/TMBD+L1a1pzrx2yHSChAcOSDtcoAVh4kzba3mUdmTatmq/x2nLGfgxmVm - /D3Go+/CzjAsyNqnC4s9axmaXqqgOy60FdyYRnMQquONRNV4Le1OC7ZlISEQ9h9LeYwjfqFQvEoo - yYXlSj5K11rfGlsJ65305lvxDJDpfaA4T3+2eWmN83K1ZQJactE9LCEg9tiv4DKOkH6w9sJoJhhY - q7ZsB3EobCtWvmhzvsFx+pzmfbo9CzXN9BXpgSDRqzjAFHD4bb3t+3CABIEwrcN+Zay5XrevIXkn - NAjwJZXguLHa826nFBf9zirnNILr/j4kXbk3spH63zIyldOq/Nb8Zxl937J3Ez7Tpzgdy0EHolNu - 6/qYTgkohirM+ylSPGPGdI7lgApeloQFH2tKMOUBaE41lRV1BxQO9VlW4teI+e0mH+Pp3jZ3G5pL - 13ebEZ5PsMccX/BesetP+cxf7NICAAA= + string: '{"value":[{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=412&$top=53&$maxpagesize=2"}' headers: - apim-request-id: 82941100-6cee-4ac7-b975-28b0bb6aee48 + apim-request-id: 659f996e-5e9f-4979-9bc5-944fce917825 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"3D4608C6EFBA13FB4478BFD396893A973E9557BA4BE11CC689180D878550F42A"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"4473786C4C7CE2C38FC2E8F899CECB5F0C5336C197125E19F29A72DB425A6DC5"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 82941100-6cee-4ac7-b975-28b0bb6aee48 + x-requestid: 659f996e-5e9f-4979-9bc5-944fce917825 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=56&$top=55&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=410&$top=55&$maxpagesize=2 - request: body: null headers: @@ -2290,35 +7164,27 @@ 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/batches?$skip=58&$top=53&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=412&$top=53&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QPW/bMBD9L4ThyZREipIpAUZbJGOHAnGGtMhwIs82YX2BPBlODP/3UK47t9m6 - HN69j8PhXdgJ2glZ/evCnGU1KxujsVTAG1XtuDJlEZERXOXWlFDtdGaBrZjxCIT2MY6t6/CZTMzK - TAqeFVyKrSjrYl3LPFGlzHT+M0ZaCPTNkBv6v6VUInNdVUrMsUBAU4i+p8kYRIt2JqeuA//G6guj - gaBltVyxHbg2qnU269Ebwo12/Q8/7P1tjVI/0AvSE4Gnu9lAb7D9E73deziAB0PoZ7CflUJdr6t7 - R1YKrXLd8EpKxVW2LjhUa+Bls8utBS2s0v/ekUy0UDJfi8+VlCdV7FYV6j8r6XXFvvZ4pu+uP8aH - DkRjqNP06EcP5Exihn3vyJ0woD+5+EAC75PHyHcpeehDCzT4lOKJtAEyh/Qkkuw3xPBlEY5u3JTZ - ckHDuCnEctHBeYQ9BveOG8muH3ilKhTSAgAA + string: '{"value":[{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=414&$top=51&$maxpagesize=2"}' headers: - apim-request-id: 4e804c5c-dc95-4a4d-a906-6bd779318e54 + apim-request-id: f2b72271-eadb-47d2-bded-b964a7dbc697 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"4763FF3137DCFCA54AAFB5A7CBFF3A7184146B3C65586D18699F303FDCCC1C87"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"74292FC000D44429BF829D1B15EFC5B76C28AF3AA391C511224F1FFE069F6D94"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4e804c5c-dc95-4a4d-a906-6bd779318e54 + x-requestid: f2b72271-eadb-47d2-bded-b964a7dbc697 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=58&$top=53&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=412&$top=53&$maxpagesize=2 - request: body: null headers: @@ -2327,35 +7193,27 @@ 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/batches?$skip=60&$top=51&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=414&$top=51&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS4/TMBD+L1a1pzqxHdt5SBUgOHJA2uUAiMPEmbRW85I9qZat+t9xynIGblxG - M99jZvRd2QWGFVnz7cp8xxrWGyGUkoq7ruy47mrJ20oY7kyvRN32RVkB2zMXEAi7D6k8+RE/k0te - JZTkSavkk7SNKRslM13VRtbV1+QZINI7R36e/mQrslpopSu72SIBrTHpHlfnEDvsNnAdRwg/WHNl - NBMMrFF71oMfEtuIjU/aGO+wnz6F+RjuY6Kmmb4gPRIEehU7mBwOv633fe9PEMARhq05bozRt9v+ - NaTKarS9q7hRreZa9sCrFi23prC6dLZVPf59SCIrS6lMLf81pHRLFYX6z0L6vmdvJ3ymj346p4dO - REts8vwclgDkXebm4+TJXzBiuPj0QAYva8CEjzkFmOIANIec0oq8BXKn/CIz8avF+GYXz345WPWw - o3k56PphN8LzAkeM/gUPit1+Ai8qILPTAgAA + string: '{"value":[{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=416&$top=49&$maxpagesize=2"}' headers: - apim-request-id: 09f4a94f-9534-4795-8ea5-cd6d3f4a0952 + apim-request-id: 1ae240b8-719c-4fe4-9d66-77f6f58a06ef cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"5D7A574E6ECB2425822FDA09914444DB673C540265B32CE3C7A7E91DB446DC86"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"4318E412697E09B404F52E1CCB8B38941BE474B9CE4C61B73E97B4D49BE6524F"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 09f4a94f-9534-4795-8ea5-cd6d3f4a0952 + x-requestid: 1ae240b8-719c-4fe4-9d66-77f6f58a06ef status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=60&$top=51&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=414&$top=51&$maxpagesize=2 - request: body: null headers: @@ -2364,35 +7222,27 @@ 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/batches?$skip=62&$top=49&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=416&$top=49&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAJWQT2vcMBDFv4tYclrZki3ZK8PSlvTYQyHJIS05jLXjXbH+hzRekiz+7pG3aaGQ - 0OYiRu/Nm5F+Z3aCdkJW/Twzt2MVywuUAhvJjZLIVVNveK2E4NjkIAGNELVla2Y9AuHuazxuXYd3 - ZGM2E5nkQvNM3sqi0mWViUSKXBujfsRMC4G+WHJD/69YnhQyM0Uml1ggoCnEvpvJWsQd7hZx6jrw - T6w6MxoIWlZla9aAa6NbicWPvSFcZNd/98PeX67R6ge6R7oh8PTabKG32P6OXuZdH8CDJfRLsV8c - reZ5/QqpkI3dNMpwKZXmytaSbwyW3Jja1rrQWOvyvyGJMjFa5br4GCSxSbQsS5kXf0G6/vOXtyDJ - tyGJj0GS70IS8/ywZp97fKRvrj/G9xyIxlCl6dGPHsjZxA773pE7YUB/cnF/As+Tx6h3KXnoQws0 - +JTiiLQGsof0JBPxq8TwaRWObtwW6mpFw7hV5dWqg8cR9hjcM24zNr8AGBYCctICAAA= + string: '{"value":[{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","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/batches?$skip=418&$top=47&$maxpagesize=2"}' headers: - apim-request-id: 3305addd-00b7-463d-914e-3d32ef9b606e + apim-request-id: da8e949a-7613-4080-b956-793c9bdd0fdf cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:32 GMT - etag: '"BA41AD16B32F7A9A4B40462AD9BC211178A446461CB021B52E4A6D927AAEA33B"' + date: Wed, 02 Jun 2021 15:54:54 GMT + etag: '"92A546CC6B1242E4E9BE13C728DEAA152DF0DB171D011BD23E9E8372119C56DF"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3305addd-00b7-463d-914e-3d32ef9b606e + x-requestid: da8e949a-7613-4080-b956-793c9bdd0fdf status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=62&$top=49&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=416&$top=49&$maxpagesize=2 - request: body: null headers: @@ -2401,35 +7251,27 @@ 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/batches?$skip=64&$top=47&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=418&$top=47&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1Qy27jMAz8FyHoKbItS5ZsA0F3kR57KLDdw7bogZaZRIhfkJigbZB/Xzl9XLt7 - 64UYkjNDYk7sCN0BWf14Yq5lNROtFq1qDNcNIFe6KXhVNSq2edEWAEYIwZbMegTC9iaWe9fjb7JR - m2e54FnBc3EvdF2YOjOJzIQUqnyImg4C/bTkxuErWZmoKgqNnGWBgA4h8tYwWOw6bOfhoe/Bv7D6 - xGgk6FgtlmwDbt7W2by3FkO4YDfc+XHrP9phpD9Ivwg8vZPtp/HscvFb78CDJfQz2F545/PyPSO7 - EQo2m5JLWbRcyUpzkKh5JstKGpkrU8h/z0gnWstSmOp/M8qNFioX3yujpyX7MeAz3bphH//ZEU2h - TtO9nzyQs4kdt4Mjd8SA/uji/QReDx7jvE/JwxA6oNGnFC3SBsju0qNIsjeI4XoR9m5aaX21oHFa - qeJq0cPzBFsM7hVXOTv/BXkR8NbRAgAA + string: '{"value":[{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","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/batches?$skip=420&$top=45&$maxpagesize=2"}' headers: - apim-request-id: 6ad80e87-dd35-4375-ac40-44e90341dc68 + apim-request-id: 4c87aeb2-c797-41a6-8d05-b4d00120ab80 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"9935EEA31774D6502F810B124BDE8832461631CD62B874036F079C53AA8F34F6"' + date: Wed, 02 Jun 2021 15:54:55 GMT + etag: '"8FC0AEE64D57CAAD1B00F3100DC6E1BC640BD03E5AB5AA8B54C51D6367E58B61"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6ad80e87-dd35-4375-ac40-44e90341dc68 + x-requestid: 4c87aeb2-c797-41a6-8d05-b4d00120ab80 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=64&$top=47&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=418&$top=47&$maxpagesize=2 - request: body: null headers: @@ -2438,35 +7280,27 @@ 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/batches?$skip=66&$top=45&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=420&$top=45&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1Qy27bMBD8F8LIyZT4EEVJgJEE6bGHAk0PbdHDitrYhPUCuTZcG/73Um7aa5tb - LovZ3ZnZxVzYEfoDsub7hfmONQxEK2RtLW9rrXmhO8tr0IprpU3RCkQBjq2ZCwiE3YdUnv2AX8gl - rRJKcmG4ks+ybIxtRJkJVZSmNt+SpodIj478NP5LVmWylkJWN1kkoENMvCcYHfY9dsvwMAwQfrLm - wmgi6Fkj1+wF/LJtxLJ3DmO8YT9+CtM2/GnHib4ifSYI9Ep2f40Xl5vf0w4COMKwgO2Nd72uXzMy - dVsLDZZ3tit4YYzjFbSpVM445bBStvz/jExWSC2stG/NSFSVLYx+Xxn9WLOHEU/00Y/79M+OaI5N - nu/DHIC8y9y0HT35I0YMR5/uZ3A+BEzzIacAY+yBppBTsshbILfLjzITvyHG+1Xc+3lTVncrmuZN - oe9WA5xm2GL0Z9wodv0FX/Eg9dECAAA= + string: '{"value":[{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","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/batches?$skip=422&$top=43&$maxpagesize=2"}' headers: - apim-request-id: a69e6396-83dd-44e0-8d96-c37e40307f67 + apim-request-id: a118e3b3-cb9e-4caa-bc5e-b4f62756dfc2 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"1D9D13A9C5CD7EBED1E0FFD9DF7826CB17AE84DB873159E5D2B8431EB8926F0C"' + date: Wed, 02 Jun 2021 15:54:55 GMT + etag: '"C82B2DED5A6DE08CEC5D6ACCC49726A6879938084E3D223E82A48A87BC19C85E"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a69e6396-83dd-44e0-8d96-c37e40307f67 + x-requestid: a118e3b3-cb9e-4caa-bc5e-b4f62756dfc2 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=66&$top=45&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=420&$top=45&$maxpagesize=2 - request: body: null headers: @@ -2475,35 +7309,27 @@ 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/batches?$skip=68&$top=43&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=422&$top=43&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QTW/bMAz9L0LQU2RLsmVFBoJt2I49FGh3WIsdaJlJhPgLEh10DfLfJ6fttehu - AwiCfI+PeHhndoJuRlY/nZlvWc2sMlZgtePS6IaXDi0HsBUXzUbt1K4VTYlszVxAIGx/pPbge/xJ - LmmVUJILzZV8kFWtU9lMGqOELR6TpoNI3xz5cfhQZmohsqISpTXlIosENMd0dz87h9hiu4Bz30P4 - w+ozo5GgY7Vcsx34LrG1WPh0G+MV9sNdGPfhuiZqGOkX0j1BoLdjB4PD7l16/ff9AAEcYViG/cIo - c7ms30JKQSRzYLgR2vJSVg23rYa0FkIYg42z+vMhycwKpdVG/UNIqYqs0LLSm/8so99r9nXAZ7r1 - wzEZOhBNsc7zY5gCkHeZG/eDJ3/CiOHkk4EMXuaACe9zCjDEDmgMOaUXeQPkDvlJZuJ1xPhlFY9+ - 2hpxs6Jx2pbyZtXD8wR7jP4Ft4pd/gKz/gA80gIAAA== + string: '{"value":[{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=424&$top=41&$maxpagesize=2"}' headers: - apim-request-id: f62b22b6-1c3b-445f-a66e-ba2b6d436b66 + apim-request-id: 8c18c4cc-01b6-4717-b530-33ecb1d8dd23 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"3EADA226A62D0B67BF6E69ED8C6EAFBE534F090D3FDB6465DE0A68066A679C50"' + date: Wed, 02 Jun 2021 15:54:55 GMT + etag: '"E1CBB67D60E20C1FC45E1351896075860E9A1A9FCBE69DCE5501F4296D904FDC"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f62b22b6-1c3b-445f-a66e-ba2b6d436b66 + x-requestid: 8c18c4cc-01b6-4717-b530-33ecb1d8dd23 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=68&$top=43&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=422&$top=43&$maxpagesize=2 - request: body: null headers: @@ -2512,35 +7338,27 @@ 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/batches?$skip=70&$top=41&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=424&$top=41&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QS2/bMBCE/wth5GRKJEVSD8BoguTYQ4Gkh7boYUVtbMJ6gVwZSQz/91Buem57 - 64VYzsy3WMyZnaBfkDU/zsx3rGGirLAtK8fLFoFrVI630hVcKqE7fHbGoGVb5gICYfeQnic/4Fdy - iVVCSS4MV/JJ2sbYRuvMmqoUqvyemB4i3Tny0/gnzGaqFrXRxYpFAlpiyj0uziF22K3iMgwQXllz - ZjQR9KyRW/YMvk9uI1Y/ZWO8yn78EqZ9uH6TNU70DemRINBH2MHosP+NXvfdHyCAIwzrsF8dVV4u - 24+SDKAUWCAvnFZct63klakLLqyuOmMNgNB/XVJRZtpKKdQ/dVTUmdKVVZX8zzr6uWW3I77QZz8e - 00EHojk2eX4McwDyLnPTfvTkTxgxnHw6IIO3JWDSh5wCjLEHmkJOaUXeArlDfpKZ+DVi/LSJRz/v - SnWzoWneFfXNZoCXGfYY/RvuFLu8A1JADhLSAgAA + string: '{"value":[{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=426&$top=39&$maxpagesize=2"}' headers: - apim-request-id: 49f4af1f-b637-41ee-9e36-b4142926e493 + apim-request-id: c998f272-6389-4a81-be85-bfb06ef44d7e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"01D55A7013D28D6E9BA7BBFDA32FE11C7FE713999C25E0ADB112AFF9837B73DE"' + date: Wed, 02 Jun 2021 15:54:55 GMT + etag: '"6C409275251F2F0C4999CEB03A57BFAE6D78D15614CA25E95D5F00F5272786B5"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 49f4af1f-b637-41ee-9e36-b4142926e493 + x-requestid: c998f272-6389-4a81-be85-bfb06ef44d7e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=70&$top=41&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=424&$top=41&$maxpagesize=2 - request: body: null headers: @@ -2549,35 +7367,27 @@ 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/batches?$skip=72&$top=39&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=426&$top=39&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAK2QTWvcMBCG/4tYclrZlla2LMPShOTYQyHpoS09jOXxrlh/IY2XNIv/e+Vtcgu0 - gV7E6P0YhufCztDNyKofF+YaVjElsZGlMFzURnOlM+S1bgwH2JVW6EKaXLEtsx6BsHmIz5Pr8SvZ - 2JWZFDzLuRRPoqjyopImKXVZlJn5HjsdBLqz5MbhL7WdTIRRhdD5WgsENIeYe5ytRWywWcW578H/ - YtWF0UjQsUpsWQuui26VrX7MhnCV3fDFjwd//UZrGOkb0iOBp9ewhcFi91a97rs/ggdL6NfhsDpS - L8v2FRIWra2h1LxQpuVKNRk3oBXXrapFBsLs2vLfIZWJKYQyUn8UkhRaisJ8AJJ8H5L8X5BytSw/ - t+x2wGf67IZTPOhINIUqTU9+8kDOJnY8DI7cGQP6s4sHJPAye4x6n5KHIXRAo08prkhrIHtMzyLJ - /owYPm3CyU17rW42NE77nb7Z9PA8wQGDe8G9ZMtveqMMqdMCAAA= + string: '{"value":[{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=428&$top=37&$maxpagesize=2"}' headers: - apim-request-id: e78be74e-e276-4c4f-b07f-c8ccd6d20749 + apim-request-id: 31c46ea7-23a1-45a1-b543-053e41e9b326 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"F9D802C12376A44C85ECB1CC4796DFFEDF32D64EF8E2804059C136AEE37AE1FA"' + date: Wed, 02 Jun 2021 15:54:55 GMT + etag: '"600FCA5D6F4F8EB49030E2468B0F19EC4DF8D5BCED4E057D332B3A386BFE7AEC"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e78be74e-e276-4c4f-b07f-c8ccd6d20749 + x-requestid: 31c46ea7-23a1-45a1-b543-053e41e9b326 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=72&$top=39&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=426&$top=39&$maxpagesize=2 - request: body: null headers: @@ -2586,35 +7396,27 @@ 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/batches?$skip=74&$top=37&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=428&$top=37&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1RS0/jMBD+L1bFqU5sJ7GTSBUgOHJYCfawrDhMnKG1mpfsSQVU/e84Bc673LhY - 4+8xM/rmyA7Qzcjqv0fmWlazohCtaazkTWMMzyuleNU+a64kNCKzbZlpzdbMegTC9jY+D67H32Sj - VwkluSii9kHqutC1KhOl8zKvzGP0dBDo2pIbh3/YMpnEuabKisUWCGgOUXc/W4vYYruAc9+Df2X1 - kdFI0LFardkzuC6ytVj4qA3hDLvhlx+3/vyN1DDSH6R7Ak+fYguDxe7Leu53swMPltAvxXZhivx0 - Wn+GBAKkkLLljWpynsdgeKkyzS0KXVRZY3Ij/j8kk2ihM1Xl3w8pXqssf1hIT2t2NeAL3blhHxfa - EU2hTtO9nzyQs4kdt4Mjd8CA/uDiAgm8zR4j3qfkYQgd0OhTii3SBsju0oNMxEeJ4XIV9m7aGH2x - onHaZMXFqoeXCbYY3BtuFDu9AwCcIa7TAgAA + string: '{"value":[{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=430&$top=35&$maxpagesize=2"}' headers: - apim-request-id: 26da1c22-71c5-4cbc-b3d1-958b904bb5d5 + apim-request-id: dd7fd00c-e612-4fcf-a8f7-ec5b7cbd8af4 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"6B1C3FF5F9744525B71EBEBF2CC7CAB3EABBD452E5E2A85D41AC3172BA5D4660"' + date: Wed, 02 Jun 2021 15:54:55 GMT + etag: '"8AFE57F4296B7EFE7856DF8D92D7F73EAD263763DA63507B52F312E2A7F8945E"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 26da1c22-71c5-4cbc-b3d1-958b904bb5d5 + x-requestid: dd7fd00c-e612-4fcf-a8f7-ec5b7cbd8af4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=74&$top=37&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=428&$top=37&$maxpagesize=2 - request: body: null headers: @@ -2623,35 +7425,27 @@ 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/batches?$skip=76&$top=35&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=430&$top=35&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QzW7bMBCE34UwcjIlkhIpUYDRFumxhwJJD23Rw5pa2YT1B3JlJDH87qHc5Nz2 - 1guxnJlvsZgLO0O/IGt+XphvWcOkNEXZ1pJXTle8RCE5aOd40Sljoa3bGgzbMhcQCNvP6Xn0A34j - l1gllORCcyUfpWm0aZTMtDJKWfMjMT1E+uTIT+OfsGLFrKxvWCSgJabcw+IcYovtKi7DAOGZNRdG - E0HPGrllHfg+uY1Y/ZSN8Sb78WuYDuH2TdY40XekB4JAb2EHo8P+Hb3tuz9CAEcY1uGwOqq6Xrfv - JSm0nbUtLytnedkJ5FDu97zTwthOV1aA++uSpM6UVoWy5T+VJE2mhRKl+N9K+rVlH0d8oi9+PKWD - jkRzbPL8FOYA5F3mpsPoyZ8xYjj7dEAGL0vApA85BRhjDzSFnNKKfA/kjvlZZuL3iPHDJp78vKvq - uw1N864o7jYDPM1wwOhfcKfY9RWuBKbi0wIAAA== + string: '{"value":[{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=432&$top=33&$maxpagesize=2"}' headers: - apim-request-id: 001770d6-7e22-47c6-a71c-28c87517c288 + apim-request-id: cd7af05e-551a-4f3e-ba9a-93bf353ddd4b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"4D2971ED110193BF26A675935684391E7F017EDBC71289C98B0D4153DCD1F2C7"' + date: Wed, 02 Jun 2021 15:54:55 GMT + etag: '"D4322421343510AE31004164AE179325C9287F05BC095BC3896C620F81806503"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 001770d6-7e22-47c6-a71c-28c87517c288 + x-requestid: cd7af05e-551a-4f3e-ba9a-93bf353ddd4b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=76&$top=35&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=430&$top=35&$maxpagesize=2 - request: body: null headers: @@ -2660,35 +7454,27 @@ 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/batches?$skip=78&$top=33&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=432&$top=33&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS4/TMBD+L1a1pzqxncR2IlULgiMHpF0OsOIwdmZbq3nJnlTLVv3vuGU5Azcu - o5nvpdF3ZicYVmTd05mFnnXMOiuFdg3XWFtet7blzuazd6attZcOvGNb5iMCYf8xj8cw4hfy2auE - klw0XMlHqbtGd8IUVhllhfqWPQMkeu8pzNOfbG1RCy2MudkSAa0p6x5W7xF77K/gOo4Qf7DuzGgm - GFgnt+wZwpDZTlz5rE3pBofpc5z38XZmaprpK9IDQaQ3sYfJ4/Dbesv7cIAInjBel/2VUeZy2b6V - hKJyrdSCGwMVr1XtOfTa8KqVQhlbgWvU35ckC91o0VTm30pSRVUbLer2Pyvp+5a9m/CFPoXpmB86 - EC2pK8tjXCJQ8IWf91OgcMKE8RTyAwW8rhEzPpYUYUoD0BxLyhGlA/KH8iQL8WvFdL9Jx7DsrLjb - 0LzsKnm3GeFlgT2m8Io7xS4/AZ7QzfrTAgAA + string: '{"value":[{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=434&$top=31&$maxpagesize=2"}' headers: - apim-request-id: 896d0eda-f9df-40a7-b2ad-6d335398c7c9 + apim-request-id: 4671a589-1721-4ab6-ab97-777f2bc9e11d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"157E9FDE97BC515EE8C82B27C4EBD0579B5D2E79F38AFB3761E12620B00C1F95"' + date: Wed, 02 Jun 2021 15:54:55 GMT + etag: '"D1CCB5992AF8168A038D86FAB01AB9F82FF6119AC831C2CCDC85F54BA6B3C19D"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 896d0eda-f9df-40a7-b2ad-6d335398c7c9 + x-requestid: 4671a589-1721-4ab6-ab97-777f2bc9e11d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=78&$top=33&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=432&$top=33&$maxpagesize=2 - request: body: null headers: @@ -2697,35 +7483,27 @@ 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/batches?$skip=80&$top=31&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=434&$top=31&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QT4/TMBDFv4tV7alO7MSO40gVIDhyQNrlAIjDxJm0VvNP9qRatup3xynLGbhx - scbvvd9o9K7sAsOKrPl2Zb5jDStMpwtX9xyFLrjqneB1VwIHI5RrS9MbbNmeuYBA2H1Iz5Mf8TO5 - jRWF5ELzQj7JqtG60XWmVWl0Zb8mZoBI7xz5efoTZjNla2tquWGRgNaYco+rc4gddpu4jiOEH6y5 - MpoJBtbIPevBD8ltxOanbIx32U+fwnwM92+yppm+ID0SBHoNO5gcDr/R+773JwjgCMM2HDenMLfb - /rUk1bV9iSB5pUzLlXUVt7WS3GiHtSqFNpX9+5J0pq3Qwsh/K6nKlDLWivI/K+n7nr2d8Jk++umc - DjoRLbHJ83NYApB3mZuPkyd/wYjh4tMBGbysAZM+5hRgigPQHHJKK/IWyJ3yi8zErxHjm108++VQ - Fw87mpdDYR92IzwvcMToX/BQsNtPJ3gyJ9MCAAA= + string: '{"value":[{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=436&$top=29&$maxpagesize=2"}' headers: - apim-request-id: af613958-1078-4dcd-8d1d-28a51c1c67f2 + apim-request-id: d67ff4ad-946e-4f3e-8c0a-40cbcf7e16ca cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"24DA5E01576ECA0E9024D282D7BF21EAA443F2F1F67098DA9474B96E1CED40B4"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"0DBE7FC542A5C51BFACCAA2869F41BC7ABF58E3CCAD5B3CDA84899CCCB3FCDAC"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: af613958-1078-4dcd-8d1d-28a51c1c67f2 + x-requestid: d67ff4ad-946e-4f3e-8c0a-40cbcf7e16ca status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=80&$top=31&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=434&$top=31&$maxpagesize=2 - request: body: null headers: @@ -2734,35 +7512,27 @@ 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/batches?$skip=82&$top=29&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=436&$top=29&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QyY4TMRD9FyuaU9xtu730tBQBgiMHpBkOgDhU7JrESm+yq6Nhovw77jCcgRuX - Wt5SKr0LO0O/IOu+XVgMrGMBwlMQUvHQwp7r1njeGtFyJZVvZXD70tiW+YRAGD6U8hgH/Ey+eJVQ - kgtTtI/SdsZ0RlXGCWObr8XSQ6Z3nuI0/snVVFpY4fT9assEtOSie1i8RwwYVnAZBkg/WHdhNBH0 - rJNb9gSxL2wnVr5oc77BcfyUpkO6rYUaJ/qC9ECQ6FXsYfTY/7be7r0/QgJPmNbhsDLKXa/b14ws - WKe0b/h96wzXHg2HBiW3KJSXDaAD/dcZaVM1opXWyX8KSdtKayec1f9ZSN+37O2Iz/Qxjqfy0JFo - zl1dn9KcgKKv/HQYI8UzZkznWB6o4GVJWPChpgRj7oGmVFM5Ue+B/LE+y0r8GjG/2eRTnHetvtvQ - NO+Uu9sM8DzDAXN8wZ1i159D/B0X0gIAAA== + string: '{"value":[{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=438&$top=27&$maxpagesize=2"}' headers: - apim-request-id: abb001fe-3b1a-4482-b5a2-90362fbfec3f + apim-request-id: a57e553f-97de-4d30-97de-6a050133b21c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"ECE5B3F06DF653E5CB13D291A6B96F88A1099FD03F64900987F2AD933763F7C3"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"9F6E4E0865F9169B40CB3C003680E17C3ADBE9B04F32B35E3787B198AC3BBF3D"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: abb001fe-3b1a-4482-b5a2-90362fbfec3f + x-requestid: a57e553f-97de-4d30-97de-6a050133b21c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=82&$top=29&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=436&$top=29&$maxpagesize=2 - request: body: null headers: @@ -2771,35 +7541,27 @@ 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/batches?$skip=84&$top=27&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=438&$top=27&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QS0/DMBCE/4tVcaoTx3aeUgUIjhyQgAMgDltn01rNS/amAqr+d5wCZ+DGxVrP - zLdazYHtoZ2QVc8HZmtWsSJJdVYrw0sUmuumkbyo1wVXyjRG5euySDRbMuMQCOvr8NzbDh/IBFYK - mXCRcpncJ1mVppWWkZJlmkv9FJgWPF0askP/E6YipcosVzPlCWjyIXY3GYNYYz2LU9eBe2PVgdFA - 0LIqWbIGbBvcSsx+yHp/km1/64aNO32D1Q/0iHRH4OgrbKA32H6jp31XW3BgCN08bGZH5sfj8qsj - qKERqQauUTZcg1hzMGh4jlhglqqsQfnrjlQZyVwUqlB/60hESgihlf5nJb0s2UWPr3Rj+104aEs0 - +iqOd250QNZEZtj0luwePbq9DQdE8D45DHoXk4Pet0CDiymsiNdAZhvvk0h8jujPF35nx1WRnS1o - GFcyPVt08DrCBr19x5Vkxw8Kaors0gIAAA== + string: '{"value":[{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=440&$top=25&$maxpagesize=2"}' headers: - apim-request-id: c865f5b6-e1a3-4292-b407-2c4e1d3bea05 + apim-request-id: 7bf38d74-4ce4-4b53-98c0-a01190e16407 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"24B6735E0111E4B9E6FD31262C078C1826D55F374170666D232E01E77CFC2476"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"F1042423903004254995B1E1F3DB0D7164E20CEB6A66F4A743C4EEDF78C0B1E5"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c865f5b6-e1a3-4292-b407-2c4e1d3bea05 + x-requestid: 7bf38d74-4ce4-4b53-98c0-a01190e16407 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=84&$top=27&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=438&$top=27&$maxpagesize=2 - request: body: null headers: @@ -2808,35 +7570,27 @@ 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/batches?$skip=86&$top=25&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=440&$top=25&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QT2vjMBDFv4sIPUW2JVmxZQjtsnvcQyHdw7b0MJYniYj/IY1DtiHffeW0PZfc - ehGj995vGN6ZHaGdkFUvZ+YaVjGpBWbG1Bxz0DyvDXJjRM2bXBhjpdGNrNmSWY9A2PyKz5Pr8A/Z - mc2k4JnmUjyJVaV1pcokMypXunyOTAuBflhyQ/8VZhIlZKbMasYCAU0h5jaTtYgNNrM4dR34f6w6 - MxoIWlbJJduCa6NbZbMfsyFcZdc/+mHnr99o9QP9RdoQePoIW+gttp/odd/PPXiwhH4edrOj88tl - +VFSJmErV1rzlYKG57IpOZgi56o0RiqxteKWkopEmUIKVdxWUhkxU+i8/GYlvS7ZQ48n+u36Qzxo - TzSGKk0PfvRAziZ22PWO3BED+qOLByTwNnmMepeShz60QINPKa5IayC7T48iyd5HDPeLcHDjuizv - FjSMa6nuFh2cRthhcG+4luzyH0kxtqPTAgAA + string: '{"value":[{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=442&$top=23&$maxpagesize=2"}' headers: - apim-request-id: c0b97a6c-b7c3-42b7-87bd-494247d7285c + apim-request-id: 5e826792-f696-4413-a6d1-dc1ecce2cb5e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"93E18B35038D15AA4EB733505AB08DFCA962B517553BDF0FF6964C6936816F19"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"EC05DBD46C64598DF2A40D4F6CD3E405FFE95D70656AE9E79CD7F120708832D2"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c0b97a6c-b7c3-42b7-87bd-494247d7285c + x-requestid: 5e826792-f696-4413-a6d1-dc1ecce2cb5e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=86&$top=25&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=440&$top=25&$maxpagesize=2 - request: body: null headers: @@ -2845,35 +7599,27 @@ 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/batches?$skip=88&$top=23&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=442&$top=23&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAK2Qy4rcMBBF/0U0s2rbeljyA5rMkCyzCMxkkYQsynK5W7RfSOVmMo3/PXJnsgsk - A9FClO6tW5TOlV2gX5DV367Mtaxm0FRoVdUlTSEwyU3Jk0ajSpSSRnYlyCbnbM+sRyBsP8TryQ34 - mWzMSi5FwnUixZMwtda1MqnJTWEq8zVmegj0YMlN499iRapUmReF2mKBgJYQ+x4XaxFbbDdxGQbw - P1h9ZTQR9KyWe9aB66Nb882PvSHcZDd+8tPR357RGif6gvRI4Om12cJosf8dvc17fwIPltBvxXFz - dL6u+1dIVlotus4mRdmKJK9UlTTY5fETktvSNHkH9t8h6ZTLileVeBskk8piO/kbIOk/Q9L/C5JQ - el2/79n9iM/00Y3nuNGJaA51lp397IGcTe10HB25Cwb0Fxc3SOFl8Rj1ISMPY+iBJp9RHJE1QPaU - XUTKf5UY3u3C2c2Hit/taJoPUtztBnie4YjBveBBsvUnF/4F09QCAAA= + string: '{"value":[{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","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/batches?$skip=444&$top=21&$maxpagesize=2"}' headers: - apim-request-id: e5e228d9-b9c9-42c5-aee3-fc1516e8672e + apim-request-id: dd48c592-e413-479a-80d0-1a9f1a9b236c cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"FDEC71768EAB85C9106C7D8CDA8D5798C5B4E21430C36FEFA5977DC39D94E5E0"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"E89ED37D4AB9955929E640797B835CABAC502DD9987B7262963872CA29891043"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e5e228d9-b9c9-42c5-aee3-fc1516e8672e + x-requestid: dd48c592-e413-479a-80d0-1a9f1a9b236c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=88&$top=23&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=442&$top=23&$maxpagesize=2 - request: body: null headers: @@ -2882,35 +7628,27 @@ 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/batches?$skip=90&$top=21&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=444&$top=21&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QTU/jMBCG/4tVcaoT24mTOFK1u4Ijh5VgDwviMHGmrdV8yZ5UQNX/jlPgvHDb - izV+P0aj58SO0M3I6scTcy2r2dZaiU2OXKtS87xqG97IquEIW1GIqhWFEWzNrEcgbG/ic+96/EM2 - dpVQkgvNlbyXRa11neWJMJVQxUOsdBDolyU3Dv9uGWEKo6ulFghoDjF3N1uL2GK7iHPfg39h9YnR - SNCxWq/ZFlwX3VosfsyGcJHd8NuPO3/5RmsY6S/SHYGnj7CFwWL3Wb3su96DB0vol2G3ODLT5/P6 - ExJIVWybghs0gudCQ4TUIi9FJoUpATGXX4eUJTIrc1VV36WkqyzPy/8N0tOa/RzwmW7dcIgX7Ymm - UKfpwU8eyNnEjrvBkTtiQH908YIEXmePUe9T8jCEDmj0KcUVaQNk9+lRJuJ9xPBjFQ5u2hh1taJx - 2khzterheYIdBveKG8XOb6ynV3/TAgAA + string: '{"value":[{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","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/batches?$skip=446&$top=19&$maxpagesize=2"}' headers: - apim-request-id: 8fd24bfb-cd9e-4872-8f2c-4b7e24baceab + apim-request-id: 4e7f52d6-58ad-48d7-8f72-f01d2f6ee282 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:33 GMT - etag: '"7C1802AFA8E32B2D9497190BEA2EF059C1B07D70A7FD1F9301A305EA180FE481"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"AC87685FF6FF292BC305D7A7DC128AA1901335A9646298251B938A00E19D79E2"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8fd24bfb-cd9e-4872-8f2c-4b7e24baceab + x-requestid: 4e7f52d6-58ad-48d7-8f72-f01d2f6ee282 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=90&$top=21&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=444&$top=21&$maxpagesize=2 - request: body: null headers: @@ -2919,35 +7657,27 @@ 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/batches?$skip=92&$top=19&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=446&$top=19&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QS2/bMBCE/wth5GRJfIiyJMBoi/bYQ4Ekh7ToYbVa2YT1Arkykhj+76Hc9Nz2 - 1guxnJlvsZiLOEO/kKh/XIRrRS0kFY2CBhOtyjzJTQFJg51OTLWDTlqNnSrFVqAnYGq/xOfBDfTI - GFkttUqkjeiDKmpra6NTudPK5N8j0kPgT8huGv9E5akuqsrIcsUCAy8h5u4XRKKW2lVchgH8i6gv - gieGXtR2KzpwfXRrufoxG8JNduM3Px387RutceIn4nsGz+9hhBGp/43e9n0+ggdk8utwWB1l7PW6 - fS/JgiywRUywAhtLKjFpwJRJ12hb6rKVhTV/X5JKjdSF3lX/2pLUucxt/r+19HMrPo70zF/deIoX - HZnnUGfZyc8e2GGK02F07M4UyJ9dvCCF18VT1IeMPYyhB558xnFF1gDjMTurVP4aKXzYhJOb91V+ - t+Fp3qvd3WaA5xkOFNwr7bW4vgFyX4Bw1AIAAA== + string: '{"value":[{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","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/batches?$skip=448&$top=17&$maxpagesize=2"}' headers: - apim-request-id: aac40000-09ae-4bd2-8041-268ca5818077 + apim-request-id: daf35b09-0ad1-4063-aab4-0754d4ee0c74 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"DC4A2F3DE9785651825D4CC89B077CAD4564BCCE534367E4A9B813B1F2F1334F"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"4A5344380AB502DC1F7218E2727181354A9CA3DCF53DA0E9A316829A89A55C93"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: aac40000-09ae-4bd2-8041-268ca5818077 + x-requestid: daf35b09-0ad1-4063-aab4-0754d4ee0c74 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=92&$top=19&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=446&$top=19&$maxpagesize=2 - request: body: null headers: @@ -2956,35 +7686,27 @@ 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/batches?$skip=94&$top=17&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=448&$top=17&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1RS0sDMRD+L6H01Owmm31DUdGjB6H1oOJhNjttQ/dFMlu0pf/dbNWzepNAmPke - k+HLiR2gGZGVLydmalYyDXWeQi25EtmGx1GCvFKq4CDrDCBXSijJFkxbBML6zl9r0+Ijae+NRCS5 - SHgk1zItk6SMVKBkJvx59p4GHN1oMn33ky0J8ij2r8aTzRHQ6LxuNWqNWGM9gWPbgn1n5YlRT9Cw - Ui7YBkzj2VJMvNc6d4FN92D7rb20nup6ekJaEVj6EmvoNDbf1su82x1Y0IR2KrYTI7PzefEVUoFR - kuqN5n71gscaYl7FmHKpQFd1pQpRiV+HJIogkyrN8vRPIUkR5GnsP0T+s5BeF+y6wze6N93eL7Qj - GlwZhns7WCCjA91vO0PmgA7twfgFAjiOFj3ehmShcw1Qb0PyI8IKSO/CgwzEZ4nuaub2ZlgW6XxG - /bCUyXzWwtsAW3TmiMuInT8AwAGXttMCAAA= + string: '{"value":[{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=450&$top=15&$maxpagesize=2"}' headers: - apim-request-id: eef1308e-7c87-44ae-ad2e-793732f3e111 + apim-request-id: 4813af3c-7746-44f3-a219-0589eeffc5a3 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"341AB6781AA90BB3D96A9D4F427092A69BC4190C7854FD325FA47AD4A586CA69"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"EF0CAB98D38BF1286827E93386567CDFF8F569D51592282234C88EE8F6959160"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: eef1308e-7c87-44ae-ad2e-793732f3e111 + x-requestid: 4813af3c-7746-44f3-a219-0589eeffc5a3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=94&$top=17&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=448&$top=17&$maxpagesize=2 - request: body: null headers: @@ -2993,35 +7715,27 @@ 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/batches?$skip=96&$top=15&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=450&$top=15&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAJWQW2sbMRCF/4swebJ2dVlpL2Dakj72oZDkIS15GGtnbeG9IY1NErP/PbtuUygk - tHkRRzNzDjPfmZ2gPSKrfp6Zr1nFVGZk1mjDpdWKZ2Vj+bZxglujc+Vya0FYtmYuIBDWX+fn1nd4 - R27xCiW5MFzJW2krk1VGJSo30pTFj9nTQqQvjvzQ/8tmknmNXGRysUUCOsZ57hp6h22L9VI8dh2E - J1adGQ0ELauKNWvAL91KLH3nMMaL9v33MOzC67cf6B7phiDQ72H3J3hJueRd7yGAIwyL2F3mpmn9 - ygiasmhKxW1ZC54ZzHkpdM6xVGKrVY1F4f6bkS6SvMytMPmHGGU6kbqwWab+YnSz3I31O4zM24zM - xxiJdxlJbabpYc0+9/hI33x/mDfaE42xStNDGAOQd4kbdr0nf8KI4eTnDRJ4Pgac611KAfrYAg0h - pTki3QK5fXqSifglMX5axYMfN2VxtaJh3Eh9tergcYQdRv+MG8WmF+2B55zTAgAA + string: '{"value":[{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","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/batches?$skip=452&$top=13&$maxpagesize=2"}' headers: - apim-request-id: 978e6117-8d25-4943-b5de-f313c9a41708 + apim-request-id: 5b3191d2-93b4-4fbf-97af-3e13138e2a8b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"A5FF40E484D9BF2F21B7F82674ED3378C1970053552A4D682AA5B98316EDC46B"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"D1571F1652693B1B93751531E5B4B973D1A03604490509067882DD691C61B86B"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 978e6117-8d25-4943-b5de-f313c9a41708 + x-requestid: 5b3191d2-93b4-4fbf-97af-3e13138e2a8b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=96&$top=15&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=450&$top=15&$maxpagesize=2 - request: body: null headers: @@ -3030,35 +7744,27 @@ 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/batches?$skip=98&$top=13&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=452&$top=13&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAK2STWvcMBCG/4tYclrZkmz5C0Jb0mMPhaSHtvQwOx7vivXHIo2XJIv/e+Rtciu0 - gV7EaN55h5eHuYgz9DOJ5udFuFY0ottlRV7lhSwKbWSO2EkAVcqsUm2njAUoM7EV6AmY2s/xeXAD - fWOMXqOMlspKox900di8MTbRSpm6sj+ip4fAn5DdNP7Flqkkq6xVZb3aAgPPIc7dz4hELbVrcx4G - 8E+iuQieGHrRlFvRgeuj2qhVj7MhXNtu/Oqnvb9+ozRO/J34nsHz6zDCiNS/Wa/77g7gAZn8WuxX - RVf1smxfKe1yBWBibE3YyryqtYQuK2WNOSrsYsYK/5mSNklWq8wW+l2UdJFESKZU5Tso2T9Tsv+N - UmaX5ddWfBzpkb+48RgTHZhPoUnToz95YIcJTvvRsTtTIH92MUECz7On2B9S9jCGHnjyKccV6Q4Y - D+lZJ+p3SeHDJhzd6TYe1s2Gp1jom80AjyfYU3DPdGvE8gKfJpHN1gIAAA== + string: '{"value":[{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","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/batches?$skip=454&$top=11&$maxpagesize=2"}' headers: - apim-request-id: 4d1863b2-c7af-4205-8782-8f909391b1f4 + apim-request-id: 3c549b21-1993-413e-afc4-f645243e729e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"C47D490709742BE53E4C07593C68AABCBB438ABC142D8EBA078F713EA127B700"' + date: Wed, 02 Jun 2021 15:54:56 GMT + etag: '"C588A46537ED88223F4B399E11A9706FDD8404C49EF8613395CE3C9E1CF62F00"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4d1863b2-c7af-4205-8782-8f909391b1f4 + x-requestid: 3c549b21-1993-413e-afc4-f645243e729e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=98&$top=13&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=452&$top=13&$maxpagesize=2 - request: body: null headers: @@ -3067,35 +7773,27 @@ 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/batches?$skip=100&$top=11&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=454&$top=11&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAK2QT4vbMBDFv4sIe4psSZbk2BC6S3vsobDbQ1t6GMuTRMT/kMZhu8HfvXK6vRXa - hV7E6L15w+N3ZRfoZmT1tyvzLatZI8AeDm3BVdkIrkvh+M62mivXSFUac9DasS1zAYGw/ZCeJ9/j - Z3Ipq4SSXBiu5JO0tdG1MJmVWoqi/JoyHUR6cOTH4W+xMjNKV7bQaywS0BzT3uPsHGKL7SrOfQ/h - B6uvjEaCjtVmyw7gu+TWYvXTbow32Q+fwngMt2+yhpG+ID0SBHpddjA47H5Hb/fenyCAIwzrcFwd - WZhl2b5SAnCFaJXhZVMg184ovoPCcKetLXdOVnhr+S+UitrsMqukEbJ4GyWRyaq0tnoDJCn+TGnV - /w8mVYpl+b5l9wM+00c/nFOnE9EU6zw/hykAeZe58Th48heMGC4+VcjgZQ6Y9D6nAEPsgMaQUzqR - N0DulF9kJn6NGN9t4tlPeynU3YbGaV/dbXp4nuCI0b/gXrHlJwvtkPbWAgAA + string: '{"value":[{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","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/batches?$skip=456&$top=9&$maxpagesize=2"}' headers: - apim-request-id: 87efb45f-d80d-4967-94dc-c746f50f6ace + apim-request-id: a407cd90-81d9-4fac-996d-60e4873ee57b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"8FEDCEBAC5E91D8D8B9E604D1010903F633AFC732A874D6391761B3A66D8D16E"' + date: Wed, 02 Jun 2021 15:54:57 GMT + etag: '"3C2CB962D773575B5E9A4E9E672A747941899B2343CB77A6008061B28368B676"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 87efb45f-d80d-4967-94dc-c746f50f6ace + x-requestid: a407cd90-81d9-4fac-996d-60e4873ee57b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=100&$top=11&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=454&$top=11&$maxpagesize=2 - request: body: null headers: @@ -3104,35 +7802,27 @@ 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/batches?$skip=102&$top=9&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=456&$top=9&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAK2QTWsbMRCG/4swOXl39blaLZiktMceCkkPbehhLI9t4f1CmjVpjP97tUl6LG2g - FzF6532HmefCztDNyNrHCws71jKvnROobOEarQrt+bZotoCFs+il2Bu5d4KtmY8IhLtP+XkIPX4l - n7OSS1FwU0jxIOrWqNbwUtVOG2W+50wHiT54CuPwt5gstW4sd3qJJQKaU/bdz94j7nC3iHPfQ/zJ - 2gujkaBjrTBrtofQ5XbLF0M2p/Sqh+FLHA/x5Z97w0jfkO4JIr25PQweu9/Zl4kfjxDBE8alOCwd - zc31un7jJL10urbbQjc1L7TIJzgvZQHYOG6Nr5X9d07KlkZaq5vmXZy0LpXMSzTiHZz+gOm/URIq - U/qxZncDPtHnMJzyRkeiKbVVdYpTBAq+9ONhCBTOmDCeQ96ghOc5Ytb7iiIMqQMaY0V5RLUF8sfq - LEr+WmK6XaVTmDaC65sVjdPG3qx6eJrggCk840ay6y8bGe0H1wIAAA== + string: '{"value":[{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","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/batches?$skip=458&$top=7&$maxpagesize=2"}' headers: - apim-request-id: 88dd503e-f52d-4f70-8915-d2994a77eb25 + apim-request-id: 4950a8ef-4913-4429-8dee-60c0d6aed3d6 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"97285ADBE9A69C4DD826952487FC0F81AB77A1840A667509643A8DDAF2C3457D"' + date: Wed, 02 Jun 2021 15:54:57 GMT + etag: '"A34D898D8C8EAD39AB2D30265E0D07DF3C8BA4A86C3CAAF138403F69F87F90AF"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 88dd503e-f52d-4f70-8915-d2994a77eb25 + x-requestid: 4950a8ef-4913-4429-8dee-60c0d6aed3d6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=102&$top=9&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=456&$top=9&$maxpagesize=2 - request: body: null headers: @@ -3141,35 +7831,27 @@ 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/batches?$skip=104&$top=7&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=458&$top=7&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM2QTW/bMAyG/4sQ9BTZ+rJsGQi2YTvuMKDdYSt2YGQmEeIvSHTQNch/n9x25223 - XQjy5fsQxHtlF+gXZO3jlYWOtQy7g7OgJXcWPTcHsNx5bbm33mgHTdN1NdsyHxEIu0+5PIQBv5LP - rBJKclFxJR+kbSvdqqoQlRFamO+Z6SHRB09hGv+ENYUzwppmpRIBLSnb7hfvETvsVnEZBog/WXtl - NBH0rJViyw4Q+rxuxWrI5pRe9TB+idMxvsx5HCf6hnRPEOnN7WH02P9mXy5+PEEETxjX5rhuVC1u - t+1bTPtD0zTSel47q7nZa8Gdawx3gELa2jio/z4mURXKaaGc+6eYpC6skkK6/y+mH1v2fsQn+hzG - c/7pRDSntizPcY5AwRd+Oo6BwgUTxkvILxTwvETM+lBShDH1QFMsKZ8o90D+VF5kIV5bTO826Rzm - nRT2bkPTvKvuNgM8zXDEFJ5xp9jtF0XI1j7XAgAA + string: '{"value":[{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","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/batches?$skip=460&$top=5&$maxpagesize=2"}' headers: - apim-request-id: 2d1e3534-57aa-4045-ba0a-ff332515db07 + apim-request-id: 6b19bb3b-0a62-4168-922d-f721f843da09 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"602DA22F141E72219BF1395087DA452E17F9BB35F167467ECB3E2CE5E745FF61"' + date: Wed, 02 Jun 2021 15:54:57 GMT + etag: '"DC76C0ADEC949D36EDFCBA51C2217A56B6C8195A31C1A6C8C064B2563D928D5C"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2d1e3534-57aa-4045-ba0a-ff332515db07 + x-requestid: 6b19bb3b-0a62-4168-922d-f721f843da09 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=104&$top=7&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=458&$top=7&$maxpagesize=2 - request: body: null headers: @@ -3178,35 +7860,27 @@ 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/batches?$skip=106&$top=5&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=460&$top=5&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QS2/bMAz+L0LQU2RLsiW7BoK1aI87DGh32IYdaIlOhPgFiQ7aBvnvlbPuvO22 - C0F+D5L4zuwE/YKs+XFm3rGGKeiK1pSKd11d8tIVlreIhgvtKi2FEqpSbMtsQCB0j6k8+wG/kl29 - Qskk5Eo+S9No1WiRFdKYuqi+J08Pke4t+Wn8k63K6rq+NbJebZGAlph0T4u1iA7dCi7DAOGVNWdG - E0HPGr1lHfg+sY1Y+aSN8Qr78UuY9uE6Jmqc6BvSE0GgD7GF0WL/23rd93CAAJYwrM1+ZWShL5ft - R0pOoRYGLXfSSV520vFWCuAtYKmNNtg58dcpFVWmK1NLIf8ppbLIRDpWqtv/LaWfW3Y34gt99uMx - fXQgmmOT58cwByBvMzvtR0/+hBHDyacPMnhbAiZ8yCnAGHugKeSUVuQtkD3kJ5mJXy3GT5t49PNO - ivpmQ9O8K242A7zMsMfo33Cn2OUdUDkEttUCAAA= + string: '{"value":[{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","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/batches?$skip=462&$top=3&$maxpagesize=2"}' headers: - apim-request-id: bce1d1ad-5fb4-4927-935a-694a0ae3c6b1 + apim-request-id: 4c744bf0-a8ee-4db1-9929-47f868273650 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"40072B26F2E67FAA7A4758EAA807C7C964FA51A329C4B7EF8017A38722BBACFA"' + date: Wed, 02 Jun 2021 15:54:57 GMT + etag: '"C734D09693DB4AC0246AA9434968960C0B63F4B232CE5ED2A15E580FDB41B0C5"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: bce1d1ad-5fb4-4927-935a-694a0ae3c6b1 + x-requestid: 4c744bf0-a8ee-4db1-9929-47f868273650 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=106&$top=5&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=460&$top=5&$maxpagesize=2 - request: body: null headers: @@ -3215,35 +7889,27 @@ 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/batches?$skip=108&$top=3&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=462&$top=3&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAM1QTYvbMBD9LyLsKbYlWbIjwdKW9thDYbeHdulhJI8TEX8EaRy2G/LfK2fbXrvH - ghBP72MYvQs7w7Ags08XFjpmmfFeKaFk0TinC+V4U4DZuaLttXFQO9Mrx7bMRwTC7lO+HsOIX8nn - rORSFFwXUjyKxmppuSwbyYUWu+85M0CiD57CPP0r1pbaNFoavcYSAS0p+x4W7xE77FZyGUeIP5m9 - MJoJBmb1lvUQhqxavurZm9KNDtOXOO/j7ZmlaaZvSA8EkX6bPUwehz/R27yPB4jgCeMK9qsian29 - bv+2hKAMN4VWxuWWQBam9k3RKdW30LemVvjGloRVdalky9vX776xJZFPKdudlm39v7X0Y8veT/hM - n8N0zBsdiE7JVtUxniJQ8KWf91OgcMaE8RzyBiW8LBEzP1YUYUoD0BwryiMqB+QP1VmU/BVierdJ - x3C6F4LfbWjO4G4zwvMJ9pjCC95Ldv0FGJ18o9UCAAA= + string: '{"value":[{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","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/batches?$skip=464&$top=1&$maxpagesize=2"}' headers: - apim-request-id: 65bdbc62-9fdd-4145-9366-10586db01767 + apim-request-id: d573fc37-fa99-4acb-9afc-768714403750 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT - etag: '"E24380EA261841179765CA38A5BECBCBAA76E4BF42873CB8A665E05D103C3F8C"' + date: Wed, 02 Jun 2021 15:54:57 GMT + etag: '"1D3FB16CD22A0546AACD760B4F414C5D57A9D87F4F59B16C8F298287C80A0A92"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 65bdbc62-9fdd-4145-9366-10586db01767 + x-requestid: d573fc37-fa99-4acb-9afc-768714403750 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=108&$top=3&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=462&$top=3&$maxpagesize=2 - request: body: null headers: @@ -3252,20 +7918,15 @@ 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/batches?$skip=110&$top=1&$maxpagesize=2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=464&$top=1&$maxpagesize=2 response: body: - string: !!binary | - H4sIAAAAAAAEAIWMy07EMAxF/8XryShx04eyQ/ABSDMsALHwOOkQqQ8pdZFQ1X8nqWDNxrLvuccb - fNGwBnDvG0QPDhDbG9rGKkZjlO0ar24V96qylnvUde2phRNwCiTBP+VxjWN4ES6uRqN0rdBctXEa - XdWeO60tNvYtOwMt8sAS5+kfzZpzh12LtivaIiTrknuXlTkEH3wJ13Gk9A1uA5mFBnD1CXqKQ6ZO - F567y3LEcXpO8z0dZ0bTLK9BLkJJfstME4fhTz3+PX5SIpaQynIvxFT1vn/sP6TDeUYxAQAA + string: '{"value":[{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' headers: - apim-request-id: 8fd7c92c-4e9d-47d5-9ba1-9e7cc8830d9c + apim-request-id: 531418c6-b3d9-4d03-9aec-5084def9d647 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:34 GMT + date: Wed, 02 Jun 2021 15:54:57 GMT etag: '"DB6C354A17489376A208113070DDF17F9CBCC4C1C9700835E11921CFD69CF51A"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload @@ -3273,9 +7934,9 @@ interactions: vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8fd7c92c-4e9d-47d5-9ba1-9e7cc8830d9c + x-requestid: 531418c6-b3d9-4d03-9aec-5084def9d647 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=110&$top=1&$maxpagesize=2 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=464&$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 index 98352323f58a..554e17482708 100644 --- 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf2a9c1f5-aa9c-4a7c-b3c9-c44acce7f529?restype=container + uri: https://redacted.blob.core.windows.net/src4f7c8a04-a8df-4d4e-9da4-7e2a6805b0ca?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:48 GMT etag: - - '"0x8D91C79F42A364F"' + - '"0x8D925DF2BCEC408"' last-modified: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 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: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf2a9c1f5-aa9c-4a7c-b3c9-c44acce7f529/53ea8d8d-ace5-4085-81d8-cb7f9bef810e.txt + uri: https://redacted.blob.core.windows.net/src4f7c8a04-a8df-4d4e-9da4-7e2a6805b0ca/c16e681a-8d14-4ac7-b84b-ee20f735304e.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 GMT etag: - - '"0x8D91C79F437E12E"' + - '"0x8D925DF2BDA40FD"' last-modified: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 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: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcf2a9c1f5-aa9c-4a7c-b3c9-c44acce7f529/8a32df37-8796-4811-bb3e-b033bb255a07.txt + uri: https://redacted.blob.core.windows.net/src4f7c8a04-a8df-4d4e-9da4-7e2a6805b0ca/b692d5d1-5ddd-45ca-9204-0a0dba6a4a0c.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 GMT etag: - - '"0x8D91C79F4437C06"' + - '"0x8D925DF2BE406C5"' last-modified: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete39ac976-be75-4c07-bcbc-129703a6635d?restype=container + uri: https://redacted.blob.core.windows.net/targetece08d0b-b8bf-4e39-8e10-3d986f24c607?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:35 GMT + - Wed, 02 Jun 2021 15:57:48 GMT etag: - - '"0x8D91C79F46E6307"' + - '"0x8D925DF2BFD9772"' last-modified: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:57:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,14 +176,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf2a9c1f5-aa9c-4a7c-b3c9-c44acce7f529?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete39ac976-be75-4c07-bcbc-129703a6635d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4f7c8a04-a8df-4d4e-9da4-7e2a6805b0ca?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetece08d0b-b8bf-4e39-8e10-3d986f24c607?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -194,53 +194,46 @@ interactions: body: string: '' headers: - apim-request-id: 7b4fd777-526c-48bb-9f81-c2e6c49b4e06 + apim-request-id: 6272a3a2-5a33-463b-93b4-83df2ee919aa content-length: '0' - date: Fri, 21 May 2021 17:00:36 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/af7fcd78-2d53-4c46-b9da-3962729e97af + date: Wed, 02 Jun 2021 15:57:49 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e53a92a5-2373-4f3a-a542-aaf6c550c3b9 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7b4fd777-526c-48bb-9f81-c2e6c49b4e06 + x-requestid: 6272a3a2-5a33-463b-93b4-83df2ee919aa status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/af7fcd78-2d53-4c46-b9da-3962729e97af + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e53a92a5-2373-4f3a-a542-aaf6c550c3b9 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFMhSbMnainYOCjQd2o2l5FSAbQESPRRB/r2SgXTuQhzv+I43 - iB4c4GQm8sYK5XstTnQaxNfoUehxUEaNYTQ4wQEoB+TgX+q4xCW8M1VWSdUJ2QvVXTrjpHR6OFpr - je71Z2VmLPxEHNP6X8w2rDDyVurdOfEbY65vm7stC+YfcDfgxDiDkweYMM41bbJsRKGUXcf1Nadr - fqxr4o/wV9UcwpXC/ED3vudvzEgcchPXPbnffwFb23ytJAEAAA== + string: '{"id":"e53a92a5-2373-4f3a-a542-aaf6c550c3b9","createdDateTimeUtc":"2021-06-02T15:57:49.8897238Z","lastActionDateTimeUtc":"2021-06-02T15:57:51.5405362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 4d673bed-b35f-4ab9-bbbc-3dff59f19d82 + apim-request-id: 084d835b-6596-402f-b762-8bd252d74270 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:36 GMT - etag: '"F1463A916D5AE3F38B0BB51CCF5424C2DA693ABFC149131A850046B873C9ADBC"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:58:20 GMT + etag: '"C2B65F60FD68D274B5C6793048172A307206B1BE5F64989AB07345D4C49F60F2"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4d673bed-b35f-4ab9-bbbc-3dff59f19d82 + x-requestid: 084d835b-6596-402f-b762-8bd252d74270 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/af7fcd78-2d53-4c46-b9da-3962729e97af + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e53a92a5-2373-4f3a-a542-aaf6c550c3b9 - request: body: null headers: @@ -255,11 +248,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:58:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src49c69383-027c-4c57-87c5-9282a19c49e3?restype=container + uri: https://redacted.blob.core.windows.net/src04641e3a-0f2a-4d91-a43a-5d7b451fbee1?restype=container response: body: string: '' @@ -267,11 +260,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:58:19 GMT etag: - - '"0x8D91C79F4DBBEC9"' + - '"0x8D925DF3E787464"' last-modified: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -299,11 +292,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src49c69383-027c-4c57-87c5-9282a19c49e3/ee21b7ae-abdb-4df9-9c2c-44eb29ef7ebd.txt + uri: https://redacted.blob.core.windows.net/src04641e3a-0f2a-4d91-a43a-5d7b451fbee1/ea83c5b5-2b69-41a6-b2b6-02e312507504.txt response: body: string: '' @@ -313,11 +306,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:58:19 GMT etag: - - '"0x8D91C79F4EAFE58"' + - '"0x8D925DF3E826B55"' last-modified: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -349,11 +342,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src49c69383-027c-4c57-87c5-9282a19c49e3/fb59588e-481a-4794-a5df-a58e0a08fd5a.txt + uri: https://redacted.blob.core.windows.net/src04641e3a-0f2a-4d91-a43a-5d7b451fbee1/94b560c5-907e-4f7f-abfa-75ac3b697cd4.txt response: body: string: '' @@ -363,11 +356,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:36 GMT + - Wed, 02 Jun 2021 15:58:19 GMT etag: - - '"0x8D91C79F4FD783E"' + - '"0x8D925DF3E8CCD79"' last-modified: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -393,11 +386,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:20 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetcf354230-c112-4ee6-b109-f8c3ef25eede?restype=container + uri: https://redacted.blob.core.windows.net/target03dfab8c-2b1d-4105-802e-a02cd160f5b4?restype=container response: body: string: '' @@ -405,11 +398,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:20 GMT etag: - - '"0x8D91C79F5285505"' + - '"0x8D925DF3EA7D8F0"' last-modified: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -418,14 +411,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src49c69383-027c-4c57-87c5-9282a19c49e3?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetcf354230-c112-4ee6-b109-f8c3ef25eede?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src04641e3a-0f2a-4d91-a43a-5d7b451fbee1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target03dfab8c-2b1d-4105-802e-a02cd160f5b4?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -436,53 +429,46 @@ interactions: body: string: '' headers: - apim-request-id: a9100d16-874b-4799-9b24-e0937bd7740d + apim-request-id: 3f185005-611b-46bd-9628-13fff1eff314 content-length: '0' - date: Fri, 21 May 2021 17:00:37 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/bc7cbfea-2a90-4abb-88c6-111601dd003f - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:58:20 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bb165a06-6672-4478-a388-29e052d1daa8 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a9100d16-874b-4799-9b24-e0937bd7740d + x-requestid: 3f185005-611b-46bd-9628-13fff1eff314 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/bc7cbfea-2a90-4abb-88c6-111601dd003f + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bb165a06-6672-4478-a388-29e052d1daa8 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NQW/CMAyF/4vPZHJSoG1uCM5o0thh3Fw3hUhtIyXuYUL89yWV2JmL9fyev+cH - +B4sdFxzNzhShlpUW+o61TS8V1rrPeq+R6wG2ABHR+L6Ux4XP7lv4cwaNFrhThl90bVFtFX90Ta7 - ptLtNTMjJTmw+DC/iRlTsCQkS8p35yBfQjG/Le4yTRR/wT5AgtAIFjcwkB9zWmRamF1Kq/bzZwy3 - +FrnID/uv6o4TDO78YWufcc7RWJxsYjbmjyff+pbEAAkAQAA + string: '{"id":"bb165a06-6672-4478-a388-29e052d1daa8","createdDateTimeUtc":"2021-06-02T15:58:20.919629Z","lastActionDateTimeUtc":"2021-06-02T15:58:26.5494175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: d8b4ed8c-a76a-41e0-971b-ebd413f1a879 + apim-request-id: 0b3aeb9f-2340-4282-8401-56b781661e2b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:37 GMT - etag: '"539AFE051E49C91EB03848D4911C32364D93B698FD6EFDEA42D0203799F9A275"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:58:51 GMT + etag: '"66CA93E652FDAD5AEC2F4C1E0679F9761465B3A49A40BBB660CF3C60BB8BD4E6"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d8b4ed8c-a76a-41e0-971b-ebd413f1a879 + x-requestid: 0b3aeb9f-2340-4282-8401-56b781661e2b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/bc7cbfea-2a90-4abb-88c6-111601dd003f + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/bb165a06-6672-4478-a388-29e052d1daa8 - request: body: null headers: @@ -497,11 +483,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72c47350-6416-469e-a4ef-7fd61000747e?restype=container + uri: https://redacted.blob.core.windows.net/src139fc9ce-8e85-4f6c-9532-fa6fb24fcb1a?restype=container response: body: string: '' @@ -509,11 +495,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT etag: - - '"0x8D91C79F562DF91"' + - '"0x8D925DF50F89AE3"' last-modified: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -541,11 +527,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72c47350-6416-469e-a4ef-7fd61000747e/00d89953-fac0-40fe-9687-c33781ad2b25.txt + uri: https://redacted.blob.core.windows.net/src139fc9ce-8e85-4f6c-9532-fa6fb24fcb1a/7bda644d-b773-4a43-b486-1f0d24e48530.txt response: body: string: '' @@ -555,11 +541,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT etag: - - '"0x8D91C79F570E879"' + - '"0x8D925DF51029410"' last-modified: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -591,11 +577,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72c47350-6416-469e-a4ef-7fd61000747e/4ba7dd2d-f456-4e43-91b6-8d27427f7b44.txt + uri: https://redacted.blob.core.windows.net/src139fc9ce-8e85-4f6c-9532-fa6fb24fcb1a/2d48a0d3-d224-4177-b420-5ba9c09b3462.txt response: body: string: '' @@ -605,11 +591,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT etag: - - '"0x8D91C79F5813F24"' + - '"0x8D925DF510AD303"' last-modified: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -635,11 +621,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:51 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target3d32fd9f-001f-4404-bfa3-1d1ad51d8b82?restype=container + uri: https://redacted.blob.core.windows.net/targete0a58179-a6d9-4a64-b02b-134da09db9e2?restype=container response: body: string: '' @@ -647,11 +633,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:37 GMT + - Wed, 02 Jun 2021 15:58:51 GMT etag: - - '"0x8D91C79F5A27761"' + - '"0x8D925DF513A9D8C"' last-modified: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:58:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -660,14 +646,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src72c47350-6416-469e-a4ef-7fd61000747e?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3d32fd9f-001f-4404-bfa3-1d1ad51d8b82?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src139fc9ce-8e85-4f6c-9532-fa6fb24fcb1a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete0a58179-a6d9-4a64-b02b-134da09db9e2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '486' Content-Type: - application/json User-Agent: @@ -678,53 +664,46 @@ interactions: body: string: '' headers: - apim-request-id: 4ac24c24-880c-43d2-8647-3dc57b7d7d4b + apim-request-id: 8ba3e848-78b6-479e-a37f-b79218113caf content-length: '0' - date: Fri, 21 May 2021 17:00:38 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7e611832-b018-4d6b-9c78-e56e1711ac30 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:58:51 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9f285838-37f7-41b2-9cee-96b05debeade + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4ac24c24-880c-43d2-8647-3dc57b7d7d4b + x-requestid: 8ba3e848-78b6-479e-a37f-b79218113caf status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/7e611832-b018-4d6b-9c78-e56e1711ac30 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9f285838-37f7-41b2-9cee-96b05debeade response: body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE30VzFOgntlRtRTsXAZoM6cbQbCLAtgCJHoog7x7JQDJ3IY53/I43 - EQcRhKNea2+NPCvt5W7oz/INnZfU9aSd1oBWiY3ATMA0fNZxiBMdGStrlNFSddLog3ZBqWD91nnb - ddb9VGaEwu/IMc3/xHamYYWBl1LvvhJ/M+T6trnLNEH+E+EmODGMIqiN+IU41rTJsiBSKauO8z6n - S36uc+ITvaqagzAjjU907fu4QgZkyk1c1uR+fwCETIwTJAEAAA== + string: '{"id":"9f285838-37f7-41b2-9cee-96b05debeade","createdDateTimeUtc":"2021-06-02T15:58:52.094574Z","lastActionDateTimeUtc":"2021-06-02T15:58:56.6812854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: ee96d1f8-0d10-45ed-990a-4b3a6ef4ed6a + apim-request-id: d9915930-7eac-4590-8691-928c15d0df84 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:38 GMT - etag: '"A50971C3D7C17FEFDBD59AADAF87011CD8E3C5349634257D82433C6BEEF0515D"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:59:21 GMT + etag: '"992D29B438A7AC92D0B5D1164D94BAC5D9868D83C59A64D7F95C25F26C0E8F05"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ee96d1f8-0d10-45ed-990a-4b3a6ef4ed6a + x-requestid: d9915930-7eac-4590-8691-928c15d0df84 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7e611832-b018-4d6b-9c78-e56e1711ac30 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/9f285838-37f7-41b2-9cee-96b05debeade - request: body: null headers: @@ -739,11 +718,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src73d9b135-d467-4b4b-8d24-c14ee8ae4ff1?restype=container + uri: https://redacted.blob.core.windows.net/src3c4db3df-5605-4ce7-b554-3224f65410cd?restype=container response: body: string: '' @@ -751,11 +730,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:59:22 GMT etag: - - '"0x8D91C79F5DDBC32"' + - '"0x8D925DF63782C26"' last-modified: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -783,11 +762,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src73d9b135-d467-4b4b-8d24-c14ee8ae4ff1/047abf23-c2fe-4ac6-ab87-d7a62dba0d24.txt + uri: https://redacted.blob.core.windows.net/src3c4db3df-5605-4ce7-b554-3224f65410cd/aae46592-9972-444e-94e9-43ccc5018633.txt response: body: string: '' @@ -797,11 +776,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:59:22 GMT etag: - - '"0x8D91C79F5F01ADC"' + - '"0x8D925DF63841C76"' last-modified: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -833,11 +812,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src73d9b135-d467-4b4b-8d24-c14ee8ae4ff1/0d0133c8-df82-42de-81af-7ce6413bae4c.txt + uri: https://redacted.blob.core.windows.net/src3c4db3df-5605-4ce7-b554-3224f65410cd/7297fcfa-b090-40d7-b3c2-e0e5e02ec53d.txt response: body: string: '' @@ -847,11 +826,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:38 GMT + - Wed, 02 Jun 2021 15:59:22 GMT etag: - - '"0x8D91C79F5FC03E7"' + - '"0x8D925DF638D9415"' last-modified: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -877,11 +856,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete5baf36d-4a9f-4576-bddf-e6e5d48acac0?restype=container + uri: https://redacted.blob.core.windows.net/target310f707d-1f53-446c-b691-ea9be2cd4a46?restype=container response: body: string: '' @@ -889,11 +868,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:22 GMT etag: - - '"0x8D91C79F621C390"' + - '"0x8D925DF63B1D983"' last-modified: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -902,14 +881,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src73d9b135-d467-4b4b-8d24-c14ee8ae4ff1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete5baf36d-4a9f-4576-bddf-e6e5d48acac0?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3c4db3df-5605-4ce7-b554-3224f65410cd?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target310f707d-1f53-446c-b691-ea9be2cd4a46?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -920,53 +899,46 @@ interactions: body: string: '' headers: - apim-request-id: 0f4fd66f-d36a-4342-9bad-c365a1ae3c3e + apim-request-id: 474327f9-5acf-407d-862a-201655916cf0 content-length: '0' - date: Fri, 21 May 2021 17:00:39 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/977c07b8-6dd9-43b6-8778-825384ac5713 + date: Wed, 02 Jun 2021 15:59:22 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f395251a-5f98-426d-b057-1816ccd1e91e set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0f4fd66f-d36a-4342-9bad-c365a1ae3c3e + x-requestid: 474327f9-5acf-407d-862a-201655916cf0 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/977c07b8-6dd9-43b6-8778-825384ac5713 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f395251a-5f98-426d-b057-1816ccd1e91e response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMY/CMAyF/4tngpKWJmk2dDcjJLjhbjNuDiK1jZS4A0L8d5JK3HyL9fyev+cH - hAEc9MaQNBcr9DD0YtdetLDGWGGbrrU7pM6oFjZAySP74bOMc5j8F1NhG9koITvRqLMyTkrX9lut - jFZK/xRmxMx74hDn/2J9xTIjL7ncHSKfGFN5W91lmjDdwT2AI+MITm7gF8NY0irzQuRzXnWYjyle - 03udI3/7v6rqEM7kxze69n3cMCGxT1Vc1+T5fAH/sO7BJAEAAA== + string: '{"id":"f395251a-5f98-426d-b057-1816ccd1e91e","createdDateTimeUtc":"2021-06-02T15:59:23.0621525Z","lastActionDateTimeUtc":"2021-06-02T15:59:31.5450469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: e224744d-9e05-4d21-8d25-7845067e9780 + apim-request-id: 780a85ec-16c7-4670-95b9-b3fbc938a8d5 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:39 GMT - etag: '"2B85EAA6CEBE49835AAB8C8EE33BC334DF280D83349FFF2C779003BE25F0B6BB"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:59:53 GMT + etag: '"047BE3DEA6A08CCB10B0F54ED186EED5908E2E4D01D7D8165990D871DA1CEFAD"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e224744d-9e05-4d21-8d25-7845067e9780 + x-requestid: 780a85ec-16c7-4670-95b9-b3fbc938a8d5 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/977c07b8-6dd9-43b6-8778-825384ac5713 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f395251a-5f98-426d-b057-1816ccd1e91e - request: body: null headers: @@ -981,11 +953,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72b7958d-f1e2-4c2d-a977-41aaf12aa6fb?restype=container + uri: https://redacted.blob.core.windows.net/src6832ee62-c538-43eb-8adf-0975e76eeb70?restype=container response: body: string: '' @@ -993,11 +965,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:52 GMT etag: - - '"0x8D91C79F684331C"' + - '"0x8D925DF75F1A8B9"' last-modified: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 15:59:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1025,11 +997,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 15:59:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72b7958d-f1e2-4c2d-a977-41aaf12aa6fb/74fab415-9499-4d63-9010-143b557452b3.txt + uri: https://redacted.blob.core.windows.net/src6832ee62-c538-43eb-8adf-0975e76eeb70/989f7f1b-6c67-49af-be0a-0ea91c53f0ad.txt response: body: string: '' @@ -1039,11 +1011,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:53 GMT etag: - - '"0x8D91C79F6918181"' + - '"0x8D925DF75FAA6A4"' last-modified: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 15:59:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1075,11 +1047,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 15:59:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src72b7958d-f1e2-4c2d-a977-41aaf12aa6fb/257b4d0e-bd7f-42a4-ad13-bcdf86737983.txt + uri: https://redacted.blob.core.windows.net/src6832ee62-c538-43eb-8adf-0975e76eeb70/3b9e8602-cb6d-4b78-baed-676388de858c.txt response: body: string: '' @@ -1089,11 +1061,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:53 GMT etag: - - '"0x8D91C79F69D1C67"' + - '"0x8D925DF7602703E"' last-modified: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 15:59:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1119,11 +1091,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 15:59:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target0ce8aab7-a1d2-47a6-b2a8-bd7cd2039db1?restype=container + uri: https://redacted.blob.core.windows.net/targetd4ea581c-2c7b-43c0-9c10-2a0f342797cb?restype=container response: body: string: '' @@ -1131,11 +1103,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:39 GMT + - Wed, 02 Jun 2021 15:59:53 GMT etag: - - '"0x8D91C79F6CC724B"' + - '"0x8D925DF761C2913"' last-modified: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 15:59:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1144,14 +1116,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src72b7958d-f1e2-4c2d-a977-41aaf12aa6fb?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0ce8aab7-a1d2-47a6-b2a8-bd7cd2039db1?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src6832ee62-c538-43eb-8adf-0975e76eeb70?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd4ea581c-2c7b-43c0-9c10-2a0f342797cb?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -1162,53 +1134,46 @@ interactions: body: string: '' headers: - apim-request-id: 06512e4c-0169-4538-b2ea-72777c63eb12 + apim-request-id: 62506dd9-ec46-46a9-b920-19e0f746316d content-length: '0' - date: Fri, 21 May 2021 17:00:40 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d5fe4825-3467-4a4f-9af3-979c333c52d0 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 15:59:53 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/489cd17f-a840-4ff7-a136-b6a69cfcea3f + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 06512e4c-0169-4538-b2ea-72777c63eb12 + x-requestid: 62506dd9-ec46-46a9-b920-19e0f746316d status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/d5fe4825-3467-4a4f-9af3-979c333c52d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/489cd17f-a840-4ff7-a136-b6a69cfcea3f response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzFMiSHMXagnYOCjQdmo2g5USAbQESPRRG/r2SgWTOQhzv+I4r - hB4c9O3gzVG1QpuDFQbNIDoctOhsR1pralUvYQeUPLLvP8u4hMn/MBVWSdUI2QrVXBrrpHRG7q3W - B9OYa2FGzHwiDnF+F7MVy4y85HJ3jvzNmMrb6i7ThOkP3AocGUdwcgcDhrGkVeaFyOe86TB/pXhL - z3WO/OtfVdUhnMmPT3Tr+7hjQmKfqrhtyePxD/kQrUwkAQAA + string: '{"id":"489cd17f-a840-4ff7-a136-b6a69cfcea3f","createdDateTimeUtc":"2021-06-02T15:59:53.9586351Z","lastActionDateTimeUtc":"2021-06-02T15:59:56.6764203Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: b68f0ee3-100d-463f-bfcb-8badb876cfa9 + apim-request-id: 289b6694-ed65-4ec3-97f8-27cfc51c678d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:40 GMT - etag: '"7AB5EDE3B16AC2647019A37FF32E798B33C8878056167EBC9DFCD137244C0486"' + date: Wed, 02 Jun 2021 16:00:24 GMT + etag: '"EAA050994A505CC9688F6029EE940706C0C87E26164330834E25FC656AF2D14D"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b68f0ee3-100d-463f-bfcb-8badb876cfa9 + x-requestid: 289b6694-ed65-4ec3-97f8-27cfc51c678d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d5fe4825-3467-4a4f-9af3-979c333c52d0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/489cd17f-a840-4ff7-a136-b6a69cfcea3f - request: body: null headers: @@ -1223,11 +1188,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 16:00:24 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfc582f80-bb0e-4508-a0b6-9f604825f4c1?restype=container + uri: https://redacted.blob.core.windows.net/srccd2d259e-845f-4b09-8392-7ce87b4bf49c?restype=container response: body: string: '' @@ -1235,11 +1200,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 16:00:23 GMT etag: - - '"0x8D91C79F704A3DA"' + - '"0x8D925DF88614474"' last-modified: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:24 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1267,11 +1232,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:24 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfc582f80-bb0e-4508-a0b6-9f604825f4c1/0a2f9d43-7161-43d0-9884-e6ff8a745d2b.txt + uri: https://redacted.blob.core.windows.net/srccd2d259e-845f-4b09-8392-7ce87b4bf49c/4b8057ed-f316-4e42-8c1c-f050e060657a.txt response: body: string: '' @@ -1281,11 +1246,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 16:00:23 GMT etag: - - '"0x8D91C79F7119E74"' + - '"0x8D925DF886A2A6F"' last-modified: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:24 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1317,11 +1282,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:24 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfc582f80-bb0e-4508-a0b6-9f604825f4c1/fd68a3a1-758d-4a17-aee3-bd66bbad4aa2.txt + uri: https://redacted.blob.core.windows.net/srccd2d259e-845f-4b09-8392-7ce87b4bf49c/51889a39-9aeb-45ee-af6f-40750a0a491e.txt response: body: string: '' @@ -1331,11 +1296,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 16:00:23 GMT etag: - - '"0x8D91C79F71FD1DD"' + - '"0x8D925DF8871A5DB"' last-modified: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:24 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1361,11 +1326,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:24 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targeta3e6dcd2-f25a-4ed3-a41f-f189997acb18?restype=container + uri: https://redacted.blob.core.windows.net/target30eedc56-d3a5-4510-9437-c387bc83b915?restype=container response: body: string: '' @@ -1373,11 +1338,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:40 GMT + - Wed, 02 Jun 2021 16:00:24 GMT etag: - - '"0x8D91C79F7468793"' + - '"0x8D925DF888B320C"' last-modified: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:24 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1386,14 +1351,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfc582f80-bb0e-4508-a0b6-9f604825f4c1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta3e6dcd2-f25a-4ed3-a41f-f189997acb18?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccd2d259e-845f-4b09-8392-7ce87b4bf49c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target30eedc56-d3a5-4510-9437-c387bc83b915?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '484' Content-Type: - application/json User-Agent: @@ -1404,53 +1369,46 @@ interactions: body: string: '' headers: - apim-request-id: 1ef8e85d-dde0-4bc5-9675-7eeadce53000 + apim-request-id: f9e5212c-c117-4e8f-82ba-1fb8d72a04c3 content-length: '0' - date: Fri, 21 May 2021 17:00:41 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/81881aab-7d2f-462d-847d-9bc4b224963c + date: Wed, 02 Jun 2021 16:00:24 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c695b485-b3d1-4243-bd59-d0e422ac50ba set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1ef8e85d-dde0-4bc5-9675-7eeadce53000 + x-requestid: f9e5212c-c117-4e8f-82ba-1fb8d72a04c3 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/81881aab-7d2f-462d-847d-9bc4b224963c + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c695b485-b3d1-4243-bd59-d0e422ac50ba response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMW/EIAyF/4vnowLKBcJWtXNVqdeh3RzDXZGSIIEzVKf774VI17mL9fyev+cr - pAAenHJOIU7CBn0WZtBBOGODGCcyk9ZmHB4JDkAlIsfw0sYpLfGDqbFaaiXkUWh1UtZL6Y16OFoz - jKP7asyMlZ+IU17/hVkpVccqI2+13b1mfmcs7W13t2XB8gP+CpwZZ/DyAGdMc0u7rBtRrHXXaX0r - +VLu65r5M/5VdYdwpTjf0b3v+RsLEsfSxWVPbrdfPm9/xyQBAAA= + string: '{"id":"c695b485-b3d1-4243-bd59-d0e422ac50ba","createdDateTimeUtc":"2021-06-02T16:00:24.8793369Z","lastActionDateTimeUtc":"2021-06-02T16:00:31.7194867Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 82d21f13-c9bc-4006-b2be-f45301c90a3f + apim-request-id: 83b6cf07-e423-4403-a415-5614bc038de7 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:41 GMT - etag: '"C356339C48C225B3041991226643EA8B89C2E89383C2934DC82D34D96B98FF8A"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 16:00:54 GMT + etag: '"DBB5E0F6CE9DEA4315D4C5B9511AB80EFFB83DD59DD09B342A75A4EA10B3DDF0"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 82d21f13-c9bc-4006-b2be-f45301c90a3f + x-requestid: 83b6cf07-e423-4403-a415-5614bc038de7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/81881aab-7d2f-462d-847d-9bc4b224963c + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c695b485-b3d1-4243-bd59-d0e422ac50ba - request: body: null headers: @@ -1465,11 +1423,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:55 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcef680a81-e21a-4ebc-bf91-b2e5dd284f73?restype=container + uri: https://redacted.blob.core.windows.net/srccfa4f10b-de73-472d-b8f3-8389caed051d?restype=container response: body: string: '' @@ -1477,11 +1435,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:55 GMT etag: - - '"0x8D91C79F78C3075"' + - '"0x8D925DF9AD0AFC5"' last-modified: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:55 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1509,11 +1467,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:55 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcef680a81-e21a-4ebc-bf91-b2e5dd284f73/40d9a08d-4843-415d-a3be-9130f2dfd07a.txt + uri: https://redacted.blob.core.windows.net/srccfa4f10b-de73-472d-b8f3-8389caed051d/96d384e4-2f31-4bd7-9f2b-6b4ad613a92b.txt response: body: string: '' @@ -1523,11 +1481,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:55 GMT etag: - - '"0x8D91C79F799D331"' + - '"0x8D925DF9AD9D63E"' last-modified: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:00:55 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1559,11 +1517,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:00:55 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcef680a81-e21a-4ebc-bf91-b2e5dd284f73/853fc110-8198-4085-8717-ea89913dd38b.txt + uri: https://redacted.blob.core.windows.net/srccfa4f10b-de73-472d-b8f3-8389caed051d/fa5edea1-411a-444e-ade1-4e4152daeb14.txt response: body: string: '' @@ -1573,11 +1531,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:41 GMT + - Wed, 02 Jun 2021 16:00:55 GMT etag: - - '"0x8D91C79F7B21A93"' + - '"0x8D925DF9AE374F3"' last-modified: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:00:55 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1603,11 +1561,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:00:55 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target2c2dc962-da2e-45b2-906d-635c82739281?restype=container + uri: https://redacted.blob.core.windows.net/target2e27b0e5-6bed-40f7-a74f-2d24f1c899d8?restype=container response: body: string: '' @@ -1615,11 +1573,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:00:55 GMT etag: - - '"0x8D91C79F7D78B78"' + - '"0x8D925DF9B053A01"' last-modified: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:00:55 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1628,14 +1586,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcef680a81-e21a-4ebc-bf91-b2e5dd284f73?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2c2dc962-da2e-45b2-906d-635c82739281?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccfa4f10b-de73-472d-b8f3-8389caed051d?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2e27b0e5-6bed-40f7-a74f-2d24f1c899d8?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -1646,53 +1604,46 @@ interactions: body: string: '' headers: - apim-request-id: 62e3b54a-bb83-4362-8e6b-67f1919e9f90 + apim-request-id: 8747bc35-1231-4fb6-a82b-b1b4464dbf4f content-length: '0' - date: Fri, 21 May 2021 17:00:41 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c2a25188-ebe9-4441-8350-a48dc480937a - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 16:00:55 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/968d661e-a9a7-4e6e-8976-8960a6a26db1 + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 62e3b54a-bb83-4362-8e6b-67f1919e9f90 + x-requestid: 8747bc35-1231-4fb6-a82b-b1b4464dbf4f status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/c2a25188-ebe9-4441-8350-a48dc480937a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/968d661e-a9a7-4e6e-8976-8960a6a26db1 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4VzVEiyHCvainYuCjQZ0o2l2VSAbQESPRRB/r2SgWTuQhzv+I5X - iCMEIIu2N94r/uKDcs4Z5bteK3R+JOf1oRsQdkCZUXh8reMYZz4JVdZqa5TulTVHMwStg7NPzu9d - 57vPykxY5JkkpuW/2NCwIihrqXdvST4Ec33b3HWeMf9CuIIkwQmC3sE3xqmmTZaViEvZdFzec7rk - +7okOfOjqjmEC/F0R7e+lx/MSMK5icuW3G5/8mmDFSQBAAA= + string: '{"id":"968d661e-a9a7-4e6e-8976-8960a6a26db1","createdDateTimeUtc":"2021-06-02T16:00:55.8886261Z","lastActionDateTimeUtc":"2021-06-02T16:00:56.8404705Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: d385dc21-56b3-4496-9c95-7d8f13b8fcb3 + apim-request-id: 3a3386a6-6e88-4155-84f2-e89087dc2210 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:42 GMT - etag: '"5C432F7A6C287CAA6988320908D8433808F5B64D42A9AA8247687FE2F5500CAF"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 16:01:25 GMT + etag: '"DEBFD7A44478754E791ABDEFD9704DB41D8D9595AA2B6C3E55064C4B8B475D06"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d385dc21-56b3-4496-9c95-7d8f13b8fcb3 + x-requestid: 3a3386a6-6e88-4155-84f2-e89087dc2210 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/c2a25188-ebe9-4441-8350-a48dc480937a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/968d661e-a9a7-4e6e-8976-8960a6a26db1 - request: body: null headers: @@ -1707,11 +1658,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:01:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcda33d049-6fd7-4305-b033-1b761373e4dc?restype=container + uri: https://redacted.blob.core.windows.net/src7fcc3559-0d4b-4c69-91bb-0ab878bbc1d5?restype=container response: body: string: '' @@ -1719,11 +1670,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:01:25 GMT etag: - - '"0x8D91C79F8191012"' + - '"0x8D925DFAD577DCE"' last-modified: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:01:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1751,11 +1702,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:01:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcda33d049-6fd7-4305-b033-1b761373e4dc/c00297b6-97d6-4bb4-8e07-f71bfd643635.txt + uri: https://redacted.blob.core.windows.net/src7fcc3559-0d4b-4c69-91bb-0ab878bbc1d5/54017903-9bf6-4ef6-ac34-6e08c5c23f79.txt response: body: string: '' @@ -1765,11 +1716,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:01:25 GMT etag: - - '"0x8D91C79F827AE2E"' + - '"0x8D925DFAD62182F"' last-modified: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:01:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1801,11 +1752,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcda33d049-6fd7-4305-b033-1b761373e4dc/867ff6bb-1bc3-4e86-876f-151fd372e265.txt + uri: https://redacted.blob.core.windows.net/src7fcc3559-0d4b-4c69-91bb-0ab878bbc1d5/9765d945-6f19-4219-978b-da9ec104c073.txt response: body: string: '' @@ -1815,11 +1766,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:01:25 GMT etag: - - '"0x8D91C79F8391678"' + - '"0x8D925DFAD6B68B0"' last-modified: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -1845,11 +1796,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf127ee45-2504-4e31-ad95-7e96ac21799a?restype=container + uri: https://redacted.blob.core.windows.net/targetf44e7419-b2a1-41c8-a83f-62112ed7e89d?restype=container response: body: string: '' @@ -1857,11 +1808,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:42 GMT + - Wed, 02 Jun 2021 16:01:26 GMT etag: - - '"0x8D91C79F86BF45A"' + - '"0x8D925DFAD8C2B05"' last-modified: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1870,14 +1821,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcda33d049-6fd7-4305-b033-1b761373e4dc?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf127ee45-2504-4e31-ad95-7e96ac21799a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7fcc3559-0d4b-4c69-91bb-0ab878bbc1d5?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf44e7419-b2a1-41c8-a83f-62112ed7e89d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '484' Content-Type: - application/json User-Agent: @@ -1888,53 +1839,46 @@ interactions: body: string: '' headers: - apim-request-id: 5f7e4da1-af81-4a0e-a1c0-08c7a4504720 + apim-request-id: 96d81c01-a8cb-4d07-9b3a-a45204cc5eba content-length: '0' - date: Fri, 21 May 2021 17:00:42 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 16:01:26 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cdec4f7c-1b4d-410c-b365-23da4203ab4a + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5f7e4da1-af81-4a0e-a1c0-08c7a4504720 + x-requestid: 96d81c01-a8cb-4d07-9b3a-a45204cc5eba status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cdec4f7c-1b4d-410c-b365-23da4203ab4a response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMY/CMAyF/4tngpI2NEe2E8zoJLjh2JzU5SK1jZS4wwnx30kqwXyL9fyev+c7 - hB4s6L0j51wrdC9JaKdQuMHshFJu3yrt5IAdbMAnQqb+WMYlTPTNvrCNbJSQO9GoizJWSqvbrTb6 - w3TdtTAjZv70HOL8T8yoimVGXnK5O0U+M6bytrrLNGH6A3sHjowjWLmBAcNY0irz4j3lvOowf6V4 - S691jvxD76rqeJw9jS907Tv8YkLPlKq4rcnj8QTJkoKmJAEAAA== + string: '{"id":"cdec4f7c-1b4d-410c-b365-23da4203ab4a","createdDateTimeUtc":"2021-06-02T16:01:26.9916063Z","lastActionDateTimeUtc":"2021-06-02T16:01:31.7371743Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 76bc7ac0-6306-4fa2-9b74-c5a5893dc88e + apim-request-id: 3071db0c-2757-4177-baf1-7b2b539e522f cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:42 GMT - etag: '"7A7192B13C376EBFB180EB7D5E63476B100AF2258FEEEAC87147DC51F5AF5D0A"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 16:01:57 GMT + etag: '"A3558FE94984215129C991F6D9735F2061566FAEAD17D1D70E6543E866D4D614"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 76bc7ac0-6306-4fa2-9b74-c5a5893dc88e + x-requestid: 3071db0c-2757-4177-baf1-7b2b539e522f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/cdec4f7c-1b4d-410c-b365-23da4203ab4a - request: body: null headers: @@ -1949,11 +1893,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src84b58f0b-cb06-4b9a-92fb-40c17558d541?restype=container + uri: https://redacted.blob.core.windows.net/src152181e0-6188-4956-bac5-db7d6909ed8b?restype=container response: body: string: '' @@ -1961,11 +1905,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:56 GMT etag: - - '"0x8D91C79F8A765DB"' + - '"0x8D925DFBFC17539"' last-modified: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1993,11 +1937,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src84b58f0b-cb06-4b9a-92fb-40c17558d541/7c0ae788-268b-4a8a-ad29-fd8f98499ecb.txt + uri: https://redacted.blob.core.windows.net/src152181e0-6188-4956-bac5-db7d6909ed8b/7816e972-56d2-47cb-9f89-b00507d324e8.txt response: body: string: '' @@ -2007,11 +1951,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:56 GMT etag: - - '"0x8D91C79F8B2F092"' + - '"0x8D925DFBFCE675B"' last-modified: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2043,11 +1987,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src84b58f0b-cb06-4b9a-92fb-40c17558d541/5d6a4ce2-47e6-4c3e-8b6d-7311687d743f.txt + uri: https://redacted.blob.core.windows.net/src152181e0-6188-4956-bac5-db7d6909ed8b/fbcc26e6-6535-4758-8260-cf6a4954f34c.txt response: body: string: '' @@ -2057,11 +2001,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:56 GMT etag: - - '"0x8D91C79F8BE8B78"' + - '"0x8D925DFBFD6F466"' last-modified: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2087,11 +2031,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:01:57 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc39a802d-9348-4931-b004-9897ebc1a1ba?restype=container + uri: https://redacted.blob.core.windows.net/targetb769e1e3-9633-4071-925a-2a58ba60198b?restype=container response: body: string: '' @@ -2099,11 +2043,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:01:57 GMT etag: - - '"0x8D91C79F8E537B1"' + - '"0x8D925DFBFF19405"' last-modified: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:01:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2112,8 +2056,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src84b58f0b-cb06-4b9a-92fb-40c17558d541?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc39a802d-9348-4931-b004-9897ebc1a1ba?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src152181e0-6188-4956-bac5-db7d6909ed8b?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb769e1e3-9633-4071-925a-2a58ba60198b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -2130,53 +2074,46 @@ interactions: body: string: '' headers: - apim-request-id: f0d9a43c-2fbf-46c8-81ae-5d65c58eac3d + apim-request-id: b2661842-adda-4465-9cc8-10664b858feb content-length: '0' - date: Fri, 21 May 2021 17:00:43 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/141ace45-78a7-4fc7-868a-f3da9f7ffeb0 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 16:01:57 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a5bdf9f-d631-4c86-a784-72e20b651d95 + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f0d9a43c-2fbf-46c8-81ae-5d65c58eac3d + x-requestid: b2661842-adda-4465-9cc8-10664b858feb status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/141ace45-78a7-4fc7-868a-f3da9f7ffeb0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a5bdf9f-d631-4c86-a784-72e20b651d95 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/0VzVEiubCnainYuCjQZ0o2hqUSAbQESPRRB/r2SgXTOQhzv+I43 - EUfhhTYakEwvrQMrTUAr3eBAhtcR9sGGQGcldgIzAdP4UcchznRkrGynOi1VLzt90NYr5Y156fpB - Ozf8VGaCwm/IMS1PYvtGFQZeSz37TPzNkOvX5q7zDPlX+JvgxDAJr3YiQJxq2mRZEamUTcflK6dL - fqxL4hP9VzUHYUGaHujW936FDMiUm7hsyf3+B/DKEM8jAQAA + string: '{"id":"4a5bdf9f-d631-4c86-a784-72e20b651d95","createdDateTimeUtc":"2021-06-02T16:01:57.8276068Z","lastActionDateTimeUtc":"2021-06-02T16:02:02.0193979Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' headers: - apim-request-id: 085b258c-15ed-4877-a0bf-da1e2e073c64 + apim-request-id: e90d2eaa-c3e6-4868-983d-c132e52b0b46 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:43 GMT - etag: '"E3E06E5BF6E1BC8D3021BC1BAAE6E6FF5DD92E6743D1054F5703102F278CCDCE"' + date: Wed, 02 Jun 2021 16:02:27 GMT + etag: '"D1C939B6A87F769AB0E622108BA08FA59521499A1AA54A4678A6CA8883695BC2"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 085b258c-15ed-4877-a0bf-da1e2e073c64 + x-requestid: e90d2eaa-c3e6-4868-983d-c132e52b0b46 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/141ace45-78a7-4fc7-868a-f3da9f7ffeb0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4a5bdf9f-d631-4c86-a784-72e20b651d95 - request: body: null headers: @@ -2191,11 +2128,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:02:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src69b7c15e-cec4-48d1-93c8-3e6639befc21?restype=container + uri: https://redacted.blob.core.windows.net/src11c116a0-db6e-4914-958a-08a4d5e2c8ac?restype=container response: body: string: '' @@ -2203,11 +2140,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:02:46 GMT etag: - - '"0x8D91C79F91D8315"' + - '"0x8D925DFDD20C6E9"' last-modified: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:02:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2235,11 +2172,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:02:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src69b7c15e-cec4-48d1-93c8-3e6639befc21/9b852ab5-2441-409e-a4d6-01b91b6c3302.txt + uri: https://redacted.blob.core.windows.net/src11c116a0-db6e-4914-958a-08a4d5e2c8ac/12297c41-c1f6-482b-bfb4-a8223fac9acc.txt response: body: string: '' @@ -2249,11 +2186,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:02:46 GMT etag: - - '"0x8D91C79F92B43EA"' + - '"0x8D925DFDD28B9F8"' last-modified: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:02:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2285,11 +2222,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:02:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src69b7c15e-cec4-48d1-93c8-3e6639befc21/c78d301f-66cd-4638-960a-37de6e8c717b.txt + uri: https://redacted.blob.core.windows.net/src11c116a0-db6e-4914-958a-08a4d5e2c8ac/9e8019cc-26a8-41e8-bb1f-b50a6df829fc.txt response: body: string: '' @@ -2299,11 +2236,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:43 GMT + - Wed, 02 Jun 2021 16:02:46 GMT etag: - - '"0x8D91C79F9399E67"' + - '"0x8D925DFDD32F507"' last-modified: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:02:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -2329,11 +2266,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:02:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target11c7c58b-e65d-4b76-9e0d-0c9c6995c8a2?restype=container + uri: https://redacted.blob.core.windows.net/targetb393e7f5-d5cf-42c1-8dda-b1f4e3ee2737?restype=container response: body: string: '' @@ -2341,11 +2278,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:44 GMT + - Wed, 02 Jun 2021 16:02:46 GMT etag: - - '"0x8D91C79F961DADB"' + - '"0x8D925DFDD4E9C2E"' last-modified: - - Fri, 21 May 2021 17:00:45 GMT + - Wed, 02 Jun 2021 16:02:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -2354,14 +2291,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src69b7c15e-cec4-48d1-93c8-3e6639befc21?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target11c7c58b-e65d-4b76-9e0d-0c9c6995c8a2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src11c116a0-db6e-4914-958a-08a4d5e2c8ac?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb393e7f5-d5cf-42c1-8dda-b1f4e3ee2737?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '492' Content-Type: - application/json User-Agent: @@ -2372,19 +2309,46 @@ interactions: body: string: '' headers: - apim-request-id: 8ba18449-389f-4301-8c9b-bb684726589d + apim-request-id: 9d286143-318f-462b-8fe4-07068d2f33bf content-length: '0' - date: Fri, 21 May 2021 17:00:44 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/27bc3cef-65a2-4880-8b4c-c661c790ab22 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 16:02:47 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/69a35099-bb91-446b-a147-9b214b8b38ea + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8ba18449-389f-4301-8c9b-bb684726589d + x-requestid: 9d286143-318f-462b-8fe4-07068d2f33bf status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches +- 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/batches/69a35099-bb91-446b-a147-9b214b8b38ea + response: + body: + string: '{"id":"69a35099-bb91-446b-a147-9b214b8b38ea","createdDateTimeUtc":"2021-06-02T16:02:47.2770311Z","lastActionDateTimeUtc":"2021-06-02T16:02:56.9378367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}' + headers: + apim-request-id: ee32c3a9-75e9-4636-9259-1e8818450821 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:17 GMT + etag: '"5BF900FE2569CE3D58A5F9AD516CA69CC06B840299348DEEFE459882A31500F3"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ee32c3a9-75e9-4636-9259-1e8818450821 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/69a35099-bb91-446b-a147-9b214b8b38ea - request: body: null headers: @@ -2393,32 +2357,60 @@ 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/batches/27bc3cef-65a2-4880-8b4c-c661c790ab22 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/4WzFUiqLTvagnQOCtQdmo1mFEeAbQESPRRB/r2SgWTOQhzv+I53 - 8BewoNuBPshdhWlQi7rrpOiGmgQZo6jdSxy0hgooOmR3+cyj97P7YSqs1ErIRmjVq9ZKaetmp6RR - nTLnzEyY+EDsw/ImpguVGHlN+ewU+Jsx5q/FXecZ4x/YO3BgnMDKCq7op5wWmVYil9Km/fIVwxif - 6xL4172qikO4kJue6NZ3vGFEYheLGLfk8fgHGOu+niMBAAA= + string: '{"value":[{"id":"69a35099-bb91-446b-a147-9b214b8b38ea","createdDateTimeUtc":"2021-06-02T16:02:47.2770311Z","lastActionDateTimeUtc":"2021-06-02T16:02:56.9378367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a5bdf9f-d631-4c86-a784-72e20b651d95","createdDateTimeUtc":"2021-06-02T16:01:57.8276068Z","lastActionDateTimeUtc":"2021-06-02T16:02:02.0193979Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdec4f7c-1b4d-410c-b365-23da4203ab4a","createdDateTimeUtc":"2021-06-02T16:01:26.9916063Z","lastActionDateTimeUtc":"2021-06-02T16:01:31.7371743Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"968d661e-a9a7-4e6e-8976-8960a6a26db1","createdDateTimeUtc":"2021-06-02T16:00:55.8886261Z","lastActionDateTimeUtc":"2021-06-02T16:00:56.8404705Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c695b485-b3d1-4243-bd59-d0e422ac50ba","createdDateTimeUtc":"2021-06-02T16:00:24.8793369Z","lastActionDateTimeUtc":"2021-06-02T16:00:31.7194867Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"489cd17f-a840-4ff7-a136-b6a69cfcea3f","createdDateTimeUtc":"2021-06-02T15:59:53.9586351Z","lastActionDateTimeUtc":"2021-06-02T15:59:56.6764203Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f395251a-5f98-426d-b057-1816ccd1e91e","createdDateTimeUtc":"2021-06-02T15:59:23.0621525Z","lastActionDateTimeUtc":"2021-06-02T15:59:31.5450469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f285838-37f7-41b2-9cee-96b05debeade","createdDateTimeUtc":"2021-06-02T15:58:52.094574Z","lastActionDateTimeUtc":"2021-06-02T15:58:56.6812854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bb165a06-6672-4478-a388-29e052d1daa8","createdDateTimeUtc":"2021-06-02T15:58:20.919629Z","lastActionDateTimeUtc":"2021-06-02T15:58:26.5494175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e53a92a5-2373-4f3a-a542-aaf6c550c3b9","createdDateTimeUtc":"2021-06-02T15:57:49.8897238Z","lastActionDateTimeUtc":"2021-06-02T15:57:51.5405362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0a54387-d426-4b5c-bfdf-8da48f0709de","createdDateTimeUtc":"2021-06-02T15:55:30.8552601Z","lastActionDateTimeUtc":"2021-06-02T15:55:31.2926485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"753a34c4-2750-4297-b243-8304e4986ed9","createdDateTimeUtc":"2021-06-02T15:54:59.7769644Z","lastActionDateTimeUtc":"2021-06-02T15:55:01.2216709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c308dab-d685-4f39-afda-99bd95fb5854","createdDateTimeUtc":"2021-06-02T15:54:04.4107814Z","lastActionDateTimeUtc":"2021-06-02T15:54:06.1602589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca100a2c-9da7-4f39-b0ab-31fa617d9948","createdDateTimeUtc":"2021-06-02T15:53:33.2513281Z","lastActionDateTimeUtc":"2021-06-02T15:53:36.035775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"841ddedc-73a2-41cd-afc3-3a3c5865197b","createdDateTimeUtc":"2021-06-02T15:52:15.460274Z","lastActionDateTimeUtc":"2021-06-02T15:52:21.0234394Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"641d98b3-adad-43f5-9d47-8a0a0d63c40f","createdDateTimeUtc":"2021-06-02T15:51:44.5778968Z","lastActionDateTimeUtc":"2021-06-02T15:51:50.9685839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa77e970-5a22-4be5-9d72-27f73226679a","createdDateTimeUtc":"2021-06-02T15:51:13.6071265Z","lastActionDateTimeUtc":"2021-06-02T15:51:15.9210393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ae7acfb8-b962-4978-942c-6cba3de07e8f","createdDateTimeUtc":"2021-06-02T15:50:40.6703242Z","lastActionDateTimeUtc":"2021-06-02T15:50:50.7401416Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ced8397-8a10-4f04-8976-146727a17265","createdDateTimeUtc":"2021-06-02T15:50:09.7703098Z","lastActionDateTimeUtc":"2021-06-02T15:50:15.7782398Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2df049c2-88f2-4d49-ad7b-b51f852ce3ae","createdDateTimeUtc":"2021-06-02T15:49:38.5642201Z","lastActionDateTimeUtc":"2021-06-02T15:49:40.7209902Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7d138c6-34b9-4862-86fb-cdabc214d204","createdDateTimeUtc":"2021-06-02T15:49:06.1046823Z","lastActionDateTimeUtc":"2021-06-02T15:49:15.7707124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a67c541d-2ea3-4341-9be7-7c6baf258327","createdDateTimeUtc":"2021-06-02T15:48:35.1898562Z","lastActionDateTimeUtc":"2021-06-02T15:48:40.6793835Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8cef6dc-9699-46b5-9097-17c86e9d428a","createdDateTimeUtc":"2021-06-02T15:48:04.0354645Z","lastActionDateTimeUtc":"2021-06-02T15:48:10.6299243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbb3cde3-a42e-445d-b89d-70449e8840ef","createdDateTimeUtc":"2021-06-02T15:47:21.9381582Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.8271606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b311ad2c-e8ad-4d10-bc18-325a6f08cda0","createdDateTimeUtc":"2021-06-02T15:46:50.8668441Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.7482384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d45fc1e-b2db-458b-a663-059795ae3c3c","createdDateTimeUtc":"2021-06-02T15:46:19.6722056Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.6264139Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4bd89238-d6e6-45dc-8912-1b955eb512bc","createdDateTimeUtc":"2021-06-02T15:45:48.3203318Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.5535213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54b40e06-6cf7-401b-8537-bc9047946920","createdDateTimeUtc":"2021-06-02T15:45:17.0771317Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.4223719Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35747bc7-da08-4dc5-b67a-9f6f51567313","createdDateTimeUtc":"2021-06-02T15:44:46.0331186Z","lastActionDateTimeUtc":"2021-06-02T15:44:50.3666864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bfefe5c6-e2d9-43c0-88c6-4462af997770","createdDateTimeUtc":"2021-06-02T15:44:15.1438217Z","lastActionDateTimeUtc":"2021-06-02T15:44:20.2936473Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"24d02912-bfb1-4762-b20c-a82ff6750cb1","createdDateTimeUtc":"2021-06-02T15:43:44.3116426Z","lastActionDateTimeUtc":"2021-06-02T15:43:45.1997808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa247fd3-6fb5-4c4f-ab03-4dac197b79df","createdDateTimeUtc":"2021-06-02T15:43:13.4363016Z","lastActionDateTimeUtc":"2021-06-02T15:43:20.1331654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"74bd8d8b-10e9-4f02-8480-80f6043c2330","createdDateTimeUtc":"2021-06-02T15:42:42.618931Z","lastActionDateTimeUtc":"2021-06-02T15:42:45.1068144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0daad36d-d58b-464a-bf3f-24756c168dab","createdDateTimeUtc":"2021-06-02T15:42:11.4829756Z","lastActionDateTimeUtc":"2021-06-02T15:42:20.0459031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb","createdDateTimeUtc":"2021-06-02T15:41:40.4875824Z","lastActionDateTimeUtc":"2021-06-02T15:41:45.0055865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49a4073e-a77c-43a8-a5df-624e4353512b","createdDateTimeUtc":"2021-06-02T15:41:09.4884568Z","lastActionDateTimeUtc":"2021-06-02T15:41:15.079891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"671ec3e7-7651-49de-b5e2-abf216ba6a00","createdDateTimeUtc":"2021-06-02T15:40:36.3117467Z","lastActionDateTimeUtc":"2021-06-02T15:40:39.8287338Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64fcc7b4-da11-4673-8df5-94b579a2a941","createdDateTimeUtc":"2021-06-02T15:40:05.5995431Z","lastActionDateTimeUtc":"2021-06-02T15:40:14.7288062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcf5d3bd-350e-48d0-849f-cd30c5c70f6c","createdDateTimeUtc":"2021-06-02T15:39:34.6738498Z","lastActionDateTimeUtc":"2021-06-02T15:39:39.9418091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b1dffbc6-abe0-4650-9da1-bada8545f067","createdDateTimeUtc":"2021-06-02T15:39:03.7253899Z","lastActionDateTimeUtc":"2021-06-02T15:39:09.6415436Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"483f1e94-ed29-4561-b05e-93f8108a250e","createdDateTimeUtc":"2021-06-02T15:38:32.8282822Z","lastActionDateTimeUtc":"2021-06-02T15:38:34.5245464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14b4a15e-8a19-4b18-9005-324a40790e0a","createdDateTimeUtc":"2021-06-02T15:38:01.9108422Z","lastActionDateTimeUtc":"2021-06-02T15:38:09.4423062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a28a0dd-a1f9-41d7-84c1-f0b1113f8789","createdDateTimeUtc":"2021-06-02T15:37:30.8922028Z","lastActionDateTimeUtc":"2021-06-02T15:37:34.9631268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5042709-8ee3-43ca-bd9b-fa7bd59c7265","createdDateTimeUtc":"2021-06-02T15:36:40.1565566Z","lastActionDateTimeUtc":"2021-06-02T15:36:44.3046541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b849ea0a-e4a9-46a3-8b28-32a190e543d0","createdDateTimeUtc":"2021-06-02T15:36:08.9101301Z","lastActionDateTimeUtc":"2021-06-02T15:36:09.5400119Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70889650-7a9b-4928-a36f-6f06dd2c8a9c","createdDateTimeUtc":"2021-06-02T15:35:37.9362618Z","lastActionDateTimeUtc":"2021-06-02T15:35:39.1768098Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"227d7245-54a1-4383-81be-7b1679cf252d","createdDateTimeUtc":"2021-06-02T15:34:50.3214464Z","lastActionDateTimeUtc":"2021-06-02T15:34:54.5445251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d538b50a-4739-437e-a430-4a39d552ae9b","createdDateTimeUtc":"2021-06-02T15:34:19.3119357Z","lastActionDateTimeUtc":"2021-06-02T15:34:24.1613577Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f459e67d-3ef8-4dd5-9441-f037a9ef7bb9","createdDateTimeUtc":"2021-06-02T15:33:45.8406241Z","lastActionDateTimeUtc":"2021-06-02T15:33:48.97718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bcccc81-50c4-4930-b8c7-8166cd494fd0","createdDateTimeUtc":"2021-06-02T15:33:11.144037Z","lastActionDateTimeUtc":"2021-06-02T15:33:14.3246317Z","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/batches?$skip=50&$top=427&$maxpagesize=50"}' headers: - apim-request-id: b1f86c35-33e8-49cf-91ad-1ae25294076f + apim-request-id: 1b9eed17-feda-456c-a3d3-467d52ba014e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:44 GMT - etag: '"2D8AD41F311E90A0208C1992EC4C14EF5ACC57CBEC43DAD0B74532CD4D25C1B9"' + date: Wed, 02 Jun 2021 16:03:17 GMT + etag: '"5BBA74ACD5057BACC7D3B3AD0CB9FD4B586E9C8349090BBD714CAAC73D4FDFC6"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1b9eed17-feda-456c-a3d3-467d52ba014e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches?$skip=50&$top=427&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6932315e-6bda-408a-a072-d5a13492cbae","createdDateTimeUtc":"2021-06-02T15:32:22.5094146Z","lastActionDateTimeUtc":"2021-06-02T15:32:23.8496169Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f32e8631-bc29-48a4-94f1-de98861fa26b","createdDateTimeUtc":"2021-06-02T15:31:51.3977201Z","lastActionDateTimeUtc":"2021-06-02T15:31:58.5898438Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"037a7fa0-4dc3-4883-8f79-a92aa2b1bf20","createdDateTimeUtc":"2021-06-02T15:31:20.0453083Z","lastActionDateTimeUtc":"2021-06-02T15:31:23.4805698Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"952041da-4da4-43c8-a8f3-8e1742f2beb9","createdDateTimeUtc":"2021-06-02T15:30:48.630454Z","lastActionDateTimeUtc":"2021-06-02T15:30:52.4630271Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"58d95d16-9284-48bd-ace3-dd961197bcde","createdDateTimeUtc":"2021-06-02T07:07:21.3198845Z","lastActionDateTimeUtc":"2021-06-02T07:07:22.583496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72d34ce8-d861-4d6c-a410-d6337f303948","createdDateTimeUtc":"2021-06-02T07:07:14.7915463Z","lastActionDateTimeUtc":"2021-06-02T07:07:15.5245593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70081137-fe6d-466f-953e-2670c8f5e6da","createdDateTimeUtc":"2021-06-02T07:07:08.454661Z","lastActionDateTimeUtc":"2021-06-02T07:07:10.4666065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"113ad1aa-d9f6-4b15-a610-267b51c8a138","createdDateTimeUtc":"2021-06-02T07:06:40.2876379Z","lastActionDateTimeUtc":"2021-06-02T07:06:43.4469925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"171c4e8e-4733-4b42-b3ed-cbe9481c0d3d","createdDateTimeUtc":"2021-06-02T07:06:34.1550079Z","lastActionDateTimeUtc":"2021-06-02T07:06:34.2834432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"384343e6-a44b-49e9-91ef-d62cf39d44dc","createdDateTimeUtc":"2021-06-02T07:06:28.0100687Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.4305067Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c4182d40-ee61-40f5-b3ac-31bc4aaed8b8","createdDateTimeUtc":"2021-06-02T07:06:22.1439114Z","lastActionDateTimeUtc":"2021-06-02T07:06:22.2296325Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2295cf18-0237-4b0b-ac37-42d91ba98d4e","createdDateTimeUtc":"2021-06-02T07:06:14.1851872Z","lastActionDateTimeUtc":"2021-06-02T07:06:16.4424397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386e26c8-49dd-4eb5-ae3f-95bbc1809b38","createdDateTimeUtc":"2021-06-02T07:03:22.7902994Z","lastActionDateTimeUtc":"2021-06-02T07:03:23.1220631Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5948f436-c1b1-414c-9b2c-6d3af57f3021","createdDateTimeUtc":"2021-06-02T07:02:43.6134937Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.2264979Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0ab12764-59ff-4e7c-b9a7-88c62f9b9627","createdDateTimeUtc":"2021-06-02T06:56:55.0366689Z","lastActionDateTimeUtc":"2021-06-02T06:57:00.755663Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a9e762d-814f-4d12-b2cf-a686f3c572dd","createdDateTimeUtc":"2021-06-02T06:46:49.3275525Z","lastActionDateTimeUtc":"2021-06-02T06:46:57.3306415Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"68544ede-a20e-444e-a0ae-022199af016c","createdDateTimeUtc":"2021-06-02T06:41:24.4796213Z","lastActionDateTimeUtc":"2021-06-02T06:41:29.4908652Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8070372d-232c-4903-9b76-258c28a454bc","createdDateTimeUtc":"2021-06-02T06:41:18.3169725Z","lastActionDateTimeUtc":"2021-06-02T06:41:18.4692647Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"964fbde3-cb72-4679-815a-b68cb3145f58","createdDateTimeUtc":"2021-06-02T06:41:12.0098122Z","lastActionDateTimeUtc":"2021-06-02T06:41:16.688651Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c345e3b-2a71-4786-a3a9-c1703081324f","createdDateTimeUtc":"2021-06-02T06:41:05.9240834Z","lastActionDateTimeUtc":"2021-06-02T06:41:06.0023015Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4808cb29-461a-4bdc-849a-b8b2402cca93","createdDateTimeUtc":"2021-06-02T06:40:53.7154483Z","lastActionDateTimeUtc":"2021-06-02T06:40:54.3761813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea655e95-0404-4808-bc60-29d5023b58fa","createdDateTimeUtc":"2021-06-02T06:40:30.9135072Z","lastActionDateTimeUtc":"2021-06-02T06:40:31.7975375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ba008d05-8564-4475-9031-2d3e54e8f8bc","createdDateTimeUtc":"2021-06-02T06:40:05.638911Z","lastActionDateTimeUtc":"2021-06-02T06:40:06.5216871Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fd88caa7-54b7-44ad-a5df-b3f38b2006f4","createdDateTimeUtc":"2021-06-02T06:40:04.9897959Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.5795126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"de6d7efa-e94a-43a6-a5e0-10b28f9615ec","createdDateTimeUtc":"2021-06-02T06:40:04.3970363Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2868525Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d84f2015-a418-440f-aa40-c3c4a2c0f535","createdDateTimeUtc":"2021-06-02T06:40:03.8571077Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2818175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d44aa0e2-e11e-4510-8470-b090bd9b2f82","createdDateTimeUtc":"2021-06-02T06:40:03.1588409Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4667969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5aeaacbc-3228-435a-b713-ffb6e835188a","createdDateTimeUtc":"2021-06-02T06:40:02.5798533Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4688227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05f6af9f-6f99-476f-b95d-02e7b30ba973","createdDateTimeUtc":"2021-06-02T06:40:02.0118203Z","lastActionDateTimeUtc":"2021-06-02T06:40:03.6115399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7a23650d-bb6a-4ca8-9569-84fa94fe6800","createdDateTimeUtc":"2021-06-02T06:40:01.4873529Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.5950808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964a78c0-3ac4-4769-bbd8-526686f22c42","createdDateTimeUtc":"2021-06-02T06:40:00.9118738Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.6168181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d8840d4-2706-43e3-9db7-726ade4b28e8","createdDateTimeUtc":"2021-06-02T06:40:00.283617Z","lastActionDateTimeUtc":"2021-06-02T06:40:00.7436838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e302853f-5306-4a81-9d21-62ab1c3cb24f","createdDateTimeUtc":"2021-06-02T06:39:45.0213389Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9897041Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"840ef30b-a12f-49a9-b85b-01cb39acc87b","createdDateTimeUtc":"2021-06-02T06:39:44.5163768Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9895247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3415cb23-56af-4ba6-85c6-dfc4b5542ad8","createdDateTimeUtc":"2021-06-02T06:39:43.9656836Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7506612Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be268620-2e05-4ba2-89ae-1c0b72751bca","createdDateTimeUtc":"2021-06-02T06:39:43.4699657Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7031927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da019c4-f930-419b-8fd0-a26dfc37c494","createdDateTimeUtc":"2021-06-02T06:39:42.9890121Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8240778Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60d59bd2-31c5-4cd7-9a2c-2f4fb5a66a28","createdDateTimeUtc":"2021-06-02T06:39:40.9473475Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8600715Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23632a5-a3cd-4415-8ca9-49d9af346f4c","createdDateTimeUtc":"2021-06-02T06:39:24.1530166Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4860761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=377&$maxpagesize=50"}' + headers: + apim-request-id: 127745a3-ac94-4814-825a-b495b1d34dfa + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:17 GMT + etag: '"2DB17CF528DE78F83164FFA0BB09F497EBB3B4698B1D08E7526E3D709A76DF11"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b1f86c35-33e8-49cf-91ad-1ae25294076f + x-requestid: 127745a3-ac94-4814-825a-b495b1d34dfa status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/27bc3cef-65a2-4880-8b4c-c661c790ab22 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=50&$top=427&$maxpagesize=50 - request: body: null headers: @@ -2427,72 +2419,114 @@ 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/batches?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=377&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"348397fe-5a6d-4254-917e-8a417fe69a18","createdDateTimeUtc":"2021-06-02T06:39:23.6466581Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4112274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6d5cec9-56ba-49eb-a706-f23d8726364c","createdDateTimeUtc":"2021-06-02T06:39:21.4737853Z","lastActionDateTimeUtc":"2021-06-02T06:39:22.7942225Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"675c93a1-a854-4990-8389-7a61b2727f07","createdDateTimeUtc":"2021-06-02T06:39:20.9472043Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.5120454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"525194bb-ef96-4db2-ab08-a915dadddfac","createdDateTimeUtc":"2021-06-02T06:39:20.2491928Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.4901556Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f00445aa-49dc-4412-87eb-553ea2bf7d04","createdDateTimeUtc":"2021-06-02T06:39:08.6574795Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1874519Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba2f1009-fb37-4b26-9028-4b0fff7782e1","createdDateTimeUtc":"2021-06-02T06:39:08.1487463Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1891904Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0e4ce759-4155-4371-8b1e-5856d993a09b","createdDateTimeUtc":"2021-06-02T06:39:07.405402Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8980215Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"430d6fdb-2ede-4359-8866-84f6afd6bdcd","createdDateTimeUtc":"2021-06-02T06:39:06.9117078Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8128538Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8cb80008-0ccb-480d-9ed1-01b8e5f22b0b","createdDateTimeUtc":"2021-06-02T06:39:06.3306336Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.708013Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8e38339f-b8f6-422a-afdf-4d1de19fbab3","createdDateTimeUtc":"2021-06-02T06:39:00.7494268Z","lastActionDateTimeUtc":"2021-06-02T06:39:01.3181011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"773b73df-42ae-4197-8198-bc90c557b188","createdDateTimeUtc":"2021-06-02T06:38:54.0646034Z","lastActionDateTimeUtc":"2021-06-02T06:38:56.3798465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"79d237c0-c8ac-4a3b-99bc-de2b9a1e76ef","createdDateTimeUtc":"2021-06-02T06:38:46.309884Z","lastActionDateTimeUtc":"2021-06-02T06:38:49.2573517Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f90c5227-f225-471d-9453-024721f9518f","createdDateTimeUtc":"2021-06-02T06:38:40.7600205Z","lastActionDateTimeUtc":"2021-06-02T06:38:42.2207707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d95d4dcd-6301-4006-a1ac-ac471411900b","createdDateTimeUtc":"2021-06-02T06:38:35.1857718Z","lastActionDateTimeUtc":"2021-06-02T06:38:36.248059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f820ac8-68e8-402b-890a-bb2bdda717e0","createdDateTimeUtc":"2021-06-02T06:38:34.2347962Z","lastActionDateTimeUtc":"2021-06-02T06:38:35.1762805Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbe70865-551f-49f3-ab11-8e71503fb250","createdDateTimeUtc":"2021-06-02T06:38:33.6329499Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9745495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fc1f463-3f90-463c-a8e5-c06153becb1d","createdDateTimeUtc":"2021-06-02T06:38:33.0953339Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9133298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d8f3f86-0803-4bac-9ea8-419278691b54","createdDateTimeUtc":"2021-06-02T06:38:25.681571Z","lastActionDateTimeUtc":"2021-06-02T06:38:29.2106941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bb2b0f6-8ac2-418a-9b10-b360447a89a5","createdDateTimeUtc":"2021-06-02T06:38:20.0075742Z","lastActionDateTimeUtc":"2021-06-02T06:38:22.1577533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee6090f4-643f-4016-a931-dacd57b43fa1","createdDateTimeUtc":"2021-06-02T06:38:14.4144376Z","lastActionDateTimeUtc":"2021-06-02T06:38:15.0321792Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d921bb3-d049-4b73-806c-257c1dc96953","createdDateTimeUtc":"2021-06-02T06:38:07.6875606Z","lastActionDateTimeUtc":"2021-06-02T06:38:09.8465419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86272760-b346-482a-87d3-d8b3eeb1431e","createdDateTimeUtc":"2021-06-02T06:38:02.0547056Z","lastActionDateTimeUtc":"2021-06-02T06:38:02.7777345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1ab36b51-3fd7-42b0-806b-e3186a953d2e","createdDateTimeUtc":"2021-06-02T06:37:54.3117337Z","lastActionDateTimeUtc":"2021-06-02T06:37:55.7664263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3a0d3c0-f2fc-4ab6-b669-8c3761494c57","createdDateTimeUtc":"2021-06-02T06:37:47.5767386Z","lastActionDateTimeUtc":"2021-06-02T06:37:49.9643054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"527a3c66-ace4-4790-8c11-5a91053508e0","createdDateTimeUtc":"2021-06-02T06:37:40.8885591Z","lastActionDateTimeUtc":"2021-06-02T06:37:42.8973152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9c7cc60-4eb3-4e1c-b45e-a4604a064ffa","createdDateTimeUtc":"2021-06-02T06:37:35.3559821Z","lastActionDateTimeUtc":"2021-06-02T06:37:35.9147701Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e46e697b-4b91-4cc1-bdc8-d1b5f4f29316","createdDateTimeUtc":"2021-06-02T06:37:29.6705576Z","lastActionDateTimeUtc":"2021-06-02T06:37:30.751147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a414371-9c16-4f5b-b78f-54a1b14f3cb3","createdDateTimeUtc":"2021-06-02T06:37:28.605251Z","lastActionDateTimeUtc":"2021-06-02T06:37:29.7618353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0eafff35-c835-435f-8ba6-5c62ccbcac05","createdDateTimeUtc":"2021-06-02T06:37:28.0226232Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.688448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4e16297-da6d-44a3-b537-2e179b5c57c8","createdDateTimeUtc":"2021-06-02T06:37:27.4859883Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.4461178Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88f6806b-a28c-43b3-80c7-9a3e2a18f98a","createdDateTimeUtc":"2021-06-02T06:37:25.5121262Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.6483773Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0eba3d56-4b51-4fc6-b9ea-755fe87fe711","createdDateTimeUtc":"2021-06-02T06:37:24.8468851Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.4997727Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b719446-a83e-4bc7-9deb-659eebb51328","createdDateTimeUtc":"2021-06-02T06:37:23.7379948Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.2183805Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2bbaa78d-f6a0-43b2-8352-bd0aa6edd744","createdDateTimeUtc":"2021-06-02T06:37:23.0437961Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.9407465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b96b537-29be-4194-a7b4-a05959950142","createdDateTimeUtc":"2021-06-02T06:37:22.0011983Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.6381334Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"754d7123-41c6-45bb-9214-20ccbb325d5c","createdDateTimeUtc":"2021-06-02T06:36:57.8535231Z","lastActionDateTimeUtc":"2021-06-02T06:37:03.3442448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1237295c-47ea-4710-a84e-ed65a8f49dda","createdDateTimeUtc":"2021-06-02T06:36:26.6950836Z","lastActionDateTimeUtc":"2021-06-02T06:36:28.3693909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=327&$maxpagesize=50"}' + headers: + apim-request-id: 75eb7465-13f3-412b-b23e-f8851b675504 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:17 GMT + etag: '"F5AA4E68E8E334FD97A5377D7830208B6F4364E02AC01096C6764E0D0803FE18"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 75eb7465-13f3-412b-b23e-f8851b675504 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=100&$top=377&$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/batches?$skip=150&$top=327&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","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/batches?$skip=200&$top=277&$maxpagesize=50"}' + headers: + apim-request-id: 7e376830-20dd-4508-95c8-284ddcf902fd + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:17 GMT + etag: '"BEAB3D0C2AD947B4F6AC5B386786A071FB26D599978417B1C6AC64D9CD5429D7"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7e376830-20dd-4508-95c8-284ddcf902fd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=150&$top=327&$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/batches?$skip=200&$top=277&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","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/batches?$skip=250&$top=227&$maxpagesize=50"}' + headers: + apim-request-id: 83fbb354-708b-44bb-9c65-ea05cd8e21fb + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:17 GMT + etag: '"B5FC6427E1CC52DC742D99B268F65722A22EFBCFC435220C1CCAE2610CB3BC2C"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 83fbb354-708b-44bb-9c65-ea05cd8e21fb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=200&$top=277&$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/batches?$skip=250&$top=227&$maxpagesize=50 response: body: - string: !!binary | - H4sIAAAAAAAEAM2bXW9cxw2G/4sQ5CpzTHI4JEdA0BbpZVEUTXrRFr2YT0eILRnS2kgT5L+XR7Ld - OE2RM21gHBgQVrue1c4jfrwvZ/T91Zvy4vW4uv7791c3/er6irS22MYMkgoFNoNglVtoItg0Q6lE - V59dtftRLqP/3r98dfNy/OXS9rVAGCAFwq9QrwGuOW0IgobyN1/zojxcftcuN3e3v7yMYgTmx2UP - l3J5/eD/7493ly8v5d5/7P7s65cvy/0/r66/v7rcXcqLq2v67GqWmxf+6jXsr7c2Hh4eH9/c/un+ - 7vn9u29v7y5/He/fal/Xym0bL94tfXy/L74u96Vdxv3+4PnjKz/88NlbSMhY2uAU1IoGnk2DiZUw - Yy956pyjwnFIvFFySLYMCVQgk30A6c+vb29vbp//H4ToPwjBOiHOddRaY+AOI3DFEurUFBBrjsgV - ZpHjhOLGyqaySIi3GAljzGck1KhQ8t96GHXkwMwYLCYIha03NshRy3FCtLEJR4trhBwsc8rplDFk - TgdLqUE7zcBCPRhrD7k29irEWWI7Tgi3pCw52xoh2sjrkAKfkVBPc7BRCtE/YuDCM+QyY8iaW4yx - JeoLdQg2jVEYeY0QbmQIeEpAWbWBVgvSuydZrBJM1YIzi8alJcV4GFDMm6AKrnYz3IBEU4xnJKTD - N2SRQgU0r9ZSQ25OaCQZqOh9Lh4PoWibehFLUZdDiBhMTkmoNm11jhKoZPAkqzWYNfFWhgLYO0Cc - xwnpli1ZxLxGCLacElHSMxIqLnla96ChnrzjN5ZQcy8hZiGlPLKWBUKymZnGtNjKnNCuofIp6xD1 - XAvIDLOU4qoavUaXwSFRBdLUhXs+Tgi2xAyR1wjFuIOVDOkDQl/u+x59TVTTL4nqo4wS/xsSwIhN - vESniq4Z4/RSpN7vwZ1A0Vmh5XQYEmXvZsQuGFYhSTbRn2jG80DqNkvq7IWIRvcvmEMZOgLloklc - 72o9LqzJNkueMnE5kkSF0lkZyYhuwJo7V87JAwk5VKozxNQrAOYMWI8z8oodUYRplVFysBnlpJCU - c8nSXQu5tfei3Tn4t+4/CBJ5h6oZxnFI4m3NGS3HkWuFiPGsFcndvasSGyF50ATOc4QqEUO1IQY6 - vB/344z2qYZnja7JR4cULSObnRVSzSOmmkL2juRG1rPNII2AkKYMDzKKx40s8UYiiXU5kqLrekI6 - KSQSmEaNQhvFs60QuYgUDJPdyorpaLAAyfMGXDFLWoVExganTbeoIyfYJWQiV0kwMBi2EawXBGs9 - 53J89gjscseTLa4pbbAtinlR4pNCmi1DtdlC6aU5JPZ0o1hD11Gq50CbCwIAXBNKVoNlSBAhMeBJ - IbWM2KM6FVSHhN7cSp0WStII1HuL8biUdEjILqzSWrrtkJjZ9KwyKRrlKM6n2XBIdc5QwKvTNKDs - +EjbIVMi1ylfJ9hUk5eXw93taRl6KdvnfB/KpC/e7+XnIOH/OOn/EBIeMW6gghTTDLU3VwAusUOZ - +7Qk9S6aESAdqtuPm+W8eSfPyQ4H0jtGaMBZT8poSGvQOoYmOl0AuIMrPbYQ5+TUbaR5TAC8Y4SA - oHhYbr9nBBETnJQR5z4HehyNx0OR6W7EaB/cutJ2Q5c8dQ7Nsp8YeY/yJXa4aL9DBHGfPMVzImoR - Rm2agmLyckR5tyYgIffuVbxX44bHEekmJGnB/r+rYpmQGeycjIRqHNEsILuWZM7RtTYWL9mlVOwZ - SuTjjDxnBCErLjFib4cRDPOKQvovjPDX6mukP4KkLJ5g1bsZVFdIbk2KJhfc0tCi+7coh0baj7t1 - 0ax5VzpryRZlgyz2dmpwQkjTsqaOEmJWdftfSsjggVW5xq6WcrRDCulxt6Ru5JUzrTV/yhuo/5y0 - Ym0/JqTuAcTe6IM28O5P1ILVimFgd2MrM41jhyNPu41ektj/rUWSO2KJ+yHfSRlxr6TgBoTnxMCC - 0bVSicErhDROETIcMm1Pm/X6y8nezqiPM8JNOLpqOGu2eWeTPDx8RtlHtwg91FbAdVIbjfLMrpQO - Q0KXkcnVTlyGlLzWo+hJ/Qj01MhcOBYpPXD25lbHPg2IVl1sTzcKx/2IQyJASXB4kPQOkkHKP70R - cR5IKWNt1bVRanvd7tlNW/FwKrO1hDqE06Gx7RMk29jzLR0/a3sPabfD8az2fxaWOmmE3tKebipu - 2JC8w5Hrgu65OI+rbdyLS47Ea+mGvCUmITprTZJSWjMZIY398ggUDKWahDaqVuCaezt0N+Jxt8Bb - zOQFeE1vgwsHVBceZ4XECrPjGAHifvjfrAYrpmFkBm5zH0keTTe7TrpfSFNdEwAAG1s24HhSRl2L - Pl5/rIW8WovlkJGHhxRFIBFMejSQ7DrStt/QIV3x/74sba5Y0UXtSSHtZ22S+wg0p7tbNt71tgsC - qzAysc4FSPtRUjJXWCslyfbj3uTmeqlsf1SVFJuWniSgucj2BKNQdz2QeeIc1YuTHhptP27Wexu4 - 27PjVyKfGOF+k1J+OgE4D6RKCGTuSSTLfrhdNVTBHGYXls4zST90JvkEycs2GZOtlG1flrbIkDid - dQTAowh7jQ4uiDzbZEKoKJ5yzZU2lJGhHB1J2i4AEqHCYklC2sjF1dp9m48JKbnglpI1lDSmqyS2 - kKd7FGLT4V2ODt4AeNwt2KYRvOKvpRu4TPe6/TYATwjJUisJrQeCafsVW/NIIgpKo0+PsBz1qCnx - 3XqXgoiLJQnEVTqZ8VkDiYqBzhqDVNsv+4N6ooEnX8JaMVUQO16SXEmqKNCScXtES1FykrPeAMhS - MJU6Qqw4d+PmdkRRQ3e/WWqV2HUh23g/7rAl3/bESMzF5IqS/Ki3JFj7Ppf0ZPOMe5rcCo5Qp9fR - UTsaHT0CsP3Ydr848/ZG6HFIvCvJFM8aRxEjQbbktZofT23NGbmLw2IZ0H+9uR0XSeA9yqLnzYol - ecsINPGKSEo/Dyn9WpAwph/1tghYMFtQ7Lrf3HKVBFPCBJPCqsLFjlNyAYBImtYEAOyTW3K5vdLb - PiolGcoILYdoKh5LtbmWdC0wxfOQOuo4dlHyabv734+4OF00JbAPk4gFV7rbR6H0j8+ufns7vr38 - 4eb2G/9EX18urx6unz375v7VfbnctK3dPb+9udy8GQ/j/s2Nf4KtfPf6fvjzL59d7svtw4tyubt/ - dvG3eFbLpX397A1u8PRwPPzmk4dvbl59nuDTTy53rz5X/PSTl+XbV+X5eLj5bvjzVz/8CyQYL/Kd - OQAA - headers: - apim-request-id: a1b720a2-9591-4007-b762-e1d5c43a7aed + string: '{"value":[{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=177&$maxpagesize=50"}' + headers: + apim-request-id: 713774ba-b7c7-4e25-848b-25004b85ab65 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:44 GMT - etag: '"70453DA36849D51A85B77E8B1D661638FDEF8C53DACA24C3D57F78221FDCD2ED"' + date: Wed, 02 Jun 2021 16:03:17 GMT + etag: '"28392F90881A4BB9687035FAEA3A53193D06B7D2E9D75C106FA0E53560D6CD69"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a1b720a2-9591-4007-b762-e1d5c43a7aed + x-requestid: 713774ba-b7c7-4e25-848b-25004b85ab65 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=250&$top=227&$maxpagesize=50 - request: body: null headers: @@ -2501,71 +2535,29 @@ 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/batches?$skip=50&$top=71&$maxpagesize=50 - response: - body: - string: !!binary | - H4sIAAAAAAAEAM2bW28ktxGF/4tg+GnZW8ViFUkBRhI4j3kIYOchCfLA61rwrrQYzS4cG/7vOT22 - EyewkSZgCK2H0dx61P1NXc4pUt/dfSxvP4y7+79/d/fQ7+7vSpeei0w3PasLloZLZMUJlTamplBy - uHt11y6jXEf/I26+fHg3/nJtONaTZ0fqPH/Jdq/pnmgjn1Qs/g3HvC3P1z+068PT4/87jDf1PmiS - /bDna7l+eMb7vvjQ2hh99P3JD+/elcs/7+6/u7s+Xcvbu3t9dTfLw1u8ek/763jv8/Pt6YfHP1+e - 3lxuD/HS49P1r+P6xbVcrj++uZXHNt7+dOjt8z7/qlxKu47LfufN/gqLfv/9qx8pWai5RxaXmw2H - Mx0u1ySuNJuzxDTKrAcpxXvNmw9sKfIaJdo8h2RmZ6XUxJqvzTsxzi6wRpeHqKMiJWqnOIMepxS3 - SCa8Eko4Km0pJYmWFiD5X4bkfytIGv7DqHBKWup0PFtEJBmCaCKmSvKx8ejZs19hRBoCe12FFAOy - POpJIcWJAOra3ZyxI5C6uqyjOKIcY8UF9xGPQ7JNsmbUl1VImo3CDwF4QkhS8kxc2ckwc6F7ctWo - OV/y4BhjT7Mfh6Rb9NFzXIRkW4hmQVYq90tCskI1xKKOfSKk21CXQkNMVelmHo0vLZQkRbrlyCks - Q7KkKZ61JmW1wizksm/BBa/TpRjVRSlG1XCj7TiksIki39JiJCmyNISQ/UkhMataMnKze+9Ckegq - GpobyLzUCaBCPg5JNo2GQJI1SGHD94Qz4ZNCmr6kLJndKLW40EJztVJ3OZWea2u5+Xkckt+gJSXn - xUgCJPPqeUUnvSQkr9Zmzs2VqskFCeDTEElM0NqlF6AbK5AYYnJVJsnGntBOzxpIDaW6DYYuQt10 - IdToEjO5MebwGd4kyoJMYpQkI+PFQPI7JAnprHWbGG1MArlkASUpTsa92l2BIECVyib1OKQAvQ1K - yfslSCFvBMGNv3VSSOwbpJ+SixxgSgQpl+HZXETN9hQ7VHdZgcQSULrX0g2HpeAt5LNGUvJj1ijm - JEykW0UFT9lXF8OwLjSQf8f9bbBNKUTwXoUUEUaqZxXcyLXZOqp1IZAKVJF4eTbXrI3ZQ5htyHFI - uiWimEJag2TI0qjQoCeFBDmEjJPqSJBzIexDEkIkJR4+RWGdQiuQaNdJcTGSYGZYg8WzdrdoJIXK - 3tMaIkl3LTmhKqlP9WYyii2km2yWOfGalAxhM4FKOu2gxGpLw0Jx0NUTUtIU9xqjgvdmu/Wlfrxu - e4EF85TWGPmweUk5h7PGUfe7hUgVxs3DuBE8W8mxOKtTei+Je0jHGUFuc/CyNJa8oc1gGzScFNJU - Iu/Zu9b3YVJHb6sJV9B0esogFdNCIPEWUlbOa2V7h0TBh3RWTwIFOWy25NRXRBJDIKU6zJmKhdis - +nnck3ja0P295uVIwt/yImcdAYgNpgGVjYowXJg1oSQRTMmUwmVkonp8TgJIjB6J6rIMiSHt/Vlr - kjHCaEJqMwdF3a67lBzRZfj/qqaj6vHZLcUtKzS7rUGitCkjBOW/0+3zf1/LL0HiX4ZEa5D4VyHR - zzxJN5RmeFqD1XfBqu54Ah567VpKZOYVRkIsvKgkwShkHBjlnIza5FDmTE5EUbbhMF0RVCRCRxa4 - /xD1uNom2yCrEse8yshDfob/SbbTMCrwIJwj1GMW2ZUR0qyId+JFQ6UxqBwvSGBEPpgujtvAiDMT - Jz0nI801Q21Hh+6PzqbaXCoVN6lp820kfMPHGekWWCgujtvAiFKKEPrnZJR9zIT+7zhqRc0e2ZWC - hKOa/PSzUw1Hu7/ty9uovZBWa2KbaBOjkOOKjvwVRvxbNTYffz7bnjg5BFIk3Ve3DbIbxRoPBUY+ - jtry0aUk20eSmWC/0sq0zfa5rSibrpi2l2REMY0aU3OxjuLC8M1VbuLYU+hjNtVxNNnsZlE1RfIr - yWb7iMRn2mXDSSFp2WWkDCdtH9vWXSFpFkcWUodCKoWObrmxe4lwtsy0Fkeyb0FJ5tOKinxJRsGP - jrODiqw5uhBpuBr7XpYkNY7m8f0eZuTzlmKyRCvdH5A8OhvgLm2TeElIu2OrJUFG3kYkoRPafwwu - zlCZCmeZR+0/IKUtQ+rkxWwDJM/Rs+WT+hFV6rE2mP4KoYTr8yjb03AFpZK0nsSOlyRA8shSdKk1 - SKj2Hj1WzrrhpiBaiLm7erP/AOOSF3NtEASh1IgMPA4pbkYmfsnZ/ggJ39Zpl9uYTUJP7GJTRNIg - dkVbczK95dJTT2UhkvY9j+bh5Jcgwf7jsMxLg6SXrEnsR545w7HFBpU0UbgLWpybSpanxnzcktg9 - 6waNtBxJvC9AQXHQWSGlmph2128jJNSklF1NeNhrRMNpXEs7Ov+33f/Dw/i0KAEobwAE4boybXvR - 7kZSMxu5GAvMrQ/NlW7RCdymj0lK1aOr27ZvMTY1Ulkr3OQ3CXG3JSeF5GNX39J0gxRacjZyqUtx - JVJoVeKELzkISW9bHoNEtRWdpLvh20M4nldM9jplFIZOirC3uZnLKaCOK+x/kH2J8ejWLd03qmkm - paVlEr1tAgwxZzqrK+mlw+izd2hjgJT2OQmaMa4A8cWQUPh1HJLfFDbZVkYAurvbW0k6bbZZsYg6 - JAifuM+2h+4zScTVIN9YyojlqCvRfZVaKLEtBlK4BRJFO+ucJO1L712ay4OgJef0KEl1n+O22STW - nHgBEgowvB6or0GSTSRbPGuylV4mabiNSODcClVX2mgujpHGvuY2x9HepjczHynJ0uo2GBHijyjI - WQPJKw/KuboRiu6bkobLmavrgXNuiIruj/c2SRtl2bd/LUECW9k3AeazLtySL7AfCikpBaLb97Rv - AQhu37fghWfjFUhxkwwzv6SSbmwl56jhrM6tIHaa5Olq3BduLZGrOgQlCRZspgLTe9Te4mpts2CQ - DCvO7Qe2kkJcqkkvuuXWN+U5UYRSZ6gkgSkZM+AiPLVkNczDzg1XqxvtU9ilLQA3tj7uPys16UX+ - x+0fr+5+/zi+uf7p4fFrnNFX1+v75/vXr7++vL+U60Pb2tObx4frw8fxPC4fH3AGW/n2w2Xg+Xev - r5fy+Py2XJ8ur6/4iNe1XNtXrz/yRj/cHc+/++T564f3nzHRp59cn95/5vnTT96Vb96XN+P54dvx - mdLd9/8CV+Pbkbs5AAA= - headers: - apim-request-id: 3a30737f-de10-43e4-a44f-5a17565ddf3d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=177&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=127&$maxpagesize=50"}' + headers: + apim-request-id: 9e28356b-0643-4dc1-bdc9-b1f242216b2e cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:44 GMT - etag: '"F832EAF0967994426738FFCEAA768BF9907DDB025C0F87CFA5936B045515D0E1"' + date: Wed, 02 Jun 2021 16:03:17 GMT + etag: '"FD7EED68BC145137833899F54D3FF8D830D6EC187362EBA2B5BA62432ABC8DBE"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3a30737f-de10-43e4-a44f-5a17565ddf3d + x-requestid: 9e28356b-0643-4dc1-bdc9-b1f242216b2e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=50&$top=71&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=300&$top=177&$maxpagesize=50 - request: body: null headers: @@ -2574,49 +2566,87 @@ 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/batches?$skip=100&$top=21&$maxpagesize=50 - response: - body: - string: !!binary | - H4sIAAAAAAAEAM2Y24obRxCG30XX7qFOXd2lO+M8QMDORRJy0UdnYb0LWm0gGL97amQ7dmCXzIBZ - hISQZqY0Pd/U/1fVfDz8VW4fx+H4+8fDTT8cD7M1HFVGiJRikNxrqJhrGGWCQu6gBodXh3Ya5Tz6 - T/7x7ubD+OXcPJaAMEAMhO9QjzEeWRawDKS/echteTi/bueb+7v/jzIwtZjXsIdzOT8++HFvH1sb - o4++bnz88KGc/j4cPx7O9+dyezjGV4dZbm597xHW/X7sw8Nl883dz6f796fLT991d3/+dZzfnsvp - /OXgVu7auP0aevm/N3+WU2nncVq/vF/3IMdPn159hVSQdFYNNgyCQCwOqY+QgBEslTEEt0PiBTkJ - 5byXUswskq4VEgytWGrzJWcJwuqQ2qTADmhCpDYxb4dECyRClr2MSM0YrjaTYgFtvbXQrLjcOLdQ - C+cwK8VMq9wib4eEC7vYKNleSkACEuVaKbXSs5aOgSHNIBRHqMwWCvZUSmZ23W2mRLwwJvDXLkoU - l0ziZ91DCZ+mhD+MUvoGyQZFbdP1BmRBWpHgPq4BubTaKxvU7c4NtiRkTXmfdSMsWcVvCF4pJJKI - MjkGVKYgNjXU2SC4zBK1pOp63AhJjpEWL5IYbY9ze1hcfBkJ5L+Q3vx7LU9Byk9Dgn2Q8rOQ4DtG - ZVqeRkGte3WLIwUDTmEYQWXqI+e2mRHnJVlSiHvUJkdZi6KnktC1etKs7JkuGlTRM6m1GUqBFDhD - n0CxlLTVuWU1FwSXbY67KDEsnGOEz4a/kVJ6mlL6YZSyfaNUBUohXzaO1r2dNAxlei5ZkwZt+hp3 - 5BLS4i7GUXEXJdTFIdEXw7/GXKpQdM7OgVJ1xSVoIWuXQK2iO0ycItspQVwUBV2xuyhBWiKJKV9t - F1BKY+gUQ6o8XHGRQi5u5U3UC1VDG5dVbqHEx5gXJYyAvI8SLOh2pnsEh/BMgdtp3s9j8tz+rlkS - MxyrxrKwY4Iaci0jWBqNcEaatrVZckzuMGoSeY8x8VoZRXKCfc3SM9mEPyydfFL7rsw1MtFU3ZXU - RYd+CdaIQhnZIMWmnLZz4lU9KcmuIY6PIguTLyLv6ZdeVHSjT9PCzkZHCzKLD72NNTRtwlZy7j1t - puRlDqIAw54xzsPyYgJeba9XdHXmnFFbSO6gQSpDMNdfsDIANYmVtB2TOzj50Eq2Z45jv2+rpQFe - sTd5a8lVhcKc6zOBzj7uDp9RIHZvpMEvKdFGTHTxJlTNuwqdh6XF75UpXu1DgU4jwiq3jj7zysQe - KkIJ7uISNeqYfeskRxdnSpo9L3ZR8gYc/GRCe7LpRSlZayLouaS1RpccaCiWa0gzWi1cbUrdTAnI - tQMYcY9/06VpMo1k8XopjSIGFqKYl7paKBg3DV1kpjKTsYyNlHBNCln7aNvTDaC/fU7OXh/5WimR - N95ehyV4h4RrQ+CKY5/o2BvvSRBjL1vsG9ATaVVcBhDSrVXuc5jgkikn2lXmXoTSH5/+AcKcdJYn - GAAA - headers: - apim-request-id: 38faae99-f014-447d-adaa-1653fb27a15b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=127&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=77&$maxpagesize=50"}' + headers: + apim-request-id: e22644f2-196d-41c4-9d6d-85454d8020de cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:44 GMT - etag: '"9E37A970B09B1AF6FDF3D2764D26ABD2D84AEEE2E0D5AF261B7DE7F76EDAAB1B"' + date: Wed, 02 Jun 2021 16:03:18 GMT + etag: '"A76F25A0C9C4F9136DF16EA1CE2E82982A93B3FB72C8D148A16114FF6D5CF6B6"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 38faae99-f014-447d-adaa-1653fb27a15b + x-requestid: e22644f2-196d-41c4-9d6d-85454d8020de status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=100&$top=21&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=350&$top=127&$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/batches?$skip=400&$top=77&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=450&$top=27&$maxpagesize=50"}' + headers: + apim-request-id: acbb623f-0347-4ae1-a062-53f4b542f4ed + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:18 GMT + etag: '"F14F4F037D2E94F3BFE12F7EC621A3FB878190111F1D75921BF1A312093A83FA"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: acbb623f-0347-4ae1-a062-53f4b542f4ed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=400&$top=77&$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/batches?$skip=450&$top=27&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + headers: + apim-request-id: b58ecf78-4e41-40c9-8e98-598a12d80db1 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:18 GMT + etag: '"A73BAA8C286342B3CC0BD0B9FF4A360C8607D28CC27B47BEE5084C87625B7D85"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b58ecf78-4e41-40c9-8e98-598a12d80db1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=450&$top=27&$maxpagesize=50 - request: body: null headers: @@ -2628,69 +2658,204 @@ interactions: uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=5 response: body: - string: !!binary | - H4sIAAAAAAAEAM2bS28dxxGF/wtheKUeVXXXqwkYSeAsswhiZ5EEWfRTJixRAnllODb831NzKTl2 - 4MDTgUEMBBB8DXn7U9Wpc7qb3998U16/Hze3//j+5q7f3N50noMsckgkGqjQDLnMFLLmllJqHDvc - vLhpD6NcRv+jv/ny7s3466X5sxEiBuAQ8UvUW4Bbgk1TEkL6uz/zujxe/tAud2/vf+0x3KIhPD31 - eCmX94/+bX95f39/d/9q/9T7N2/Kw79ubr+/uby9lNc3t/HFzSx3r4evAPavtzYeH6/v393/+eHt - q4frh/5d928vfxuXLy7l4fLhm1u5b+P1x0evP+/zr8pDaZfxsL/z6vqVH3548QFQVm2g1YL0ngOl - KsFULTizZFQaK6bDgFLeBFUQZRUQRFFO6YyEdPiCLMVQAS1Qlxpyc0KDZaAilpaOl1CyTS0xJ10u - oUhgckpCtWmrc5QQSwZvslqDWZOAXgiAvQOkeZyQbtnYEuY1QrBl5hhZz0ioTJ2te9HEzilQIwk1 - 9xJSlqgxj6xlgZBsZqaJ0zIhNJN8Sh2KPdcCMsMspQQydI0ugwLHClG5C/V8nBBsTASJ1giltIOV - DPwzQl/s6x7dX/ACo/hzRvB/M2L6DySAkZq4RHPF4WI9XYpUewAgKjortMyHIcXs0yyS0ZoUOSTJ - JprySSF1m4U7uRDF0f0N5lCGjhBzUZaUolY5Dsk2Y2+ZtFxJohL5rIxkpOHVAsEosxcSUqixzpC4 - VwDMGbAeZ+SKnVCE4iojdrD5ySycEJJSLlm6e6Em4qLdKfiHEEoEjj6haoZxHJL4WHNGy3XkXiFh - OqsiWVF3JTYCe9EEynOEKglDtSEGOnwe9+OMeIvJu0bX7KNDSpaRzM4KqeaRuHLIPpECeX4IBjwC - Ak8ZXmQxleOQaIsiTLpcScl9fcR4UkhRYFpsMbRRvNtKjG4iBcMkqlFMR4MFSN434I5ZeBVSNDI4 - bbslHZlht5Ac3SXBwGDYRrBeEKz1nEs8DAnI7Y43W1pz2mBbEnNRopNCmi1DtdlC6aU5JPJ2i6mG - rqNU74E2FwwAuCeUrAbLkCABE+BJIbWM2JM6FVSHhD7cSp0WCmuC2HtL6biVdEhIbqx4rd12SERk - elablCzmJM6n2XBIdc5QwNVpGsTs+KK2Q6FEbjnfMmyq7PJyeLo9PYYuZZ7b/ssmff7jWn4JEh4K - br8GCY8EN1DBmHiG2ps7ALfYocx9t4R7F80IwId0+7pYyptP8sx2uJA+MkIDynpSRkNag9YxNNHp - BsATXOmphTQncbfB85gB+MgIAUHxsN3+kREkZDgpI8p9DvQ6GrX6fJueRizuG7futD3QsbdOO87I - Z5Q/YodF+yMiSPvOUzonopZg1KYcFNnlKOY9moCE3LureK9GDY8j0k2i8EL8/6hiOSIR2DkZSaxp - JLOA5F6SKCf32lhcskup2DOURMcZec8IQlZcYkQ+DhMY5hWH9D8Y4W8116L+BJKSeINVn2ZQ3SF5 - NCnKbriloSXPb0kObWlfV+umWfPudNaaLckGWezDrsEJIU3Lyh0lpKzq8b+UkMELq1JNXY1zskMO - 6braqB7klXJcG/4xb6D+e3gl2j4npO4FRD7ogzbw6R9jC1YrhoHdg61MHscOR55Wm1ySyP+tVZIn - Ykn7Id9JGVGvUcEDCM2JgQSTe6WSgiuENOIEGQ6FtqfFuv4S24c96uOMcBNK7hrO2m0+2SQPL59R - 9q1bhB5qK+A+qY0W88zulA5DQreR7G4nLUNi13oUPWkegc4tmhvHIqUHyj7c6th3A5JVN9vTg8Lx - POKQIqAwHN5I+gjJgHNekqTnhMQZa6vujbjtut2zh7bi5VRma4w6hPjQtu0TJNvI+42Pn7X9CGmP - w+ms8X8WkjrjCL3x3m4qHtgw+oSL7gu69+I87rZxF5ecIq21G9LGFCXGs2qSlNKayQg89ssjUDCU - ahLaqFqBau7t0N2I62qBtpSjC/Ca3wY3DqhuPM4KiRRmxzECpP3wv1kNVkzDyATU5r4lebTd7JZ1 - 2w/odM0AAGxk2YDSSRl1LWpiJdQSXa3FcshIw0sqJogiyHq0kOw2xW2/oRN1Jf/7Y7y5Y0U3tSeF - tJ+1Se4jxDk93ZLR7rfdEFiFkSPpXIC0HyWxucNakSTbj3vZw/WSbD+rS0pNS2cJaG6yvcFiqLsf - yDRxjuripIe2tq+L9dkGnvbMVmab7bON9pNMOGsmqREhmmcSybIfblcNVTCH2YWk02Tph84knyC5 - bEejaCuy7Y/xlgiY+KxbADSKkGt0cEPk3SYTQkXxlmvutKGMDOXolqTtBoAjKixKEsYturlau2/z - nJDYDbeUrKHwmO6SyEKenlEimQ6fcvHgDYDrasE2TeCKv9Zu4DbddftDAZ4QknErjNZDhGn7FVvz - SooxaBx9eoXlpEdDia/WpxQkXJQkEHfp0YzOWkixGOisKUg1H/sV1BsNvPkYa0WuIHZcktxJqijE - peB2RRuTZJaz3gDIUpBLHSFVnHtw8ziiqKF73iy1Suq60G20H3fYUm57YiTmZnLFST7rLQnSvu9L - erN5xz3t3AqOUKfr6KgdLR49ArD92Ha/OPPhRuhxSLQ7SU5nraOEKUI2dq2m66mtOSNPcVgsA/p/ - b27HTRL4jLLkfbMSST4wAmVaMUn8y5D4t4KEiX8y2xJgwWxBset+c8tdEkwJE0wKqQoVO07JDQBi - VF4zALDv3Ea32yuz7VkpyVBCaDkkU/Faqs29pHuBKd6HsaOOYxcln5a7//2Im9PFUAL7ZlIkwZXp - 9qyUSk89l+RYIvKeb0cwkBISlDYmG5V89NDtSsntOydZc9x7CTolthXpft5a2neMdL/Y3lyN/JWO - kD29hdJkzqI2yjxaS3rLbgvJxWzpaPIKN+Ie31Yu3T4rpZakxdpiSHtmI2S3SiNxgJKKcncbdfgg - QPf9JAX5oC8HIflTtv8dQFI56xZ3QTO3RDPgbK7dLF5E02vKE4k2HO6c8OiJ0pWRB1XCuKJKV0hK - 3uV61ruSOr2AOvcwp/b9hpsbAh4lAGTV6gvuQ49Dki1lzmtb3FdInAVoacA9B6R/vrj5/f349vKn - u/uv/QV9dbm8e7x9+fLrh3cP5XLXtvb21f3d5e6b8TgevrnzF7CV794/DP/8m5eXh3L/+Lpc3j68 - vPiPeFnLpX318hvc4Ond8fi7Tx6/vnv3GfOnn1zevvtM5NNP3pRv35VX4/Huu/EZw80P/waPk249 - qjkAAA== - headers: - apim-request-id: b9e094f7-0e9a-4afa-ab17-efc8bb36a703 + string: '{"value":[{"id":"489cd17f-a840-4ff7-a136-b6a69cfcea3f","createdDateTimeUtc":"2021-06-02T15:59:53.9586351Z","lastActionDateTimeUtc":"2021-06-02T15:59:56.6764203Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f395251a-5f98-426d-b057-1816ccd1e91e","createdDateTimeUtc":"2021-06-02T15:59:23.0621525Z","lastActionDateTimeUtc":"2021-06-02T15:59:31.5450469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f285838-37f7-41b2-9cee-96b05debeade","createdDateTimeUtc":"2021-06-02T15:58:52.094574Z","lastActionDateTimeUtc":"2021-06-02T15:58:56.6812854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bb165a06-6672-4478-a388-29e052d1daa8","createdDateTimeUtc":"2021-06-02T15:58:20.919629Z","lastActionDateTimeUtc":"2021-06-02T15:58:26.5494175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e53a92a5-2373-4f3a-a542-aaf6c550c3b9","createdDateTimeUtc":"2021-06-02T15:57:49.8897238Z","lastActionDateTimeUtc":"2021-06-02T15:57:51.5405362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0a54387-d426-4b5c-bfdf-8da48f0709de","createdDateTimeUtc":"2021-06-02T15:55:30.8552601Z","lastActionDateTimeUtc":"2021-06-02T15:55:31.2926485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"753a34c4-2750-4297-b243-8304e4986ed9","createdDateTimeUtc":"2021-06-02T15:54:59.7769644Z","lastActionDateTimeUtc":"2021-06-02T15:55:01.2216709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c308dab-d685-4f39-afda-99bd95fb5854","createdDateTimeUtc":"2021-06-02T15:54:04.4107814Z","lastActionDateTimeUtc":"2021-06-02T15:54:06.1602589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca100a2c-9da7-4f39-b0ab-31fa617d9948","createdDateTimeUtc":"2021-06-02T15:53:33.2513281Z","lastActionDateTimeUtc":"2021-06-02T15:53:36.035775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"841ddedc-73a2-41cd-afc3-3a3c5865197b","createdDateTimeUtc":"2021-06-02T15:52:15.460274Z","lastActionDateTimeUtc":"2021-06-02T15:52:21.0234394Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"641d98b3-adad-43f5-9d47-8a0a0d63c40f","createdDateTimeUtc":"2021-06-02T15:51:44.5778968Z","lastActionDateTimeUtc":"2021-06-02T15:51:50.9685839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa77e970-5a22-4be5-9d72-27f73226679a","createdDateTimeUtc":"2021-06-02T15:51:13.6071265Z","lastActionDateTimeUtc":"2021-06-02T15:51:15.9210393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ae7acfb8-b962-4978-942c-6cba3de07e8f","createdDateTimeUtc":"2021-06-02T15:50:40.6703242Z","lastActionDateTimeUtc":"2021-06-02T15:50:50.7401416Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ced8397-8a10-4f04-8976-146727a17265","createdDateTimeUtc":"2021-06-02T15:50:09.7703098Z","lastActionDateTimeUtc":"2021-06-02T15:50:15.7782398Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2df049c2-88f2-4d49-ad7b-b51f852ce3ae","createdDateTimeUtc":"2021-06-02T15:49:38.5642201Z","lastActionDateTimeUtc":"2021-06-02T15:49:40.7209902Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7d138c6-34b9-4862-86fb-cdabc214d204","createdDateTimeUtc":"2021-06-02T15:49:06.1046823Z","lastActionDateTimeUtc":"2021-06-02T15:49:15.7707124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a67c541d-2ea3-4341-9be7-7c6baf258327","createdDateTimeUtc":"2021-06-02T15:48:35.1898562Z","lastActionDateTimeUtc":"2021-06-02T15:48:40.6793835Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8cef6dc-9699-46b5-9097-17c86e9d428a","createdDateTimeUtc":"2021-06-02T15:48:04.0354645Z","lastActionDateTimeUtc":"2021-06-02T15:48:10.6299243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbb3cde3-a42e-445d-b89d-70449e8840ef","createdDateTimeUtc":"2021-06-02T15:47:21.9381582Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.8271606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b311ad2c-e8ad-4d10-bc18-325a6f08cda0","createdDateTimeUtc":"2021-06-02T15:46:50.8668441Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.7482384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d45fc1e-b2db-458b-a663-059795ae3c3c","createdDateTimeUtc":"2021-06-02T15:46:19.6722056Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.6264139Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4bd89238-d6e6-45dc-8912-1b955eb512bc","createdDateTimeUtc":"2021-06-02T15:45:48.3203318Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.5535213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54b40e06-6cf7-401b-8537-bc9047946920","createdDateTimeUtc":"2021-06-02T15:45:17.0771317Z","lastActionDateTimeUtc":"2021-06-02T15:47:52.4223719Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35747bc7-da08-4dc5-b67a-9f6f51567313","createdDateTimeUtc":"2021-06-02T15:44:46.0331186Z","lastActionDateTimeUtc":"2021-06-02T15:44:50.3666864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bfefe5c6-e2d9-43c0-88c6-4462af997770","createdDateTimeUtc":"2021-06-02T15:44:15.1438217Z","lastActionDateTimeUtc":"2021-06-02T15:44:20.2936473Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"24d02912-bfb1-4762-b20c-a82ff6750cb1","createdDateTimeUtc":"2021-06-02T15:43:44.3116426Z","lastActionDateTimeUtc":"2021-06-02T15:43:45.1997808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa247fd3-6fb5-4c4f-ab03-4dac197b79df","createdDateTimeUtc":"2021-06-02T15:43:13.4363016Z","lastActionDateTimeUtc":"2021-06-02T15:43:20.1331654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"74bd8d8b-10e9-4f02-8480-80f6043c2330","createdDateTimeUtc":"2021-06-02T15:42:42.618931Z","lastActionDateTimeUtc":"2021-06-02T15:42:45.1068144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0daad36d-d58b-464a-bf3f-24756c168dab","createdDateTimeUtc":"2021-06-02T15:42:11.4829756Z","lastActionDateTimeUtc":"2021-06-02T15:42:20.0459031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"51891aaa-d606-4cf9-89a9-a4fdeaeb5ceb","createdDateTimeUtc":"2021-06-02T15:41:40.4875824Z","lastActionDateTimeUtc":"2021-06-02T15:41:45.0055865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49a4073e-a77c-43a8-a5df-624e4353512b","createdDateTimeUtc":"2021-06-02T15:41:09.4884568Z","lastActionDateTimeUtc":"2021-06-02T15:41:15.079891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"671ec3e7-7651-49de-b5e2-abf216ba6a00","createdDateTimeUtc":"2021-06-02T15:40:36.3117467Z","lastActionDateTimeUtc":"2021-06-02T15:40:39.8287338Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64fcc7b4-da11-4673-8df5-94b579a2a941","createdDateTimeUtc":"2021-06-02T15:40:05.5995431Z","lastActionDateTimeUtc":"2021-06-02T15:40:14.7288062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcf5d3bd-350e-48d0-849f-cd30c5c70f6c","createdDateTimeUtc":"2021-06-02T15:39:34.6738498Z","lastActionDateTimeUtc":"2021-06-02T15:39:39.9418091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b1dffbc6-abe0-4650-9da1-bada8545f067","createdDateTimeUtc":"2021-06-02T15:39:03.7253899Z","lastActionDateTimeUtc":"2021-06-02T15:39:09.6415436Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"483f1e94-ed29-4561-b05e-93f8108a250e","createdDateTimeUtc":"2021-06-02T15:38:32.8282822Z","lastActionDateTimeUtc":"2021-06-02T15:38:34.5245464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14b4a15e-8a19-4b18-9005-324a40790e0a","createdDateTimeUtc":"2021-06-02T15:38:01.9108422Z","lastActionDateTimeUtc":"2021-06-02T15:38:09.4423062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a28a0dd-a1f9-41d7-84c1-f0b1113f8789","createdDateTimeUtc":"2021-06-02T15:37:30.8922028Z","lastActionDateTimeUtc":"2021-06-02T15:37:34.9631268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5042709-8ee3-43ca-bd9b-fa7bd59c7265","createdDateTimeUtc":"2021-06-02T15:36:40.1565566Z","lastActionDateTimeUtc":"2021-06-02T15:36:44.3046541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b849ea0a-e4a9-46a3-8b28-32a190e543d0","createdDateTimeUtc":"2021-06-02T15:36:08.9101301Z","lastActionDateTimeUtc":"2021-06-02T15:36:09.5400119Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70889650-7a9b-4928-a36f-6f06dd2c8a9c","createdDateTimeUtc":"2021-06-02T15:35:37.9362618Z","lastActionDateTimeUtc":"2021-06-02T15:35:39.1768098Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"227d7245-54a1-4383-81be-7b1679cf252d","createdDateTimeUtc":"2021-06-02T15:34:50.3214464Z","lastActionDateTimeUtc":"2021-06-02T15:34:54.5445251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d538b50a-4739-437e-a430-4a39d552ae9b","createdDateTimeUtc":"2021-06-02T15:34:19.3119357Z","lastActionDateTimeUtc":"2021-06-02T15:34:24.1613577Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f459e67d-3ef8-4dd5-9441-f037a9ef7bb9","createdDateTimeUtc":"2021-06-02T15:33:45.8406241Z","lastActionDateTimeUtc":"2021-06-02T15:33:48.97718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bcccc81-50c4-4930-b8c7-8166cd494fd0","createdDateTimeUtc":"2021-06-02T15:33:11.144037Z","lastActionDateTimeUtc":"2021-06-02T15:33:14.3246317Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6932315e-6bda-408a-a072-d5a13492cbae","createdDateTimeUtc":"2021-06-02T15:32:22.5094146Z","lastActionDateTimeUtc":"2021-06-02T15:32:23.8496169Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f32e8631-bc29-48a4-94f1-de98861fa26b","createdDateTimeUtc":"2021-06-02T15:31:51.3977201Z","lastActionDateTimeUtc":"2021-06-02T15:31:58.5898438Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"037a7fa0-4dc3-4883-8f79-a92aa2b1bf20","createdDateTimeUtc":"2021-06-02T15:31:20.0453083Z","lastActionDateTimeUtc":"2021-06-02T15:31:23.4805698Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"952041da-4da4-43c8-a8f3-8e1742f2beb9","createdDateTimeUtc":"2021-06-02T15:30:48.630454Z","lastActionDateTimeUtc":"2021-06-02T15:30:52.4630271Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=55&$top=422&$maxpagesize=50"}' + headers: + apim-request-id: dafe15e0-9c16-4c49-b1ec-1955ad82fdfa + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:18 GMT + etag: '"7413F6584488F78B0F4500D3F1CCF66DF992B1C791AC8DB6358A81C4562061B1"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dafe15e0-9c16-4c49-b1ec-1955ad82fdfa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches?$skip=55&$top=422&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"58d95d16-9284-48bd-ace3-dd961197bcde","createdDateTimeUtc":"2021-06-02T07:07:21.3198845Z","lastActionDateTimeUtc":"2021-06-02T07:07:22.583496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72d34ce8-d861-4d6c-a410-d6337f303948","createdDateTimeUtc":"2021-06-02T07:07:14.7915463Z","lastActionDateTimeUtc":"2021-06-02T07:07:15.5245593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70081137-fe6d-466f-953e-2670c8f5e6da","createdDateTimeUtc":"2021-06-02T07:07:08.454661Z","lastActionDateTimeUtc":"2021-06-02T07:07:10.4666065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"113ad1aa-d9f6-4b15-a610-267b51c8a138","createdDateTimeUtc":"2021-06-02T07:06:40.2876379Z","lastActionDateTimeUtc":"2021-06-02T07:06:43.4469925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"171c4e8e-4733-4b42-b3ed-cbe9481c0d3d","createdDateTimeUtc":"2021-06-02T07:06:34.1550079Z","lastActionDateTimeUtc":"2021-06-02T07:06:34.2834432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"384343e6-a44b-49e9-91ef-d62cf39d44dc","createdDateTimeUtc":"2021-06-02T07:06:28.0100687Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.4305067Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c4182d40-ee61-40f5-b3ac-31bc4aaed8b8","createdDateTimeUtc":"2021-06-02T07:06:22.1439114Z","lastActionDateTimeUtc":"2021-06-02T07:06:22.2296325Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2295cf18-0237-4b0b-ac37-42d91ba98d4e","createdDateTimeUtc":"2021-06-02T07:06:14.1851872Z","lastActionDateTimeUtc":"2021-06-02T07:06:16.4424397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386e26c8-49dd-4eb5-ae3f-95bbc1809b38","createdDateTimeUtc":"2021-06-02T07:03:22.7902994Z","lastActionDateTimeUtc":"2021-06-02T07:03:23.1220631Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5948f436-c1b1-414c-9b2c-6d3af57f3021","createdDateTimeUtc":"2021-06-02T07:02:43.6134937Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.2264979Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0ab12764-59ff-4e7c-b9a7-88c62f9b9627","createdDateTimeUtc":"2021-06-02T06:56:55.0366689Z","lastActionDateTimeUtc":"2021-06-02T06:57:00.755663Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a9e762d-814f-4d12-b2cf-a686f3c572dd","createdDateTimeUtc":"2021-06-02T06:46:49.3275525Z","lastActionDateTimeUtc":"2021-06-02T06:46:57.3306415Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"68544ede-a20e-444e-a0ae-022199af016c","createdDateTimeUtc":"2021-06-02T06:41:24.4796213Z","lastActionDateTimeUtc":"2021-06-02T06:41:29.4908652Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8070372d-232c-4903-9b76-258c28a454bc","createdDateTimeUtc":"2021-06-02T06:41:18.3169725Z","lastActionDateTimeUtc":"2021-06-02T06:41:18.4692647Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"964fbde3-cb72-4679-815a-b68cb3145f58","createdDateTimeUtc":"2021-06-02T06:41:12.0098122Z","lastActionDateTimeUtc":"2021-06-02T06:41:16.688651Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c345e3b-2a71-4786-a3a9-c1703081324f","createdDateTimeUtc":"2021-06-02T06:41:05.9240834Z","lastActionDateTimeUtc":"2021-06-02T06:41:06.0023015Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4808cb29-461a-4bdc-849a-b8b2402cca93","createdDateTimeUtc":"2021-06-02T06:40:53.7154483Z","lastActionDateTimeUtc":"2021-06-02T06:40:54.3761813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea655e95-0404-4808-bc60-29d5023b58fa","createdDateTimeUtc":"2021-06-02T06:40:30.9135072Z","lastActionDateTimeUtc":"2021-06-02T06:40:31.7975375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ba008d05-8564-4475-9031-2d3e54e8f8bc","createdDateTimeUtc":"2021-06-02T06:40:05.638911Z","lastActionDateTimeUtc":"2021-06-02T06:40:06.5216871Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fd88caa7-54b7-44ad-a5df-b3f38b2006f4","createdDateTimeUtc":"2021-06-02T06:40:04.9897959Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.5795126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"de6d7efa-e94a-43a6-a5e0-10b28f9615ec","createdDateTimeUtc":"2021-06-02T06:40:04.3970363Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2868525Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d84f2015-a418-440f-aa40-c3c4a2c0f535","createdDateTimeUtc":"2021-06-02T06:40:03.8571077Z","lastActionDateTimeUtc":"2021-06-02T06:40:05.2818175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d44aa0e2-e11e-4510-8470-b090bd9b2f82","createdDateTimeUtc":"2021-06-02T06:40:03.1588409Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4667969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5aeaacbc-3228-435a-b713-ffb6e835188a","createdDateTimeUtc":"2021-06-02T06:40:02.5798533Z","lastActionDateTimeUtc":"2021-06-02T06:40:04.4688227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05f6af9f-6f99-476f-b95d-02e7b30ba973","createdDateTimeUtc":"2021-06-02T06:40:02.0118203Z","lastActionDateTimeUtc":"2021-06-02T06:40:03.6115399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7a23650d-bb6a-4ca8-9569-84fa94fe6800","createdDateTimeUtc":"2021-06-02T06:40:01.4873529Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.5950808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964a78c0-3ac4-4769-bbd8-526686f22c42","createdDateTimeUtc":"2021-06-02T06:40:00.9118738Z","lastActionDateTimeUtc":"2021-06-02T06:40:02.6168181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d8840d4-2706-43e3-9db7-726ade4b28e8","createdDateTimeUtc":"2021-06-02T06:40:00.283617Z","lastActionDateTimeUtc":"2021-06-02T06:40:00.7436838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e302853f-5306-4a81-9d21-62ab1c3cb24f","createdDateTimeUtc":"2021-06-02T06:39:45.0213389Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9897041Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"840ef30b-a12f-49a9-b85b-01cb39acc87b","createdDateTimeUtc":"2021-06-02T06:39:44.5163768Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.9895247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3415cb23-56af-4ba6-85c6-dfc4b5542ad8","createdDateTimeUtc":"2021-06-02T06:39:43.9656836Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7506612Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be268620-2e05-4ba2-89ae-1c0b72751bca","createdDateTimeUtc":"2021-06-02T06:39:43.4699657Z","lastActionDateTimeUtc":"2021-06-02T06:39:48.7031927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da019c4-f930-419b-8fd0-a26dfc37c494","createdDateTimeUtc":"2021-06-02T06:39:42.9890121Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8240778Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60d59bd2-31c5-4cd7-9a2c-2f4fb5a66a28","createdDateTimeUtc":"2021-06-02T06:39:40.9473475Z","lastActionDateTimeUtc":"2021-06-02T06:39:47.8600715Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23632a5-a3cd-4415-8ca9-49d9af346f4c","createdDateTimeUtc":"2021-06-02T06:39:24.1530166Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4860761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"348397fe-5a6d-4254-917e-8a417fe69a18","createdDateTimeUtc":"2021-06-02T06:39:23.6466581Z","lastActionDateTimeUtc":"2021-06-02T06:39:25.4112274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6d5cec9-56ba-49eb-a706-f23d8726364c","createdDateTimeUtc":"2021-06-02T06:39:21.4737853Z","lastActionDateTimeUtc":"2021-06-02T06:39:22.7942225Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"675c93a1-a854-4990-8389-7a61b2727f07","createdDateTimeUtc":"2021-06-02T06:39:20.9472043Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.5120454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"525194bb-ef96-4db2-ab08-a915dadddfac","createdDateTimeUtc":"2021-06-02T06:39:20.2491928Z","lastActionDateTimeUtc":"2021-06-02T06:39:21.4901556Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f00445aa-49dc-4412-87eb-553ea2bf7d04","createdDateTimeUtc":"2021-06-02T06:39:08.6574795Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1874519Z","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/batches?$skip=105&$top=372&$maxpagesize=50"}' + headers: + apim-request-id: b6873501-6690-46f9-9c4d-bd04b414c4fb + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:18 GMT + etag: '"52BE65BC48E7E0C1EA1FBB09CB36EB3175EC66894849684E2ADA487219BAC507"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b6873501-6690-46f9-9c4d-bd04b414c4fb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=55&$top=422&$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/batches?$skip=105&$top=372&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"ba2f1009-fb37-4b26-9028-4b0fff7782e1","createdDateTimeUtc":"2021-06-02T06:39:08.1487463Z","lastActionDateTimeUtc":"2021-06-02T06:39:09.1891904Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0e4ce759-4155-4371-8b1e-5856d993a09b","createdDateTimeUtc":"2021-06-02T06:39:07.405402Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8980215Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"430d6fdb-2ede-4359-8866-84f6afd6bdcd","createdDateTimeUtc":"2021-06-02T06:39:06.9117078Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.8128538Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8cb80008-0ccb-480d-9ed1-01b8e5f22b0b","createdDateTimeUtc":"2021-06-02T06:39:06.3306336Z","lastActionDateTimeUtc":"2021-06-02T06:39:08.708013Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8e38339f-b8f6-422a-afdf-4d1de19fbab3","createdDateTimeUtc":"2021-06-02T06:39:00.7494268Z","lastActionDateTimeUtc":"2021-06-02T06:39:01.3181011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"773b73df-42ae-4197-8198-bc90c557b188","createdDateTimeUtc":"2021-06-02T06:38:54.0646034Z","lastActionDateTimeUtc":"2021-06-02T06:38:56.3798465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"79d237c0-c8ac-4a3b-99bc-de2b9a1e76ef","createdDateTimeUtc":"2021-06-02T06:38:46.309884Z","lastActionDateTimeUtc":"2021-06-02T06:38:49.2573517Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f90c5227-f225-471d-9453-024721f9518f","createdDateTimeUtc":"2021-06-02T06:38:40.7600205Z","lastActionDateTimeUtc":"2021-06-02T06:38:42.2207707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d95d4dcd-6301-4006-a1ac-ac471411900b","createdDateTimeUtc":"2021-06-02T06:38:35.1857718Z","lastActionDateTimeUtc":"2021-06-02T06:38:36.248059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f820ac8-68e8-402b-890a-bb2bdda717e0","createdDateTimeUtc":"2021-06-02T06:38:34.2347962Z","lastActionDateTimeUtc":"2021-06-02T06:38:35.1762805Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbe70865-551f-49f3-ab11-8e71503fb250","createdDateTimeUtc":"2021-06-02T06:38:33.6329499Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9745495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fc1f463-3f90-463c-a8e5-c06153becb1d","createdDateTimeUtc":"2021-06-02T06:38:33.0953339Z","lastActionDateTimeUtc":"2021-06-02T06:38:34.9133298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d8f3f86-0803-4bac-9ea8-419278691b54","createdDateTimeUtc":"2021-06-02T06:38:25.681571Z","lastActionDateTimeUtc":"2021-06-02T06:38:29.2106941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bb2b0f6-8ac2-418a-9b10-b360447a89a5","createdDateTimeUtc":"2021-06-02T06:38:20.0075742Z","lastActionDateTimeUtc":"2021-06-02T06:38:22.1577533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee6090f4-643f-4016-a931-dacd57b43fa1","createdDateTimeUtc":"2021-06-02T06:38:14.4144376Z","lastActionDateTimeUtc":"2021-06-02T06:38:15.0321792Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d921bb3-d049-4b73-806c-257c1dc96953","createdDateTimeUtc":"2021-06-02T06:38:07.6875606Z","lastActionDateTimeUtc":"2021-06-02T06:38:09.8465419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86272760-b346-482a-87d3-d8b3eeb1431e","createdDateTimeUtc":"2021-06-02T06:38:02.0547056Z","lastActionDateTimeUtc":"2021-06-02T06:38:02.7777345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1ab36b51-3fd7-42b0-806b-e3186a953d2e","createdDateTimeUtc":"2021-06-02T06:37:54.3117337Z","lastActionDateTimeUtc":"2021-06-02T06:37:55.7664263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3a0d3c0-f2fc-4ab6-b669-8c3761494c57","createdDateTimeUtc":"2021-06-02T06:37:47.5767386Z","lastActionDateTimeUtc":"2021-06-02T06:37:49.9643054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"527a3c66-ace4-4790-8c11-5a91053508e0","createdDateTimeUtc":"2021-06-02T06:37:40.8885591Z","lastActionDateTimeUtc":"2021-06-02T06:37:42.8973152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9c7cc60-4eb3-4e1c-b45e-a4604a064ffa","createdDateTimeUtc":"2021-06-02T06:37:35.3559821Z","lastActionDateTimeUtc":"2021-06-02T06:37:35.9147701Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e46e697b-4b91-4cc1-bdc8-d1b5f4f29316","createdDateTimeUtc":"2021-06-02T06:37:29.6705576Z","lastActionDateTimeUtc":"2021-06-02T06:37:30.751147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a414371-9c16-4f5b-b78f-54a1b14f3cb3","createdDateTimeUtc":"2021-06-02T06:37:28.605251Z","lastActionDateTimeUtc":"2021-06-02T06:37:29.7618353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0eafff35-c835-435f-8ba6-5c62ccbcac05","createdDateTimeUtc":"2021-06-02T06:37:28.0226232Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.688448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4e16297-da6d-44a3-b537-2e179b5c57c8","createdDateTimeUtc":"2021-06-02T06:37:27.4859883Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.4461178Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88f6806b-a28c-43b3-80c7-9a3e2a18f98a","createdDateTimeUtc":"2021-06-02T06:37:25.5121262Z","lastActionDateTimeUtc":"2021-06-02T06:37:28.6483773Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0eba3d56-4b51-4fc6-b9ea-755fe87fe711","createdDateTimeUtc":"2021-06-02T06:37:24.8468851Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.4997727Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b719446-a83e-4bc7-9deb-659eebb51328","createdDateTimeUtc":"2021-06-02T06:37:23.7379948Z","lastActionDateTimeUtc":"2021-06-02T06:37:27.2183805Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2bbaa78d-f6a0-43b2-8352-bd0aa6edd744","createdDateTimeUtc":"2021-06-02T06:37:23.0437961Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.9407465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9b96b537-29be-4194-a7b4-a05959950142","createdDateTimeUtc":"2021-06-02T06:37:22.0011983Z","lastActionDateTimeUtc":"2021-06-02T06:37:26.6381334Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"754d7123-41c6-45bb-9214-20ccbb325d5c","createdDateTimeUtc":"2021-06-02T06:36:57.8535231Z","lastActionDateTimeUtc":"2021-06-02T06:37:03.3442448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1237295c-47ea-4710-a84e-ed65a8f49dda","createdDateTimeUtc":"2021-06-02T06:36:26.6950836Z","lastActionDateTimeUtc":"2021-06-02T06:36:28.3693909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9089f05-bcb1-4641-b735-8f98dc8adb1f","createdDateTimeUtc":"2021-06-02T06:31:52.1253814Z","lastActionDateTimeUtc":"2021-06-02T06:31:52.8547205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c78fc17-42b3-4c74-9116-4884e562c539","createdDateTimeUtc":"2021-06-02T06:31:46.3031834Z","lastActionDateTimeUtc":"2021-06-02T06:31:49.7638013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"623049da-86bc-4ed0-8bd0-573ce173bd09","createdDateTimeUtc":"2021-06-02T06:31:40.6870358Z","lastActionDateTimeUtc":"2021-06-02T06:31:42.7637882Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"20dacd12-831b-43e1-a075-20b55c0c05f8","createdDateTimeUtc":"2021-06-02T06:31:33.4298048Z","lastActionDateTimeUtc":"2021-06-02T06:31:35.7469781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"395da32f-25c1-4fb3-94b5-3001923e1bd9","createdDateTimeUtc":"2021-06-02T06:31:27.7199149Z","lastActionDateTimeUtc":"2021-06-02T06:31:28.7143411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"866aec00-32f8-48e1-b5e7-ec0ce7415922","createdDateTimeUtc":"2021-06-02T06:31:16.5237081Z","lastActionDateTimeUtc":"2021-06-02T06:31:25.5918105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"228d5464-6bcf-4902-a1f2-285eba30ab17","createdDateTimeUtc":"2021-06-02T06:30:49.0056921Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.5099885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fc6cfc2-1160-4fa2-a6a1-d7648e5709e1","createdDateTimeUtc":"2021-06-02T06:30:43.2805043Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.4455562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e2ab5c2f-a7f5-489a-bfb7-d3ac57f736d0","createdDateTimeUtc":"2021-06-02T06:30:37.5784834Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.3674137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcfdeec9-e7df-4392-8374-8aac9e868741","createdDateTimeUtc":"2021-06-02T06:30:31.7248799Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.297635Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47768932-bffa-4741-9ba2-a20dee4f3f1a","createdDateTimeUtc":"2021-06-02T06:30:26.0656198Z","lastActionDateTimeUtc":"2021-06-02T06:30:54.1723788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"afad7dd6-3567-4b66-88b7-9bd8beaf3899","createdDateTimeUtc":"2021-06-02T06:29:59.7309695Z","lastActionDateTimeUtc":"2021-06-02T06:30:01.6197032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd283afb-1dfb-4b00-a707-2fb7019401a0","createdDateTimeUtc":"2021-06-02T06:29:54.0669069Z","lastActionDateTimeUtc":"2021-06-02T06:29:54.5543145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e2010c-6c48-4bd0-9af7-5b6facde0400","createdDateTimeUtc":"2021-06-02T06:29:47.2954725Z","lastActionDateTimeUtc":"2021-06-02T06:29:51.5405468Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae0cf555-37e1-4fed-a4ee-37385bd742a7","createdDateTimeUtc":"2021-06-02T06:29:40.4210117Z","lastActionDateTimeUtc":"2021-06-02T06:29:44.5090957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd32d1f9-7fe1-4e7c-803c-074eb313b881","createdDateTimeUtc":"2021-06-02T06:29:34.5996255Z","lastActionDateTimeUtc":"2021-06-02T06:29:37.5610745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d99f37-ea74-4026-bf86-a8a20de78870","createdDateTimeUtc":"2021-06-02T06:29:28.4345704Z","lastActionDateTimeUtc":"2021-06-02T06:29:30.4531222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2169680d-f2b1-499e-9a26-50e940a1f19c","createdDateTimeUtc":"2021-06-02T06:29:22.5497666Z","lastActionDateTimeUtc":"2021-06-02T06:29:23.397007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=155&$top=322&$maxpagesize=50"}' + headers: + apim-request-id: 2b289303-38ed-4eef-a1a3-c7140880e074 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:18 GMT + etag: '"5C4A625C0AB4AA30D3938C6498266094BE2555691C3F69DDD96A04F8D15D9157"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2b289303-38ed-4eef-a1a3-c7140880e074 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=105&$top=372&$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/batches?$skip=155&$top=322&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c825d175-84c9-44bb-a250-7477b186b7d7","createdDateTimeUtc":"2021-06-02T06:29:12.1295019Z","lastActionDateTimeUtc":"2021-06-02T06:29:20.4141609Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1bcb1fbb-d9c6-4aac-abc6-5da979f93c10","createdDateTimeUtc":"2021-06-02T06:29:04.6430168Z","lastActionDateTimeUtc":"2021-06-02T06:29:05.3135215Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d386f9f9-ac85-410e-94e3-79eac5992714","createdDateTimeUtc":"2021-06-02T06:28:58.0247499Z","lastActionDateTimeUtc":"2021-06-02T06:29:02.2484327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f940a90-217b-4214-a0fe-192d98446f6a","createdDateTimeUtc":"2021-06-02T06:28:52.2064089Z","lastActionDateTimeUtc":"2021-06-02T06:28:55.2840592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88d78718-f019-4f04-955d-a5009d9e4245","createdDateTimeUtc":"2021-06-02T06:28:46.5015851Z","lastActionDateTimeUtc":"2021-06-02T06:28:48.227662Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e78fd56-7bae-4be9-8d3f-fd9655a87bc3","createdDateTimeUtc":"2021-06-02T06:28:40.7716367Z","lastActionDateTimeUtc":"2021-06-02T06:28:41.2126052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e0acf6d-44f5-4d7a-a279-ffd893f72ae0","createdDateTimeUtc":"2021-06-02T06:28:33.9863236Z","lastActionDateTimeUtc":"2021-06-02T06:28:38.2619041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a28fc64-be31-4129-85e9-086471ed8f5d","createdDateTimeUtc":"2021-06-02T06:28:28.3068732Z","lastActionDateTimeUtc":"2021-06-02T06:28:31.2430328Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"43e73cdb-31d8-44f3-b5cf-5eeae1cd24fc","createdDateTimeUtc":"2021-06-02T06:28:22.4805434Z","lastActionDateTimeUtc":"2021-06-02T06:28:24.1529464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f14f668b-ed23-465d-b15a-09a44aa7763f","createdDateTimeUtc":"2021-06-02T06:28:16.7942172Z","lastActionDateTimeUtc":"2021-06-02T06:28:17.1244707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11000a3d-3809-46ff-a371-2300a341bd0f","createdDateTimeUtc":"2021-06-02T06:28:09.0336899Z","lastActionDateTimeUtc":"2021-06-02T06:28:10.0823864Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c550a34-1c79-4f44-ba69-b72a7bd83723","createdDateTimeUtc":"2021-06-02T06:27:45.6855377Z","lastActionDateTimeUtc":"2021-06-02T06:27:47.1264172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1074d708-ba5b-4bab-a212-8ac891a5bc64","createdDateTimeUtc":"2021-06-02T06:27:37.8112878Z","lastActionDateTimeUtc":"2021-06-02T06:27:43.1579479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"511663cc-a546-4851-bf0b-4281de4a1203","createdDateTimeUtc":"2021-06-02T06:27:30.0326249Z","lastActionDateTimeUtc":"2021-06-02T06:27:35.0809773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc22ccf1-a409-4dff-9bec-f8b9aaea5f27","createdDateTimeUtc":"2021-06-02T06:25:53.255805Z","lastActionDateTimeUtc":"2021-06-02T06:25:59.9237756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c82fd91c-9a2b-4246-aeec-cddaef911a14","createdDateTimeUtc":"2021-06-02T06:25:22.2269844Z","lastActionDateTimeUtc":"2021-06-02T06:25:24.9708863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9489ef1e-74db-4b81-aec5-5b713b9e26a9","createdDateTimeUtc":"2021-06-02T06:24:51.3564189Z","lastActionDateTimeUtc":"2021-06-02T06:24:59.8172692Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3ba142b1-513b-4d57-a901-9704ca2c327b","createdDateTimeUtc":"2021-06-02T06:24:20.4484613Z","lastActionDateTimeUtc":"2021-06-02T06:24:24.9034201Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0059556e-4270-4204-bdb5-d87881f3d47b","createdDateTimeUtc":"2021-06-02T06:23:49.7369631Z","lastActionDateTimeUtc":"2021-06-02T06:23:54.7425014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b96e7c8c-2efb-45e9-a754-bb310eb7276b","createdDateTimeUtc":"2021-06-02T06:23:19.0170191Z","lastActionDateTimeUtc":"2021-06-02T06:23:19.767562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5e62427-f4e5-4dd0-bf56-054c82989581","createdDateTimeUtc":"2021-06-02T06:22:47.9033185Z","lastActionDateTimeUtc":"2021-06-02T06:22:54.6578808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be091f2d-0c5e-4ed2-8c4f-db95ff144ac3","createdDateTimeUtc":"2021-06-02T06:22:16.9506818Z","lastActionDateTimeUtc":"2021-06-02T06:22:19.5141674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6d8171c-c94f-4673-ae9c-0f673b7abe89","createdDateTimeUtc":"2021-06-02T06:21:46.0269731Z","lastActionDateTimeUtc":"2021-06-02T06:21:54.5771814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1c99372a-914c-4c66-aa27-9e7b41400d66","createdDateTimeUtc":"2021-06-02T06:21:15.0770547Z","lastActionDateTimeUtc":"2021-06-02T06:21:19.5366137Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10aa6ae4-6629-46a6-b837-9f2fb350e378","createdDateTimeUtc":"2021-06-02T06:20:23.7996579Z","lastActionDateTimeUtc":"2021-06-02T06:20:29.420853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"455b3f25-338b-4e72-ae9d-cc900887259c","createdDateTimeUtc":"2021-06-02T06:19:53.1336874Z","lastActionDateTimeUtc":"2021-06-02T06:19:54.3146611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e51ebfe-1453-4a5b-aa2b-969a6cca7f05","createdDateTimeUtc":"2021-06-02T06:19:22.2682697Z","lastActionDateTimeUtc":"2021-06-02T06:19:29.3641841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37f3b433-4b63-4542-888c-71ce6e071922","createdDateTimeUtc":"2021-06-02T06:18:51.4606477Z","lastActionDateTimeUtc":"2021-06-02T06:18:54.1638268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdb254a-9d1b-41b6-8ea5-4d5015c67b8c","createdDateTimeUtc":"2021-06-02T06:18:20.7210312Z","lastActionDateTimeUtc":"2021-06-02T06:18:29.1497504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bd4369b1-1bd4-4c6e-ad45-338e6579899c","createdDateTimeUtc":"2021-06-02T06:15:50.0992803Z","lastActionDateTimeUtc":"2021-06-02T06:15:53.873241Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"07f36a24-9854-43f3-a9dc-15203fe5c62a","createdDateTimeUtc":"2021-06-02T06:15:19.1436974Z","lastActionDateTimeUtc":"2021-06-02T06:15:28.504133Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0253cb27-868b-4fc2-9cf5-6e8f6b1ebed0","createdDateTimeUtc":"2021-06-02T06:14:47.9984222Z","lastActionDateTimeUtc":"2021-06-02T06:14:53.9008726Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f49b8b7b-20c9-4f2c-913e-fc34c1754aac","createdDateTimeUtc":"2021-06-02T06:13:57.8560329Z","lastActionDateTimeUtc":"2021-06-02T06:14:08.0260925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"db0fd9de-ad02-44b5-8392-f6fbf97d72ff","createdDateTimeUtc":"2021-06-02T06:13:26.9385056Z","lastActionDateTimeUtc":"2021-06-02T06:13:32.7168633Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"954cdb1c-1a1c-4bc5-8a67-9f20b0c693b3","createdDateTimeUtc":"2021-06-02T06:11:47.0415656Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5358082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d43364c1-3769-4d46-9d98-246a6e9da465","createdDateTimeUtc":"2021-06-02T06:11:45.8214769Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.5029511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bad9b4-3991-4dd3-ab46-10dc0bd5ef34","createdDateTimeUtc":"2021-06-02T06:11:45.1971929Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4784703Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2615874-a419-4ab8-814b-0250b2671bb2","createdDateTimeUtc":"2021-06-02T06:11:44.5932423Z","lastActionDateTimeUtc":"2021-06-02T06:11:47.4385381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4f47cf3-d066-4b66-a867-1815729c7051","createdDateTimeUtc":"2021-06-02T06:10:20.148363Z","lastActionDateTimeUtc":"2021-06-02T06:10:22.3598569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1767b0e6-3246-4be8-a798-fefe9d55790c","createdDateTimeUtc":"2021-06-02T06:08:37.5231708Z","lastActionDateTimeUtc":"2021-06-02T06:08:47.3183336Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb9927b-7e58-4278-9a30-d2ac24e3ffe3","createdDateTimeUtc":"2021-06-02T06:04:46.6168288Z","lastActionDateTimeUtc":"2021-06-02T06:04:51.9619776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e33a99e3-35d2-4294-985b-3626d43365ad","createdDateTimeUtc":"2021-06-02T06:03:58.5937692Z","lastActionDateTimeUtc":"2021-06-02T06:04:06.608947Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a353b38-bc96-4f43-bcec-88346d01edfd","createdDateTimeUtc":"2021-06-02T06:03:50.1615101Z","lastActionDateTimeUtc":"2021-06-02T06:03:51.5614932Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"139ad887-8f41-4de4-9457-66de68f9c890","createdDateTimeUtc":"2021-06-02T06:03:33.9111737Z","lastActionDateTimeUtc":"2021-06-02T06:03:40.6466721Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a0efbe3-c610-4f42-ab6f-63079aa69e3a","createdDateTimeUtc":"2021-06-02T06:03:18.7591309Z","lastActionDateTimeUtc":"2021-06-02T06:03:25.9457778Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dfd67e83-c77f-4514-9367-e82b93bc4f68","createdDateTimeUtc":"2021-06-02T06:03:03.4955928Z","lastActionDateTimeUtc":"2021-06-02T06:03:10.161634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26a66406-477f-4aaa-9c82-5da0c3758efc","createdDateTimeUtc":"2021-06-02T06:02:44.8360993Z","lastActionDateTimeUtc":"2021-06-02T06:02:54.8354515Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4e356baa-8996-4c2b-a1f9-259546e0218b","createdDateTimeUtc":"2021-06-02T06:01:49.121227Z","lastActionDateTimeUtc":"2021-06-02T06:01:59.4111906Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2b1c6fe5-0c84-4032-a111-d566ae74e1d4","createdDateTimeUtc":"2021-06-02T06:00:11.4192024Z","lastActionDateTimeUtc":"2021-06-02T06:00:13.9215015Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"71ab389d-a2c3-4110-8988-8da4e5fd7408","createdDateTimeUtc":"2021-06-02T05:59:22.9875164Z","lastActionDateTimeUtc":"2021-06-02T05:59:28.5803569Z","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/batches?$skip=205&$top=272&$maxpagesize=50"}' + headers: + apim-request-id: 16e3df6d-7058-4323-979b-9415afd7f35c + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:18 GMT + etag: '"ED3829F246540C245BDBDDCDBC90425736E9057DFF06B8F0E60F1ED87A9F8481"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 16e3df6d-7058-4323-979b-9415afd7f35c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=155&$top=322&$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/batches?$skip=205&$top=272&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"affdd43f-a59e-4faf-9b7c-045d28a129bc","createdDateTimeUtc":"2021-06-02T05:58:50.9621861Z","lastActionDateTimeUtc":"2021-06-02T05:58:52.9245564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ee35c9d-9018-4a3b-9ea1-68245a334dd4","createdDateTimeUtc":"2021-06-02T05:58:19.1982169Z","lastActionDateTimeUtc":"2021-06-02T05:58:27.117752Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"673d31d8-fe2b-485b-a84d-ecbfe1752d2c","createdDateTimeUtc":"2021-06-02T05:57:46.0575458Z","lastActionDateTimeUtc":"2021-06-02T05:57:51.8156531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"090cc495-186c-4adb-8407-862636463757","createdDateTimeUtc":"2021-06-02T05:57:14.7939772Z","lastActionDateTimeUtc":"2021-06-02T05:57:16.7021118Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1a90824-d9cc-4dc7-a40e-db0ae0d891ad","createdDateTimeUtc":"2021-06-02T05:56:00.0041079Z","lastActionDateTimeUtc":"2021-06-02T05:56:00.8306767Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"82b79dc7-909c-41df-8eac-079a74b01698","createdDateTimeUtc":"2021-06-02T05:53:40.1594662Z","lastActionDateTimeUtc":"2021-06-02T05:53:45.5280339Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"96658446-ca4f-4c79-8275-23b209c3c9e4","createdDateTimeUtc":"2021-06-02T05:51:56.9659862Z","lastActionDateTimeUtc":"2021-06-02T05:52:01.423898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80f39fa0-b009-4339-a0e1-78ff557917e6","createdDateTimeUtc":"2021-06-02T05:48:14.5570532Z","lastActionDateTimeUtc":"2021-06-02T05:48:20.1142073Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e7cc5a5-ebe2-453d-b595-c3d6065d4712","createdDateTimeUtc":"2021-06-02T05:43:30.9856776Z","lastActionDateTimeUtc":"2021-06-02T05:43:34.6088228Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"8f4669ca-5c7b-4f8e-ab9e-16a0d8c04372","createdDateTimeUtc":"2021-06-02T05:42:29.7187687Z","lastActionDateTimeUtc":"2021-06-02T05:42:33.5362437Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c3a58d9-fc61-4a9e-ab7c-976fd5ba2e88","createdDateTimeUtc":"2021-06-02T05:40:53.8898172Z","lastActionDateTimeUtc":"2021-06-02T05:40:58.2857382Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ff8b5b19-e29a-4edc-9986-74add94c2ed6","createdDateTimeUtc":"2021-06-02T05:33:17.6096463Z","lastActionDateTimeUtc":"2021-06-02T05:33:19.5556249Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ee27cdd2-7177-44af-9efb-72d6648fbd8a","createdDateTimeUtc":"2021-06-02T05:31:30.1067328Z","lastActionDateTimeUtc":"2021-06-02T05:31:34.5936707Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"12d4437b-3afd-47e5-b339-645678bd11c1","createdDateTimeUtc":"2021-06-02T05:29:02.4628258Z","lastActionDateTimeUtc":"2021-06-02T05:29:04.2718987Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3489bff5-c175-4416-86d8-f41ade56c08b","createdDateTimeUtc":"2021-06-02T05:27:34.0115178Z","lastActionDateTimeUtc":"2021-06-02T05:28:23.3900798Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"20be4e4e-371a-49a2-94c5-c85420d370d6","createdDateTimeUtc":"2021-06-02T05:24:58.0897966Z","lastActionDateTimeUtc":"2021-06-02T05:25:02.3871183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a005705-2f88-4991-bab2-05e794e0cec3","createdDateTimeUtc":"2021-06-02T05:20:28.3202576Z","lastActionDateTimeUtc":"2021-06-02T05:20:31.1333763Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adebf13e-02aa-4fd2-acab-b801347817e2","createdDateTimeUtc":"2021-06-02T05:16:41.5144653Z","lastActionDateTimeUtc":"2021-06-02T05:16:46.2558243Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"521c0cf5-eb19-48ff-abfb-768fddedf8e8","createdDateTimeUtc":"2021-06-02T05:13:15.704805Z","lastActionDateTimeUtc":"2021-06-02T05:13:18.7234422Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"a66fcd2c-a0d1-40bd-849a-1ae5ccc3a2e3","createdDateTimeUtc":"2021-06-02T05:12:37.7595989Z","lastActionDateTimeUtc":"2021-06-02T05:12:43.9213967Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"1e5bf32d-d244-465c-a151-e96b83240c71","createdDateTimeUtc":"2021-06-02T05:09:45.5019253Z","lastActionDateTimeUtc":"2021-06-02T05:09:52.3799732Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"84d47a2d-e31e-4fb2-82cd-f5710a5bddc1","createdDateTimeUtc":"2021-06-02T05:07:04.0882575Z","lastActionDateTimeUtc":"2021-06-02T05:07:09.8131022Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"b690cc6f-b004-4d4c-a126-211829d14992","createdDateTimeUtc":"2021-06-02T05:06:01.6273683Z","lastActionDateTimeUtc":"2021-06-02T05:06:09.6290175Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"ebbc7eff-6bf7-49d8-b8ce-c44914ca731b","createdDateTimeUtc":"2021-06-02T04:59:58.7833735Z","lastActionDateTimeUtc":"2021-06-02T05:00:29.0795394Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"4f30eb05-0f9d-4ce0-94cf-19d4a741b322","createdDateTimeUtc":"2021-06-02T04:57:51.2180806Z","lastActionDateTimeUtc":"2021-06-02T04:57:55.5200877Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"731e5945-d991-4e86-9e0c-ed422ab0663a","createdDateTimeUtc":"2021-06-02T04:55:45.0458168Z","lastActionDateTimeUtc":"2021-06-02T04:55:59.1686947Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"c60ccfaf-be73-4613-82af-9c07bb928597","createdDateTimeUtc":"2021-06-02T04:50:03.9051485Z","lastActionDateTimeUtc":"2021-06-02T04:50:34.1746558Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"d5ce01f7-cea0-436b-9d74-d5a892f5bb2c","createdDateTimeUtc":"2021-06-02T04:49:40.8448675Z","lastActionDateTimeUtc":"2021-06-02T04:49:47.3592754Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"3e16b76c-f867-420a-81ff-040041c88cca","createdDateTimeUtc":"2021-06-02T04:48:52.2989617Z","lastActionDateTimeUtc":"2021-06-02T04:49:01.9235657Z","status":"Succeeded","summary":{"total":8,"failed":0,"success":8,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"389833c2-a4c8-46c1-913f-21b1dc68fc96","createdDateTimeUtc":"2021-06-02T04:48:30.7064927Z","lastActionDateTimeUtc":"2021-06-02T04:48:31.7667105Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e4766bcb-7e07-4089-a46a-adac2250331a","createdDateTimeUtc":"2021-06-02T04:48:21.8863165Z","lastActionDateTimeUtc":"2021-06-02T04:48:24.4501223Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b66c15f9-193c-402f-bb6a-0b0925dd1fa2","createdDateTimeUtc":"2021-06-02T04:48:15.6587641Z","lastActionDateTimeUtc":"2021-06-02T04:48:17.9246323Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ffe1920b-aa72-4d9c-b3fa-8517cce35f72","createdDateTimeUtc":"2021-06-02T04:48:07.939583Z","lastActionDateTimeUtc":"2021-06-02T04:48:09.0216681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87c6c0e6-46d3-4e90-9cdf-57b3235e9bdd","createdDateTimeUtc":"2021-06-02T04:48:00.3057632Z","lastActionDateTimeUtc":"2021-06-02T04:48:02.6199261Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"26b1fc41-991e-4f6e-ba83-2c7f34fc86fc","createdDateTimeUtc":"2021-06-02T04:47:52.5235942Z","lastActionDateTimeUtc":"2021-06-02T04:47:54.9446909Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"5129cca6-d872-4992-9eb4-72e889e0f1bb","createdDateTimeUtc":"2021-06-02T04:47:42.4013244Z","lastActionDateTimeUtc":"2021-06-02T04:47:43.783395Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bd74d93-024d-44d3-aa4d-d4d2431bb1c3","createdDateTimeUtc":"2021-06-02T04:46:59.8190512Z","lastActionDateTimeUtc":"2021-06-02T04:47:08.205883Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f0b05120-7995-4839-8c07-9beee089bff6","createdDateTimeUtc":"2021-06-02T04:46:50.5990968Z","lastActionDateTimeUtc":"2021-06-02T04:46:52.2110978Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"f8c1c95d-ca89-4de8-a2d7-38727e3b79c1","createdDateTimeUtc":"2021-06-02T04:46:43.8351806Z","lastActionDateTimeUtc":"2021-06-02T04:46:44.5995933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a54b852-0818-4061-ab28-aa287672ad6b","createdDateTimeUtc":"2021-06-02T04:46:36.3394533Z","lastActionDateTimeUtc":"2021-06-02T04:46:37.2547159Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fae08b21-d2f2-4c39-8b7e-626f17c26341","createdDateTimeUtc":"2021-06-02T04:46:28.3857682Z","lastActionDateTimeUtc":"2021-06-02T04:46:30.003421Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"747fbb4f-5798-4bae-bb59-7ba7a24a17e6","createdDateTimeUtc":"2021-06-02T04:46:21.2543454Z","lastActionDateTimeUtc":"2021-06-02T04:46:22.3629066Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20178d1d-9e71-40e2-bb98-cb1ccb70a9c1","createdDateTimeUtc":"2021-06-02T04:46:07.0420119Z","lastActionDateTimeUtc":"2021-06-02T04:46:15.0765967Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9a7c02ee-6d14-4eee-bca9-6e91c4a95cf6","createdDateTimeUtc":"2021-06-02T04:43:27.4813776Z","lastActionDateTimeUtc":"2021-06-02T04:43:32.1068993Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2b978e8-55dd-47e0-8ae8-f798a2356ac1","createdDateTimeUtc":"2021-06-02T04:40:22.2625935Z","lastActionDateTimeUtc":"2021-06-02T04:40:26.667995Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0ae428ae-396f-44ff-83f6-5569df599fee","createdDateTimeUtc":"2021-06-02T04:39:28.7873649Z","lastActionDateTimeUtc":"2021-06-02T04:39:34.3563265Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bac0ec3e-1663-4ff8-8da1-cb8fcdc1bad2","createdDateTimeUtc":"2021-06-02T04:38:56.4321775Z","lastActionDateTimeUtc":"2021-06-02T04:39:01.2929419Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"84dd16b1-27af-43f2-b2cb-398c2fa33785","createdDateTimeUtc":"2021-06-02T04:38:24.3815392Z","lastActionDateTimeUtc":"2021-06-02T04:38:28.4730868Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ac910a18-987b-4f55-aa4f-a506d4458f93","createdDateTimeUtc":"2021-06-02T03:27:23.9155706Z","lastActionDateTimeUtc":"2021-06-02T03:27:27.313711Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fbbb0728-6da2-4a13-b289-6f77e898e28e","createdDateTimeUtc":"2021-06-02T03:26:21.8246092Z","lastActionDateTimeUtc":"2021-06-02T03:26:22.2696386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=255&$top=222&$maxpagesize=50"}' + headers: + apim-request-id: 179714cc-2404-41c6-849c-28545cefcfbc + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:19 GMT + etag: '"51433094413D28102910417B7C68D35250FAF9637812A96E0EA400DE4F1C1FB9"' + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 179714cc-2404-41c6-849c-28545cefcfbc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=205&$top=272&$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/batches?$skip=255&$top=222&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"8016fc60-cb87-4260-92c0-d583d5303390","createdDateTimeUtc":"2021-06-02T03:26:12.8854958Z","lastActionDateTimeUtc":"2021-06-02T03:26:15.422092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab682243-2d4c-48bc-ac95-0602b36b196e","createdDateTimeUtc":"2021-06-02T03:18:51.1278899Z","lastActionDateTimeUtc":"2021-06-02T03:19:03.9825347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6b93130-3931-40e4-b733-7ef1ff2d45ea","createdDateTimeUtc":"2021-06-02T03:18:23.0364489Z","lastActionDateTimeUtc":"2021-06-02T03:18:24.7799627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"094ea23e-22a0-44c5-bd31-ce6481fbb535","createdDateTimeUtc":"2021-06-02T03:17:52.3237208Z","lastActionDateTimeUtc":"2021-06-02T03:18:02.7718604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e46b4357-53ca-4b0f-91ec-c29846dbf2ae","createdDateTimeUtc":"2021-06-02T03:08:31.9159015Z","lastActionDateTimeUtc":"2021-06-02T03:08:34.2079019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43cdab19-2725-458d-8fbb-380e15890eed","createdDateTimeUtc":"2021-06-02T03:03:26.4853267Z","lastActionDateTimeUtc":"2021-06-02T03:03:28.645837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c069990-8bf5-4678-a3a5-ec0e777e27e0","createdDateTimeUtc":"2021-06-02T02:58:59.3885313Z","lastActionDateTimeUtc":"2021-06-02T02:59:04.5003929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c4fd79c-f9ed-4e4c-9f69-906891dac172","createdDateTimeUtc":"2021-06-02T02:56:58.0869299Z","lastActionDateTimeUtc":"2021-06-02T02:56:59.4532196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0eaea775-90c6-49e5-a76c-8258b0c85967","createdDateTimeUtc":"2021-06-02T02:52:29.9774402Z","lastActionDateTimeUtc":"2021-06-02T02:52:32.7124374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"149338d9-ce7d-4519-8a46-eba798dd572b","createdDateTimeUtc":"2021-06-02T02:48:29.7271225Z","lastActionDateTimeUtc":"2021-06-02T02:48:32.3740999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94177151-834b-4f2c-a3db-64e2558cb230","createdDateTimeUtc":"2021-06-02T02:44:24.3036147Z","lastActionDateTimeUtc":"2021-06-02T02:44:32.1632645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7564ec8b-24bf-4e85-8174-dcdcc18149b1","createdDateTimeUtc":"2021-06-02T02:43:15.1356412Z","lastActionDateTimeUtc":"2021-06-02T02:43:18.617179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65987f7a-10f4-4b98-b66f-2a3f6dee930b","createdDateTimeUtc":"2021-06-02T02:29:56.8417136Z","lastActionDateTimeUtc":"2021-06-02T02:29:57.5909182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e537860f-9148-49bb-8f2a-7af006aae3a9","createdDateTimeUtc":"2021-06-02T02:27:13.4464757Z","lastActionDateTimeUtc":"2021-06-02T02:27:16.025347Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf224883-4706-403e-97a0-82f8f5c1408c","createdDateTimeUtc":"2021-06-02T01:59:35.9421922Z","lastActionDateTimeUtc":"2021-06-02T01:59:40.5034737Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"786995f6-72bf-488e-a129-39d38b8b9b92","createdDateTimeUtc":"2021-06-02T01:56:13.9583233Z","lastActionDateTimeUtc":"2021-06-02T01:56:18.6413044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af3f8d10-c62a-4157-bab4-789535230cb5","createdDateTimeUtc":"2021-06-02T01:53:40.3275868Z","lastActionDateTimeUtc":"2021-06-02T01:53:43.3907237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7dd74d8-ccec-493b-9a14-82546fa45e37","createdDateTimeUtc":"2021-06-02T01:42:41.0007785Z","lastActionDateTimeUtc":"2021-06-02T01:42:47.5923677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8aed115d-c84f-48f7-8319-031f81fa872a","createdDateTimeUtc":"2021-06-02T01:41:47.0036198Z","lastActionDateTimeUtc":"2021-06-02T01:41:54.3818126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0fe682-2071-43df-910a-cc6af7b0afcc","createdDateTimeUtc":"2021-06-02T01:35:15.5933813Z","lastActionDateTimeUtc":"2021-06-02T01:35:21.8504373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09e7b70-28ee-4c75-9a7a-bc8f13d2c079","createdDateTimeUtc":"2021-06-02T01:24:25.0142586Z","lastActionDateTimeUtc":"2021-06-02T01:24:28.073142Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c09abd6b-ea90-46d2-91fc-bd1b3d89abce","createdDateTimeUtc":"2021-06-02T01:22:30.5968227Z","lastActionDateTimeUtc":"2021-06-02T01:22:32.769938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d82f9932-e09a-40ca-8f38-a9023800fa42","createdDateTimeUtc":"2021-06-02T01:20:13.5649713Z","lastActionDateTimeUtc":"2021-06-02T01:20:17.5662147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c86e49db-ca71-4b1c-8934-d5f778703934","createdDateTimeUtc":"2021-06-02T01:19:11.1733266Z","lastActionDateTimeUtc":"2021-06-02T01:19:12.3091555Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6bd58619-798a-4c3b-be81-ea2db230aeec","createdDateTimeUtc":"2021-06-02T01:17:13.189036Z","lastActionDateTimeUtc":"2021-06-02T01:17:17.3363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c3b7b2d4-b91e-4ab4-b262-f4b5d21fa25f","createdDateTimeUtc":"2021-06-02T00:55:59.8382441Z","lastActionDateTimeUtc":"2021-06-02T00:56:01.0346957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42a46938-5713-4b02-a423-10690e61d4c9","createdDateTimeUtc":"2021-06-02T00:42:12.2819434Z","lastActionDateTimeUtc":"2021-06-02T00:42:14.4949552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"726c512a-ce90-40f2-a859-5981201d960d","createdDateTimeUtc":"2021-06-02T00:10:02.81834Z","lastActionDateTimeUtc":"2021-06-02T00:10:11.4411977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abee4687-0f5d-4605-969a-423edeb6090d","createdDateTimeUtc":"2021-06-02T00:09:22.5690387Z","lastActionDateTimeUtc":"2021-06-02T00:09:27.4894413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11b66171-2054-45c1-b33a-d3459a8b2501","createdDateTimeUtc":"2021-06-01T23:37:20.6429925Z","lastActionDateTimeUtc":"2021-06-01T23:37:24.2648086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89dbe2ea-4491-4e84-9dbd-c11b8bc5a918","createdDateTimeUtc":"2021-06-01T23:36:36.9917563Z","lastActionDateTimeUtc":"2021-06-01T23:36:39.1495956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e0a9563-9b85-4142-b81c-5a360d2be1a7","createdDateTimeUtc":"2021-06-01T23:35:40.5300723Z","lastActionDateTimeUtc":"2021-06-01T23:35:44.0684205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4cd3c68f-775a-495f-bcf0-a87866e14bec","createdDateTimeUtc":"2021-06-01T23:34:57.206104Z","lastActionDateTimeUtc":"2021-06-01T23:35:04.8813298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc16b2ad-e836-4724-bb96-7a2328587acb","createdDateTimeUtc":"2021-06-01T23:33:02.3205635Z","lastActionDateTimeUtc":"2021-06-01T23:33:09.2189882Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0da2ad51-9c4b-431f-9597-8a12b7ab66b3","createdDateTimeUtc":"2021-06-01T21:58:14.9128329Z","lastActionDateTimeUtc":"2021-06-01T21:58:21.6255218Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ffcb5239-a84d-454c-a7e8-98c623761c28","createdDateTimeUtc":"2021-06-01T21:50:34.2199174Z","lastActionDateTimeUtc":"2021-06-01T21:50:36.0532702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"947543d7-d6ba-477b-8f17-5b8d8af2af2e","createdDateTimeUtc":"2021-06-01T21:46:34.7039883Z","lastActionDateTimeUtc":"2021-06-01T21:46:40.5174634Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04adbd54-7e31-4471-8cdf-b1df72d42978","createdDateTimeUtc":"2021-06-01T21:44:53.638242Z","lastActionDateTimeUtc":"2021-06-01T21:44:57.2051558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e774bdb0-7fe3-4a91-af10-2b4fcf793abf","createdDateTimeUtc":"2021-06-01T21:44:11.2622776Z","lastActionDateTimeUtc":"2021-06-01T21:44:12.2797019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a6fcdfc-e499-4f14-80d2-da3a79f8dbc5","createdDateTimeUtc":"2021-06-01T21:37:50.0149617Z","lastActionDateTimeUtc":"2021-06-01T21:37:57.0012056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41fb4d47-bca3-402f-8483-3c451f1000a7","createdDateTimeUtc":"2021-06-01T21:30:53.2168951Z","lastActionDateTimeUtc":"2021-06-01T21:30:54.7536036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"362dd174-8012-4872-bd99-d0594416ec08","createdDateTimeUtc":"2021-06-01T21:24:45.7717199Z","lastActionDateTimeUtc":"2021-06-01T21:24:49.4106259Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6605b97e-b5c1-40de-b266-0ab4ae968471","createdDateTimeUtc":"2021-06-01T20:28:05.7703651Z","lastActionDateTimeUtc":"2021-06-01T20:28:11.6999883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"89c12078-5be0-4594-b13f-19710838bff4","createdDateTimeUtc":"2021-06-01T20:19:43.5815127Z","lastActionDateTimeUtc":"2021-06-01T20:19:49.8941433Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fb8af3f-7566-4154-a1b9-df5bd485a995","createdDateTimeUtc":"2021-06-01T20:18:35.3250286Z","lastActionDateTimeUtc":"2021-06-01T20:18:36.0191828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76b05c4-ab87-4b9d-8077-44025b849be1","createdDateTimeUtc":"2021-06-01T20:17:39.4118928Z","lastActionDateTimeUtc":"2021-06-01T20:17:44.8513235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90e8bf87-00a5-40d0-8ce6-8d5d9f1baeec","createdDateTimeUtc":"2021-06-01T20:16:54.3798544Z","lastActionDateTimeUtc":"2021-06-01T20:17:01.0318443Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32733a6c-14f5-49d9-956b-0c0add6f681f","createdDateTimeUtc":"2021-06-01T20:10:22.290067Z","lastActionDateTimeUtc":"2021-06-01T20:10:29.380356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"45e0ce0e-832f-4481-828c-86e34455e671","createdDateTimeUtc":"2021-06-01T19:41:01.4050404Z","lastActionDateTimeUtc":"2021-06-01T19:41:02.8909085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ef33ebb-9a0c-4e85-ab37-cf1c04f37cf4","createdDateTimeUtc":"2021-06-01T19:37:48.3249669Z","lastActionDateTimeUtc":"2021-06-01T19:37:57.6870429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=305&$top=172&$maxpagesize=50"}' + headers: + apim-request-id: 09c15483-c4e4-41af-bf9d-25a7ffd15120 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:19 GMT + etag: '"7947EEECDBA7D8D354544BB79DA03AE0E419995329005567FE7BB338DD2F7764"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 09c15483-c4e4-41af-bf9d-25a7ffd15120 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=255&$top=222&$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/batches?$skip=305&$top=172&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"7000d51a-ab8d-4c6e-ac5b-ad8630bc1dc6","createdDateTimeUtc":"2021-06-01T19:36:51.8653412Z","lastActionDateTimeUtc":"2021-06-01T19:36:52.5620599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3bf17f0-9f36-4535-988e-35b2b3776005","createdDateTimeUtc":"2021-06-01T19:35:58.7087142Z","lastActionDateTimeUtc":"2021-06-01T19:36:07.6010736Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5953c812-ec59-462e-9ade-3d83d2793938","createdDateTimeUtc":"2021-06-01T19:25:57.8737038Z","lastActionDateTimeUtc":"2021-06-01T19:26:02.7122854Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2256657d-9b7a-4aed-a314-3fdb17f196bf","createdDateTimeUtc":"2021-06-01T19:22:31.9309302Z","lastActionDateTimeUtc":"2021-06-01T19:22:41.5434251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9d9ca67-576b-4386-8eda-1d16e0915d34","createdDateTimeUtc":"2021-06-01T19:20:42.4227501Z","lastActionDateTimeUtc":"2021-06-01T19:20:46.3704836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4db40217-3341-419f-bb7c-7a89add9a6bb","createdDateTimeUtc":"2021-06-01T19:18:53.051763Z","lastActionDateTimeUtc":"2021-06-01T19:19:01.4186592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12bd78d-31ef-4272-8796-862a821b1581","createdDateTimeUtc":"2021-06-01T19:13:35.3457414Z","lastActionDateTimeUtc":"2021-06-01T19:13:35.9086515Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b0f73ad-8757-44b8-afcd-89e4fe6d6dcf","createdDateTimeUtc":"2021-06-01T19:13:08.4806471Z","lastActionDateTimeUtc":"2021-06-01T19:13:11.1588054Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b86eb5c3-3b10-4299-b8b4-b3a2c341d02a","createdDateTimeUtc":"2021-05-24T21:24:36.8461907Z","lastActionDateTimeUtc":"2021-05-24T21:24:38.4844698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3e9a0e71-792b-4dc1-9f95-8a0878e2db08","createdDateTimeUtc":"2021-05-24T21:23:45.5209501Z","lastActionDateTimeUtc":"2021-05-24T21:23:53.570303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7397425-f33e-4836-8af6-791082986a3c","createdDateTimeUtc":"2021-05-24T21:19:26.2605266Z","lastActionDateTimeUtc":"2021-05-24T21:19:28.5039742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4dc48b25-4940-4f18-b580-bb265556f302","createdDateTimeUtc":"2021-05-21T18:07:01.0709514Z","lastActionDateTimeUtc":"2021-05-21T18:07:03.1200429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8794b5a1-d299-4ec7-8750-d415175f72eb","createdDateTimeUtc":"2021-05-21T18:07:00.314772Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.7415197Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa8934ef-f053-43f8-9c5c-81c9ebf7a168","createdDateTimeUtc":"2021-05-21T18:06:59.5828282Z","lastActionDateTimeUtc":"2021-05-21T18:07:02.720854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f5102-324f-4c56-ad91-6c391f25c76a","createdDateTimeUtc":"2021-05-21T18:03:32.6065778Z","lastActionDateTimeUtc":"2021-05-21T18:03:37.2654228Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a48dee26-d8fb-46a2-b29b-21300e7a25d6","createdDateTimeUtc":"2021-05-21T18:03:31.807544Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9069407Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f3a0c95-0e8c-462d-9de8-082a64c692aa","createdDateTimeUtc":"2021-05-21T18:03:30.9587779Z","lastActionDateTimeUtc":"2021-05-21T18:03:36.9072626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"657f4bf7-e05b-43dc-8d1c-978ffbbbc1ac","createdDateTimeUtc":"2021-05-21T18:02:24.9556294Z","lastActionDateTimeUtc":"2021-05-21T18:02:31.0774191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"901d9a24-53f8-43a4-9e5e-9e47173aceba","createdDateTimeUtc":"2021-05-21T18:02:24.089254Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3220601Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3263ce9a-75a2-4706-80af-480248064243","createdDateTimeUtc":"2021-05-21T18:02:23.2544473Z","lastActionDateTimeUtc":"2021-05-21T18:02:32.3082559Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2dbc2fd9-0ea9-490b-b86d-ef2dbb4ce7c5","createdDateTimeUtc":"2021-05-21T17:59:12.3239636Z","lastActionDateTimeUtc":"2021-05-21T17:59:15.2114584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11c27288-6c07-48f9-91f4-58a505e9ad45","createdDateTimeUtc":"2021-05-21T17:59:11.4289882Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.8572891Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b16d8026-f2ef-4a9f-a242-21656860631c","createdDateTimeUtc":"2021-05-21T17:59:10.5273326Z","lastActionDateTimeUtc":"2021-05-21T17:59:14.9389198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f47d9aa-9a41-4c04-875a-e1d2c0870909","createdDateTimeUtc":"2021-05-21T17:56:34.7986514Z","lastActionDateTimeUtc":"2021-05-21T17:56:38.9271216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c50ac39d-c15e-4e73-b13b-13914ab69251","createdDateTimeUtc":"2021-05-21T17:51:22.6569928Z","lastActionDateTimeUtc":"2021-05-21T17:51:23.4782807Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087feb36-bca3-475f-b6c5-46c619ad6ec8","createdDateTimeUtc":"2021-05-21T17:51:21.7008216Z","lastActionDateTimeUtc":"2021-05-21T17:51:22.4512726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6790d29e-a836-421f-a7e5-63de39238985","createdDateTimeUtc":"2021-05-21T17:51:20.7630581Z","lastActionDateTimeUtc":"2021-05-21T17:51:21.3791092Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c0d396b-e05b-47e3-b2e6-1537e89c34c0","createdDateTimeUtc":"2021-05-21T17:50:32.3756979Z","lastActionDateTimeUtc":"2021-05-21T17:50:35.1565669Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2f071b3-180e-4b3f-9711-bb7a0cc7c710","createdDateTimeUtc":"2021-05-21T17:50:31.647236Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8643156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"122ffb5e-076a-4ab7-8351-722371654741","createdDateTimeUtc":"2021-05-21T17:50:30.9409499Z","lastActionDateTimeUtc":"2021-05-21T17:50:34.8457582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2f8a035-8581-4fb8-8a84-2ed87c7af4be","createdDateTimeUtc":"2021-05-21T17:49:35.9552561Z","lastActionDateTimeUtc":"2021-05-21T17:49:39.2095267Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"892231a0-a74b-4f2a-b3d9-adc91ff571eb","createdDateTimeUtc":"2021-05-21T17:48:33.1622143Z","lastActionDateTimeUtc":"2021-05-21T17:48:36.1328922Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8aa39d4d-b6cc-4330-9c4a-cc81e44ea315","createdDateTimeUtc":"2021-05-21T17:02:56.8515213Z","lastActionDateTimeUtc":"2021-05-21T17:02:57.7457133Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5f48504-573a-4a44-983d-c052a3dea24a","createdDateTimeUtc":"2021-05-21T17:02:50.3045737Z","lastActionDateTimeUtc":"2021-05-21T17:02:51.7805054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7dbc9450-2f42-491b-8583-524fb282bbd3","createdDateTimeUtc":"2021-05-21T17:02:43.5052144Z","lastActionDateTimeUtc":"2021-05-21T17:02:44.740101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"333dcbe1-a4a0-4964-82f0-4068611c5116","createdDateTimeUtc":"2021-05-21T17:02:35.9410516Z","lastActionDateTimeUtc":"2021-05-21T17:02:37.6337099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"468d8d25-cb18-49f8-b787-7c988d207850","createdDateTimeUtc":"2021-05-21T17:02:30.431248Z","lastActionDateTimeUtc":"2021-05-21T17:02:32.6263482Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"01e7486b-918d-4551-bc00-67e69c62d3d0","createdDateTimeUtc":"2021-05-21T17:02:04.7255786Z","lastActionDateTimeUtc":"2021-05-21T17:02:07.5511807Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d7bb721-5857-4517-b4f4-2009424cf6dd","createdDateTimeUtc":"2021-05-21T17:02:02.3355443Z","lastActionDateTimeUtc":"2021-05-21T17:02:02.4450321Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6094cced-9ee9-4f52-95b1-4982bcc4236b","createdDateTimeUtc":"2021-05-21T17:01:59.0514389Z","lastActionDateTimeUtc":"2021-05-21T17:02:00.6658159Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff6caf01-398f-42d2-9c87-4319abd54be3","createdDateTimeUtc":"2021-05-21T17:01:56.8802289Z","lastActionDateTimeUtc":"2021-05-21T17:01:56.9793402Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","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/batches?$skip=355&$top=122&$maxpagesize=50"}' + headers: + apim-request-id: 4e520520-fd83-43ad-80fd-8a05ba353c99 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:44 GMT - etag: '"333D28E971879A8B2C08243203601C810BD9F54BC1D3939254A19626A8A5FE63"' + date: Wed, 02 Jun 2021 16:03:19 GMT + etag: '"351E5E730F3A11F68835B476A907758AC357F0DEE19E194051DDC2A9D6EA31DC"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b9e094f7-0e9a-4afa-ab17-efc8bb36a703 + x-requestid: 4e520520-fd83-43ad-80fd-8a05ba353c99 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=5 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=305&$top=172&$maxpagesize=50 - request: body: null headers: @@ -2699,71 +2864,29 @@ 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/batches?$skip=55&$top=66&$maxpagesize=50 - response: - body: - string: !!binary | - H4sIAAAAAAAEAM2b3Y8btxXF/5dFkCdzfD94+bFA0BbpYx8KJH1oiz6QHNJZxN41tLKRJsj/3kM5 - LdIiQYdAsBjD0EorzWrmp3sPzyGpH+4+lrcf+t3933+4e9jv7u+05JG4stMegvO7kKuBmpOSO8cY - 9zT2u1d37dLLte9/xM3XD+/6X64NxwoJOzIn/DWHe4v3ZluUKBztbzjmbXm+/qFdH54e/99hYfMx - BK86D3u+luuHZ7zuqw+t9b73+f7PH969K5d/3t3/cHd9upa3d/fy6m6Uh7d49p7m83jt8/Pt1w+P - f748vbncHuKpx6frX/v1q2u5XH96cSuPrb/996G3v/flN+VS2rVf5p038xnzP/746idIoVD1sZhj - SeS8dXPJt935qnsIUnQkW4FEliMnvwwpJEsxnRRStlCYlVyW5p0XGy7FaC5qCVQDbqwdh+Q3tWw5 - LVaSbZq991lOConZLKRAbuwizheNrsbhXUfnpZ0AyufjkHSzGFBIugbJb/iccCZ8UkhDSsqa2fVS - i/PNN1cr7S6nsufaWm4yjkOSLZlqzouVBEhBTDicFJJYaCPn5kq15Lx68GmoJKaSfdkL0PUVSOw5 - cFxjpBsLEeWzFlKDVLfO3RXopvO+RpeYyfU+umQqLaocZ8SQpECBFwtJJiT16ay6TYxhTD25FDwk - KQ7Gvbq7AkMAlcpB63FIPm4RlJLIEiSfN0pJ8V4nhcTSxJuRi+wzug0tl8coLkKzheIeG5cVSKwe - 0r3WbjgseQk+n7WSkvRRowanfqDdKhQ8Zaku+h52pY7+q8chhc3IR/BehRRRRmbxpJDQa6PtUOtC - IOWpovHyaK6F1sfu/Whdj0OyLRHF5NMapIAujQYPelJIsEPoOK2OFD3nfVLgQiUl7pKisg2lFUg0 - fVJcrCSEGTYf4llHtxhIC5U5pjVUkk0vOeAqaR8mIWgvYaHddAuZE69ZSe+3oHBJ4ayFFGpLPfji - 4KsHrGQw3GsMBd9bmNGX9uO6LYoIJpTWGInfRFPO/qx1tMuMEKkiuAmCGyGzlRyLC3XovpfEu0/H - GcFusxf91DXHIemWwdabPymkYUQiLK7tEcF/x9hWE66g2RDKIBXTQiHx5lM2zmuyPSGRF5/Omkng - IHsYLTmTikpiGKRUe3DBNPjYQpVxPJMIbRj9xfJyJeG9RPWsUwAaOlOHy4YidOdHTZAkQigZWrj0 - TFSPz5MAEmOMhLosQ2JYezmrJgVGGQ1YbWZv0O06rWSPLiP/VwvWq8XDkChu2eDZwxokSpsxSlD/ - u92+/M+1/BIk/mVItAaJfxUS/SyT7AHSjEwbEPWdD9UmHo+HYruVEpl5hZESKy86STDyGQdGPSej - NtiXMZJTNcg2EqYrCkUijMiK9O+jHXfbFDbYqsQxrzIS2E//P812GkYFGYRzhHvMqtMZoc2KilNR - 85V6p3JckMCIxAdbnG4DI85M/Gm+93yMLNcMtx0dRn+MbGbNpVJxk5o1aT3hEz7OyDbPSnFxug2M - KKUIo39ORlliJoz/jqNVaHbPrhQ0HNUkQ8ZO1R8d/fE/b9BeWKs1s020aSCf44qP/BVG/FsNbBJ/ - Prc9cHIopEiWYZECbDfEGg8VQT722vLRpaQwpyQzIX6lldm2MOdt1TjYSmh7SUYUU68xNRdrL853 - aa5yU8dCfu+jmfWjzRZuEdVSJFlptjCnSCTTtA0nhWRl2kjtTtuctq3TIVlWR8GnHQ6pFPKHIWlE - smWmtTrSvM0wImnFRb4kIy99x9nBRdYcnY/UXY37lCVNjWMQfL6HGUneUkwh0croD0iCkQ1wo50U - 0kxstSTYyNsUid8Jw3/0Lg5fmQpnHUfjPyClLcPq5MVuAyThKBzySfOIGe2xNoT+CqOE6xPI9gi4 - glJJ2540HJckQBJ0KUapNUhQe8EYqyuV9JKQCqqFmHdXb/EfYFwSDa51giHUGtGBxyHFLVBQWUq2 - P0HCp3Xa5TbmoH5P7GIzVFIndsVaczok5LKnPZWFSuLNJAiS/BIkxH8clnlpIuklNYml55EzElts - cEkDwl0wxLlhFPKwmI9HknDPtsEjLVcSzwUoOA46K6RUE9NM/aH7BE1K2dWEh3uNGHAa19KOzv+H - mf+RYSQtWgDKGwDBuK7Mtr3o6EZaMwdyMRaEW/HNlT1Ep0ibEpOWakdXt3G1DC8ZyHRNuEk29XHG - kpNCkribtDRcJ4OXHI1c2rW4Esm3qnEglxyEZPeWNrjmaGHFJ9kMfLOE43nN5F6H9sLwSRHxNrfg - cvLQcUP89zqXGI9u3bK5Uc0yGS0tk9htE6CPOdNZU8ledgR9FodhDJDSnCfBYIwrQH0xLBR+HIck - myEmh5UpAJvp9iZJp+22UEKEDinKJ8657W5zThJ11Ukaa+mxHE0lNleplRKHxULyt0KiGM46T5Lm - 0vuuzeVO8JJjCCSpznncNprGmhMvQIIAI+uB+hok3VRziGdttrKXQeZvUyRIboWqK603F3tPfa65 - jX50bLNbmI+UdGl1G4wI9Ufk9ayFJMadcq6u+2JzU1J3OXN1u+ecG6pil+Njm6aNss7tX0uQwFbn - JsB81oVbkoL4YbCSWmC6ZU9zC4B3c9+CKI/GK5Diphlhfskl3dhqztH8WZNbQe00zcPVOBduQyJX - rSskCRFspILQezTe4mrDFnyAZVhJbp/YavJxSZNedMutNOMxIEJpZ7gkRSjpw+MihFoK1Y/DyQ1X - axvNWdilLQA3thLnvxVNsl+GZL8VJFb72SpAa9yr785kWgCMbK5ygkZB0APNLwLkhVLyECUEt8VK - 8hvIhry0CvCykApLGBU2u2dynqwA0t7nUglTjqV3f3R9G5erGwTJS1pUbr9ZUlils0KiHirPlci5 - ict5DYDUYJagwNMcSBt83HCrbDSFe80mgZGEnGFDzwrJCoW2t+Zanh5AU3O1aHKjiqXb924O7wKw - OcOoaDZZ2gXwqUvF09oOtxel1MqeQoFqK8Uxv8DVXYX/dQW5rZSkir47TEngnRkBg9ZMgNiWxONd - z2QnGXbyH6/ufv/Yv7v+6eHxW5zQN9fr++f716+/vby/lOtD29rTm8eH68PH/twvHx9wAlv5/sOl - 4/fvXl8v5fH5bbk+XV5f8Sde13Jt37z+yBt9utuff/fZ87cP779gss8/uz7hTvj8s3flu/flTX9+ - +L5/YXT3478A2nvz0bs5AAA= - headers: - apim-request-id: 576b0522-271a-44d9-9c4b-4770872747c0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=355&$top=122&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"27bc3cef-65a2-4880-8b4c-c661c790ab22","createdDateTimeUtc":"2021-05-21T17:00:45.1061816Z","lastActionDateTimeUtc":"2021-05-21T17:00:47.3314853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"141ace45-78a7-4fc7-868a-f3da9f7ffeb0","createdDateTimeUtc":"2021-05-21T17:00:44.2561886Z","lastActionDateTimeUtc":"2021-05-21T17:00:45.3725568Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49bebbb3-4d0e-4b1a-bf75-11b9314b0fa6","createdDateTimeUtc":"2021-05-21T17:00:43.4748766Z","lastActionDateTimeUtc":"2021-05-21T17:00:44.3321339Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c2a25188-ebe9-4441-8350-a48dc480937a","createdDateTimeUtc":"2021-05-21T17:00:42.4864383Z","lastActionDateTimeUtc":"2021-05-21T17:00:43.4445958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81881aab-7d2f-462d-847d-9bc4b224963c","createdDateTimeUtc":"2021-05-21T17:00:41.5746998Z","lastActionDateTimeUtc":"2021-05-21T17:00:42.2446704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5fe4825-3467-4a4f-9af3-979c333c52d0","createdDateTimeUtc":"2021-05-21T17:00:40.7336414Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.281014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"977c07b8-6dd9-43b6-8778-825384ac5713","createdDateTimeUtc":"2021-05-21T17:00:39.6176116Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.0267533Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e611832-b018-4d6b-9c78-e56e1711ac30","createdDateTimeUtc":"2021-05-21T17:00:38.7835537Z","lastActionDateTimeUtc":"2021-05-21T17:00:41.2240863Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bc7cbfea-2a90-4abb-88c6-111601dd003f","createdDateTimeUtc":"2021-05-21T17:00:37.9858319Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9552257Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af7fcd78-2d53-4c46-b9da-3962729e97af","createdDateTimeUtc":"2021-05-21T17:00:36.8887353Z","lastActionDateTimeUtc":"2021-05-21T17:00:40.9188694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d9ba06f-faaa-4813-9ae4-52b0275d64d9","createdDateTimeUtc":"2021-05-21T17:00:30.5440343Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.8886905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00e3c6b6-5b1e-43fb-977d-0044a7fb0c95","createdDateTimeUtc":"2021-05-21T17:00:29.7324847Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.6986739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8fa5d40-42ed-4219-ae7e-29a7563327b6","createdDateTimeUtc":"2021-05-21T17:00:28.8569433Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.676259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e3eb0c0-8495-4314-b2bf-35db0019901b","createdDateTimeUtc":"2021-05-21T17:00:27.9316642Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5943916Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"749a96d8-8c66-4cd4-96d0-a2052583b90e","createdDateTimeUtc":"2021-05-21T17:00:26.986643Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.5533135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a70868e-5199-49fe-b631-b8e6807e257d","createdDateTimeUtc":"2021-05-21T17:00:25.2362576Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3891488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b9e35b5-9343-4414-805e-105f6e9a923a","createdDateTimeUtc":"2021-05-21T17:00:24.2665473Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.3778212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"260f82c2-cea6-4a22-8861-f44b2687ec0a","createdDateTimeUtc":"2021-05-21T17:00:23.5022465Z","lastActionDateTimeUtc":"2021-05-21T17:00:33.2848035Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37e95053-452a-40e1-81ce-8da108cd99a2","createdDateTimeUtc":"2021-05-21T17:00:04.8857639Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.3683314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fc90b8fc-adac-4044-823b-d7eab778cfb6","createdDateTimeUtc":"2021-05-21T17:00:03.8697809Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0305401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c911d37b-d17c-41d4-abf8-a57302ddc335","createdDateTimeUtc":"2021-05-21T17:00:03.1432755Z","lastActionDateTimeUtc":"2021-05-21T17:00:08.0444879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3829367c-c8ec-4bff-a0a6-f80291d327c9","createdDateTimeUtc":"2021-05-21T16:59:50.7758486Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.5018816Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0761235f-bdc9-4756-af32-b5dd6791005a","createdDateTimeUtc":"2021-05-21T16:59:49.8919585Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1804976Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6cc0cd1-c67f-44b6-ad3c-3ff45d8e5f3a","createdDateTimeUtc":"2021-05-21T16:59:49.1010712Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.1031506Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"49dfe15f-ebb3-4fbf-8225-3583fa55758c","createdDateTimeUtc":"2021-05-21T16:59:48.355789Z","lastActionDateTimeUtc":"2021-05-21T16:59:51.0383193Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c30ebc75-715c-4298-8c06-9ddd17db84c1","createdDateTimeUtc":"2021-05-21T16:59:47.6265847Z","lastActionDateTimeUtc":"2021-05-21T16:59:50.9214408Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62b3e388-14c2-4493-801a-f8aab1d90a34","createdDateTimeUtc":"2021-05-21T16:59:41.1610971Z","lastActionDateTimeUtc":"2021-05-21T16:59:43.1308194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6746fbfb-a00b-40b5-a752-86c183631360","createdDateTimeUtc":"2021-05-21T16:59:33.7954019Z","lastActionDateTimeUtc":"2021-05-21T16:59:36.0968642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8975d16-3977-4caa-9088-b4b3d7859385","createdDateTimeUtc":"2021-05-21T16:59:27.5574926Z","lastActionDateTimeUtc":"2021-05-21T16:59:29.0738558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d00b4dd6-7c09-422c-8bb1-e1de9a6f5e30","createdDateTimeUtc":"2021-05-21T16:59:23.6242429Z","lastActionDateTimeUtc":"2021-05-21T16:59:24.634825Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4db2703b-4ff1-4613-bda3-0816c4530902","createdDateTimeUtc":"2021-05-21T16:59:20.9458905Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.6431072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eb69e2c-ea40-410d-bca0-adcec29f9f45","createdDateTimeUtc":"2021-05-21T16:59:19.8510335Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.5971167Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0d5c283c-a6ad-4993-be53-438bd67f5019","createdDateTimeUtc":"2021-05-21T16:59:19.2016503Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8059958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"591bcb98-5c77-4d9f-aa0d-afcc517e645e","createdDateTimeUtc":"2021-05-21T16:59:18.4945553Z","lastActionDateTimeUtc":"2021-05-21T16:59:21.8275531Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fa46bf2e-dc50-4176-b512-902bfbdb69fc","createdDateTimeUtc":"2021-05-21T16:59:11.6493245Z","lastActionDateTimeUtc":"2021-05-21T16:59:14.5426222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6aacc86e-5e67-40a1-ab86-ceb7b04b9dc3","createdDateTimeUtc":"2021-05-21T16:59:04.3920727Z","lastActionDateTimeUtc":"2021-05-21T16:59:07.5179082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"470fd1ee-0390-4c8b-8a87-e9404cfd99ae","createdDateTimeUtc":"2021-05-21T16:58:57.332779Z","lastActionDateTimeUtc":"2021-05-21T16:59:00.4898043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d7a7868a-ba23-4689-914e-402302661573","createdDateTimeUtc":"2021-05-21T16:58:32.8778272Z","lastActionDateTimeUtc":"2021-05-21T16:58:35.9381897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a96d69de-2ffc-4484-908c-e8b0e9247f73","createdDateTimeUtc":"2021-05-21T16:58:25.2580815Z","lastActionDateTimeUtc":"2021-05-21T16:58:28.571531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"03c7ad56-18b1-4042-b83c-94f1febb8676","createdDateTimeUtc":"2021-05-21T16:58:18.0836883Z","lastActionDateTimeUtc":"2021-05-21T16:58:21.4866408Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21028d6-6965-43b7-b619-fd646d4f56dd","createdDateTimeUtc":"2021-05-21T16:58:14.3284287Z","lastActionDateTimeUtc":"2021-05-21T16:58:15.3405454Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ea64e94-7e6c-46f0-b164-9c9f40ae90aa","createdDateTimeUtc":"2021-05-21T16:58:11.5217072Z","lastActionDateTimeUtc":"2021-05-21T16:58:12.2945905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50d56a97-a5ef-4148-9f2c-2487e8a8290e","createdDateTimeUtc":"2021-05-21T16:58:08.7300233Z","lastActionDateTimeUtc":"2021-05-21T16:58:09.2381287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85ca518d-20f8-4a48-b122-72edfe949379","createdDateTimeUtc":"2021-05-21T16:58:05.903183Z","lastActionDateTimeUtc":"2021-05-21T16:58:06.4928845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a807fb3-6b8e-4b07-9c04-751bb15b068d","createdDateTimeUtc":"2021-05-21T16:58:04.7670203Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2369562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96a15abe-3b1f-4d92-9717-d805abb63d7e","createdDateTimeUtc":"2021-05-21T16:58:04.103853Z","lastActionDateTimeUtc":"2021-05-21T16:58:05.2684893Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"247d8975-208d-40b5-a61e-bf459ebd1821","createdDateTimeUtc":"2021-05-21T16:58:03.3891694Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.938532Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31320985-9f4c-4bf8-a66e-1a89016849c6","createdDateTimeUtc":"2021-05-21T16:58:02.2833699Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.9307548Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5301a198-71d7-49f7-b0f6-f086a47764a8","createdDateTimeUtc":"2021-05-21T16:58:01.5112752Z","lastActionDateTimeUtc":"2021-05-21T16:58:04.6325317Z","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/batches?$skip=405&$top=72&$maxpagesize=50"}' + headers: + apim-request-id: 5fe2a488-4853-4933-b372-4acf47a7cf4f cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:45 GMT - etag: '"ACF0630552C73D2FCFE91EC558F509AA136FDF27F8D913FA72025A108E062ECC"' + date: Wed, 02 Jun 2021 16:03:19 GMT + etag: '"C9C37BA12EA69AADD67F5F201AF54873FBC41D3A7A8C890D3956C842110CEACD"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 576b0522-271a-44d9-9c4b-4770872747c0 + x-requestid: 5fe2a488-4853-4933-b372-4acf47a7cf4f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=55&$top=66&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=355&$top=122&$maxpagesize=50 - request: body: null headers: @@ -2772,43 +2895,54 @@ 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/batches?$skip=105&$top=16&$maxpagesize=50 - response: - body: - string: !!binary | - H4sIAAAAAAAEAM2X22ojRxCG30XX7qFOXd2tu2XzAIHdXCQhF33cGHwAeRwIxu+eGmWT3YBNpsEY - gRCSekrq+fT/f1U/Hf7IN4/9cPz16XDdDsdD6uS1juoIKDmpWVyRrg4519IKJyhwuDrUU89rbz/Y - 0+fr2/7TWq3WStCBd4SfUY/eHyEtAVlD1F+s5iY/rB/qen1/9z9lCEtUicy4lT2seX18sOs+Pdba - e+tt+/Dx9jaf/jwcnw7r/ZpvDke8Oox8fWOrR9jW7dqHh/PH13c/nu6/nM5vbenufv25r5/WfFq/ - XlzzXe03/5Sev+/j7/mU69pP24sv2wqG5+err5BIPMpg71CZnKShrowKTj0HqkE1g+6EJEdPCwWP - PsUJSFbmF9tGAPkvpI//3stLkOLLkGAOUnwVEnzHKI8URyKnqYET34NLwMH1RFCYWo+x7mbEcQkp - KPgwxUh4QTYpCU0Iyb/MyL+ZkNh/ozQKm9JFnSqakmodLmcIjiO0AeRzDrybEvkFwWwb/RQlhoWj - 9xDSBKXwMqXwZpRi+kapCORMtm3stTmJCV0epqVUpUIdtscJLSEtlmLsFacooS4GiQKES9VSgaxj - NHYUijkuQHVRmziqBS1h/BDZTwn8oihojp2iBGHxJElZLpVSzpWhkXehcDfHeXIxW5RXUWtUFVM/ - 73IPJT76uCihB+Q5SrCgxZnOGA7hlQY3Gd6vYzJtf8NUJSXsm8eisGGC4mLJ3aXQK+HwNBLux2QJ - o0k8zwQTb51RJAZIM2LCV9SEbyYnge/kRJWSaCiWSmqmQ7uFVIlc7jFB8FU57OfEm3tCkDgzCvBR - ZGGyTcSZeeldTdfbSJrZ2GivTkZWo8TqqlbhlGNsLeymZG0OvACDTFGiuCQB67aXa7oyYoyo1QVL - UCeFwSXzn0u5A2qQlMN+TJbglNjGgTSFCXmLNMALziYbLbmokBvD4Ejj6kq3Mwr4ZoM02C0F2omJ - ztmEqnGq0VlZWOy/SoozcnpXzzXqHja7NWxonsPmCkJ2luLi1Wsfbe9Jjs7JFDSaLqYo2QAO9mNC - M2p6V0qpVhE0LWkp3iwH6nKKxYXhU8lc0pCymxKQeQfQ40x+03loSuop+cul1LMkSM5LslZXMrnE - VV0TGSGPkFj6Tkq4iUK2OTrNTANoDzsnR+uPfKmUyAZv68PibELCbSAwx7Gd6NgG70Hgfct74hvQ - hLQ5LgII6d4u93eZ4BIpBppqc+9C6bfnvwABNyULbRIAAA== - headers: - apim-request-id: d30fcdd9-bcaa-46de-af0f-6c3614ad46fe + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=405&$top=72&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6e7410c9-3876-4bbc-b6ef-f67d82d17e1b","createdDateTimeUtc":"2021-05-21T16:58:00.7321015Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.8224615Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad3d9a3f-f215-468e-806a-30acef584a94","createdDateTimeUtc":"2021-05-21T16:58:00.0285367Z","lastActionDateTimeUtc":"2021-05-21T16:58:01.5224583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"64b9d713-9c6e-458e-9b83-ac6ffa78eafb","createdDateTimeUtc":"2021-05-21T16:57:59.2416871Z","lastActionDateTimeUtc":"2021-05-21T16:58:00.2148666Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c36c2bc2-3619-4157-9e35-0a3a75d07f45","createdDateTimeUtc":"2021-05-21T16:57:57.706317Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.8883768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a1885abf-1fc7-4563-af6e-a827c1ed9212","createdDateTimeUtc":"2021-05-21T16:57:57.0544125Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.7480675Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f619d5d-ff7d-41d5-95ea-00977b441de7","createdDateTimeUtc":"2021-05-21T16:57:56.3959245Z","lastActionDateTimeUtc":"2021-05-21T16:57:58.5960417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a9f81b1-3e66-4d20-b60c-2a9e1777d8fd","createdDateTimeUtc":"2021-05-21T16:57:55.7272175Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4766433Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a0b47a5-1280-45e5-84cd-4b3d662a3f85","createdDateTimeUtc":"2021-05-21T16:57:55.0597184Z","lastActionDateTimeUtc":"2021-05-21T16:57:56.4685878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"956a1130-92c4-425f-8775-73a60b6a605c","createdDateTimeUtc":"2021-05-21T16:57:54.3595985Z","lastActionDateTimeUtc":"2021-05-21T16:57:55.3944492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11556860-fd22-4a37-b7f4-e4d28d060b49","createdDateTimeUtc":"2021-05-21T16:57:53.5761843Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1131151Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2a89391-eaba-4c4c-bb0d-98ad9bcc9c2f","createdDateTimeUtc":"2021-05-21T16:57:52.8533995Z","lastActionDateTimeUtc":"2021-05-21T16:57:54.1625216Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"256cf99c-ab58-434d-9cf4-10a94adaabae","createdDateTimeUtc":"2021-05-21T16:57:52.141617Z","lastActionDateTimeUtc":"2021-05-21T16:57:53.1200091Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c45ece1e-a587-44b7-8110-eefe290ac732","createdDateTimeUtc":"2021-05-21T16:57:51.3560615Z","lastActionDateTimeUtc":"2021-05-21T16:57:52.1203488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"014b3340-8642-47f1-86bd-ae66fd2963b2","createdDateTimeUtc":"2021-05-21T16:57:47.7356822Z","lastActionDateTimeUtc":"2021-05-21T16:57:49.0883963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12c24550-7149-4358-9ffa-7d06207d7c1a","createdDateTimeUtc":"2021-05-21T16:57:47.1345767Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.8426498Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82efb736-34f7-4b91-892b-74e6d30e4b7b","createdDateTimeUtc":"2021-05-21T16:57:46.5047714Z","lastActionDateTimeUtc":"2021-05-21T16:57:47.7963557Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b33fcd4d-a036-40b0-89fc-c6cefd44fce3","createdDateTimeUtc":"2021-05-21T16:57:45.8007848Z","lastActionDateTimeUtc":"2021-05-21T16:57:46.7375718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4d12c3b-0350-4483-a02b-81e287315f30","createdDateTimeUtc":"2021-05-21T16:57:45.0576174Z","lastActionDateTimeUtc":"2021-05-21T16:57:45.7154671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7603a0a7-81c6-4537-bf22-0df52663ea6b","createdDateTimeUtc":"2021-05-21T16:57:43.691813Z","lastActionDateTimeUtc":"2021-05-21T16:57:44.6325268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bc8e64a-b49f-4c65-b4c1-43dc6a9f80da","createdDateTimeUtc":"2021-05-21T16:57:23.462083Z","lastActionDateTimeUtc":"2021-05-21T16:57:24.2389941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d218438b-9224-4075-a97a-6bf3dda81d48","createdDateTimeUtc":"2021-05-21T16:57:22.8142371Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9462454Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f5002212-cd7d-4d91-b805-c5f209bf378a","createdDateTimeUtc":"2021-05-21T16:57:21.4895198Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.9042486Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"864e6fc8-52b4-41fa-8be6-653647c6b2fe","createdDateTimeUtc":"2021-05-21T16:57:20.7712591Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6472332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"36e10ef1-941e-4fb8-b400-ef3a1ae900bc","createdDateTimeUtc":"2021-05-21T16:57:20.1035994Z","lastActionDateTimeUtc":"2021-05-21T16:57:23.6129621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61fc8f49-1145-4cb1-89e7-99bcb565eb57","createdDateTimeUtc":"2021-05-21T16:57:07.9543564Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.5177136Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d61d4b7-6bae-46b5-99b4-6b25d5aa7111","createdDateTimeUtc":"2021-05-21T16:57:07.3013148Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.4930173Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf14aff8-335d-4396-a3e6-038937324753","createdDateTimeUtc":"2021-05-21T16:57:06.6638179Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.2761421Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a0b01977-b933-43d7-9a32-32354b0ee0ac","createdDateTimeUtc":"2021-05-21T16:57:06.0246595Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.1910185Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"59b903a7-d7d4-455c-8abc-88c5c2ce8276","createdDateTimeUtc":"2021-05-21T16:57:05.4130717Z","lastActionDateTimeUtc":"2021-05-21T16:57:08.0887453Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"92790e6f-175b-4ce9-aa96-0b82f2fd0b4e","createdDateTimeUtc":"2021-05-21T16:56:59.1772093Z","lastActionDateTimeUtc":"2021-05-21T16:57:00.3604974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2f974a7-7059-416b-9d5a-7030077ebc95","createdDateTimeUtc":"2021-05-21T16:56:51.9025282Z","lastActionDateTimeUtc":"2021-05-21T16:56:53.351658Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078eb78c-7bea-4e2c-b1c3-1204defc55e6","createdDateTimeUtc":"2021-05-21T16:56:44.6587027Z","lastActionDateTimeUtc":"2021-05-21T16:56:46.2909543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5ae10e3e-3c42-4bb1-8593-0648d565aa04","createdDateTimeUtc":"2021-05-21T16:56:37.461102Z","lastActionDateTimeUtc":"2021-05-21T16:56:39.2486281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42ed2819-1b97-470e-b7d9-aa38c1762954","createdDateTimeUtc":"2021-05-21T16:56:29.8786809Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.1946175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6fcba87-649f-44d0-9a74-7f4b10a193f8","createdDateTimeUtc":"2021-05-21T16:56:28.9614927Z","lastActionDateTimeUtc":"2021-05-21T16:56:32.2172169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"550d7bc1-bb77-4922-9df6-21ab03cd8366","createdDateTimeUtc":"2021-05-21T16:56:28.2648497Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9227935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a0a1011d-b2b4-4b03-8236-ce06593b7470","createdDateTimeUtc":"2021-05-21T16:56:27.6063294Z","lastActionDateTimeUtc":"2021-05-21T16:56:31.9255088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11634d81-7c57-4e01-a5cc-3f269ad8d8a6","createdDateTimeUtc":"2021-05-21T16:56:21.5262296Z","lastActionDateTimeUtc":"2021-05-21T16:56:23.5269186Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"12e9f99d-47c9-4f0e-a4bb-f5069f5790ac","createdDateTimeUtc":"2021-05-21T16:56:15.2523294Z","lastActionDateTimeUtc":"2021-05-21T16:56:16.5020406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b8106b5-6e48-4989-b8b5-db7946c1bacb","createdDateTimeUtc":"2021-05-21T16:56:07.8272802Z","lastActionDateTimeUtc":"2021-05-21T16:56:09.4060772Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e03b9160-77a3-424c-ad67-39102783ab52","createdDateTimeUtc":"2021-05-21T16:56:01.6560537Z","lastActionDateTimeUtc":"2021-05-21T16:56:02.3476049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27d52c8f-e052-4fc0-8d3a-a704cb37f7eb","createdDateTimeUtc":"2021-05-21T16:55:58.5437569Z","lastActionDateTimeUtc":"2021-05-21T16:55:59.4989781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4dbf3ea1-647b-49c6-9841-75ce84305769","createdDateTimeUtc":"2021-05-21T16:55:55.5905071Z","lastActionDateTimeUtc":"2021-05-21T16:55:56.4479903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dadfd012-d8ab-485c-8508-212c81d7b2c8","createdDateTimeUtc":"2021-05-21T16:55:52.570563Z","lastActionDateTimeUtc":"2021-05-21T16:55:53.4060749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a6724c3-9875-4ce5-a3e1-6e02c13ae7a4","createdDateTimeUtc":"2021-05-21T16:55:45.3081671Z","lastActionDateTimeUtc":"2021-05-21T16:55:46.4470764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81546d3c-9e04-4ff2-8db8-33cfc37b9814","createdDateTimeUtc":"2021-05-21T16:55:42.3295724Z","lastActionDateTimeUtc":"2021-05-21T16:55:43.339673Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adaf054a-4e2f-4a0b-acec-7ee8e6536fe2","createdDateTimeUtc":"2021-05-21T16:55:39.2708383Z","lastActionDateTimeUtc":"2021-05-21T16:55:40.3000434Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"251e099b-e4a5-4b9e-991b-d4199c295d2b","createdDateTimeUtc":"2021-05-21T16:55:38.0934358Z","lastActionDateTimeUtc":"2021-05-21T16:55:39.3120396Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02af2655-63ad-42d8-a974-3899231fc12b","createdDateTimeUtc":"2021-05-21T16:55:37.3972137Z","lastActionDateTimeUtc":"2021-05-21T16:55:38.3997548Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab9ec39f-b71e-4680-b5e3-33262f8a2b40","createdDateTimeUtc":"2021-05-21T16:55:36.6467696Z","lastActionDateTimeUtc":"2021-05-21T16:55:37.3384773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=455&$top=22&$maxpagesize=50"}' + headers: + apim-request-id: 79adeed1-baa4-4db4-8e60-683686d09d65 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:45 GMT - etag: '"88D11007506FA73D82D8E235BEE935BA185EC60601017F09ACC6F63A11EF6BBD"' + date: Wed, 02 Jun 2021 16:03:19 GMT + etag: '"FCDEB5CE4861C7D2D16983E727E31D294143CD6F1F972A9FDD4EE3335139EC5D"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d30fcdd9-bcaa-46de-af0f-6c3614ad46fe + x-requestid: 79adeed1-baa4-4db4-8e60-683686d09d65 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=405&$top=72&$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/batches?$skip=455&$top=22&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c2c51ffc-78d1-4939-bef4-0520c86b4fac","createdDateTimeUtc":"2021-05-21T16:55:35.0290991Z","lastActionDateTimeUtc":"2021-05-21T16:55:36.2777774Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fcc1eb4e-5275-48db-b18b-eaf0608d0690","createdDateTimeUtc":"2021-05-21T16:55:34.098026Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.9096958Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa126fb6-9e90-405a-b1de-7031097aee41","createdDateTimeUtc":"2021-05-21T16:55:33.1374288Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.583447Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0e6b1abc-2184-436a-bcf2-397af052cf18","createdDateTimeUtc":"2021-05-21T16:55:32.072134Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.2699308Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5a06cdcc-c9a5-438c-ba38-fb25828d0653","createdDateTimeUtc":"2021-05-21T16:55:31.3026279Z","lastActionDateTimeUtc":"2021-05-21T16:55:34.0240454Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cad86ad1-307f-425e-b339-a1d7aa833031","createdDateTimeUtc":"2021-05-21T16:55:23.3170707Z","lastActionDateTimeUtc":"2021-05-21T16:55:25.8243394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e256cfc-2029-4ca4-b4e6-13acbdb390b0","createdDateTimeUtc":"2021-05-21T16:55:09.7136786Z","lastActionDateTimeUtc":"2021-05-21T16:55:10.8648331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24514f35-1632-49f6-bfc0-65372c766a06","createdDateTimeUtc":"2021-05-21T16:54:52.2751598Z","lastActionDateTimeUtc":"2021-05-21T16:54:55.2457041Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2af98f92-69d0-45e7-9037-e920b32de88c","createdDateTimeUtc":"2021-05-21T16:54:38.7976057Z","lastActionDateTimeUtc":"2021-05-21T16:54:43.1386442Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb364846-6612-4ccf-aa07-380df025aa73","createdDateTimeUtc":"2021-05-21T16:54:25.1002985Z","lastActionDateTimeUtc":"2021-05-21T16:54:30.3855079Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"b40aa221-1ecd-4891-af37-9c4c0cfded8c","createdDateTimeUtc":"2021-05-21T16:54:12.3903561Z","lastActionDateTimeUtc":"2021-05-21T16:54:16.8552707Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b0a6ffd3-27b0-470c-86d4-2cb12755f44c","createdDateTimeUtc":"2021-05-21T16:54:05.6141037Z","lastActionDateTimeUtc":"2021-05-21T16:54:07.5249634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aac30d25-7b3e-4c52-8a35-c46678c19eed","createdDateTimeUtc":"2021-05-21T16:53:58.6215013Z","lastActionDateTimeUtc":"2021-05-21T16:54:00.197669Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c4991e37-9843-4c0b-8bae-97ec21f52f91","createdDateTimeUtc":"2021-05-21T16:53:50.3694535Z","lastActionDateTimeUtc":"2021-05-21T16:53:52.4487094Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"2c29467b-4860-4121-9c22-ae89075c6371","createdDateTimeUtc":"2021-05-21T16:53:37.5277488Z","lastActionDateTimeUtc":"2021-05-21T16:53:44.3246781Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edf96a31-96ec-4fa6-9c36-c6c439a88dd7","createdDateTimeUtc":"2021-05-21T16:53:25.0540304Z","lastActionDateTimeUtc":"2021-05-21T16:53:28.940648Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bf88816c-7963-4b30-9984-9ae016749a77","createdDateTimeUtc":"2021-05-21T16:53:05.2930299Z","lastActionDateTimeUtc":"2021-05-21T16:53:13.621019Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2af3b642-ff84-4d3c-bee6-05d751020272","createdDateTimeUtc":"2021-05-21T16:52:50.3166837Z","lastActionDateTimeUtc":"2021-05-21T16:52:57.8889618Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d2e506ec-d1d1-4f1d-b10a-bae45656efd0","createdDateTimeUtc":"2021-05-21T16:52:37.5768101Z","lastActionDateTimeUtc":"2021-05-21T16:52:43.0456429Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cc44142-6bb5-4b06-a98b-7f59ba3b9f4b","createdDateTimeUtc":"2021-05-21T16:52:02.6201518Z","lastActionDateTimeUtc":"2021-05-21T16:52:07.5965295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9cea4909-549b-4ba2-93c6-d44f7af7934e","createdDateTimeUtc":"2021-05-21T16:51:43.4270795Z","lastActionDateTimeUtc":"2021-05-21T16:51:51.2785273Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"227b2464-c211-486d-b3cf-344cf2055da7","createdDateTimeUtc":"2021-05-21T01:02:37.8004264Z","lastActionDateTimeUtc":"2021-05-21T01:02:41.8287248Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}]}' + headers: + apim-request-id: 791acc8e-8da5-4b94-bb35-21c57fc77db6 + cache-control: public,max-age=1 + content-type: application/json; charset=utf-8 + date: Wed, 02 Jun 2021 16:03:19 GMT + etag: '"C29C7AEE51FC8EFF77D4B8172E314FD5128555A8ED2DA804BC8E616128CF1036"' + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 791acc8e-8da5-4b94-bb35-21c57fc77db6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches?$skip=105&$top=16&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches?$skip=455&$top=22&$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 be6b10686013..dbd4b17a1974 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 @@ -17,7 +17,7 @@ interactions: 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: - - 3bb730b2-5175-4c08-a6bc-def02cf41be4 + - ad5b35ea-5fc7-4d76-9a76-de8ea3cee7f5 cache-control: - public,max-age=1 content-length: @@ -25,12 +25,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:46 GMT + - Wed, 02 Jun 2021 06:34:30 GMT etag: - '"44A88B37BE223B6C068718250B179D652514ABB810E8DD9DCD271B2759493859"' set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -42,7 +42,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3bb730b2-5175-4c08-a6bc-def02cf41be4 + - ad5b35ea-5fc7-4d76-9a76-de8ea3cee7f5 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 83d9f72bd7ae..1adb037dda5a 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 @@ -17,7 +17,7 @@ interactions: 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: - - d07dca62-7c2e-4f16-a716-a58d20ec9b21 + - efa9abeb-7e0f-4185-9ee2-581e4460b740 cache-control: - public,max-age=1 content-length: @@ -25,12 +25,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:46 GMT + - Wed, 02 Jun 2021 06:34:32 GMT etag: - '"BB09005FA0DB45CD46802EE70709AA319365D435A020BE2897C9B902157EAD55"' set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -42,7 +42,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d07dca62-7c2e-4f16-a716-a58d20ec9b21 + - efa9abeb-7e0f-4185-9ee2-581e4460b740 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 d879d54530fd..f2ca174b089e 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 @@ -10,33 +10,22 @@ interactions: uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/documents/formats response: body: - string: !!binary | - H4sIAAAAAAAEAK1VUU/CMBD+L30VhvjIq0I0kUiEKInhoa43aOzWpi1jhvDfvW4MMaxbNb5s2e7u - +77e3b7tSU7FFsjobU8SqVNqyYjMBOXZAgpLeiThAsaFhcxwmRnMI5HFwKpHYpnha7v4VFC+t1gw - UK7URXPQdcXq0DsDf1KQLVPxKjVrhmcyLprwqVKCx9Ri4iDPWCQRqEhFBWz6Mkl4DFi8TbEq2iG+ - 0jIGY3i2TkVUR0LEzTQYTC25mkUqZf9BpDrjQYnnjyEy51hAmdkAeCZVCPMPKs03DYqs6FrVba2Q - 8mNKuZhi++kamtWlZh0iLkVBFWIr6z2KmyBJM9cGoxhxd+/uljltFDOpLX0XcHfszKQKNC8IS7oO - d0zx0i0fHyYT32A70QvBk+SquDgSGUbXCDqMhuX1hvwkXcxfPF+9yV0DsQHeBmKsb0BRTS2wfmks - pvWEtz6yGMl8LMeYF/SZxxtnXm3T0bazf8cUL40zsHoRvEbWRZIa51MdS7cDrSTPbJArBX5R6oTa - Sj4uYgiymUBacHid1la31f8LkizooJIabkp3O5mZW6FgAd0dl0z9UcivzL4W1DkKyYJG0aDnzOUv - 5KwOX9wiVlsoCAAA + 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: - age: '0' - apim-request-id: 16b598c7-0942-43ed-bf3b-acf497963837 + apim-request-id: 9325e8aa-bcd5-45fd-8f82-e6c94854d63b cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:47 GMT + date: Wed, 02 Jun 2021 06:34:37 GMT etag: '"44A88B37BE223B6C068718250B179D652514ABB810E8DD9DCD271B2759493859"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3bb730b2-5175-4c08-a6bc-def02cf41be4 + x-requestid: 9325e8aa-bcd5-45fd-8f82-e6c94854d63b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/documents/formats + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/documents/formats version: 1 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 ca6ced3ef1bb..a4d9cceb2fac 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 @@ -10,18 +10,12 @@ interactions: uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/glossaries/formats response: body: - string: !!binary | - H4sIAAAAAAAEAHWPQQuDMAyF/0uu07p69DomDHabyGB46DQFoWqxUTrE/77YXcZwl0Dee/l4WWBW - ZkLIHgvoYewUQQb36yXPIQLdGjx7wt61Q+84A8IbDVUE9dCzTMXLYtCVtaatFXEu8abV+uA7swUb - 1GoyVOK4MZgtRcrk+bOHWymOrEghw0yhWqOvLsWt3G9CbmZDkHruFSL0lLAXO7RqVIRNHB51P/jT - P3zN+H/c4K3V+gaiRoFIPQEAAA== + 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: - age: '0' - apim-request-id: 9208c50c-f298-416d-a017-9b406741367e + apim-request-id: f7978c6b-b57f-467e-aec2-d9cfddcd9d9a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:00:47 GMT + date: Wed, 02 Jun 2021 06:34:37 GMT etag: '"BB09005FA0DB45CD46802EE70709AA319365D435A020BE2897C9B902157EAD55"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload @@ -29,9 +23,9 @@ interactions: vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d07dca62-7c2e-4f16-a716-a58d20ec9b21 + x-requestid: f7978c6b-b57f-467e-aec2-d9cfddcd9d9a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/glossaries/formats + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/glossaries/formats version: 1 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 03dd0bb43fa8..f45ccacd28f9 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:48 GMT + - Wed, 02 Jun 2021 06:41:05 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetab585b48-3574-4b11-978c-43148cd37c86?restype=container + uri: https://redacted.blob.core.windows.net/targetf4d44dcf-444d-44d6-8d82-98d53ced5e1e?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:48 GMT + - Wed, 02 Jun 2021 06:41:05 GMT etag: - - '"0x8D91C79FB6F8D09"' + - '"0x8D92591659DF970"' last-modified: - - Fri, 21 May 2021 17:00:48 GMT + - Wed, 02 Jun 2021 06:41:05 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/targetab585b48-3574-4b11-978c-43148cd37c86?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf4d44dcf-444d-44d6-8d82-98d53ced5e1e?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -49,7 +49,7 @@ interactions: Connection: - keep-alive Content-Length: - - '318' + - '316' Content-Type: - application/json User-Agent: @@ -61,79 +61,32 @@ interactions: string: '' headers: apim-request-id: - - 38871211-1be0-4fe7-8c51-f24824340ddf + - 7ec14083-988d-43c7-b7d3-f5835ac84cb1 content-length: - '0' date: - - Fri, 21 May 2021 17:00:48 GMT + - Wed, 02 Jun 2021 06:41:05 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f7a6b98f-e4e6-436e-8bd4-732d84c5c025 - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 38871211-1be0-4fe7-8c51-f24824340ddf - 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/batches/f7a6b98f-e4e6-436e-8bd4-732d84c5c025 - response: - body: - string: '{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.8105269Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 05b0fd9a-b388-491c-95db-72e0561e7d21 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:00:48 GMT - etag: - - '"F467B9B696E5B7E00796DF67DBB109267ACE77AD5365B8B8E75D2CD3CF1F62EF"' + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6c345e3b-2a71-4786-a3a9-c1703081324f set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 05b0fd9a-b388-491c-95db-72e0561e7d21 + - 7ec14083-988d-43c7-b7d3-f5835ac84cb1 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -141,15 +94,15 @@ 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/batches/f7a6b98f-e4e6-436e-8bd4-732d84c5c025 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6c345e3b-2a71-4786-a3a9-c1703081324f response: body: - string: '{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"id":"6c345e3b-2a71-4786-a3a9-c1703081324f","createdDateTimeUtc":"2021-06-02T06:41:05.9240834Z","lastActionDateTimeUtc":"2021-06-02T06:41:06.0023015Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"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: - - 0046cda0-b71d-41bd-980a-4405478e4e58 + - aedce6a4-b2b4-4658-8fef-d862b09bf43f cache-control: - public,max-age=1 content-length: @@ -157,9 +110,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:48 GMT + - Wed, 02 Jun 2021 06:41:10 GMT etag: - - '"D6055F46DADA011C35D8F342E0D38832E838A41618C5740F2FDAE71EAA440177"' + - '"50D5FA7CD0AD3182CCACD3524C0277924CB50FF7FE7AFED31E7D37237BC7A97C"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -174,56 +127,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0046cda0-b71d-41bd-980a-4405478e4e58 - 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/batches/f7a6b98f-e4e6-436e-8bd4-732d84c5c025 - response: - body: - string: '{"id":"f7a6b98f-e4e6-436e-8bd4-732d84c5c025","createdDateTimeUtc":"2021-05-21T17:00:48.8105265Z","lastActionDateTimeUtc":"2021-05-21T17:00:48.9406231Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot - access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"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: - - f8595401-5478-4ea5-b0dc-78ca69073d35 - cache-control: - - public,max-age=1 - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:00:49 GMT - etag: - - '"D6055F46DADA011C35D8F342E0D38832E838A41618C5740F2FDAE71EAA440177"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - f8595401-5478-4ea5-b0dc-78ca69073d35 + - aedce6a4-b2b4-4658-8fef-d862b09bf43f 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 83608efee111..d100a39a7868 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:50 GMT + - Wed, 02 Jun 2021 07:02:42 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd6358db8-1c6b-4bf7-b472-acd3f7472d1f?restype=container + uri: https://redacted.blob.core.windows.net/srcdf416b05-6dc9-4082-abe5-eb606774efdd?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:49 GMT + - Wed, 02 Jun 2021 07:02:42 GMT etag: - - '"0x8D91C79FCB19880"' + - '"0x8D925946AC6F8E9"' last-modified: - - Fri, 21 May 2021 17:00:50 GMT + - Wed, 02 Jun 2021 07:02:42 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: - - Fri, 21 May 2021 17:00:50 GMT + - Wed, 02 Jun 2021 07:02:42 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcd6358db8-1c6b-4bf7-b472-acd3f7472d1f/d051439c-db86-49a5-be76-4cdf7cb9327c.txt + uri: https://redacted.blob.core.windows.net/srcdf416b05-6dc9-4082-abe5-eb606774efdd/5989239b-a0bc-4f05-a12a-b461af735d1b.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - 1B2M2Y8AsgTpgAmY7PhCfg== date: - - Fri, 21 May 2021 17:00:49 GMT + - Wed, 02 Jun 2021 07:02:42 GMT etag: - - '"0x8D91C79FCBD0148"' + - '"0x8D925946ACF3C6B"' last-modified: - - Fri, 21 May 2021 17:00:50 GMT + - Wed, 02 Jun 2021 07:02:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:50 GMT + - Wed, 02 Jun 2021 07:02:42 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target96213714-533c-41d3-8b8f-5198b2a3b0f6?restype=container + uri: https://redacted.blob.core.windows.net/targetdb7fbf42-e0b4-4631-bb13-f934337437a8?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:50 GMT + - Wed, 02 Jun 2021 07:02:42 GMT etag: - - '"0x8D91C79FCEB6344"' + - '"0x8D925946AF0B2D7"' last-modified: - - Fri, 21 May 2021 17:00:50 GMT + - Wed, 02 Jun 2021 07:02:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd6358db8-1c6b-4bf7-b472-acd3f7472d1f?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target96213714-533c-41d3-8b8f-5198b2a3b0f6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdf416b05-6dc9-4082-abe5-eb606774efdd?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetdb7fbf42-e0b4-4631-bb13-f934337437a8?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -137,7 +137,7 @@ interactions: Connection: - keep-alive Content-Length: - - '490' + - '486' Content-Type: - application/json User-Agent: @@ -149,168 +149,27 @@ interactions: string: '' headers: apim-request-id: - - 3753492d-dbe3-4e2b-b49e-e2295749b84e + - a7436c72-e39b-4ff8-b6a3-32f096beef49 content-length: - '0' date: - - Fri, 21 May 2021 17:00:50 GMT + - Wed, 02 Jun 2021 07:02:42 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/d659344e-d7d8-4c70-87be-42d04f35a3be - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3753492d-dbe3-4e2b-b49e-e2295749b84e - 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/batches/d659344e-d7d8-4c70-87be-42d04f35a3be - response: - body: - string: '{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:51.3202375Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 22dbf444-b110-4d46-a370-0d519fcdff9a - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:00:50 GMT - etag: - - '"959DFC04507D81BED374792683B3CCDB1E1E0B98DE055AF6DEA8581500B1AFB3"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 22dbf444-b110-4d46-a370-0d519fcdff9a - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/d659344e-d7d8-4c70-87be-42d04f35a3be - response: - body: - string: '{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:51.4696394Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - a41f1568-89e6-4218-a39d-d0a849edec76 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:00:50 GMT - etag: - - '"85451611349249E6E99BE537AD5BBAAE89BCF8DFC5E3C1B85B50C6FBAD1C164E"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a41f1568-89e6-4218-a39d-d0a849edec76 - 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/batches/d659344e-d7d8-4c70-87be-42d04f35a3be - response: - body: - string: '{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:51.4696394Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 3facc5af-80bd-406c-8d55-be912f758d6f - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:00:51 GMT - etag: - - '"85451611349249E6E99BE537AD5BBAAE89BCF8DFC5E3C1B85B50C6FBAD1C164E"' + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5948f436-c1b1-414c-9b2c-6d3af57f3021 set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 3facc5af-80bd-406c-8d55-be912f758d6f + - a7436c72-e39b-4ff8-b6a3-32f096beef49 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -323,13 +182,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/batches/d659344e-d7d8-4c70-87be-42d04f35a3be + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5948f436-c1b1-414c-9b2c-6d3af57f3021 response: body: - string: '{"id":"d659344e-d7d8-4c70-87be-42d04f35a3be","createdDateTimeUtc":"2021-05-21T17:00:51.3202372Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.5102002Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5948f436-c1b1-414c-9b2c-6d3af57f3021","createdDateTimeUtc":"2021-06-02T07:02:43.6134937Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.2264979Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 109c3f68-aae8-478c-aa66-8046d6d87a75 + - 66a1627c-042c-47af-8813-f0a31dc87cdc cache-control: - public,max-age=1 content-length: @@ -337,9 +196,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:52 GMT + - Wed, 02 Jun 2021 07:02:47 GMT etag: - - '"EEDC260A140F43D3BA0FF93348CF2A269375B8F086569EA68F076E2E890926D6"' + - '"6ED5F477EBC611A428E0CC54B364CDD28525164E61F4F9439DC3BE5CD6D3B139"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -354,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 109c3f68-aae8-478c-aa66-8046d6d87a75 + - 66a1627c-042c-47af-8813-f0a31dc87cdc status: code: 200 message: OK @@ -370,15 +229,15 @@ 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/batches/d659344e-d7d8-4c70-87be-42d04f35a3be/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5948f436-c1b1-414c-9b2c-6d3af57f3021/documents?$skip=0 response: body: - string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcd6358db8-1c6b-4bf7-b472-acd3f7472d1f/d051439c-db86-49a5-be76-4cdf7cb9327c.txt","createdDateTimeUtc":"2021-05-21T17:00:53.1928243Z","lastActionDateTimeUtc":"2021-05-21T17:00:53.4432002Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Document + string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcdf416b05-6dc9-4082-abe5-eb606774efdd/5989239b-a0bc-4f05-a12a-b461af735d1b.txt","createdDateTimeUtc":"2021-06-02T07:02:45.9579201Z","lastActionDateTimeUtc":"2021-06-02T07:02:46.1811007Z","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":"0007a331-0000-0000-0000-000000000000","characterCharged":0}]}' + has wrong encoding or is binary file."}},"progress":0,"id":"0007ee3d-0000-0000-0000-000000000000","characterCharged":0}]}' headers: apim-request-id: - - 38d046ad-ee2d-4f33-b450-f0569cedbd2f + - 6c6d0f4e-0902-459c-8f11-ff070e6cc466 cache-control: - public,max-age=1 content-length: @@ -386,9 +245,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:53 GMT + - Wed, 02 Jun 2021 07:02:48 GMT etag: - - '"8575B1F8A14A588FC13DC050A4572A5ADB2992C5EC1F91EE42FC39CD7B4D30A6"' + - '"E8EDCBBF14607A5F27B97D996EC6B54935A63AD8522BF0B4E56BF307B3ED4290"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -403,7 +262,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 38d046ad-ee2d-4f33-b450-f0569cedbd2f + - 6c6d0f4e-0902-459c-8f11-ff070e6cc466 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 c3ac5c3f659b..df694753912e 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc4407ff2-8886-4f80-9de1-f1dc7cf92bc3?restype=container + uri: https://redacted.blob.core.windows.net/srcaf56a273-2103-453a-9b68-a3d2642cda2a?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:53 GMT + - Wed, 02 Jun 2021 07:03:21 GMT etag: - - '"0x8D91C79FEE50FCD"' + - '"0x8D92594823E01F0"' last-modified: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:22 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: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcc4407ff2-8886-4f80-9de1-f1dc7cf92bc3/document.txt + uri: https://redacted.blob.core.windows.net/srcaf56a273-2103-453a-9b68-a3d2642cda2a/document.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:53 GMT + - Wed, 02 Jun 2021 07:03:21 GMT etag: - - '"0x8D91C79FEEFD89D"' + - '"0x8D9259482486B1D"' last-modified: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete4baadc1-b0db-4bf6-821c-34f4c4743cc9?restype=container + uri: https://redacted.blob.core.windows.net/target4b02a022-4fae-42e0-807e-9721b808a7f1?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:53 GMT + - Wed, 02 Jun 2021 07:03:21 GMT etag: - - '"0x8D91C79FF15A600"' + - '"0x8D925948267D788"' last-modified: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -145,11 +145,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:22 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targete4baadc1-b0db-4bf6-821c-34f4c4743cc9/document.txt + uri: https://redacted.blob.core.windows.net/target4b02a022-4fae-42e0-807e-9721b808a7f1/document.txt response: body: string: '' @@ -159,11 +159,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:53 GMT + - Wed, 02 Jun 2021 07:03:21 GMT etag: - - '"0x8D91C79FF239C53"' + - '"0x8D925948271CC8C"' last-modified: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -176,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc4407ff2-8886-4f80-9de1-f1dc7cf92bc3?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete4baadc1-b0db-4bf6-821c-34f4c4743cc9?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcaf56a273-2103-453a-9b68-a3d2642cda2a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4b02a022-4fae-42e0-807e-9721b808a7f1?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -187,7 +187,7 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '482' Content-Type: - application/json User-Agent: @@ -199,13 +199,13 @@ interactions: string: '' headers: apim-request-id: - - 7170c494-0533-47f5-ac28-390068f26c04 + - e61d5421-7426-47be-a10c-60b272717e8f content-length: - '0' date: - - Fri, 21 May 2021 17:00:54 GMT + - Wed, 02 Jun 2021 07:03:21 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/2effeb07-6440-4fb1-b8c5-c220dd171ba9 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/386e26c8-49dd-4eb5-ae3f-95bbc1809b38 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -216,104 +216,10 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7170c494-0533-47f5-ac28-390068f26c04 + - e61d5421-7426-47be-a10c-60b272717e8f 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/batches/2effeb07-6440-4fb1-b8c5-c220dd171ba9 - response: - body: - string: '{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 2edc4338-afd4-4f51-b6c4-ba3a486469eb - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:00:55 GMT - etag: - - '"9D50F42661353F16199689F6B324BE9EC9856B50BAFE3B575179E4F4C78FB715"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 2edc4338-afd4-4f51-b6c4-ba3a486469eb - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/2effeb07-6440-4fb1-b8c5-c220dd171ba9 - response: - body: - string: '{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 70b52072-0610-4831-a2b9-f97be8840e41 - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:00:55 GMT - etag: - - '"9D50F42661353F16199689F6B324BE9EC9856B50BAFE3B575179E4F4C78FB715"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 70b52072-0610-4831-a2b9-f97be8840e41 - status: - code: 200 - message: OK - request: body: null headers: @@ -326,13 +232,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/batches/2effeb07-6440-4fb1-b8c5-c220dd171ba9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/386e26c8-49dd-4eb5-ae3f-95bbc1809b38 response: body: - string: '{"id":"2effeb07-6440-4fb1-b8c5-c220dd171ba9","createdDateTimeUtc":"2021-05-21T17:00:55.0918739Z","lastActionDateTimeUtc":"2021-05-21T17:00:55.1636492Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"386e26c8-49dd-4eb5-ae3f-95bbc1809b38","createdDateTimeUtc":"2021-06-02T07:03:22.7902994Z","lastActionDateTimeUtc":"2021-06-02T07:03:23.1220631Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 794045c0-be3c-43d1-98e4-f5e23167c4e4 + - b79a0933-bc80-4426-be3e-46a8b5ec8f40 cache-control: - public,max-age=1 content-length: @@ -340,9 +246,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:26 GMT etag: - - '"9D50F42661353F16199689F6B324BE9EC9856B50BAFE3B575179E4F4C78FB715"' + - '"62FE4FA3A0B3ED444A0F819610C92610C03D0B282891B703C1FB0BAA14C99E70"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -357,7 +263,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 794045c0-be3c-43d1-98e4-f5e23167c4e4 + - b79a0933-bc80-4426-be3e-46a8b5ec8f40 status: code: 200 message: OK @@ -373,25 +279,25 @@ 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/batches/2effeb07-6440-4fb1-b8c5-c220dd171ba9/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/386e26c8-49dd-4eb5-ae3f-95bbc1809b38/documents?$skip=0 response: body: - string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcc4407ff2-8886-4f80-9de1-f1dc7cf92bc3/document.txt","lastActionDateTimeUtc":"2021-05-21T17:00:55.1635073Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target + string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcaf56a273-2103-453a-9b68-a3d2642cda2a/document.txt","lastActionDateTimeUtc":"2021-06-02T07:03:23.121842Z","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":"0007a332-0000-0000-0000-000000000000","characterCharged":0}]}' + document file already exists."}},"progress":0,"id":"0007ee40-0000-0000-0000-000000000000","characterCharged":0}]}' headers: apim-request-id: - - 514003a8-4c28-413b-998d-febe7c92927b + - 2ff5764a-3fb3-491c-992f-27cfaf791c08 cache-control: - public,max-age=1 content-length: - - '485' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:27 GMT etag: - - '"F04512D418D13F8CFFB056156CB9B21BC20E76BA7E97CC42DCC32D5A0B960675"' + - '"7163083E9FCBC3C92E18CAA70747CF27F740925EAE74DAE6B132D7DCCC085762"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -406,7 +312,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 514003a8-4c28-413b-998d-febe7c92927b + - 2ff5764a-3fb3-491c-992f-27cfaf791c08 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 bc60f23f03a8..10984b5193e7 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src07e338ae-3b2f-4fda-90c6-c296277ccc41?restype=container + uri: https://redacted.blob.core.windows.net/srcdec0101d-af40-43dd-8880-10758c945377?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:01 GMT etag: - - '"0x8D91C7A0084A6BE"' + - '"0x8D9259476881438"' last-modified: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:02 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: - - Fri, 21 May 2021 17:00:57 GMT + - Wed, 02 Jun 2021 07:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src07e338ae-3b2f-4fda-90c6-c296277ccc41/document.txt + uri: https://redacted.blob.core.windows.net/srcdec0101d-af40-43dd-8880-10758c945377/document.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:01 GMT etag: - - '"0x8D91C7A008F07BE"' + - '"0x8D9259476928BBB"' last-modified: - - Fri, 21 May 2021 17:00:57 GMT + - Wed, 02 Jun 2021 07:03:02 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: - - Fri, 21 May 2021 17:00:57 GMT + - Wed, 02 Jun 2021 07:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src07e338ae-3b2f-4fda-90c6-c296277ccc41/f16b6b7e-2d2a-4d90-9fd0-6f9e907963aa.txt + uri: https://redacted.blob.core.windows.net/srcdec0101d-af40-43dd-8880-10758c945377/137d4d07-aa82-4dd3-b6e1-85bde5920c5e.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:01 GMT etag: - - '"0x8D91C7A009AC9B4"' + - '"0x8D92594769FAD79"' last-modified: - - Fri, 21 May 2021 17:00:57 GMT + - Wed, 02 Jun 2021 07:03:02 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:00:57 GMT + - Wed, 02 Jun 2021 07:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target62bfa80f-8b1b-4d45-94ad-13981a5f5c44?restype=container + uri: https://redacted.blob.core.windows.net/target072a331a-733f-4b44-a7cc-3c43705439fb?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:02 GMT etag: - - '"0x8D91C7A00C21A35"' + - '"0x8D9259476BE1FF5"' last-modified: - - Fri, 21 May 2021 17:00:57 GMT + - Wed, 02 Jun 2021 07:03:02 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -195,11 +195,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:00:57 GMT + - Wed, 02 Jun 2021 07:03:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target62bfa80f-8b1b-4d45-94ad-13981a5f5c44/document.txt + uri: https://redacted.blob.core.windows.net/target072a331a-733f-4b44-a7cc-3c43705439fb/document.txt response: body: string: '' @@ -209,11 +209,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:02 GMT etag: - - '"0x8D91C7A00CDC9F4"' + - '"0x8D9259476C67667"' last-modified: - - Fri, 21 May 2021 17:00:57 GMT + - Wed, 02 Jun 2021 07:03:02 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -226,8 +226,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src07e338ae-3b2f-4fda-90c6-c296277ccc41?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target62bfa80f-8b1b-4d45-94ad-13981a5f5c44?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdec0101d-af40-43dd-8880-10758c945377?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target072a331a-733f-4b44-a7cc-3c43705439fb?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -249,16 +249,16 @@ interactions: string: '' headers: apim-request-id: - - c85e0540-8948-4026-86ad-4c873250d42e + - 44d10984-4bd3-446f-af8d-1b8f7176fccd content-length: - '0' date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:02 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -266,7 +266,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c85e0540-8948-4026-86ad-4c873250d42e + - 44d10984-4bd3-446f-af8d-1b8f7176fccd status: code: 202 message: Accepted @@ -274,7 +274,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -282,23 +282,70 @@ 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/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 response: body: - string: '{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:00:57.80695Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:03.2048729Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - f95f5080-c19b-4b01-94ff-d7d8289105a6 + - 5a4b2e56-0320-478d-b9f9-f606f709449e cache-control: - public,max-age=1 content-length: - - '290' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:56 GMT + - Wed, 02 Jun 2021 07:03:08 GMT etag: - - '"A50FD942746E1059E1C0F355C8919586AF988454845291CCFB44CDCFC374579C"' + - '"C970D2EF5D810998FF56305B990FA3644904C68DC8253DB5EF7C2B542F035A12"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5a4b2e56-0320-478d-b9f9-f606f709449e + 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/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 + response: + body: + string: '{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:03.2048729Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 5542cc8f-d060-4bf1-8edf-84ca03efcc96 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 07:03:09 GMT + etag: + - '"C970D2EF5D810998FF56305B990FA3644904C68DC8253DB5EF7C2B542F035A12"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -313,7 +360,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f95f5080-c19b-4b01-94ff-d7d8289105a6 + - 5542cc8f-d060-4bf1-8edf-84ca03efcc96 status: code: 200 message: OK @@ -321,7 +368,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -329,23 +376,23 @@ 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/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 response: body: - string: '{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:00:57.80695Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:03.2048729Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 5baa7af2-714b-4882-9fa7-87a46e0def2b + - be13441f-3835-4d69-9a2d-a964242a2fe7 cache-control: - public,max-age=1 content-length: - - '290' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:58 GMT + - Wed, 02 Jun 2021 07:03:10 GMT etag: - - '"A50FD942746E1059E1C0F355C8919586AF988454845291CCFB44CDCFC374579C"' + - '"C970D2EF5D810998FF56305B990FA3644904C68DC8253DB5EF7C2B542F035A12"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -360,7 +407,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5baa7af2-714b-4882-9fa7-87a46e0def2b + - be13441f-3835-4d69-9a2d-a964242a2fe7 status: code: 200 message: OK @@ -376,23 +423,23 @@ 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/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 response: body: - string: '{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:00:57.992224Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 4ebb1a74-d93b-4be0-a7f7-6d150bd73e07 + - f421c892-bee7-4492-891f-32cd9f69f094 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:00:59 GMT + - Wed, 02 Jun 2021 07:03:11 GMT etag: - - '"DA99396F3798A2D5DDE4B6A5EFE2D3C751B54834E24621AEC54BD2B429453630"' + - '"3FBDB46BA67774A6E5416370E5990894FCB2FD1DCD2D5F072D127FE4A13F5295"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -407,7 +454,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4ebb1a74-d93b-4be0-a7f7-6d150bd73e07 + - f421c892-bee7-4492-891f-32cd9f69f094 status: code: 200 message: OK @@ -423,23 +470,23 @@ 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/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 response: body: - string: '{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:00:57.992224Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - d7d8d2d2-18e0-4a23-b982-91b3d471c52f + - 5a7f0608-b0e5-47f6-bb58-08cd6166b9bd cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:00 GMT + - Wed, 02 Jun 2021 07:03:12 GMT etag: - - '"DA99396F3798A2D5DDE4B6A5EFE2D3C751B54834E24621AEC54BD2B429453630"' + - '"3FBDB46BA67774A6E5416370E5990894FCB2FD1DCD2D5F072D127FE4A13F5295"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -454,7 +501,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d7d8d2d2-18e0-4a23-b982-91b3d471c52f + - 5a7f0608-b0e5-47f6-bb58-08cd6166b9bd status: code: 200 message: OK @@ -470,13 +517,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/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 response: body: - string: '{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - b5156c17-1cff-4084-95ac-8c2d639c281b + - de606e8e-6fb2-4f36-88e1-38ec108ca9d3 cache-control: - public,max-age=1 content-length: @@ -484,9 +531,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:01 GMT + - Wed, 02 Jun 2021 07:03:13 GMT etag: - - '"2197D7BE35E84D168DFB39A42726634C743484356A3E203669A7A91D7AA8A2F3"' + - '"3FBDB46BA67774A6E5416370E5990894FCB2FD1DCD2D5F072D127FE4A13F5295"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -501,7 +548,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b5156c17-1cff-4084-95ac-8c2d639c281b + - de606e8e-6fb2-4f36-88e1-38ec108ca9d3 status: code: 200 message: OK @@ -517,13 +564,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/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 response: body: - string: '{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - d0a0deaf-c4e0-4987-8014-675d16c80b25 + - a0587f9d-e085-475a-8ea7-e153e0e3fa94 cache-control: - public,max-age=1 content-length: @@ -531,9 +578,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:02 GMT + - Wed, 02 Jun 2021 07:03:14 GMT etag: - - '"2197D7BE35E84D168DFB39A42726634C743484356A3E203669A7A91D7AA8A2F3"' + - '"3FBDB46BA67774A6E5416370E5990894FCB2FD1DCD2D5F072D127FE4A13F5295"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -548,7 +595,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d0a0deaf-c4e0-4987-8014-675d16c80b25 + - a0587f9d-e085-475a-8ea7-e153e0e3fa94 status: code: 200 message: OK @@ -564,13 +611,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/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1 response: body: - string: '{"id":"f8a42287-4d1f-4485-85d5-8eb8b0ac0951","createdDateTimeUtc":"2021-05-21T17:00:57.8069497Z","lastActionDateTimeUtc":"2021-05-21T17:01:00.4803222Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"id":"e0a435fd-586e-44aa-8ba4-423ff535eea1","createdDateTimeUtc":"2021-06-02T07:03:03.1303495Z","lastActionDateTimeUtc":"2021-06-02T07:03:11.1460471Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - fc7b136a-83c9-406f-bd70-b00d5562a7a8 + - d21b402c-3846-403a-b41e-1b7c688ae73f cache-control: - public,max-age=1 content-length: @@ -578,9 +625,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:03 GMT + - Wed, 02 Jun 2021 07:03:15 GMT etag: - - '"9417B0B920715BC8072CF2E987E2B16462F6E22F9683796FA7D6DD367BD0BB99"' + - '"B332D4A412D8CF8C7CBE1753AD47DC78B29F460E00E855F3EC58D2AC4AAA4947"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -595,7 +642,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - fc7b136a-83c9-406f-bd70-b00d5562a7a8 + - d21b402c-3846-403a-b41e-1b7c688ae73f status: code: 200 message: OK @@ -611,15 +658,15 @@ 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/batches/f8a42287-4d1f-4485-85d5-8eb8b0ac0951/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/e0a435fd-586e-44aa-8ba4-423ff535eea1/documents?$skip=0 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target62bfa80f-8b1b-4d45-94ad-13981a5f5c44/f16b6b7e-2d2a-4d90-9fd0-6f9e907963aa.txt","sourcePath":"https://redacted.blob.core.windows.net/src07e338ae-3b2f-4fda-90c6-c296277ccc41/f16b6b7e-2d2a-4d90-9fd0-6f9e907963aa.txt","createdDateTimeUtc":"2021-05-21T17:01:00.2883105Z","lastActionDateTimeUtc":"2021-05-21T17:01:03.2826899Z","status":"Succeeded","to":"es","progress":1,"id":"0007a334-0000-0000-0000-000000000000","characterCharged":27},{"sourcePath":"https://redacted.blob.core.windows.net/src07e338ae-3b2f-4fda-90c6-c296277ccc41/document.txt","lastActionDateTimeUtc":"2021-05-21T17:00:57.9613728Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target072a331a-733f-4b44-a7cc-3c43705439fb/137d4d07-aa82-4dd3-b6e1-85bde5920c5e.txt","sourcePath":"https://redacted.blob.core.windows.net/srcdec0101d-af40-43dd-8880-10758c945377/137d4d07-aa82-4dd3-b6e1-85bde5920c5e.txt","createdDateTimeUtc":"2021-06-02T07:03:10.9390566Z","lastActionDateTimeUtc":"2021-06-02T07:03:15.1492125Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee3e-0000-0000-0000-000000000000","characterCharged":27},{"sourcePath":"https://redacted.blob.core.windows.net/srcdec0101d-af40-43dd-8880-10758c945377/document.txt","lastActionDateTimeUtc":"2021-06-02T07:03:03.2047459Z","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":"0007a333-0000-0000-0000-000000000000","characterCharged":0}]}' + document file already exists."}},"progress":0,"id":"0007ee3f-0000-0000-0000-000000000000","characterCharged":0}]}' headers: apim-request-id: - - 2303f8b8-0695-4888-8189-4fb0a5ad1fda + - 315db25b-a163-4a5d-b192-a3476b32ac52 cache-control: - public,max-age=1 content-length: @@ -627,9 +674,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:03 GMT + - Wed, 02 Jun 2021 07:03:15 GMT etag: - - '"81412806AD15C8CE4F955384283777EAE14531F12277D65AC9A9EF0DDBCE6034"' + - '"2B66E07019860AFD95A10A34D267504E266F4E932EEDF5BF6A74C9F7A67221F2"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -644,7 +691,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2303f8b8-0695-4888-8189-4fb0a5ad1fda + - 315db25b-a163-4a5d-b192-a3476b32ac52 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 ac5e22023e56..5e81c6ff929e 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:03 GMT + - Wed, 02 Jun 2021 06:41:36 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7ecf8bcb-a9d9-4be8-ae61-fa3ea58c7f22?restype=container + uri: https://redacted.blob.core.windows.net/src634c3cd3-0c9f-4b61-baae-b3c0d69ff8d7?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:03 GMT + - Wed, 02 Jun 2021 06:41:36 GMT etag: - - '"0x8D91C7A04C29FD2"' + - '"0x8D92591782B49A0"' last-modified: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:36 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: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:36 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7ecf8bcb-a9d9-4be8-ae61-fa3ea58c7f22/b477efd6-43bb-4237-b72a-97176e328621.txt + uri: https://redacted.blob.core.windows.net/src634c3cd3-0c9f-4b61-baae-b3c0d69ff8d7/247392a5-32f1-4a42-8e83-2c4290a71329.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:01:03 GMT + - Wed, 02 Jun 2021 06:41:36 GMT etag: - - '"0x8D91C7A04CF7460"' + - '"0x8D9259178330DCD"' last-modified: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:36 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7eeee747-ff01-412f-95a7-93d542bc3048?restype=container + uri: https://redacted.blob.core.windows.net/src2c802442-3669-4128-9d20-e2a4b138941a?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:03 GMT + - Wed, 02 Jun 2021 06:41:36 GMT etag: - - '"0x8D91C7A04F38680"' + - '"0x8D9259178593596"' last-modified: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -145,11 +145,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src7eeee747-ff01-412f-95a7-93d542bc3048/bd8757c1-1090-4f79-ab69-0afc43818b41.txt + uri: https://redacted.blob.core.windows.net/src2c802442-3669-4128-9d20-e2a4b138941a/f628e309-f16a-4fbf-af68-e6bb209ae35b.txt response: body: string: '' @@ -159,11 +159,11 @@ interactions: content-md5: - fcJZDg3E50i3i55bsEwJZg== date: - - Fri, 21 May 2021 17:01:03 GMT + - Wed, 02 Jun 2021 06:41:36 GMT etag: - - '"0x8D91C7A04FF1899"' + - '"0x8D9259178671F80"' last-modified: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -189,11 +189,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:37 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetd3f56b1d-67ac-4b67-87ec-a3e70a15ec2c?restype=container + uri: https://redacted.blob.core.windows.net/target9d42c8f9-3b61-4c86-a090-772be3e815e2?restype=container response: body: string: '' @@ -201,11 +201,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:36 GMT etag: - - '"0x8D91C7A052F087C"' + - '"0x8D92591788BBBFE"' last-modified: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -214,10 +214,10 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7ecf8bcb-a9d9-4be8-ae61-fa3ea58c7f22?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd3f56b1d-67ac-4b67-87ec-a3e70a15ec2c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", - "language": "es"}]}, {"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7eeee747-ff01-412f-95a7-93d542bc3048?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd3f56b1d-67ac-4b67-87ec-a3e70a15ec2c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src634c3cd3-0c9f-4b61-baae-b3c0d69ff8d7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9d42c8f9-3b61-4c86-a090-772be3e815e2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + "language": "es"}]}, {"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2c802442-3669-4128-9d20-e2a4b138941a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9d42c8f9-3b61-4c86-a090-772be3e815e2?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "fr"}]}]}' headers: Accept: @@ -227,7 +227,7 @@ interactions: Connection: - keep-alive Content-Length: - - '966' + - '964' Content-Type: - application/json User-Agent: @@ -239,13 +239,13 @@ interactions: string: '' headers: apim-request-id: - - b6e3cd58-46be-4ef9-8316-8def16b1f602 + - 8a2f368d-6b23-4a7e-a645-18fd3f90afd6 content-length: - '0' date: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:37 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/20205f59-c2d4-4936-8f12-d04431d15a7e + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -256,7 +256,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b6e3cd58-46be-4ef9-8316-8def16b1f602 + - 8a2f368d-6b23-4a7e-a645-18fd3f90afd6 status: code: 202 message: Accepted @@ -264,7 +264,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -272,23 +272,23 @@ 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/batches/20205f59-c2d4-4936-8f12-d04431d15a7e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c response: body: - string: '{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:05.2396084Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 3e831976-4288-4757-bfb3-ef9e524a3fda + - 960476f5-08e1-4659-802c-06fef0d9dcc9 cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:41 GMT etag: - - '"8EFD7ED04712C4C6FE5202370855D306075F1968427CA1F9BE73AA4ACD789C9B"' + - '"3E60A64917ED53ABDC429427664D42363B8424C84DAA5180FEBB52DFEE5869C1"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -303,7 +303,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3e831976-4288-4757-bfb3-ef9e524a3fda + - 960476f5-08e1-4659-802c-06fef0d9dcc9 status: code: 200 message: OK @@ -311,7 +311,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -319,23 +319,23 @@ 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/batches/20205f59-c2d4-4936-8f12-d04431d15a7e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c response: body: - string: '{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:05.3709077Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 2c93ff00-9f0c-400b-90fd-dfe6ac3cafbc + - d98e4ac7-c9a4-457b-a647-355dffc92de0 cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:04 GMT + - Wed, 02 Jun 2021 06:41:42 GMT etag: - - '"394A30721D7C368213A43FA29B0397614ADD554222C5A825581A801335BB34E9"' + - '"3E60A64917ED53ABDC429427664D42363B8424C84DAA5180FEBB52DFEE5869C1"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -350,7 +350,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2c93ff00-9f0c-400b-90fd-dfe6ac3cafbc + - d98e4ac7-c9a4-457b-a647-355dffc92de0 status: code: 200 message: OK @@ -366,13 +366,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/batches/20205f59-c2d4-4936-8f12-d04431d15a7e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c response: body: - string: '{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 5e3486fc-18a1-47bd-ac87-b1c408225d45 + - 9d9ea92b-e73e-4373-8ed4-93a87ee7644b cache-control: - public,max-age=1 content-length: @@ -380,9 +380,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:05 GMT + - Wed, 02 Jun 2021 06:41:44 GMT etag: - - '"406A038B1E155EDD3F0F86328C4266443273EF5212B83B0D33D554715C0743CB"' + - '"3E60A64917ED53ABDC429427664D42363B8424C84DAA5180FEBB52DFEE5869C1"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -397,7 +397,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5e3486fc-18a1-47bd-ac87-b1c408225d45 + - 9d9ea92b-e73e-4373-8ed4-93a87ee7644b status: code: 200 message: OK @@ -413,13 +413,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/batches/20205f59-c2d4-4936-8f12-d04431d15a7e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c response: body: - string: '{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 3d712b98-c9f3-4335-8c57-0602c1d36f72 + - 1ccd6fdf-9a8f-4d95-be8d-d432c70af96a cache-control: - public,max-age=1 content-length: @@ -427,9 +427,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:06 GMT + - Wed, 02 Jun 2021 06:41:45 GMT etag: - - '"406A038B1E155EDD3F0F86328C4266443273EF5212B83B0D33D554715C0743CB"' + - '"3E60A64917ED53ABDC429427664D42363B8424C84DAA5180FEBB52DFEE5869C1"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -444,7 +444,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3d712b98-c9f3-4335-8c57-0602c1d36f72 + - 1ccd6fdf-9a8f-4d95-be8d-d432c70af96a status: code: 200 message: OK @@ -460,13 +460,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/batches/20205f59-c2d4-4936-8f12-d04431d15a7e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c response: body: - string: '{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - ea996e5c-53fd-4b39-a793-a146aa0a277f + - 1844ec13-36d8-4920-aeb9-bd9ab4d9d0d6 cache-control: - public,max-age=1 content-length: @@ -474,9 +474,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:07 GMT + - Wed, 02 Jun 2021 06:41:46 GMT etag: - - '"406A038B1E155EDD3F0F86328C4266443273EF5212B83B0D33D554715C0743CB"' + - '"3E60A64917ED53ABDC429427664D42363B8424C84DAA5180FEBB52DFEE5869C1"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -491,7 +491,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ea996e5c-53fd-4b39-a793-a146aa0a277f + - 1844ec13-36d8-4920-aeb9-bd9ab4d9d0d6 status: code: 200 message: OK @@ -507,13 +507,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/batches/20205f59-c2d4-4936-8f12-d04431d15a7e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c response: body: - string: '{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 5b95bcb6-52c6-402b-8267-6b1e89bafdf7 + - 5f207c4f-5cbb-4dd8-b780-5ac63f7e14bc cache-control: - public,max-age=1 content-length: @@ -521,9 +521,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:08 GMT + - Wed, 02 Jun 2021 06:41:47 GMT etag: - - '"406A038B1E155EDD3F0F86328C4266443273EF5212B83B0D33D554715C0743CB"' + - '"3E60A64917ED53ABDC429427664D42363B8424C84DAA5180FEBB52DFEE5869C1"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -538,7 +538,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5b95bcb6-52c6-402b-8267-6b1e89bafdf7 + - 5f207c4f-5cbb-4dd8-b780-5ac63f7e14bc status: code: 200 message: OK @@ -554,13 +554,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/batches/20205f59-c2d4-4936-8f12-d04431d15a7e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c response: body: - string: '{"id":"20205f59-c2d4-4936-8f12-d04431d15a7e","createdDateTimeUtc":"2021-05-21T17:01:05.2396081Z","lastActionDateTimeUtc":"2021-05-21T17:01:06.4367763Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}' + string: '{"id":"ecb61ae7-88b5-4fa1-b049-9de52f99b26c","createdDateTimeUtc":"2021-06-02T06:41:37.6071833Z","lastActionDateTimeUtc":"2021-06-02T06:41:41.8193464Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}' headers: apim-request-id: - - dc119b11-acd2-41a2-8ab5-f2f52c0c229a + - e53483d4-764d-4d70-921d-d17e4ddcac1c cache-control: - public,max-age=1 content-length: @@ -568,9 +568,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:10 GMT + - Wed, 02 Jun 2021 06:41:49 GMT etag: - - '"63D0009118EE1BE6844C1018F2856BF9599321EE9417C24BDA4F2023CA744871"' + - '"E637F559E7AAEFD6993DDA7072CF54B09AC3840A2C14F7F0FD8C3AD488D07679"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -585,7 +585,54 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - dc119b11-acd2-41a2-8ab5-f2f52c0c229a + - e53483d4-764d-4d70-921d-d17e4ddcac1c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/ecb61ae7-88b5-4fa1-b049-9de52f99b26c/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target9d42c8f9-3b61-4c86-a090-772be3e815e2/247392a5-32f1-4a42-8e83-2c4290a71329.txt","sourcePath":"https://redacted.blob.core.windows.net/src634c3cd3-0c9f-4b61-baae-b3c0d69ff8d7/247392a5-32f1-4a42-8e83-2c4290a71329.txt","createdDateTimeUtc":"2021-06-02T06:41:41.5889862Z","lastActionDateTimeUtc":"2021-06-02T06:41:48.6907525Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee33-0000-0000-0000-000000000000","characterCharged":17},{"path":"https://redacted.blob.core.windows.net/target9d42c8f9-3b61-4c86-a090-772be3e815e2/f628e309-f16a-4fbf-af68-e6bb209ae35b.txt","sourcePath":"https://redacted.blob.core.windows.net/src2c802442-3669-4128-9d20-e2a4b138941a/f628e309-f16a-4fbf-af68-e6bb209ae35b.txt","createdDateTimeUtc":"2021-06-02T06:41:41.5536173Z","lastActionDateTimeUtc":"2021-06-02T06:41:48.697622Z","status":"Succeeded","to":"fr","progress":1,"id":"0007ee34-0000-0000-0000-000000000000","characterCharged":18}]}' + headers: + apim-request-id: + - 36e2eb5b-fe24-4d1a-a88b-b4cae1de72d3 + cache-control: + - public,max-age=1 + content-length: + - '998' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:41:49 GMT + etag: + - '"6FC90341EC61623ED482628C8A10C0535189010EEDF352953AC4EF98379DDC40"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 36e2eb5b-fe24-4d1a-a88b-b4cae1de72d3 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 8feb227c2f60..6f300b184249 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src63f52326-dce0-4744-b802-fc05c53c8ab1?restype=container + uri: https://redacted.blob.core.windows.net/src04fc8d5f-c297-4e5b-9e13-dbace3afa120?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:48 GMT etag: - - '"0x8D91C7A0922EA8E"' + - '"0x8D925917FF25D89"' last-modified: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:49 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: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src63f52326-dce0-4744-b802-fc05c53c8ab1/5501d048-afb8-421c-bee8-380d2a62903e.txt + uri: https://redacted.blob.core.windows.net/src04fc8d5f-c297-4e5b-9e13-dbace3afa120/c49b4dbc-8229-4884-9ae9-f5dc7f998872.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:48 GMT etag: - - '"0x8D91C7A09308EA9"' + - '"0x8D925917FFCCCAD"' last-modified: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:49 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8da43456-ee0a-4aab-bce8-b92fad4d958b?restype=container + uri: https://redacted.blob.core.windows.net/targeteb173924-0286-490f-babe-02d92f1e0722?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:49 GMT etag: - - '"0x8D91C7A095D3FD1"' + - '"0x8D92591801A65C9"' last-modified: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:49 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src63f52326-dce0-4744-b802-fc05c53c8ab1?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8da43456-ee0a-4aab-bce8-b92fad4d958b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src04fc8d5f-c297-4e5b-9e13-dbace3afa120?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeteb173924-0286-490f-babe-02d92f1e0722?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -137,7 +137,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -149,16 +149,16 @@ interactions: string: '' headers: apim-request-id: - - ff668fa4-01c6-4562-b050-61f70a4523c3 + - ae35a2a6-c6d9-44a7-b6fd-66668597b587 content-length: - '0' date: - - Fri, 21 May 2021 17:01:11 GMT + - Wed, 02 Jun 2021 06:41:49 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/beb93916-d2d8-4400-a383-0288a6b985c9 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/7d463c01-c00d-4206-a068-439285561842 set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -166,7 +166,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ff668fa4-01c6-4562-b050-61f70a4523c3 + - ae35a2a6-c6d9-44a7-b6fd-66668597b587 status: code: 202 message: Accepted @@ -174,7 +174,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -182,23 +182,23 @@ 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/batches/beb93916-d2d8-4400-a383-0288a6b985c9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/7d463c01-c00d-4206-a068-439285561842 response: body: - string: '{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:12.1097061Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - b4d1facf-054f-4f07-a001-2caa1cb955bd + - 31d389c0-b796-4c42-810b-bdc97e2b2eb8 cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:12 GMT + - Wed, 02 Jun 2021 06:41:54 GMT etag: - - '"FB7F5A97B25D743A2636FF957F1391EC233CDB51FAF4C6777962A730140409EF"' + - '"07E366E585BEA65A1889F7CF6D3F7E1B4A94ACA44382189D677EB63EF4025FB1"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -213,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b4d1facf-054f-4f07-a001-2caa1cb955bd + - 31d389c0-b796-4c42-810b-bdc97e2b2eb8 status: code: 200 message: OK @@ -221,7 +221,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -229,23 +229,117 @@ 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/batches/beb93916-d2d8-4400-a383-0288a6b985c9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/7d463c01-c00d-4206-a068-439285561842 response: body: - string: '{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:12.2054041Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 23448a28-4ad5-4870-8fa8-bbdfbd9f84f0 + - cbb41b30-b6bc-4330-bc7e-a8baba05934c cache-control: - public,max-age=1 content-length: - - '292' + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:41:55 GMT + etag: + - '"07E366E585BEA65A1889F7CF6D3F7E1B4A94ACA44382189D677EB63EF4025FB1"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cbb41b30-b6bc-4330-bc7e-a8baba05934c + 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/batches/7d463c01-c00d-4206-a068-439285561842 + response: + body: + string: '{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9a0843f4-5cb3-4e69-b902-765ee2cc1629 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:41:56 GMT + etag: + - '"07E366E585BEA65A1889F7CF6D3F7E1B4A94ACA44382189D677EB63EF4025FB1"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9a0843f4-5cb3-4e69-b902-765ee2cc1629 + 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/batches/7d463c01-c00d-4206-a068-439285561842 + response: + body: + string: '{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 827231eb-247f-46c1-bb8d-d6ee14c14ce2 + cache-control: + - public,max-age=1 + content-length: + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:12 GMT + - Wed, 02 Jun 2021 06:41:58 GMT etag: - - '"3DE8E68C4EF8580C1D57D0FE57C1188AF4A202833A17333816A5C61EC4D8DDCA"' + - '"07E366E585BEA65A1889F7CF6D3F7E1B4A94ACA44382189D677EB63EF4025FB1"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -260,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 23448a28-4ad5-4870-8fa8-bbdfbd9f84f0 + - 827231eb-247f-46c1-bb8d-d6ee14c14ce2 status: code: 200 message: OK @@ -276,13 +370,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/batches/beb93916-d2d8-4400-a383-0288a6b985c9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/7d463c01-c00d-4206-a068-439285561842 response: body: - string: '{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - d8360383-7f7d-4cb8-af05-5c20f8b8f9ff + - 437e1df6-a5ff-4e40-81d4-938cd9ee4a89 cache-control: - public,max-age=1 content-length: @@ -290,9 +384,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:13 GMT + - Wed, 02 Jun 2021 06:41:59 GMT etag: - - '"F392D055945565476C5929CED4BCA0BBE10F2DB50AFD0CE7BEDDFFAC3FFF585B"' + - '"07E366E585BEA65A1889F7CF6D3F7E1B4A94ACA44382189D677EB63EF4025FB1"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -307,7 +401,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d8360383-7f7d-4cb8-af05-5c20f8b8f9ff + - 437e1df6-a5ff-4e40-81d4-938cd9ee4a89 status: code: 200 message: OK @@ -323,13 +417,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/batches/beb93916-d2d8-4400-a383-0288a6b985c9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/7d463c01-c00d-4206-a068-439285561842 response: body: - string: '{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 1663e845-b728-472d-9d1f-b12ccc98504a + - ab29ade8-cae4-44dc-9259-ca4f275f38f1 cache-control: - public,max-age=1 content-length: @@ -337,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:14 GMT + - Wed, 02 Jun 2021 06:42:00 GMT etag: - - '"F392D055945565476C5929CED4BCA0BBE10F2DB50AFD0CE7BEDDFFAC3FFF585B"' + - '"07E366E585BEA65A1889F7CF6D3F7E1B4A94ACA44382189D677EB63EF4025FB1"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -354,7 +448,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1663e845-b728-472d-9d1f-b12ccc98504a + - ab29ade8-cae4-44dc-9259-ca4f275f38f1 status: code: 200 message: OK @@ -370,13 +464,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/batches/beb93916-d2d8-4400-a383-0288a6b985c9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/7d463c01-c00d-4206-a068-439285561842 response: body: - string: '{"id":"beb93916-d2d8-4400-a383-0288a6b985c9","createdDateTimeUtc":"2021-05-21T17:01:12.1097057Z","lastActionDateTimeUtc":"2021-05-21T17:01:13.4165568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"7d463c01-c00d-4206-a068-439285561842","createdDateTimeUtc":"2021-06-02T06:41:50.3035608Z","lastActionDateTimeUtc":"2021-06-02T06:41:54.4206187Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - c5416128-fc90-4846-b2a1-aa42645b8e2f + - 52ad15e6-542d-44a8-945a-38ca2b632ffc cache-control: - public,max-age=1 content-length: @@ -384,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:15 GMT + - Wed, 02 Jun 2021 06:42:01 GMT etag: - - '"8A329FDFA804A43079C43643403A3730A6F51CBE13A4750FAB6B6FDE443E5C3B"' + - '"90B798F37DECFFF64F374D14F78E3C694FADC1D9E7BF24C33F0D9F72CA432E87"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -401,7 +495,54 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c5416128-fc90-4846-b2a1-aa42645b8e2f + - 52ad15e6-542d-44a8-945a-38ca2b632ffc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/7d463c01-c00d-4206-a068-439285561842/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targeteb173924-0286-490f-babe-02d92f1e0722/c49b4dbc-8229-4884-9ae9-f5dc7f998872.txt","sourcePath":"https://redacted.blob.core.windows.net/src04fc8d5f-c297-4e5b-9e13-dbace3afa120/c49b4dbc-8229-4884-9ae9-f5dc7f998872.txt","createdDateTimeUtc":"2021-06-02T06:41:54.2107829Z","lastActionDateTimeUtc":"2021-06-02T06:42:01.1553673Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee35-0000-0000-0000-000000000000","characterCharged":17}]}' + headers: + apim-request-id: + - 3eeeb346-48c6-4d5a-842f-9d5025bef4e4 + cache-control: + - public,max-age=1 + content-length: + - '505' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:42:01 GMT + etag: + - '"A3677C4B271498D7FE093702B021E283AFAB96E1EDA3CD7B51112F052F91CD15"' + set-cookie: + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3eeeb346-48c6-4d5a-842f-9d5025bef4e4 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 dbfa1cdaeced..0300f262ebc8 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:15 GMT + - Wed, 02 Jun 2021 06:42:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca04534d7-2c5b-448e-87c3-2858d19b9557?restype=container + uri: https://redacted.blob.core.windows.net/src648a993e-69dd-4f34-beaa-df08aa786923?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:15 GMT + - Wed, 02 Jun 2021 06:42:02 GMT etag: - - '"0x8D91C7A0BF44EF9"' + - '"0x8D92591879144BC"' last-modified: - - Fri, 21 May 2021 17:01:16 GMT + - Wed, 02 Jun 2021 06:42:02 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: - - Fri, 21 May 2021 17:01:16 GMT + - Wed, 02 Jun 2021 06:42:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srca04534d7-2c5b-448e-87c3-2858d19b9557/xyze79b95cb-f5fc-4ed2-99d1-444c9b350e65.txt + uri: https://redacted.blob.core.windows.net/src648a993e-69dd-4f34-beaa-df08aa786923/xyzfb847ec0-3c08-477b-9a1c-0ee72495c14c.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:01:15 GMT + - Wed, 02 Jun 2021 06:42:02 GMT etag: - - '"0x8D91C7A0BFFC2B6"' + - '"0x8D925918799A75B"' last-modified: - - Fri, 21 May 2021 17:01:16 GMT + - Wed, 02 Jun 2021 06:42:02 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:16 GMT + - Wed, 02 Jun 2021 06:42:02 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target93ecfd2d-4ca4-4c3b-82c2-befd35e1afc6?restype=container + uri: https://redacted.blob.core.windows.net/targetf81f8229-cdc2-4d65-b2e3-9fb23b02fcaa?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:15 GMT + - Wed, 02 Jun 2021 06:42:01 GMT etag: - - '"0x8D91C7A0C2732D0"' + - '"0x8D9259187B3572B"' last-modified: - - Fri, 21 May 2021 17:01:16 GMT + - Wed, 02 Jun 2021 06:42:02 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca04534d7-2c5b-448e-87c3-2858d19b9557?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {"prefix": "xyz"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target93ecfd2d-4ca4-4c3b-82c2-befd35e1afc6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src648a993e-69dd-4f34-beaa-df08aa786923?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {"prefix": "xyz"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf81f8229-cdc2-4d65-b2e3-9fb23b02fcaa?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -137,7 +137,7 @@ interactions: Connection: - keep-alive Content-Length: - - '499' + - '501' Content-Type: - application/json User-Agent: @@ -149,13 +149,13 @@ interactions: string: '' headers: apim-request-id: - - 17dec0f0-96a1-4504-9557-e671d51ded91 + - 9e418310-f78a-4a31-8d3d-f16314b8929c content-length: - '0' date: - - Fri, 21 May 2021 17:01:16 GMT + - Wed, 02 Jun 2021 06:42:02 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4c04cfee-5e20-46cf-b04a-db9108e823fd set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -166,7 +166,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 17dec0f0-96a1-4504-9557-e671d51ded91 + - 9e418310-f78a-4a31-8d3d-f16314b8929c status: code: 202 message: Accepted @@ -174,7 +174,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -182,23 +182,23 @@ 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/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4c04cfee-5e20-46cf-b04a-db9108e823fd response: body: - string: '{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:16.8684309Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - f79e055b-1fdb-4d0d-969d-d3997a94205e + - 8750ca46-3986-4141-aafa-65cff14a0f70 cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:16 GMT + - Wed, 02 Jun 2021 06:42:08 GMT etag: - - '"DEAC9B3D77F0A1A1EC10C7064FCC01678C4B82542AB8C509FB5852AE6E7F2097"' + - '"79F84E238DD65A148AEA03D5589DE242D5DB1D222E3D31A2C9C7E014A5F02165"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -213,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f79e055b-1fdb-4d0d-969d-d3997a94205e + - 8750ca46-3986-4141-aafa-65cff14a0f70 status: code: 200 message: OK @@ -221,7 +221,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -229,23 +229,23 @@ 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/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4c04cfee-5e20-46cf-b04a-db9108e823fd response: body: - string: '{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:16.9541635Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - a5b582fa-a94f-499a-8572-2b2b73e8426a + - 4088789c-68e0-4229-b6c5-52da0589f56a cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:16 GMT + - Wed, 02 Jun 2021 06:42:09 GMT etag: - - '"438F2274C784B6F608464AE6AF43C52E7636101ED07683157A3AABE58057548F"' + - '"79F84E238DD65A148AEA03D5589DE242D5DB1D222E3D31A2C9C7E014A5F02165"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -260,7 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a5b582fa-a94f-499a-8572-2b2b73e8426a + - 4088789c-68e0-4229-b6c5-52da0589f56a status: code: 200 message: OK @@ -276,23 +276,23 @@ 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/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4c04cfee-5e20-46cf-b04a-db9108e823fd response: body: - string: '{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:16.9541635Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 2dda1fd8-c624-4d26-b8d6-fe61bcce003c + - 82e68d36-2f5e-47bf-a037-1d1815ff9f3c cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:17 GMT + - Wed, 02 Jun 2021 06:42:10 GMT etag: - - '"438F2274C784B6F608464AE6AF43C52E7636101ED07683157A3AABE58057548F"' + - '"79F84E238DD65A148AEA03D5589DE242D5DB1D222E3D31A2C9C7E014A5F02165"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -307,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2dda1fd8-c624-4d26-b8d6-fe61bcce003c + - 82e68d36-2f5e-47bf-a037-1d1815ff9f3c status: code: 200 message: OK @@ -323,23 +323,23 @@ 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/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4c04cfee-5e20-46cf-b04a-db9108e823fd response: body: - string: '{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:16.9541635Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - a327f9c6-4075-49c3-ab32-e49a903d1e93 + - 088ff4c5-3927-4ed6-949e-a915dee8c7ed cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:18 GMT + - Wed, 02 Jun 2021 06:42:11 GMT etag: - - '"438F2274C784B6F608464AE6AF43C52E7636101ED07683157A3AABE58057548F"' + - '"79F84E238DD65A148AEA03D5589DE242D5DB1D222E3D31A2C9C7E014A5F02165"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -354,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a327f9c6-4075-49c3-ab32-e49a903d1e93 + - 088ff4c5-3927-4ed6-949e-a915dee8c7ed status: code: 200 message: OK @@ -370,13 +370,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/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4c04cfee-5e20-46cf-b04a-db9108e823fd response: body: - string: '{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.1620423Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 02052792-d52c-458e-8a6f-6c6fc6d828c5 + - 325bf98d-8756-44b1-817b-5c7eff50145e cache-control: - public,max-age=1 content-length: @@ -384,9 +384,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:19 GMT + - Wed, 02 Jun 2021 06:42:12 GMT etag: - - '"69F216872091B0F4A6D501C72A441E613D99A73FACF320C69B42FD2423CFAF4A"' + - '"79F84E238DD65A148AEA03D5589DE242D5DB1D222E3D31A2C9C7E014A5F02165"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -401,7 +401,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 02052792-d52c-458e-8a6f-6c6fc6d828c5 + - 325bf98d-8756-44b1-817b-5c7eff50145e status: code: 200 message: OK @@ -417,23 +417,23 @@ 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/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4c04cfee-5e20-46cf-b04a-db9108e823fd response: body: - string: '{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"4c04cfee-5e20-46cf-b04a-db9108e823fd","createdDateTimeUtc":"2021-06-02T06:42:02.9879628Z","lastActionDateTimeUtc":"2021-06-02T06:42:06.8293849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 38478d06-f6ee-47f9-bf66-545e846d99c6 + - 75fd06df-b439-4ef6-adb7-e19b2827656a cache-control: - public,max-age=1 content-length: - - '289' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:20 GMT + - Wed, 02 Jun 2021 06:42:13 GMT etag: - - '"3DA6EC96B124F9612D95057FD87070EC7C4A2702B49DC3C870DB2969E40BEA7D"' + - '"546AD752E809AFC6048BB436720B756FC18DD4758C6AB8F6CAB6C49B3DDDE60F"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -448,7 +448,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 38478d06-f6ee-47f9-bf66-545e846d99c6 + - 75fd06df-b439-4ef6-adb7-e19b2827656a status: code: 200 message: OK @@ -456,7 +456,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -464,23 +464,23 @@ 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/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/4c04cfee-5e20-46cf-b04a-db9108e823fd/documents?$skip=0 response: body: - string: '{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf81f8229-cdc2-4d65-b2e3-9fb23b02fcaa/xyzfb847ec0-3c08-477b-9a1c-0ee72495c14c.txt","sourcePath":"https://redacted.blob.core.windows.net/src648a993e-69dd-4f34-beaa-df08aa786923/xyzfb847ec0-3c08-477b-9a1c-0ee72495c14c.txt","createdDateTimeUtc":"2021-06-02T06:42:06.6210117Z","lastActionDateTimeUtc":"2021-06-02T06:42:13.8424461Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee36-0000-0000-0000-000000000000","characterCharged":17}]}' headers: apim-request-id: - - afe3ffcb-0e8e-477f-a3e9-bdc964d6d17f + - 5503014e-2208-4115-9c71-023ec808a761 cache-control: - public,max-age=1 content-length: - - '289' + - '511' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:21 GMT + - Wed, 02 Jun 2021 06:42:13 GMT etag: - - '"3DA6EC96B124F9612D95057FD87070EC7C4A2702B49DC3C870DB2969E40BEA7D"' + - '"DD421BD67CF9CA3ADD7371A662FBE5D7B20130AD0E06C85F5A23103FE8DD4F94"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -495,54 +495,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - afe3ffcb-0e8e-477f-a3e9-bdc964d6d17f - 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/batches/37d53cb3-855b-4ac7-8b03-37c0be6a5ee2 - response: - body: - string: '{"id":"37d53cb3-855b-4ac7-8b03-37c0be6a5ee2","createdDateTimeUtc":"2021-05-21T17:01:16.8684305Z","lastActionDateTimeUtc":"2021-05-21T17:01:20.3864993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' - headers: - apim-request-id: - - 09448b92-e019-4e3f-806d-61cd826f83bc - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:22 GMT - etag: - - '"D0218368C6E3770C64D396A5AF30B978F0B5FB5C81CCABEF1C634C282FF00FEE"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 09448b92-e019-4e3f-806d-61cd826f83bc + - 5503014e-2208-4115-9c71-023ec808a761 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 559bd13ee9ad..c08222724a39 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:23 GMT + - Wed, 02 Jun 2021 06:42:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src3b07813a-c423-4032-a125-feb76b97a92a?restype=container + uri: https://redacted.blob.core.windows.net/src1c053f13-cb03-4e16-816e-e6ed8ea7d65c?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:23 GMT + - Wed, 02 Jun 2021 06:42:13 GMT etag: - - '"0x8D91C7A10B63CAC"' + - '"0x8D925918EA02344"' last-modified: - - Fri, 21 May 2021 17:01:24 GMT + - Wed, 02 Jun 2021 06:42:14 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: - - Fri, 21 May 2021 17:01:24 GMT + - Wed, 02 Jun 2021 06:42:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src3b07813a-c423-4032-a125-feb76b97a92a/cd15b7d9-2d13-435a-be50-3b8b0b3f2d4e.txt + uri: https://redacted.blob.core.windows.net/src1c053f13-cb03-4e16-816e-e6ed8ea7d65c/1ed63c2f-d184-4c38-bd7a-bbc2711d7947.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:01:23 GMT + - Wed, 02 Jun 2021 06:42:13 GMT etag: - - '"0x8D91C7A10C22166"' + - '"0x8D925918EA858F3"' last-modified: - - Fri, 21 May 2021 17:01:24 GMT + - Wed, 02 Jun 2021 06:42:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:24 GMT + - Wed, 02 Jun 2021 06:42:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targeta4ee1724-bd15-4f6d-805d-f748ab11ea9c?restype=container + uri: https://redacted.blob.core.windows.net/target21fb26f4-0a17-4642-a1c5-babaeb61c6a9?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:23 GMT + - Wed, 02 Jun 2021 06:42:14 GMT etag: - - '"0x8D91C7A10EB2B0D"' + - '"0x8D925918EC14EBA"' last-modified: - - Fri, 21 May 2021 17:01:24 GMT + - Wed, 02 Jun 2021 06:42:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3b07813a-c423-4032-a125-feb76b97a92a?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {"suffix": "txt"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta4ee1724-bd15-4f6d-805d-f748ab11ea9c?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1c053f13-cb03-4e16-816e-e6ed8ea7d65c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {"suffix": "txt"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target21fb26f4-0a17-4642-a1c5-babaeb61c6a9?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -137,7 +137,7 @@ interactions: Connection: - keep-alive Content-Length: - - '501' + - '497' Content-Type: - application/json User-Agent: @@ -149,16 +149,16 @@ interactions: string: '' headers: apim-request-id: - - 1899dee0-3033-4508-86f4-7ab8190e5fee + - 17ddb147-3b84-4092-b95e-8fc9e78de7f4 content-length: - '0' date: - - Fri, 21 May 2021 17:01:24 GMT + - Wed, 02 Jun 2021 06:42:14 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/ee17da1a-d98a-44f1-8c41-2c04c6213e8b + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54 set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -166,7 +166,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1899dee0-3033-4508-86f4-7ab8190e5fee + - 17ddb147-3b84-4092-b95e-8fc9e78de7f4 status: code: 202 message: Accepted @@ -174,7 +174,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -182,23 +182,70 @@ 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/batches/ee17da1a-d98a-44f1-8c41-2c04c6213e8b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54 response: body: - string: '{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:24.862868Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 356705e3-8c02-4746-a9fe-274338592aa5 + - d12f3512-2a6f-4c6b-8bda-4007871e2fe3 cache-control: - public,max-age=1 content-length: - - '291' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:24 GMT + - Wed, 02 Jun 2021 06:42:20 GMT etag: - - '"E2F3444E8E7AB9DD50AF0E3B1FE407E64F862E22F96296343172E7FEBF23909E"' + - '"EA4D3978F7AF2F09B00D9C36361E80818C82045803ED728142A7D626B0D98E43"' + set-cookie: + - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com + - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d12f3512-2a6f-4c6b-8bda-4007871e2fe3 + 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/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54 + response: + body: + string: '{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a3c4ed05-c164-4733-9703-fd359ba94bb1 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 02 Jun 2021 06:42:21 GMT + etag: + - '"EA4D3978F7AF2F09B00D9C36361E80818C82045803ED728142A7D626B0D98E43"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -213,7 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 356705e3-8c02-4746-a9fe-274338592aa5 + - a3c4ed05-c164-4733-9703-fd359ba94bb1 status: code: 200 message: OK @@ -221,7 +268,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate Connection: @@ -229,23 +276,23 @@ 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/batches/ee17da1a-d98a-44f1-8c41-2c04c6213e8b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54 response: body: - string: '{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:24.9365058Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 593a8e20-7381-4ac1-ac25-7c028224b06d + - d3995cc1-21a9-458c-9894-d5aaa53ac68e cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:24 GMT + - Wed, 02 Jun 2021 06:42:22 GMT etag: - - '"003AE65F4692CE13AC3F868D68223C74B2CC7427E74A8C4C4001685746866D7D"' + - '"EA4D3978F7AF2F09B00D9C36361E80818C82045803ED728142A7D626B0D98E43"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -260,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 593a8e20-7381-4ac1-ac25-7c028224b06d + - d3995cc1-21a9-458c-9894-d5aaa53ac68e status: code: 200 message: OK @@ -276,13 +323,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/batches/ee17da1a-d98a-44f1-8c41-2c04c6213e8b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54 response: body: - string: '{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 2f948e7b-9233-43df-aeeb-b54fd3c67d21 + - d7c39910-6c7d-4976-bdc3-c3be3a65db09 cache-control: - public,max-age=1 content-length: @@ -290,9 +337,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:25 GMT + - Wed, 02 Jun 2021 06:42:23 GMT etag: - - '"360FCF5A31E989781595F34ABF63F075F392862A60A5F90ED504DFC7372471CD"' + - '"EA4D3978F7AF2F09B00D9C36361E80818C82045803ED728142A7D626B0D98E43"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -307,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2f948e7b-9233-43df-aeeb-b54fd3c67d21 + - d7c39910-6c7d-4976-bdc3-c3be3a65db09 status: code: 200 message: OK @@ -323,13 +370,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/batches/ee17da1a-d98a-44f1-8c41-2c04c6213e8b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54 response: body: - string: '{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - d6376b69-33f6-48cf-8ec7-0a9cfd3c1ec3 + - 28db61e0-5a3c-46eb-b86c-adf21dcf45c7 cache-control: - public,max-age=1 content-length: @@ -337,9 +384,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:26 GMT + - Wed, 02 Jun 2021 06:42:24 GMT etag: - - '"360FCF5A31E989781595F34ABF63F075F392862A60A5F90ED504DFC7372471CD"' + - '"EA4D3978F7AF2F09B00D9C36361E80818C82045803ED728142A7D626B0D98E43"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -354,7 +401,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d6376b69-33f6-48cf-8ec7-0a9cfd3c1ec3 + - 28db61e0-5a3c-46eb-b86c-adf21dcf45c7 status: code: 200 message: OK @@ -370,13 +417,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/batches/ee17da1a-d98a-44f1-8c41-2c04c6213e8b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54 response: body: - string: '{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 195fe4e2-beb5-4d04-a3c8-9d1154d42bd3 + - c8f913ea-6cb7-47d9-9175-70fa9871be4a cache-control: - public,max-age=1 content-length: @@ -384,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:28 GMT + - Wed, 02 Jun 2021 06:42:25 GMT etag: - - '"360FCF5A31E989781595F34ABF63F075F392862A60A5F90ED504DFC7372471CD"' + - '"EA4D3978F7AF2F09B00D9C36361E80818C82045803ED728142A7D626B0D98E43"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -401,7 +448,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 195fe4e2-beb5-4d04-a3c8-9d1154d42bd3 + - c8f913ea-6cb7-47d9-9175-70fa9871be4a status: code: 200 message: OK @@ -417,23 +464,23 @@ 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/batches/ee17da1a-d98a-44f1-8c41-2c04c6213e8b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54 response: body: - string: '{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"b897ec4e-e96e-4d96-8ee8-439e5afa4c54","createdDateTimeUtc":"2021-06-02T06:42:15.0284678Z","lastActionDateTimeUtc":"2021-06-02T06:42:19.4888679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - f876ba5b-7b1b-45a1-b76a-739c72fc7e9d + - 9b4780c6-af2f-4164-9e11-beccd70ea3fc cache-control: - public,max-age=1 content-length: - - '289' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:29 GMT + - Wed, 02 Jun 2021 06:42:26 GMT etag: - - '"360FCF5A31E989781595F34ABF63F075F392862A60A5F90ED504DFC7372471CD"' + - '"0E7D4CAC07B3DB74DD8FA5BAC6026F324F456468B81C60E17BAA487ECE5B582C"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -448,7 +495,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f876ba5b-7b1b-45a1-b76a-739c72fc7e9d + - 9b4780c6-af2f-4164-9e11-beccd70ea3fc status: code: 200 message: OK @@ -456,7 +503,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -464,23 +511,23 @@ 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/batches/ee17da1a-d98a-44f1-8c41-2c04c6213e8b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/b897ec4e-e96e-4d96-8ee8-439e5afa4c54/documents?$skip=0 response: body: - string: '{"id":"ee17da1a-d98a-44f1-8c41-2c04c6213e8b","createdDateTimeUtc":"2021-05-21T17:01:24.8628677Z","lastActionDateTimeUtc":"2021-05-21T17:01:25.5569519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target21fb26f4-0a17-4642-a1c5-babaeb61c6a9/1ed63c2f-d184-4c38-bd7a-bbc2711d7947.txt","sourcePath":"https://redacted.blob.core.windows.net/src1c053f13-cb03-4e16-816e-e6ed8ea7d65c/1ed63c2f-d184-4c38-bd7a-bbc2711d7947.txt","createdDateTimeUtc":"2021-06-02T06:42:19.26628Z","lastActionDateTimeUtc":"2021-06-02T06:42:26.1553635Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee37-0000-0000-0000-000000000000","characterCharged":17}]}' headers: apim-request-id: - - fefaa72d-b905-4e77-95ae-9350e539350d + - 72dff22d-d7fe-4328-8480-16badd1c69a0 cache-control: - public,max-age=1 content-length: - - '292' + - '503' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:30 GMT + - Wed, 02 Jun 2021 06:42:26 GMT etag: - - '"CEED7A7CA4393887AABCEB52268002AD4050CED4A2BED2822732F36C941E1BC1"' + - '"174E344BA29693ED0B5C6F28A4BB28CDA96D69F6DA8BB185D88BDB4B8A75B11C"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -495,7 +542,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - fefaa72d-b905-4e77-95ae-9350e539350d + - 72dff22d-d7fe-4328-8480-16badd1c69a0 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 2296a62fe089..bdff92933105 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:30 GMT + - Wed, 02 Jun 2021 06:42:26 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src02cdc534-0bfb-43b1-8234-c509ec83ee45?restype=container + uri: https://redacted.blob.core.windows.net/src76c71c5c-bf88-40fe-a368-ae076519fa31?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:30 GMT + - Wed, 02 Jun 2021 06:42:26 GMT etag: - - '"0x8D91C7A14C43920"' + - '"0x8D92591963D6DF1"' last-modified: - - Fri, 21 May 2021 17:01:30 GMT + - Wed, 02 Jun 2021 06:42:27 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: - - Fri, 21 May 2021 17:01:31 GMT + - Wed, 02 Jun 2021 06:42:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src02cdc534-0bfb-43b1-8234-c509ec83ee45/1934111b-cfb8-485a-96e1-99d5cf452f78.txt + uri: https://redacted.blob.core.windows.net/src76c71c5c-bf88-40fe-a368-ae076519fa31/178e931b-a08e-4bf3-b745-97fa991fb5fe.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:01:30 GMT + - Wed, 02 Jun 2021 06:42:26 GMT etag: - - '"0x8D91C7A14D1FF83"' + - '"0x8D92591964C87F4"' last-modified: - - Fri, 21 May 2021 17:01:31 GMT + - Wed, 02 Jun 2021 06:42:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:31 GMT + - Wed, 02 Jun 2021 06:42:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetf2f59085-d294-41f1-857b-45c98df3f1dd?restype=container + uri: https://redacted.blob.core.windows.net/target8724404d-2b75-482a-bd46-77fd65779bfe?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:30 GMT + - Wed, 02 Jun 2021 06:42:27 GMT etag: - - '"0x8D91C7A14FFD50C"' + - '"0x8D925919674B7FB"' last-modified: - - Fri, 21 May 2021 17:01:31 GMT + - Wed, 02 Jun 2021 06:42:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -139,11 +139,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:31 GMT + - Wed, 02 Jun 2021 06:42:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target276051fd-5e1a-4379-838d-c26a8974f880?restype=container + uri: https://redacted.blob.core.windows.net/target66eb20d1-412a-4015-82c0-2219a09cccb6?restype=container response: body: string: '' @@ -151,11 +151,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:31 GMT + - Wed, 02 Jun 2021 06:42:26 GMT etag: - - '"0x8D91C7A15305BAD"' + - '"0x8D9259196984F74"' last-modified: - - Fri, 21 May 2021 17:01:31 GMT + - Wed, 02 Jun 2021 06:42:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -164,9 +164,9 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src02cdc534-0bfb-43b1-8234-c509ec83ee45?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf2f59085-d294-41f1-857b-45c98df3f1dd?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", - "language": "es"}, {"targetUrl": "https://redacted.blob.core.windows.net/target276051fd-5e1a-4379-838d-c26a8974f880?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src76c71c5c-bf88-40fe-a368-ae076519fa31?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8724404d-2b75-482a-bd46-77fd65779bfe?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + "language": "es"}, {"targetUrl": "https://redacted.blob.core.windows.net/target66eb20d1-412a-4015-82c0-2219a09cccb6?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "fr"}]}]}' headers: Accept: @@ -188,13 +188,13 @@ interactions: string: '' headers: apim-request-id: - - 082ce552-5935-47a3-b31a-a8d1ce56f16b + - 3979d647-9cba-413c-8c6d-2276f0bda3b4 content-length: - '0' date: - - Fri, 21 May 2021 17:01:31 GMT + - Wed, 02 Jun 2021 06:42:28 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/55b91db0-0860-415c-9711-709152604588 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -205,104 +205,10 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 082ce552-5935-47a3-b31a-a8d1ce56f16b + - 3979d647-9cba-413c-8c6d-2276f0bda3b4 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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 - response: - body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.0875565Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 0c241678-a73e-4956-980a-b0d8009d3db6 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:31 GMT - etag: - - '"E634323F3D370620275655F91F2D19C6345B71F9B1B7F9ED06962AD368CD8DFF"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 0c241678-a73e-4956-980a-b0d8009d3db6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 - response: - body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.3588751Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - c179d4d1-834d-4fcd-9bfd-84fb8d827e76 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:32 GMT - etag: - - '"C8ECAD5973743E87B87C4E607865234EDC4636414003A2F2AB1972D222030538"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - c179d4d1-834d-4fcd-9bfd-84fb8d827e76 - status: - code: 200 - message: OK - request: body: null headers: @@ -315,23 +221,23 @@ 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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/55b91db0-0860-415c-9711-709152604588 response: body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 25f1d556-e78c-4fb6-9edc-3e8b9b58b656 + - 8b1530c5-1a96-4720-9d0f-15599d1a35b4 cache-control: - public,max-age=1 content-length: - - '289' + - '287' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:33 GMT + - Wed, 02 Jun 2021 06:42:33 GMT etag: - - '"5CD5052E760724DA926E9C44B7D5409A864F2774A5F85C3927F8DB50AD6783E5"' + - '"54F03BCB8E11AC2633E0B0DFBA93578C099834BAA14DF6BEBC1BCF7FC7E7ADAE"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -346,7 +252,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 25f1d556-e78c-4fb6-9edc-3e8b9b58b656 + - 8b1530c5-1a96-4720-9d0f-15599d1a35b4 status: code: 200 message: OK @@ -362,23 +268,23 @@ 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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/55b91db0-0860-415c-9711-709152604588 response: body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 70d0cf33-0450-468f-9423-e2186d5bff9f + - 3e1f1358-e3f3-452b-ac5d-e1f812a21cd5 cache-control: - public,max-age=1 content-length: - - '289' + - '287' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:34 GMT + - Wed, 02 Jun 2021 06:42:34 GMT etag: - - '"5CD5052E760724DA926E9C44B7D5409A864F2774A5F85C3927F8DB50AD6783E5"' + - '"54F03BCB8E11AC2633E0B0DFBA93578C099834BAA14DF6BEBC1BCF7FC7E7ADAE"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -393,7 +299,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 70d0cf33-0450-468f-9423-e2186d5bff9f + - 3e1f1358-e3f3-452b-ac5d-e1f812a21cd5 status: code: 200 message: OK @@ -409,23 +315,23 @@ 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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/55b91db0-0860-415c-9711-709152604588 response: body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 09374b10-3a0b-438c-aea7-c6cb31df6716 + - 36ea343e-6b28-42b2-aff7-e9816c8083cf cache-control: - public,max-age=1 content-length: - - '290' + - '287' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:35 GMT + - Wed, 02 Jun 2021 06:42:35 GMT etag: - - '"F5EA156DE06E74D094CE454CA2BAC030C935D2DFE21E8110BD0A57DBA08350CB"' + - '"54F03BCB8E11AC2633E0B0DFBA93578C099834BAA14DF6BEBC1BCF7FC7E7ADAE"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -440,7 +346,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 09374b10-3a0b-438c-aea7-c6cb31df6716 + - 36ea343e-6b28-42b2-aff7-e9816c8083cf status: code: 200 message: OK @@ -456,23 +362,23 @@ 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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/55b91db0-0860-415c-9711-709152604588 response: body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 4684af40-246a-4cb6-85ae-ba39fad9bd21 + - 97afbe6a-a940-4123-83e3-5fe87222da07 cache-control: - public,max-age=1 content-length: - - '290' + - '287' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:36 GMT + - Wed, 02 Jun 2021 06:42:36 GMT etag: - - '"F5EA156DE06E74D094CE454CA2BAC030C935D2DFE21E8110BD0A57DBA08350CB"' + - '"54F03BCB8E11AC2633E0B0DFBA93578C099834BAA14DF6BEBC1BCF7FC7E7ADAE"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -487,7 +393,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4684af40-246a-4cb6-85ae-ba39fad9bd21 + - 97afbe6a-a940-4123-83e3-5fe87222da07 status: code: 200 message: OK @@ -503,23 +409,23 @@ 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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/55b91db0-0860-415c-9711-709152604588 response: body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - faae4c12-ad6c-4e92-ac27-2c21bccf9ba0 + - e0b096d4-e261-42c1-bae8-8c0f32de6e46 cache-control: - public,max-age=1 content-length: - - '290' + - '287' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:37 GMT + - Wed, 02 Jun 2021 06:42:37 GMT etag: - - '"F5EA156DE06E74D094CE454CA2BAC030C935D2DFE21E8110BD0A57DBA08350CB"' + - '"54F03BCB8E11AC2633E0B0DFBA93578C099834BAA14DF6BEBC1BCF7FC7E7ADAE"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -534,7 +440,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - faae4c12-ad6c-4e92-ac27-2c21bccf9ba0 + - e0b096d4-e261-42c1-bae8-8c0f32de6e46 status: code: 200 message: OK @@ -550,13 +456,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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/55b91db0-0860-415c-9711-709152604588 response: body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"55b91db0-0860-415c-9711-709152604588","createdDateTimeUtc":"2021-06-02T06:42:28.0147084Z","lastActionDateTimeUtc":"2021-06-02T06:42:31.86506Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}' headers: apim-request-id: - - fa2b0d90-dd7e-499b-ae88-7d2712a3be8e + - 56cf59c7-3681-4a40-a6a0-a1517518346e cache-control: - public,max-age=1 content-length: @@ -564,9 +470,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:38 GMT + - Wed, 02 Jun 2021 06:42:38 GMT etag: - - '"F5EA156DE06E74D094CE454CA2BAC030C935D2DFE21E8110BD0A57DBA08350CB"' + - '"392270633B6B3E95996929B06147140A4C8985A376860E0498984008FB28FD27"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -581,7 +487,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - fa2b0d90-dd7e-499b-ae88-7d2712a3be8e + - 56cf59c7-3681-4a40-a6a0-a1517518346e status: code: 200 message: OK @@ -589,7 +495,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -597,23 +503,23 @@ 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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/55b91db0-0860-415c-9711-709152604588/documents?$skip=0 response: body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target8724404d-2b75-482a-bd46-77fd65779bfe/178e931b-a08e-4bf3-b745-97fa991fb5fe.txt","sourcePath":"https://redacted.blob.core.windows.net/src76c71c5c-bf88-40fe-a368-ae076519fa31/178e931b-a08e-4bf3-b745-97fa991fb5fe.txt","createdDateTimeUtc":"2021-06-02T06:42:31.6687725Z","lastActionDateTimeUtc":"2021-06-02T06:42:38.7550573Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee38-0000-0000-0000-000000000000","characterCharged":17},{"path":"https://redacted.blob.core.windows.net/target66eb20d1-412a-4015-82c0-2219a09cccb6/178e931b-a08e-4bf3-b745-97fa991fb5fe.txt","sourcePath":"https://redacted.blob.core.windows.net/src76c71c5c-bf88-40fe-a368-ae076519fa31/178e931b-a08e-4bf3-b745-97fa991fb5fe.txt","createdDateTimeUtc":"2021-06-02T06:42:31.6594479Z","lastActionDateTimeUtc":"2021-06-02T06:42:38.7198375Z","status":"Succeeded","to":"fr","progress":1,"id":"0007ee39-0000-0000-0000-000000000000","characterCharged":17}]}' headers: apim-request-id: - - bc44cc44-a149-4cd1-aa0d-1541accb07f8 + - 46fa44b1-8e64-4ca4-a890-932d48f22a04 cache-control: - public,max-age=1 content-length: - - '290' + - '999' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:39 GMT + - Wed, 02 Jun 2021 06:42:38 GMT etag: - - '"F5EA156DE06E74D094CE454CA2BAC030C935D2DFE21E8110BD0A57DBA08350CB"' + - '"DC04CBFA09ABA18B8C7A8A49F4DBB667B3D7363B8FDAFB13ABFE0E87C89B39F3"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -628,54 +534,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - bc44cc44-a149-4cd1-aa0d-1541accb07f8 - 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/batches/89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1 - response: - body: - string: '{"id":"89bc9fc2-fb18-4c05-b3bc-1b761e12e9f1","createdDateTimeUtc":"2021-05-21T17:01:32.0875561Z","lastActionDateTimeUtc":"2021-05-21T17:01:32.5666724Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}' - headers: - apim-request-id: - - efdb61a3-d829-45b9-99d7-51f8394312a6 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:41 GMT - etag: - - '"C53CFD570C52E85C604DE4718B080003ABCE70C753C0DACB1E2170A7163A4AE3"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - efdb61a3-d829-45b9-99d7-51f8394312a6 + - 46fa44b1-8e64-4ca4-a890-932d48f22a04 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 75066fad869e..899f4e3eb4da 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:41 GMT + - Wed, 02 Jun 2021 06:42:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4988d409-ccb9-444a-90fb-65123d0eae22?restype=container + uri: https://redacted.blob.core.windows.net/src46c3cb85-19e8-422f-a85e-31433d310a93?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:41 GMT + - Wed, 02 Jun 2021 06:42:38 GMT etag: - - '"0x8D91C7A1B470B64"' + - '"0x8D925919D7A9574"' last-modified: - - Fri, 21 May 2021 17:01:41 GMT + - Wed, 02 Jun 2021 06:42:39 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: - - Fri, 21 May 2021 17:01:41 GMT + - Wed, 02 Jun 2021 06:42:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4988d409-ccb9-444a-90fb-65123d0eae22/24a80b9f-b84d-4976-a4b2-0a43b1f0fb69.txt + uri: https://redacted.blob.core.windows.net/src46c3cb85-19e8-422f-a85e-31433d310a93/c45f1f70-3884-4990-8396-f761de9f2733.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:01:41 GMT + - Wed, 02 Jun 2021 06:42:38 GMT etag: - - '"0x8D91C7A1B54AFF1"' + - '"0x8D925919D8250AA"' last-modified: - - Fri, 21 May 2021 17:01:41 GMT + - Wed, 02 Jun 2021 06:42:39 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: - - Fri, 21 May 2021 17:01:42 GMT + - Wed, 02 Jun 2021 06:42:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4988d409-ccb9-444a-90fb-65123d0eae22/80880445-41c8-46c6-a026-545a45e8fe3e.jpg + uri: https://redacted.blob.core.windows.net/src46c3cb85-19e8-422f-a85e-31433d310a93/f629dafc-2277-46f8-bfba-f85ddcde78a1.jpg response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:01:41 GMT + - Wed, 02 Jun 2021 06:42:38 GMT etag: - - '"0x8D91C7A1B5FAE71"' + - '"0x8D925919D89F32D"' last-modified: - - Fri, 21 May 2021 17:01:42 GMT + - Wed, 02 Jun 2021 06:42:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:42 GMT + - Wed, 02 Jun 2021 06:42:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target805f35c8-04c8-4de3-839f-53b65dbf32db?restype=container + uri: https://redacted.blob.core.windows.net/target39661c79-0a08-48bc-894a-dd9b81abbb83?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:41 GMT + - Wed, 02 Jun 2021 06:42:38 GMT etag: - - '"0x8D91C7A1B85F994"' + - '"0x8D925919DA63CD7"' last-modified: - - Fri, 21 May 2021 17:01:42 GMT + - Wed, 02 Jun 2021 06:42:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4988d409-ccb9-444a-90fb-65123d0eae22?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target805f35c8-04c8-4de3-839f-53b65dbf32db?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src46c3cb85-19e8-422f-a85e-31433d310a93?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target39661c79-0a08-48bc-894a-dd9b81abbb83?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -199,13 +199,13 @@ interactions: string: '' headers: apim-request-id: - - a909d46d-74e0-4db9-98ce-57a289397240 + - 51ec3b38-9153-4182-a689-243f4838c85c content-length: - '0' date: - - Fri, 21 May 2021 17:01:42 GMT + - Wed, 02 Jun 2021 06:42:39 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + - https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0 set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -216,198 +216,10 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a909d46d-74e0-4db9-98ce-57a289397240 + - 51ec3b38-9153-4182-a689-243f4838c85c 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 - response: - body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:42.6632984Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - f5f07138-48e5-47ab-9796-27e6b1a95484 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:42 GMT - etag: - - '"29A37C8DE11EEE7C5EFDF69719CEA47FEC9D5CEBA9642731E45CDFA31F7818A1"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - f5f07138-48e5-47ab-9796-27e6b1a95484 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 - response: - body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:42.8133973Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - b791898f-a2f4-46e5-8845-fffec5051c4b - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:42 GMT - etag: - - '"C1417260C527B4BB18219BFF7C61E1BD8BDC1C60DE7F381485B6FBA914460B09"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b791898f-a2f4-46e5-8845-fffec5051c4b - 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 - response: - body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:42.8133973Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 130bd8de-c746-4b97-9728-e7e507d24387 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:43 GMT - etag: - - '"C1417260C527B4BB18219BFF7C61E1BD8BDC1C60DE7F381485B6FBA914460B09"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 130bd8de-c746-4b97-9728-e7e507d24387 - 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 - response: - body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:42.8133973Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 8d367c49-348e-412b-9d4f-39056548c35e - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:44 GMT - etag: - - '"C1417260C527B4BB18219BFF7C61E1BD8BDC1C60DE7F381485B6FBA914460B09"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 8d367c49-348e-412b-9d4f-39056548c35e - status: - code: 200 - message: OK - request: body: null headers: @@ -420,70 +232,23 @@ 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0 response: body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - a06a0856-a2d5-48d6-96a6-77e200ea64ad + - 9ffb956d-dd8d-4c6a-a1b5-c60df70bfe65 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:45 GMT + - Wed, 02 Jun 2021 06:42:44 GMT etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' - set-cookie: - - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - a06a0856-a2d5-48d6-96a6-77e200ea64ad - 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 - response: - body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 2307ff0e-41ce-4fec-b41e-2b6ac8923c64 - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:47 GMT - etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' + - '"E193F386B702C9F922E58B1D9B3B9F5D35F7E7C2C218A268849A6C5AF83462C2"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -498,7 +263,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2307ff0e-41ce-4fec-b41e-2b6ac8923c64 + - 9ffb956d-dd8d-4c6a-a1b5-c60df70bfe65 status: code: 200 message: OK @@ -514,23 +279,23 @@ 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0 response: body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - fef96c6b-9f2f-447a-b5b3-e1dff1f82c6f + - 404f7145-794b-49d0-872d-2913a403fcf3 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:48 GMT + - Wed, 02 Jun 2021 06:42:45 GMT etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' + - '"E193F386B702C9F922E58B1D9B3B9F5D35F7E7C2C218A268849A6C5AF83462C2"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -545,7 +310,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - fef96c6b-9f2f-447a-b5b3-e1dff1f82c6f + - 404f7145-794b-49d0-872d-2913a403fcf3 status: code: 200 message: OK @@ -561,23 +326,23 @@ 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0 response: body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - ae34a07b-bbbb-4729-976b-72e4de5c90fb + - ae16d556-5b39-49f8-a5bb-760c94d4e870 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:49 GMT + - Wed, 02 Jun 2021 06:42:46 GMT etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' + - '"E193F386B702C9F922E58B1D9B3B9F5D35F7E7C2C218A268849A6C5AF83462C2"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -592,7 +357,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ae34a07b-bbbb-4729-976b-72e4de5c90fb + - ae16d556-5b39-49f8-a5bb-760c94d4e870 status: code: 200 message: OK @@ -608,23 +373,23 @@ 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0 response: body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 45ea65e7-8fa7-4271-a54b-b2e253e061a3 + - 57f064bd-1365-4656-a6ad-9f0d0e5ac76e cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:50 GMT + - Wed, 02 Jun 2021 06:42:47 GMT etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' + - '"E193F386B702C9F922E58B1D9B3B9F5D35F7E7C2C218A268849A6C5AF83462C2"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -639,7 +404,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 45ea65e7-8fa7-4271-a54b-b2e253e061a3 + - 57f064bd-1365-4656-a6ad-9f0d0e5ac76e status: code: 200 message: OK @@ -655,23 +420,23 @@ 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0 response: body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - e4cd4f94-f505-4ee1-83c2-f085b4412b9d + - 64c5d8b6-dc61-488d-a780-a80456f29630 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:51 GMT + - Wed, 02 Jun 2021 06:42:48 GMT etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' + - '"E193F386B702C9F922E58B1D9B3B9F5D35F7E7C2C218A268849A6C5AF83462C2"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -686,7 +451,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e4cd4f94-f505-4ee1-83c2-f085b4412b9d + - 64c5d8b6-dc61-488d-a780-a80456f29630 status: code: 200 message: OK @@ -702,23 +467,23 @@ 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0 response: body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - b5836d07-d068-41c7-847a-d4473dfb081f + - 93f1879b-c4bb-4318-b0c7-1c5badda2aff cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:52 GMT + - Wed, 02 Jun 2021 06:42:49 GMT etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' + - '"E193F386B702C9F922E58B1D9B3B9F5D35F7E7C2C218A268849A6C5AF83462C2"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -733,7 +498,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b5836d07-d068-41c7-847a-d4473dfb081f + - 93f1879b-c4bb-4318-b0c7-1c5badda2aff status: code: 200 message: OK @@ -749,23 +514,23 @@ 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0 response: body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f10a23ff-9423-4b8a-a66b-bc4ae3b270b0","createdDateTimeUtc":"2021-06-02T06:42:39.7527005Z","lastActionDateTimeUtc":"2021-06-02T06:42:44.5820546Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 89d3d56e-9490-4cb9-803f-2fe91f0d8a65 + - bb3ca694-eac0-417a-8a28-54c6c6131312 cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:53 GMT + - Wed, 02 Jun 2021 06:42:51 GMT etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' + - '"C17881F76DE8A21F3215D2662D10BB96A8D15EF21E6D51B49CCD262AB9A81AD2"' set-cookie: - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -780,7 +545,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 89d3d56e-9490-4cb9-803f-2fe91f0d8a65 + - bb3ca694-eac0-417a-8a28-54c6c6131312 status: code: 200 message: OK @@ -788,7 +553,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -796,23 +561,23 @@ 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f10a23ff-9423-4b8a-a66b-bc4ae3b270b0/documents?$skip=0 response: body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target39661c79-0a08-48bc-894a-dd9b81abbb83/c45f1f70-3884-4990-8396-f761de9f2733.txt","sourcePath":"https://redacted.blob.core.windows.net/src46c3cb85-19e8-422f-a85e-31433d310a93/c45f1f70-3884-4990-8396-f761de9f2733.txt","createdDateTimeUtc":"2021-06-02T06:42:44.320391Z","lastActionDateTimeUtc":"2021-06-02T06:42:51.0840871Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee3a-0000-0000-0000-000000000000","characterCharged":27}]}' headers: apim-request-id: - - 41c1f5bf-54a5-4411-92be-968e8a6bd2c3 + - 99f0ed48-2080-4286-8d5f-7fbae8a2098f cache-control: - public,max-age=1 content-length: - - '288' + - '504' content-type: - application/json; charset=utf-8 date: - - Fri, 21 May 2021 17:01:54 GMT + - Wed, 02 Jun 2021 06:42:51 GMT etag: - - '"61BAB7FAD436FD3896FA7A83DEB693B29325F2270A49FFDFF7C72E6CA13D3237"' + - '"800AD774F649E3C251450BC39548964566184A56B280120F9EAEF93013239064"' set-cookie: - ARRAffinity=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com @@ -827,54 +592,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 41c1f5bf-54a5-4411-92be-968e8a6bd2c3 - 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/batches/8ed02463-9461-4bc6-a6e5-cebb1e6f4606 - response: - body: - string: '{"id":"8ed02463-9461-4bc6-a6e5-cebb1e6f4606","createdDateTimeUtc":"2021-05-21T17:01:42.663298Z","lastActionDateTimeUtc":"2021-05-21T17:01:45.4238947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: - - b3d13c6e-f37c-48cf-84c7-21e609e4ea7d - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 May 2021 17:01:55 GMT - etag: - - '"98F59A66EDB9DEAFEF0F4546CBEABB77C867C9AAE7C643713CA960A6CA9FF269"' - set-cookie: - - ARRAffinity=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;Secure;Domain=mtbatch.nam.microsofttranslator.com - - ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b3d13c6e-f37c-48cf-84c7-21e609e4ea7d + - 99f0ed48-2080-4286-8d5f-7fbae8a2098f 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 f638b559633b..e66f6e5a556f 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:56 GMT + - Wed, 02 Jun 2021 07:06:21 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target362ba882-2474-43b6-80eb-2b8aa8e5157e?restype=container + uri: https://redacted.blob.core.windows.net/targete112fd02-d05e-4c20-a3d0-53816f568630?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:56 GMT + - Wed, 02 Jun 2021 07:06:21 GMT etag: - - '"0x8D91C7A240CFE55"' + - '"0x8D92594ED6F0DFA"' last-modified: - - Fri, 21 May 2021 17:01:56 GMT + - Wed, 02 Jun 2021 07:06:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -39,13 +39,13 @@ interactions: message: Created - request: body: '{"inputs": [{"source": {"sourceUrl": "https://idont.ex.ist", "filter": - {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target362ba882-2474-43b6-80eb-2b8aa8e5157e?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete112fd02-d05e-4c20-a3d0-53816f568630?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '316' + - '320' Content-Type: - application/json User-Agent: @@ -56,123 +56,46 @@ interactions: body: string: '' headers: - apim-request-id: 554001ad-a7bf-4dc9-b561-b52a9711211b + apim-request-id: 37f72948-197a-4570-aa7e-3ffaded8cfed content-length: '0' - date: Fri, 21 May 2021 17:01:56 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/ff6caf01-398f-42d2-9c87-4319abd54be3 - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 07:06:21 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c4182d40-ee61-40f5-b3ac-31bc4aaed8b8 + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 554001ad-a7bf-4dc9-b561-b52a9711211b + x-requestid: 37f72948-197a-4570-aa7e-3ffaded8cfed status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/ff6caf01-398f-42d2-9c87-4319abd54be3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAK1QTU/DMAz9K1XO69Sm3db2Nm0gISGBYCDBzUvcLlKbQOIOoWn/HaeMGxIXLpHj - 9+Fnn4TRohFtu1TQZnla1FWbllLLtFbVKi2LvIa9XpR7LMRMKI9AqLf87MyAT6RYKzOZp9kilfku - XzVZ3iyW86rKpKzqV9b0EGityDj7t6xe1UWZySgLBDQG5j1DbzRE/TWYHjVj6L3zojkJ5TQy5cYe - I+kB30cMxIQBQ4AuQhuw1lECSnErCW70ChPt1DigpaR3anJOPgwdEjpgokbvI/KGfjAhMBbmbEjg - OyT2u2NgknDTWIv+6vcs28uI9TT4Fo/Y/3+u85nvNA4D+M+YgBxBL5psJtrvS8UyjNOIqTb23rvO - /3w5wAvSI+9GF7ICq7D/kU5+mwN4UIQ+Ft2EnM9fGw1YVjYCAAA= - headers: - apim-request-id: f8ef04c9-f02e-4a83-b583-53719077d8a9 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:01:56 GMT - etag: '"C27C40663E356CB75EFE075C07427257823226DAC89BBB9735EA43F72E5D965C"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: f8ef04c9-f02e-4a83-b583-53719077d8a9 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/ff6caf01-398f-42d2-9c87-4319abd54be3 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/ff6caf01-398f-42d2-9c87-4319abd54be3 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c4182d40-ee61-40f5-b3ac-31bc4aaed8b8 response: body: - string: !!binary | - H4sIAAAAAAAEAK1QTU/DMAz9K1XO69Sm3db2Nm0gISGBYCDBzUvcLlKbQOIOoWn/HaeMGxIXLpHj - 9+Fnn4TRohFtu1TQZnla1FWbllLLtFbVKi2LvIa9XpR7LMRMKI9AqLf87MyAT6RYKzOZp9kilfku - XzVZ3iyW86rKpKzqV9b0EGityDj7t6xe1UWZySgLBDQG5j1DbzRE/TWYHjVj6L3zojkJ5TQy5cYe - I+kB30cMxIQBQ4AuQhuw1lECSnErCW70ChPt1DigpaR3anJOPgwdEjpgokbvI/KGfjAhMBbmbEjg - OyT2u2NgknDTWIv+6vcs28uI9TT4Fo/Y/3+u85nvNA4D+M+YgBxBL5psJtrvS8UyjNOIqTb23rvO - /3w5wAvSI+9GF7ICq7D/kU5+mwN4UIQ+Ft2EnM9fGw1YVjYCAAA= + string: '{"id":"c4182d40-ee61-40f5-b3ac-31bc4aaed8b8","createdDateTimeUtc":"2021-06-02T07:06:22.1439114Z","lastActionDateTimeUtc":"2021-06-02T07:06:22.2296325Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"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: 0159d6a9-05ba-4ab9-be3a-1e789bdc7f63 + apim-request-id: ce6cf0b7-c250-41f0-b40d-f9e053dc0bb7 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:01:56 GMT - etag: '"C27C40663E356CB75EFE075C07427257823226DAC89BBB9735EA43F72E5D965C"' + date: Wed, 02 Jun 2021 07:06:27 GMT + etag: '"DC060335F096D75B67C78677FAEA750A8A40FBC2E04FAC59F6B0882F93D296CF"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0159d6a9-05ba-4ab9-be3a-1e789bdc7f63 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/ff6caf01-398f-42d2-9c87-4319abd54be3 -- 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/batches/ff6caf01-398f-42d2-9c87-4319abd54be3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAK1QTU/DMAz9K1XO69Sm3db2Nm0gISGBYCDBzUvcLlKbQOIOoWn/HaeMGxIXLpHj - 9+Fnn4TRohFtu1TQZnla1FWbllLLtFbVKi2LvIa9XpR7LMRMKI9AqLf87MyAT6RYKzOZp9kilfku - XzVZ3iyW86rKpKzqV9b0EGityDj7t6xe1UWZySgLBDQG5j1DbzRE/TWYHjVj6L3zojkJ5TQy5cYe - I+kB30cMxIQBQ4AuQhuw1lECSnErCW70ChPt1DigpaR3anJOPgwdEjpgokbvI/KGfjAhMBbmbEjg - OyT2u2NgknDTWIv+6vcs28uI9TT4Fo/Y/3+u85nvNA4D+M+YgBxBL5psJtrvS8UyjNOIqTb23rvO - /3w5wAvSI+9GF7ICq7D/kU5+mwN4UIQ+Ft2EnM9fGw1YVjYCAAA= - headers: - apim-request-id: a69da1fa-7f4f-4a2c-86e5-4625ba2fe324 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:01:57 GMT - etag: '"C27C40663E356CB75EFE075C07427257823226DAC89BBB9735EA43F72E5D965C"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: a69da1fa-7f4f-4a2c-86e5-4625ba2fe324 + x-requestid: ce6cf0b7-c250-41f0-b40d-f9e053dc0bb7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/ff6caf01-398f-42d2-9c87-4319abd54be3 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/c4182d40-ee61-40f5-b3ac-31bc4aaed8b8 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 84af4e66b340..d5b905f05106 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:58 GMT + - Wed, 02 Jun 2021 07:06:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfdbb1d7c-c4b1-41b8-9175-a0eae305657c?restype=container + uri: https://redacted.blob.core.windows.net/src59c590e0-2c10-453d-9afa-9c16b77301ed?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:57 GMT + - Wed, 02 Jun 2021 07:06:26 GMT etag: - - '"0x8D91C7A252FBB11"' + - '"0x8D92594F0CCE1F1"' last-modified: - - Fri, 21 May 2021 17:01:58 GMT + - Wed, 02 Jun 2021 07:06:27 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: - - Fri, 21 May 2021 17:01:58 GMT + - Wed, 02 Jun 2021 07:06:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srcfdbb1d7c-c4b1-41b8-9175-a0eae305657c/38f731bd-58f5-4505-9378-5476a460ad39.txt + uri: https://redacted.blob.core.windows.net/src59c590e0-2c10-453d-9afa-9c16b77301ed/fd57340a-40ff-4ae5-95ea-365c4f81e866.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - 1B2M2Y8AsgTpgAmY7PhCfg== date: - - Fri, 21 May 2021 17:01:57 GMT + - Wed, 02 Jun 2021 07:06:27 GMT etag: - - '"0x8D91C7A253D71DA"' + - '"0x8D92594F0D6D9F0"' last-modified: - - Fri, 21 May 2021 17:01:58 GMT + - Wed, 02 Jun 2021 07:06:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:01:58 GMT + - Wed, 02 Jun 2021 07:06:27 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetfd5c3587-497b-45ad-93c1-f29486355a33?restype=container + uri: https://redacted.blob.core.windows.net/target0fa43756-0efa-4c0a-a878-18612108057d?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:01:58 GMT + - Wed, 02 Jun 2021 07:06:27 GMT etag: - - '"0x8D91C7A256A6C78"' + - '"0x8D92594F0F36719"' last-modified: - - Fri, 21 May 2021 17:01:58 GMT + - Wed, 02 Jun 2021 07:06:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,14 +126,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfdbb1d7c-c4b1-41b8-9175-a0eae305657c?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfd5c3587-497b-45ad-93c1-f29486355a33?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src59c590e0-2c10-453d-9afa-9c16b77301ed?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0fa43756-0efa-4c0a-a878-18612108057d?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '482' + - '484' Content-Type: - application/json User-Agent: @@ -144,151 +144,46 @@ interactions: body: string: '' headers: - apim-request-id: 64d8771c-c1b0-4e6b-9c94-16a11f5b5b3c + apim-request-id: 3d5853bf-309d-4b70-a4ac-19b5e349ad30 content-length: '0' - date: Fri, 21 May 2021 17:01:58 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 07:06:27 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/384343e6-a44b-49e9-91ef-d62cf39d44dc + set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 64d8771c-c1b0-4e6b-9c94-16a11f5b5b3c + x-requestid: 3d5853bf-309d-4b70-a4ac-19b5e349ad30 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2PMU8DMQyF/4vnBiVpUppsCGaERBlg8/ncEunuIiW+AVX97yQnlZnFen7Pny1f - IY0Q4aCDI+JRBeag3NlbFfxglAtHOxA5uz8MsAMqjMLjSyunNPOHUGOttkZpr6w5mceoTfThQXvj - 9sfw1ZgJqzyRpLz8Ewu2Y1VQ1trmXrO8C5Z2trvrPGP5gXgFyYITRL2DM6appV3WtX1R66bT8lby - pdzbJcsn/63qDuFCPN3Rbd/zNxYk4dLFZUtut18ZuzC+JAEAAA== - headers: - apim-request-id: 0d6a960a-6745-4bc7-b664-eef7832ca20e - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:01:59 GMT - etag: '"6B09B3B8EF1CA40273E842DF9B740157962C7533A84D991D62019C81334F957B"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 0d6a960a-6745-4bc7-b664-eef7832ca20e - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPMW8DIQyF/wtziDAH18BWJXMUqenQbj4fSZHuDgmcIYry3wsnpWsX69nP37P8 - EHEUXvTKGaIwSheCk+ZitXR2AGncTg9ERnf9IDaCckAO46GWc5zDJ1NltdIglZUazvDmFXjrtsqC - 6XbuuzITFn4njmn5HwPTa3Bdwwoj30rdOyb+YMz1bJve5hnzXfiH4MQ4CQ8bccE4Vder5tcvSll1 - XE45XfOrXRJ/hb+oxhEuFKYXuubtfzAjcchNXFfn+fwFtGpDKSQBAAA= - headers: - apim-request-id: fcb15aa3-1812-4f57-a402-b949f189d7de - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:01:59 GMT - etag: '"EA05B8C69A9D2706816ECCB89A240079F5CE90F1B4FC1437BB8FE50945A74EAF"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: fcb15aa3-1812-4f57-a402-b949f189d7de - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b -- 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/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPMW8DIQyF/wtziDAH18BWJXMUqenQbj4fSZHuDgmcIYry3wsnpWsX69nP37P8 - EHEUXvTKGaIwSheCk+ZitXR2AGncTg9ERnf9IDaCckAO46GWc5zDJ1NltdIglZUazvDmFXjrtsqC - 6XbuuzITFn4njmn5HwPTa3Bdwwoj30rdOyb+YMz1bJve5hnzXfiH4MQ4CQ8bccE4Vder5tcvSll1 - XE45XfOrXRJ/hb+oxhEuFKYXuubtfzAjcchNXFfn+fwFtGpDKSQBAAA= - headers: - apim-request-id: c6a0d18b-bc44-420c-b801-f9784225a43b - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:00 GMT - etag: '"EA05B8C69A9D2706816ECCB89A240079F5CE90F1B4FC1437BB8FE50945A74EAF"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: c6a0d18b-bc44-420c-b801-f9784225a43b - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/384343e6-a44b-49e9-91ef-d62cf39d44dc response: body: - string: !!binary | - H4sIAAAAAAAEAH2PPU/EMAyG/4vn5pTkktJkQyBmJI4BNtf13VVKWylxB3S6/05aYGWx/H48lnyD - cYAIrQ6OiAcVmINyZ29V8L1RLnS2J3L22PbQAGVG4eG5jtM48btQZa22RmmvrDmZh6hN9OGgvXHH - LnxWJmGRR5Jxmf/FbNT60La+M37HiqCspfZecEw8bM46TZi/IN5AFsEE0TRw/km3taz1g1IR3cA4 - v+blkv/kvMgHy5tglq1cHcKZOKVftd97umJGEs7bctmT+/0bXKvHISABAAA= + string: '{"id":"384343e6-a44b-49e9-91ef-d62cf39d44dc","createdDateTimeUtc":"2021-06-02T07:06:28.0100687Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.4305067Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 413dddc4-cfcd-47f2-9d3c-ef3312dd658c + apim-request-id: dad6cdc0-f511-4e38-b303-3a33562d1786 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:01 GMT - etag: '"BB27872830DF3039A7C648EF995C9B69B387364260F6AA9C8BD19A0522025626"' + date: Wed, 02 Jun 2021 07:06:32 GMT + etag: '"FCBE0E4375916D2789CAE920698E61149E07C7CD73412A2DA33D87590B727C10"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 413dddc4-cfcd-47f2-9d3c-ef3312dd658c + x-requestid: dad6cdc0-f511-4e38-b303-3a33562d1786 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/384343e6-a44b-49e9-91ef-d62cf39d44dc - request: body: null headers: @@ -297,33 +192,27 @@ 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/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/384343e6-a44b-49e9-91ef-d62cf39d44dc/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAKWRwW7bMAyGX8XQuXJky7Ic34a2A3orhg4DNuxAS0wsNJEySl5aBHn30cMKDL3s - MB0IitL3/xR1ET/hsKAYv11ETgs5fIQyi1HMpZzyuNk804mgBDcd0lT/Di4R1ucQfTrnOmLZZHI7 - P02Nt066bmpk10yD3DbWSFAIqJXpjXUbPeysbiYvzbAzsjPKyK22gzSd7aHrFXi9rctLETfCEUJB - f8fhKRzxc3HcUqvaRjLUNk+NHVU7KlXrobWqMV+ZOUAuH1wJKf4bM9vW9r1esVygLJnvfYRwQM+V - kniHmTMkSiTGi3DJ84zEQ+RpBf8JfyyY1z6PmDPs16O75JYjxlLNkKszpbivMDIWOElUhVxNIQK9 - Vjt2qVcXoD2Wv0iuhRiR7t+ZflnF3i7d/9H8H+/r9UacKO2JBcSo2NaziFLKgtZecqLehbe1/swM - BK4g3c7rA5hU1+/XX676fGdHAgAA + string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/src59c590e0-2c10-453d-9afa-9c16b77301ed/fd57340a-40ff-4ae5-95ea-365c4f81e866.txt","createdDateTimeUtc":"2021-06-02T07:06:31.2435395Z","lastActionDateTimeUtc":"2021-06-02T07:06:31.3944075Z","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":"0007ee42-0000-0000-0000-000000000000","characterCharged":0}]}' headers: - apim-request-id: 243291f6-6412-4224-8446-c5697bdd71ab + apim-request-id: fae6de51-0756-4dd5-9c11-a77a87668c78 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:01 GMT - etag: '"A2EF178CA02BD093BA17B7BCC9782C0349FC18BAFEDB466AAA6C0BE332B6060C"' + date: Wed, 02 Jun 2021 07:06:32 GMT + etag: '"7B165BEAED07F648B7A2C2BD13629AB9DC9311D6AA6FD68E0EB6A826315DC960"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 243291f6-6412-4224-8446-c5697bdd71ab + x-requestid: fae6de51-0756-4dd5-9c11-a77a87668c78 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/6094cced-9ee9-4f52-95b1-4982bcc4236b/documents?$skip=0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/384343e6-a44b-49e9-91ef-d62cf39d44dc/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 134302c8b017..0c9d2bcb0418 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:01 GMT + - Wed, 02 Jun 2021 07:06:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0149b40f-0655-4891-99c1-7b5b81b8acc2?restype=container + uri: https://redacted.blob.core.windows.net/srcf323eace-5391-4054-a7f3-e2d52ef5f0c6?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:00 GMT + - Wed, 02 Jun 2021 07:06:33 GMT etag: - - '"0x8D91C7A271FDEC3"' + - '"0x8D92594F460857A"' last-modified: - - Fri, 21 May 2021 17:02:01 GMT + - Wed, 02 Jun 2021 07:06:33 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: - - Fri, 21 May 2021 17:02:01 GMT + - Wed, 02 Jun 2021 07:06:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0149b40f-0655-4891-99c1-7b5b81b8acc2/document.txt + uri: https://redacted.blob.core.windows.net/srcf323eace-5391-4054-a7f3-e2d52ef5f0c6/document.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:02:01 GMT + - Wed, 02 Jun 2021 07:06:33 GMT etag: - - '"0x8D91C7A272F8AD8"' + - '"0x8D92594F46C6621"' last-modified: - - Fri, 21 May 2021 17:02:01 GMT + - Wed, 02 Jun 2021 07:06:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:01 GMT + - Wed, 02 Jun 2021 07:06:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8c0c4c16-e7fc-455a-94ba-2d53954f24d7?restype=container + uri: https://redacted.blob.core.windows.net/target1717dab1-142c-4099-b205-9d78551c9f40?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:01 GMT + - Wed, 02 Jun 2021 07:06:33 GMT etag: - - '"0x8D91C7A27545C72"' + - '"0x8D92594F48F23AE"' last-modified: - - Fri, 21 May 2021 17:02:02 GMT + - Wed, 02 Jun 2021 07:06:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -145,11 +145,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:02:02 GMT + - Wed, 02 Jun 2021 07:06:33 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8c0c4c16-e7fc-455a-94ba-2d53954f24d7/document.txt + uri: https://redacted.blob.core.windows.net/target1717dab1-142c-4099-b205-9d78551c9f40/document.txt response: body: string: '' @@ -159,11 +159,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:02:01 GMT + - Wed, 02 Jun 2021 07:06:33 GMT etag: - - '"0x8D91C7A275FF283"' + - '"0x8D92594F49A834B"' last-modified: - - Fri, 21 May 2021 17:02:02 GMT + - Wed, 02 Jun 2021 07:06:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -176,14 +176,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0149b40f-0655-4891-99c1-7b5b81b8acc2?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8c0c4c16-e7fc-455a-94ba-2d53954f24d7?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf323eace-5391-4054-a7f3-e2d52ef5f0c6?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1717dab1-142c-4099-b205-9d78551c9f40?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: @@ -194,119 +194,46 @@ interactions: body: string: '' headers: - apim-request-id: fadf81b3-ee8f-475b-b6fd-e17e91ebd45b + apim-request-id: dd0a81c2-7f6e-48a6-99f5-7df763f91d0c content-length: '0' - date: Fri, 21 May 2021 17:02:02 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd + date: Wed, 02 Jun 2021 07:06:33 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/171c4e8e-4733-4b42-b3ed-cbe9481c0d3d set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: fadf81b3-ee8f-475b-b6fd-e17e91ebd45b + x-requestid: dd0a81c2-7f6e-48a6-99f5-7df763f91d0c status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NQWvDMAyF/4vOdXEcu95yK+25FNYd1psiO60hicFWDqP0v88OdOeCEE96+p4e - EBx0YJzte6saYT6MFdo0VvR60EJJ+amVpmHnHGyAkkf27ljaJUz+m6mwShZOGqGaS2M7qUpt29YY - rdtrYUbMvCcOcX4X21UsM/KSy90p8hdjKm/rdpkmTL/QPYAj4wid3MCAYSxulXkh8jmvOsznFG/p - Nc6Rf/x/VN0QzuTHF7rmHe6YkNinKm6r83z+AVuSg+AkAQAA - headers: - apim-request-id: 890c35e5-f325-4427-8f74-6061fbd44572 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:02 GMT - etag: '"52DEB2CC5727191C421AF7B65F94F94D42DB644D3696B26FC8C98D03D4070451"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 890c35e5-f325-4427-8f74-6061fbd44572 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNQWvDMAyF/4vOcbEde95yGxs9D9odtpsiO53BScBWDqP0v9fu1nNBCD2990ln - iB4GsN6No9NK2GfrhLHKidFMRmgpX4w2ND15Dx1QDsjBv9d2jHP4ZKqslpWTVmh1VG6Qutau7601 - pv+uTMLCr8RxXR5jxljZa9Wwwshbqbk9xhTa87LNM+ZfGM7AK2OCQXUw/bltLBtRKBWRHcTlI6+n - fJfLyl+BD4yZW7huCBcKKf2r2723H8xIHHIbTjfncrkCgwlKLCABAAA= - headers: - apim-request-id: ae0a87cb-6302-48b0-a405-281d893d6100 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:02 GMT - etag: '"28DC04A38BE5862F74EFC269FFDE2DD6DA3EEE3EA5C916DE5A167A6E5AA0C45E"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: ae0a87cb-6302-48b0-a405-281d893d6100 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/171c4e8e-4733-4b42-b3ed-cbe9481c0d3d response: body: - string: !!binary | - H4sIAAAAAAAEAIWNQWvDMAyF/4vOcbEde95yGxs9D9odtpsiO53BScBWDqP0v9fu1nNBCD2990ln - iB4GsN6No9NK2GfrhLHKidFMRmgpX4w2ND15Dx1QDsjBv9d2jHP4ZKqslpWTVmh1VG6Qutau7601 - pv+uTMLCr8RxXR5jxljZa9Wwwshbqbk9xhTa87LNM+ZfGM7AK2OCQXUw/bltLBtRKBWRHcTlI6+n - fJfLyl+BD4yZW7huCBcKKf2r2723H8xIHHIbTjfncrkCgwlKLCABAAA= + string: '{"id":"171c4e8e-4733-4b42-b3ed-cbe9481c0d3d","createdDateTimeUtc":"2021-06-02T07:06:34.1550079Z","lastActionDateTimeUtc":"2021-06-02T07:06:34.2834432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 60aee03a-3f10-4f3b-b4c5-eac9343daf91 + apim-request-id: 756bcfb4-6f58-4c1b-b492-e097413bd563 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:03 GMT - etag: '"28DC04A38BE5862F74EFC269FFDE2DD6DA3EEE3EA5C916DE5A167A6E5AA0C45E"' + date: Wed, 02 Jun 2021 07:06:38 GMT + etag: '"3B0AD85F84121D5741C9AB0AB37BBD09288F8FAA152E9C6742BB6BF8C853E3F6"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 60aee03a-3f10-4f3b-b4c5-eac9343daf91 + x-requestid: 756bcfb4-6f58-4c1b-b492-e097413bd563 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/171c4e8e-4733-4b42-b3ed-cbe9481c0d3d - request: body: null headers: @@ -315,32 +242,27 @@ 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/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/171c4e8e-4733-4b42-b3ed-cbe9481c0d3d/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAJWPQW/CMAyF/0qVM23TUkbbGxog7TZN7LJpBzc1NFppmOMOJtT/PhfGhduiKHKc - 994Xn9U3tD2q8v2svOvJ4DNwo0rVMB98GcefdCBga6rWVdHlMI4wOtqudkcfdcixJ6OTrKgyvQ31 - w2wWZnmRhEVhknBezao8qXIwJo1rZ/o9dhzxidVEteB5Ydi6bgmMG7vHVzZCTnWahHoWpskmmZc6 - lR1lWZbnWf4mNs/AvRfdGmyLtXTYyQ29VEjkSJVnZVwtM6mnTqaz9Qt+9ehH5h69h934tAHaIQe3 - PwVbCQugJYT6J8CT9eyjMfsiE/3yTyg923VIqzvUNW8tKYtryOqS8X/mMEzUgdyOxKZKLbharFrr - OUynGEqh747bEpZpgMAw0mMzssSph4/hF+yUsvblAQAA + string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcf323eace-5391-4054-a7f3-e2d52ef5f0c6/document.txt","lastActionDateTimeUtc":"2021-06-02T07:06:34.2832746Z","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":"0007ee43-0000-0000-0000-000000000000","characterCharged":0}]}' headers: - apim-request-id: 244a6cc6-756a-4323-abb2-67878a058d18 + apim-request-id: 96fa1cd3-0c8b-4ff7-9de8-8bd9ea8666ed cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:03 GMT - etag: '"EDECD6ED36B26050CBF3CF428530B22938B41CF937F46FED4F0D351BC2002532"' + date: Wed, 02 Jun 2021 07:06:38 GMT + etag: '"3C26B48F4A849BE83E8DB16C5BF0CBB5E95BE8FE859A1BEB0649B4B659FE06A1"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 244a6cc6-756a-4323-abb2-67878a058d18 + x-requestid: 96fa1cd3-0c8b-4ff7-9de8-8bd9ea8666ed status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/5d7bb721-5857-4517-b4f4-2009424cf6dd/documents?$skip=0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/171c4e8e-4733-4b42-b3ed-cbe9481c0d3d/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 a26fddf2e313..5f1b66daef77 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:03 GMT + - Wed, 02 Jun 2021 07:06:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4dd2603b-a9d1-46e7-9641-ac02a4b48efc?restype=container + uri: https://redacted.blob.core.windows.net/src93061c97-a8a8-404d-861b-e05e72b921da?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:03 GMT + - Wed, 02 Jun 2021 07:06:39 GMT etag: - - '"0x8D91C7A2882E2B6"' + - '"0x8D92594F8068687"' last-modified: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 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: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4dd2603b-a9d1-46e7-9641-ac02a4b48efc/document.txt + uri: https://redacted.blob.core.windows.net/src93061c97-a8a8-404d-861b-e05e72b921da/document.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT etag: - - '"0x8D91C7A288E2284"' + - '"0x8D92594F811FABC"' last-modified: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 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: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4dd2603b-a9d1-46e7-9641-ac02a4b48efc/e8e44d18-f1fc-436d-bc81-1276aff7916a.txt + uri: https://redacted.blob.core.windows.net/src93061c97-a8a8-404d-861b-e05e72b921da/4f9fef42-a3ab-4a80-978f-e42e05739078.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT etag: - - '"0x8D91C7A289A0B8A"' + - '"0x8D92594F819762C"' last-modified: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetddb8d0c9-6d14-4c61-b2b1-26cfc7443aa5?restype=container + uri: https://redacted.blob.core.windows.net/target8d69b601-e4f7-4bd9-bb22-42ca49666d63?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT etag: - - '"0x8D91C7A28BFC6E2"' + - '"0x8D92594F8358E26"' last-modified: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -195,11 +195,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:40 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetddb8d0c9-6d14-4c61-b2b1-26cfc7443aa5/document.txt + uri: https://redacted.blob.core.windows.net/target8d69b601-e4f7-4bd9-bb22-42ca49666d63/document.txt response: body: string: '' @@ -209,11 +209,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:39 GMT etag: - - '"0x8D91C7A28CD0BB3"' + - '"0x8D92594F844FAD0"' last-modified: - - Fri, 21 May 2021 17:02:04 GMT + - Wed, 02 Jun 2021 07:06:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -226,14 +226,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4dd2603b-a9d1-46e7-9641-ac02a4b48efc?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetddb8d0c9-6d14-4c61-b2b1-26cfc7443aa5?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src93061c97-a8a8-404d-861b-e05e72b921da?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8d69b601-e4f7-4bd9-bb22-42ca49666d63?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '494' + - '484' Content-Type: - application/json User-Agent: @@ -244,279 +244,46 @@ interactions: body: string: '' headers: - apim-request-id: 8a876a8e-8583-4b1b-bc9f-c27676e5e175 + apim-request-id: cd50d297-1a5e-4eb1-8d61-99ea26b93c5b content-length: '0' - date: Fri, 21 May 2021 17:02:04 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 07:06:39 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/113ad1aa-d9f6-4b15-a610-267b51c8a138 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8a876a8e-8583-4b1b-bc9f-c27676e5e175 + x-requestid: cd50d297-1a5e-4eb1-8d61-99ea26b93c5b status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMW/EIAyF/4vnowIaIGGr2rmq1OvQbj5D75CSIIEzVKf774VI17mL9fyev+cr - pAAepIpuGO1JTGoMYjBGiRNJKayLdiKrw2OQcAAqETmGlzaOaYkfTI3VUishjdDqqJyX2svhwWlj - 3Gi/GjNj5SfilNd/YlOnKiNvtZ29Zn5nLO1rd7dlwfID/gqcGWfw8gDfmOaWdlk3oljrrtP6VvK5 - 3Nc182f8q+oO4UpxvqN73/MFCxLH0sV5T263X3dxJcIjAQAA - headers: - apim-request-id: 305cd5a4-4560-4fe7-a24a-d2278f938d01 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:04 GMT - etag: '"0FBC6B249F67921D214FF9FE5837C607A4EA39F9433FEA693B6F62B77D7D83FC"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 305cd5a4-4560-4fe7-a24a-d2278f938d01 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMW/EIAyF/4vnowIaIGGr2rmq1OvQbj5D75CSIIEzVKf774VI17mL9fyev+cr - pAAepIpuGO1JTGoMYjBGiRNJKayLdiKrw2OQcAAqETmGlzaOaYkfTI3VUishjdDqqJyX2svhwWlj - 3Gi/GjNj5SfilNd/YlOnKiNvtZ29Zn5nLO1rd7dlwfID/gqcGWfw8gDfmOaWdlk3oljrrtP6VvK5 - 3Nc182f8q+oO4UpxvqN73/MFCxLH0sV5T263X3dxJcIjAQAA - headers: - apim-request-id: 4d6fb6eb-c65b-4e14-b87d-0488e1502c8b - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:04 GMT - etag: '"0FBC6B249F67921D214FF9FE5837C607A4EA39F9433FEA693B6F62B77D7D83FC"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 4d6fb6eb-c65b-4e14-b87d-0488e1502c8b - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 -- 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/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7DMAyG38XnZkqyJul6Q/AAaIwD3DzHdJHaVErdA5r27qQVnLlYtr//s+Q7 - pAg9aMOh7fxVnUwXVeucUVfSWvnA/kTexmPU0AAVRuH4UsslTfwuVF2rrVHaKWsuJvTa9ro9BOtc - 6PxndUZc5Ikkzfl/rTsab9yuLYKyLjV3XnNOedhW6zRh+Yb+DjILjtDbBr4wjVxfMBsn4qU6uoGU - X8s8lL8xz/LB8iZY5DdMmInHXa18v/d8w4IkXLZm2Mnj8QOvdgCmIQEAAA== - headers: - apim-request-id: 59d629db-d62f-40f2-9ed7-49d90e76e909 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:05 GMT - etag: '"4508785D550BB0AF27DADA19BF6A987125A74D22BADC673B39615BF5338F0A46"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 59d629db-d62f-40f2-9ed7-49d90e76e909 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 -- 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/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwU7DMAyG38XnZkqyJul6Q/AAaIwD3DzHdJHaVErdA5r27qQVnLlYtr//s+Q7 - pAg9aMOh7fxVnUwXVeucUVfSWvnA/kTexmPU0AAVRuH4UsslTfwuVF2rrVHaKWsuJvTa9ro9BOtc - 6PxndUZc5Ikkzfl/rTsab9yuLYKyLjV3XnNOedhW6zRh+Yb+DjILjtDbBr4wjVxfMBsn4qU6uoGU - X8s8lL8xz/LB8iZY5DdMmInHXa18v/d8w4IkXLZm2Mnj8QOvdgCmIQEAAA== - headers: - apim-request-id: 66ef96e3-0386-48d9-a77d-c0c3d575f93d - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:06 GMT - etag: '"4508785D550BB0AF27DADA19BF6A987125A74D22BADC673B39615BF5338F0A46"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 66ef96e3-0386-48d9-a77d-c0c3d575f93d - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 -- 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/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPQU7EMAxF7+J1M3JCk3SyQ3AABMMCdp4klEhpKqXuAo3m7iQVezaWv/9/tnyD - FMABymjHyVzFWU5BjFpLcfWIwthozt6o8BAQBvA1Esfw3MolLfGdfWMVKilQCyUv0jpUDseTVVrb - yXw2JtPGj57TWv7D7KndlRPajm1MvG8t97qXksrcR/uyUP0BdwNemTI4NcAXpRzbC7L73setMThA - Ki91neshm1VW/oj8xlS5h1vAU/Ex5z917Hv6pkqeY+3NfDj3+y/yfzZhIQEAAA== - headers: - apim-request-id: 3baa15a2-93df-4b0d-a4da-cf5330a8bc0a - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:07 GMT - etag: '"8CBBD39CF8680D2A77E05503642E2696ECE9E7D68C7583FFD89D533BC8CF5CDC"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 3baa15a2-93df-4b0d-a4da-cf5330a8bc0a - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 -- 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/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPQU7EMAxF7+J1M3JCk3SyQ3AABMMCdp4klEhpKqXuAo3m7iQVezaWv/9/tnyD - FMABymjHyVzFWU5BjFpLcfWIwthozt6o8BAQBvA1Esfw3MolLfGdfWMVKilQCyUv0jpUDseTVVrb - yXw2JtPGj57TWv7D7KndlRPajm1MvG8t97qXksrcR/uyUP0BdwNemTI4NcAXpRzbC7L73setMThA - Ki91neshm1VW/oj8xlS5h1vAU/Ex5z917Hv6pkqeY+3NfDj3+y/yfzZhIQEAAA== - headers: - apim-request-id: de791ff6-848f-4493-a9c2-e4b3d1b037d0 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:08 GMT - etag: '"8CBBD39CF8680D2A77E05503642E2696ECE9E7D68C7583FFD89D533BC8CF5CDC"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: de791ff6-848f-4493-a9c2-e4b3d1b037d0 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 -- 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/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPQU7EMAxF7+J1M3JCk3SyQ3AABMMCdp4klEhpKqXuAo3m7iQVezaWv/9/tnyD - FMABymjHyVzFWU5BjFpLcfWIwthozt6o8BAQBvA1Esfw3MolLfGdfWMVKilQCyUv0jpUDseTVVrb - yXw2JtPGj57TWv7D7KndlRPajm1MvG8t97qXksrcR/uyUP0BdwNemTI4NcAXpRzbC7L73setMThA - Ki91neshm1VW/oj8xlS5h1vAU/Ex5z917Hv6pkqeY+3NfDj3+y/yfzZhIQEAAA== - headers: - apim-request-id: 25276e6a-6b9b-4dd6-a8a6-4852545e25e1 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:09 GMT - etag: '"8CBBD39CF8680D2A77E05503642E2696ECE9E7D68C7583FFD89D533BC8CF5CDC"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 25276e6a-6b9b-4dd6-a8a6-4852545e25e1 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/113ad1aa-d9f6-4b15-a610-267b51c8a138 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNwW4DIQxE/8XnJQK6wIZb1XxApKSH9uaAmyKxuxJ4D1WUfy+seu/FGs/Msx+Q - IniQitw42Zs4qimK0RglbkFKYR3ZY7A6vkQJA4RCyBRPbVzTTO8cGqulVkIaodVVOS+1l+PBaWPc - ZD8bk7Hya+C0Lv9h7tD+qkm6jlVG3mrrXbYQiCLFbm7zjOUH/AN4Zczg9QBfmHJLvep569a667Sc - y3ov+yoHWFb+IL4wFu7l5gRcAuX8t+333r6xYGAqXdx7ot3z+QuKol/tJAEAAA== + string: '{"id":"113ad1aa-d9f6-4b15-a610-267b51c8a138","createdDateTimeUtc":"2021-06-02T07:06:40.2876379Z","lastActionDateTimeUtc":"2021-06-02T07:06:43.4469925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 452568c0-4c2c-48ba-8693-80b3d7c72811 + apim-request-id: 179fc675-55f1-4af2-b811-ae565f5ac6e8 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:10 GMT - etag: '"563A1E15152D08D986D6F39271BC36C73125C7A8EDB566C4AB7BA1E87A039A9E"' + date: Wed, 02 Jun 2021 07:06:45 GMT + etag: '"0C4B62498EEC15672356667C66ED2DDA115851A79CEFF5A684545C029E213B87"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 452568c0-4c2c-48ba-8693-80b3d7c72811 + x-requestid: 179fc675-55f1-4af2-b811-ae565f5ac6e8 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/113ad1aa-d9f6-4b15-a610-267b51c8a138 - request: body: null headers: @@ -525,34 +292,27 @@ 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/batches/01e7486b-918d-4551-bc00-67e69c62d3d0/documents?$skip=0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/113ad1aa-d9f6-4b15-a610-267b51c8a138/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEALVSTW/bMAz9K4HOkUPJ8uet6Aew27Bllw070BSdGHXsTJLXDoH/++S0BdZcthym - AyFQj4/UezyJn9hPLOpvJ3HEsBe12Idw9PVm8+iODkNHTT82yTnQ6Dh56gY7Pvlk4LAJ6HYcrG1K - C1TJ3CojDeVKNrpRUufUUmFMiphtuGRjrCplq1qSJs2tbKhUUukix7YtKpVjEp6DWAs/To7449XT - eEfGWp1D2kisrJIm50JWuVESCTSaxpTc0jWjkGMMbO9i2HYH/hIojqRBKwmZ1Gqrihp0DUWSZqmC - Un+NNT36cEOhG4e/lClIMtBVAdlS5gOGyUfc54mI2bKNyTDGBPt4O7px59hHgFqLzsY0ABSYGpDx - chnezvKFPTqkwO52v7gVK3Uxr0//XWU70nTgIbwq+c+qgElK0GUF+p0qD9j1F5Kwc6MT9UnQaOMG - iw9D3OXOfuIfE/ul5yHqhbvlaXte1NXbTKs2kq2wj+7aXyt+7nzwycJ9hkX83Ssw5rphYHd/0eqF - 7yGy3LyQ3J85ru85z39aC++sTdurrYX5+/wbQJZuCtMDAAA= + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target8d69b601-e4f7-4bd9-bb22-42ca49666d63/4f9fef42-a3ab-4a80-978f-e42e05739078.txt","sourcePath":"https://redacted.blob.core.windows.net/src93061c97-a8a8-404d-861b-e05e72b921da/4f9fef42-a3ab-4a80-978f-e42e05739078.txt","createdDateTimeUtc":"2021-06-02T07:06:43.2326845Z","lastActionDateTimeUtc":"2021-06-02T07:06:45.3540639Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee44-0000-0000-0000-000000000000","characterCharged":27},{"sourcePath":"https://redacted.blob.core.windows.net/src93061c97-a8a8-404d-861b-e05e72b921da/document.txt","lastActionDateTimeUtc":"2021-06-02T07:06:40.4134052Z","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":"0007ee45-0000-0000-0000-000000000000","characterCharged":0}]}' headers: - apim-request-id: 21018175-671b-45de-ac84-c5a1a03a5793 + apim-request-id: 71237164-7278-4054-88ba-177457c22c50 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:11 GMT - etag: '"663939C245C6C2368CAEE86DFC630488C6B39E0933EC1BA898D4EC6720560A74"' + date: Wed, 02 Jun 2021 07:06:45 GMT + etag: '"50F0F6F1EC05775FDE4F80685796508974B92EA5F7107EB405BF8C7BE9F97A37"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 21018175-671b-45de-ac84-c5a1a03a5793 + x-requestid: 71237164-7278-4054-88ba-177457c22c50 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/01e7486b-918d-4551-bc00-67e69c62d3d0/documents?$skip=0 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/113ad1aa-d9f6-4b15-a610-267b51c8a138/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 e5c3f3eb57c6..42a906cc4173 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src8f16832f-5bdc-4394-9c77-e233df9f1a55?restype=container + uri: https://redacted.blob.core.windows.net/src660e7c95-4839-4552-98ce-861d5917a8d7?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT etag: - - '"0x8D91C81C5688AF5"' + - '"0x8D92594FBBAAE4E"' last-modified: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 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: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src8f16832f-5bdc-4394-9c77-e233df9f1a55/551b956b-7496-4a01-b255-692037a9672d.txt + uri: https://redacted.blob.core.windows.net/src660e7c95-4839-4552-98ce-861d5917a8d7/67ee9e7c-43b5-43f7-a06b-9995d6c17f34.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT etag: - - '"0x8D91C81C57492AB"' + - '"0x8D92594FBC32A7B"' last-modified: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src5b8fa2a3-e433-43d4-ac8d-f3abc18ba2c4?restype=container + uri: https://redacted.blob.core.windows.net/srcb1e661e5-36b3-43d7-9018-c1fc58bf2bc8?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT etag: - - '"0x8D91C81C592C650"' + - '"0x8D92594FBE05810"' last-modified: - - Fri, 21 May 2021 17:56:34 GMT + - Wed, 02 Jun 2021 07:06:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -145,11 +145,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 21 May 2021 17:56:34 GMT + - Wed, 02 Jun 2021 07:06:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src5b8fa2a3-e433-43d4-ac8d-f3abc18ba2c4/c1ec1305-c2c9-43e6-8760-e1e69a339c0c.txt + uri: https://redacted.blob.core.windows.net/srcb1e661e5-36b3-43d7-9018-c1fc58bf2bc8/4d989e23-016e-437a-8d8b-b2102d8bf399.txt response: body: string: '' @@ -159,11 +159,11 @@ interactions: content-md5: - fcJZDg3E50i3i55bsEwJZg== date: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT etag: - - '"0x8D91C81C59AE64F"' + - '"0x8D92594FBEA689D"' last-modified: - - Fri, 21 May 2021 17:56:34 GMT + - Wed, 02 Jun 2021 07:06:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -189,11 +189,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:56:34 GMT + - Wed, 02 Jun 2021 07:06:46 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target4b0622fc-d112-493a-be40-422f6f257b79?restype=container + uri: https://redacted.blob.core.windows.net/target4b783cbe-c33a-47da-8d86-245624a42641?restype=container response: body: string: '' @@ -201,11 +201,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:56:33 GMT + - Wed, 02 Jun 2021 07:06:45 GMT etag: - - '"0x8D91C81C5BF1AAC"' + - '"0x8D92594FC0C5B94"' last-modified: - - Fri, 21 May 2021 17:56:34 GMT + - Wed, 02 Jun 2021 07:06:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -214,16 +214,16 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8f16832f-5bdc-4394-9c77-e233df9f1a55?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4b0622fc-d112-493a-be40-422f6f257b79?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", - "language": "es"}]}, {"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5b8fa2a3-e433-43d4-ac8d-f3abc18ba2c4?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4b0622fc-d112-493a-be40-422f6f257b79?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src660e7c95-4839-4552-98ce-861d5917a8d7?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4b783cbe-c33a-47da-8d86-245624a42641?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + "language": "es"}]}, {"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb1e661e5-36b3-43d7-9018-c1fc58bf2bc8?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4b783cbe-c33a-47da-8d86-245624a42641?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "fr"}]}]}' headers: Accept: - application/json Content-Length: - - '962' + - '956' Content-Type: - application/json User-Agent: @@ -234,437 +234,100 @@ interactions: body: string: '' headers: - apim-request-id: e1ecdefb-8ae4-46fc-b290-b42daa7b10d6 + apim-request-id: 29a24606-29f0-4c3e-9b37-af5bed28a472 content-length: '0' - date: Fri, 21 May 2021 17:56:34 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 + date: Wed, 02 Jun 2021 07:06:46 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f179c22e-5a82-4c96-a1e5-907262141b11 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e1ecdefb-8ae4-46fc-b290-b42daa7b10d6 + x-requestid: 29a24606-29f0-4c3e-9b37-af5bed28a472 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzFEiuHP1sQTMHAZoO6UbQSiLAtgCJHoog717JQDJ3IY53/I4P - iAN4sFdtBocoHGolNEktrOlRBDV0JK2RTjrYAOWAHIZDHec4hW+mynayU0L2olNnZXy/8x96a5zd - 9Ur/VGbEwnvimOb/YrZhhZGXUu+Oib8Yc33b3GWaMP+CfwAnxhG83MAV41jTJstCFEpZdZxPOd3y - a50TX8K7qjmEM4Xxha59n3fMSBxyE7c1eT7/AO8V6xIkAQAA - headers: - apim-request-id: 56c76108-538f-4ffd-a1f2-4c77db1091ec - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:34 GMT - etag: '"C544DE1F0BE2CA06F6F5F6BF9E1A6470C319B50E0826A9B1D1D0AFE0C5ADE41D"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 56c76108-538f-4ffd-a1f2-4c77db1091ec - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NvW7DMAyE34VzFEiuHP1sQTMHAZoO6UbQSiLAtgCJHoog717JQDJ3IY53/I4P - iAN4sFdtBocoHGolNEktrOlRBDV0JK2RTjrYAOWAHIZDHec4hW+mynayU0L2olNnZXy/8x96a5zd - 9Ur/VGbEwnvimOb/YrZhhZGXUu+Oib8Yc33b3GWaMP+CfwAnxhG83MAV41jTJstCFEpZdZxPOd3y - a50TX8K7qjmEM4Xxha59n3fMSBxyE7c1eT7/AO8V6xIkAQAA - headers: - apim-request-id: 9ae4f3e4-c041-4701-a030-6d9c8aa230c5 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:34 GMT - etag: '"C544DE1F0BE2CA06F6F5F6BF9E1A6470C319B50E0826A9B1D1D0AFE0C5ADE41D"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 9ae4f3e4-c041-4701-a030-6d9c8aa230c5 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNzWoDMQyE30XnONiuHf/cSnsuhaaH9ia0TmLYXYOtHErIu9deSK+9iJFG38wN - 8gQR/Mm4KSCKgEYJQ9II7yyKpCZN0jsZZIAdUE3IaXrt45iX9MnUWS21EtIKrY7KRXuIT2bvgj9Y - Zb47M2PjZ+Jc1v8wu5fe6uDtwBojX1v/eyv8wVh77bhelwXrD8QbcGGcIeodnDDP3Y1y+ESptU3n - 9b2Wc32sa+Gv9Bc1OMKV0vxAt7yXC1YkTnWI8+bc77/vy1n5JAEAAA== - headers: - apim-request-id: 9af69dcb-ec63-4dcb-9847-7060bc84860f - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:35 GMT - etag: '"BDD31AB8C08C72FA45360D32B3591F839849B13DD4893337EF1B3C34EA979155"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 9af69dcb-ec63-4dcb-9847-7060bc84860f - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNzWoDMQyE30XnONiuHf/cSnsuhaaH9ia0TmLYXYOtHErIu9deSK+9iJFG38wN - 8gQR/Mm4KSCKgEYJQ9II7yyKpCZN0jsZZIAdUE3IaXrt45iX9MnUWS21EtIKrY7KRXuIT2bvgj9Y - Zb47M2PjZ+Jc1v8wu5fe6uDtwBojX1v/eyv8wVh77bhelwXrD8QbcGGcIeodnDDP3Y1y+ESptU3n - 9b2Wc32sa+Gv9Bc1OMKV0vxAt7yXC1YkTnWI8+bc77/vy1n5JAEAAA== - headers: - apim-request-id: fd7761c3-6d1f-464d-9a83-a7716d7e5495 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:37 GMT - etag: '"BDD31AB8C08C72FA45360D32B3591F839849B13DD4893337EF1B3C34EA979155"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: fd7761c3-6d1f-464d-9a83-a7716d7e5495 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNzWoDMQyE30XnONiuHf/cSnsuhaaH9ia0TmLYXYOtHErIu9deSK+9iJFG38wN - 8gQR/Mm4KSCKgEYJQ9II7yyKpCZN0jsZZIAdUE3IaXrt45iX9MnUWS21EtIKrY7KRXuIT2bvgj9Y - Zb47M2PjZ+Jc1v8wu5fe6uDtwBojX1v/eyv8wVh77bhelwXrD8QbcGGcIeodnDDP3Y1y+ESptU3n - 9b2Wc32sa+Gv9Bc1OMKV0vxAt7yXC1YkTnWI8+bc77/vy1n5JAEAAA== - headers: - apim-request-id: 65d396d6-799e-43c4-b523-b1f3e3de2213 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:38 GMT - etag: '"BDD31AB8C08C72FA45360D32B3591F839849B13DD4893337EF1B3C34EA979155"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 65d396d6-799e-43c4-b523-b1f3e3de2213 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiqbP1sRfsARZMOzUbQjCvAlgGJHoog7x7ZaOcsxJF33wG8 - iTSIKPzVuiEAyABWS4vKSu86kKQHg8o7FVQQB4GFgGl4b+OcZvpibKxRRkvVSaPP2sWujy/26ILv - O20vjZmg8ityWvIzzB+DcdrofsMqA6+15T7XnFMet9M6z1B+RbwJXhgmEc1BXCFN1F5Qm49Ite46 - 5Y+yjGVfWyov/E18Yij8F0bISNM/uve9/UABZCqbGHfnfn8AH+rT8SEBAAA= - headers: - apim-request-id: 3e3bf1bc-b0c5-4b0e-95a3-e5d741e713c7 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:39 GMT - etag: '"72423B5B6D49C133CA3E2AA70F170CE58FD97F628C20EDE48B9BFEC8BADBE975"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 3e3bf1bc-b0c5-4b0e-95a3-e5d741e713c7 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiqbP1sRfsARZMOzUbQjCvAlgGJHoog7x7ZaOcsxJF33wG8 - iTSIKPzVuiEAyABWS4vKSu86kKQHg8o7FVQQB4GFgGl4b+OcZvpibKxRRkvVSaPP2sWujy/26ILv - O20vjZmg8ityWvIzzB+DcdrofsMqA6+15T7XnFMet9M6z1B+RbwJXhgmEc1BXCFN1F5Qm49Ite46 - 5Y+yjGVfWyov/E18Yij8F0bISNM/uve9/UABZCqbGHfnfn8AH+rT8SEBAAA= - headers: - apim-request-id: da60dfaf-bf4d-4d3c-8e46-c49678f75972 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:40 GMT - etag: '"72423B5B6D49C133CA3E2AA70F170CE58FD97F628C20EDE48B9BFEC8BADBE975"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: da60dfaf-bf4d-4d3c-8e46-c49678f75972 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f179c22e-5a82-4c96-a1e5-907262141b11 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiqbP1sRfsARZMOzUbQjCvAlgGJHoog7x7ZaOcsxJF33wG8 - iTSIKPzVuiEAyABWS4vKSu86kKQHg8o7FVQQB4GFgGl4b+OcZvpibKxRRkvVSaPP2sWujy/26ILv - O20vjZmg8ityWvIzzB+DcdrofsMqA6+15T7XnFMet9M6z1B+RbwJXhgmEc1BXCFN1F5Qm49Ite46 - 5Y+yjGVfWyov/E18Yij8F0bISNM/uve9/UABZCqbGHfnfn8AH+rT8SEBAAA= + string: '{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 7fed0ee8-09a2-4a6f-9f8d-8e7cfea52619 + apim-request-id: c0c699cf-299e-42ac-9a8b-59e1ff92e8c1 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:41 GMT - etag: '"72423B5B6D49C133CA3E2AA70F170CE58FD97F628C20EDE48B9BFEC8BADBE975"' + date: Wed, 02 Jun 2021 07:06:51 GMT + etag: '"554194662118662B7D37DD3E5680BF75B0B77559F4F8DE4AD612B730711DBFC9"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7fed0ee8-09a2-4a6f-9f8d-8e7cfea52619 + x-requestid: c0c699cf-299e-42ac-9a8b-59e1ff92e8c1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f179c22e-5a82-4c96-a1e5-907262141b11 - 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f179c22e-5a82-4c96-a1e5-907262141b11 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiqbP1sRfsARZMOzUbQjCvAlgGJHoog7x7ZaOcsxJF33wG8 - iTSIKPzVuiEAyABWS4vKSu86kKQHg8o7FVQQB4GFgGl4b+OcZvpibKxRRkvVSaPP2sWujy/26ILv - O20vjZmg8ityWvIzzB+DcdrofsMqA6+15T7XnFMet9M6z1B+RbwJXhgmEc1BXCFN1F5Qm49Ite46 - 5Y+yjGVfWyov/E18Yij8F0bISNM/uve9/UABZCqbGHfnfn8AH+rT8SEBAAA= + string: '{"id":"f179c22e-5a82-4c96-a1e5-907262141b11","createdDateTimeUtc":"2021-06-02T07:06:46.6123274Z","lastActionDateTimeUtc":"2021-06-02T07:06:50.6166619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}' headers: - apim-request-id: 3adb380f-ab60-4e3a-ab9f-b058ecdb2486 + apim-request-id: 3ac904e0-df66-441c-8d52-1368d3c3da61 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:42 GMT - etag: '"72423B5B6D49C133CA3E2AA70F170CE58FD97F628C20EDE48B9BFEC8BADBE975"' + date: Wed, 02 Jun 2021 07:06:52 GMT + etag: '"B2A858E2298423CE9555FEC227C09DE01925B65B12C93A5C4E951E4306316E68"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3adb380f-ab60-4e3a-ab9f-b058ecdb2486 + x-requestid: 3ac904e0-df66-441c-8d52-1368d3c3da61 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiqbP1sRfsARZMOzUbQjCvAlgGJHoog7x7ZaOcsxJF33wG8 - iTSIKPzVuiEAyABWS4vKSu86kKQHg8o7FVQQB4GFgGl4b+OcZvpibKxRRkvVSaPP2sWujy/26ILv - O20vjZmg8ityWvIzzB+DcdrofsMqA6+15T7XnFMet9M6z1B+RbwJXhgmEc1BXCFN1F5Qm49Ite46 - 5Y+yjGVfWyov/E18Yij8F0bISNM/uve9/UABZCqbGHfnfn8AH+rT8SEBAAA= - headers: - apim-request-id: 3957b3dc-278f-4cad-bc99-525977b50c1f - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:43 GMT - etag: '"72423B5B6D49C133CA3E2AA70F170CE58FD97F628C20EDE48B9BFEC8BADBE975"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 3957b3dc-278f-4cad-bc99-525977b50c1f - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiqbP1sRfsARZMOzUbQjCvAlgGJHoog7x7ZaOcsxJF33wG8 - iTSIKPzVuiEAyABWS4vKSu86kKQHg8o7FVQQB4GFgGl4b+OcZvpibKxRRkvVSaPP2sWujy/26ILv - O20vjZmg8ityWvIzzB+DcdrofsMqA6+15T7XnFMet9M6z1B+RbwJXhgmEc1BXCFN1F5Qm49Ite46 - 5Y+yjGVfWyov/E18Yij8F0bISNM/uve9/UABZCqbGHfnfn8AH+rT8SEBAAA= - headers: - apim-request-id: 38c3ab08-ae07-4c97-b62a-b5a07bb008e5 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:44 GMT - etag: '"72423B5B6D49C133CA3E2AA70F170CE58FD97F628C20EDE48B9BFEC8BADBE975"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 38c3ab08-ae07-4c97-b62a-b5a07bb008e5 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f179c22e-5a82-4c96-a1e5-907262141b11 - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f179c22e-5a82-4c96-a1e5-907262141b11/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFEiqbP1sRfsARZMOzUbQjCvAlgGJHoog7x7ZaOcsxJF33wG8 - iTSIKPzVuiEAyABWS4vKSu86kKQHg8o7FVQQB4GFgGl4b+OcZvpibKxRRkvVSaPP2sWujy/26ILv - O20vjZmg8ityWvIzzB+DcdrofsMqA6+15T7XnFMet9M6z1B+RbwJXhgmEc1BXCFN1F5Qm49Ite46 - 5Y+yjGVfWyov/E18Yij8F0bISNM/uve9/UABZCqbGHfnfn8AH+rT8SEBAAA= + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target4b783cbe-c33a-47da-8d86-245624a42641/4d989e23-016e-437a-8d8b-b2102d8bf399.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb1e661e5-36b3-43d7-9018-c1fc58bf2bc8/4d989e23-016e-437a-8d8b-b2102d8bf399.txt","createdDateTimeUtc":"2021-06-02T07:06:50.3848109Z","lastActionDateTimeUtc":"2021-06-02T07:06:52.4232664Z","status":"Succeeded","to":"fr","progress":1,"id":"0007ee47-0000-0000-0000-000000000000","characterCharged":18},{"path":"https://redacted.blob.core.windows.net/target4b783cbe-c33a-47da-8d86-245624a42641/67ee9e7c-43b5-43f7-a06b-9995d6c17f34.txt","sourcePath":"https://redacted.blob.core.windows.net/src660e7c95-4839-4552-98ce-861d5917a8d7/67ee9e7c-43b5-43f7-a06b-9995d6c17f34.txt","createdDateTimeUtc":"2021-06-02T07:06:50.2745747Z","lastActionDateTimeUtc":"2021-06-02T07:06:52.3847859Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee46-0000-0000-0000-000000000000","characterCharged":17}]}' headers: - apim-request-id: 238484aa-52e0-4ed8-a60f-079a30367fd9 + apim-request-id: 4810158c-4218-44b8-a5bd-aae859158dda cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:45 GMT - etag: '"72423B5B6D49C133CA3E2AA70F170CE58FD97F628C20EDE48B9BFEC8BADBE975"' + date: Wed, 02 Jun 2021 07:06:52 GMT + etag: '"2DDC43BDBEFB473DDBDC0397647F16E46CC51E0DA3E9E06B09AB96046EA4AEED"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 238484aa-52e0-4ed8-a60f-079a30367fd9 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 -- 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/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMy24DIQxF/4V1iIDAMLCL2g+olHTR7izjpEjzkMCzqKL8e2HUrrux7Hvu8UPk - JKIYb9anACADWC0tKitH70CSTgbV6FVQQRwEFgKm9NrGNc/0zthco4yWykmjr9pHN8STPfowDk7b - z+ZMUPmMnNflP208BuO10UPXKgNvtfUuGyJRotTDbZ6hfIv4ELwyTCKag7hBnhqNqvPWrXWP8/JW - 1nvZz4aWlT+ILwyFf8sIC9L0p+7/Xr6gADKVvtw7Obnn8wfJqwBcJAEAAA== - headers: - apim-request-id: 4a5554f1-0cd8-4250-865d-b19b992468e6 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:56:46 GMT - etag: '"B25DA6030D4FFFE06587CDA600CC85B893059C58146ABDA601821D1A5583624D"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 4a5554f1-0cd8-4250-865d-b19b992468e6 + x-requestid: 4810158c-4218-44b8-a5bd-aae859158dda status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8f47d9aa-9a41-4c04-875a-e1d2c0870909 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f179c22e-5a82-4c96-a1e5-907262141b11/documents?$skip=0 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 02cbf27a0c5b..05c819998e5d 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:29 GMT + - Wed, 02 Jun 2021 07:06:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srce9e130e6-851d-4db2-9bc7-719f84148b80?restype=container + uri: https://redacted.blob.core.windows.net/src3421cb8b-f9c0-438e-aa38-b4b9958d5002?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:29 GMT + - Wed, 02 Jun 2021 07:06:53 GMT etag: - - '"0x8D91C7A37E92D4B"' + - '"0x8D925950033F3F9"' last-modified: - - Fri, 21 May 2021 17:02:29 GMT + - Wed, 02 Jun 2021 07:06:53 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: - - Fri, 21 May 2021 17:02:29 GMT + - Wed, 02 Jun 2021 07:06:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srce9e130e6-851d-4db2-9bc7-719f84148b80/6d4bb6cf-2894-42f5-8d18-8ce0e8cb996c.txt + uri: https://redacted.blob.core.windows.net/src3421cb8b-f9c0-438e-aa38-b4b9958d5002/eafd1fd2-6170-49c9-9bee-1eeda7d841f0.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:02:29 GMT + - Wed, 02 Jun 2021 07:06:53 GMT etag: - - '"0x8D91C7A37F38D68"' + - '"0x8D92595003EFA6D"' last-modified: - - Fri, 21 May 2021 17:02:29 GMT + - Wed, 02 Jun 2021 07:06:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:30 GMT + - Wed, 02 Jun 2021 07:06:53 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target45310752-a572-4d75-a00b-f6dec6c77e74?restype=container + uri: https://redacted.blob.core.windows.net/target341fc79c-a823-43dc-bdc7-a41ce55bf2ca?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:29 GMT + - Wed, 02 Jun 2021 07:06:52 GMT etag: - - '"0x8D91C7A38180BD5"' + - '"0x8D9259500615681"' last-modified: - - Fri, 21 May 2021 17:02:30 GMT + - Wed, 02 Jun 2021 07:06:53 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,14 +126,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce9e130e6-851d-4db2-9bc7-719f84148b80?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target45310752-a572-4d75-a00b-f6dec6c77e74?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3421cb8b-f9c0-438e-aa38-b4b9958d5002?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target341fc79c-a823-43dc-bdc7-a41ce55bf2ca?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: @@ -144,213 +144,100 @@ interactions: body: string: '' headers: - apim-request-id: edef4394-1cc7-43f4-82bc-eabe4e6de96c + apim-request-id: 82bcba92-729b-453d-8f58-38f0d18e3e4e content-length: '0' - date: Fri, 21 May 2021 17:02:30 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 + date: Wed, 02 Jun 2021 07:06:53 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: edef4394-1cc7-43f4-82bc-eabe4e6de96c + x-requestid: 82bcba92-729b-453d-8f58-38f0d18e3e4e status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/468d8d25-cb18-49f8-b787-7c988d207850 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMY/CMAyF/4tngpLQkpDtdMwIid5wtxk3QKS2kRJ3QKj//ZJK3HyL9fyev+cX - hB4cNHvb2163gq7KiuZws+JqrBGGDrb40thWwgYoeWTfH8vowui/mAqrpVZCtkKrThkntdvJbbNT - urE/BRkw8wdxiNN/qX3FMiPPudydIl8YU/la3XkcMT3BvYAj4wBObuCGYShplXkm8jmvOkznFO/p - vU6Rv/1fVXUIJ/LDG137Ph+YkNinKu5rsiy/RhkMpiMBAAA= - headers: - apim-request-id: ed1baea6-47ca-48dd-9d41-bfc211d2e776 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:30 GMT - etag: '"47F10D5C451CF8C37992D3CC90B385B9EDCC9F235F77819B71B4926C2FD28E85"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: ed1baea6-47ca-48dd-9d41-bfc211d2e776 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMY/CMAyF/4tngpLQkpDtdMwIid5wtxk3QKS2kRJ3QKj//ZJK3HyL9fyev+cX - hB4cNHvb2163gq7KiuZws+JqrBGGDrb40thWwgYoeWTfH8vowui/mAqrpVZCtkKrThkntdvJbbNT - urE/BRkw8wdxiNN/qX3FMiPPudydIl8YU/la3XkcMT3BvYAj4wBObuCGYShplXkm8jmvOkznFO/p - vU6Rv/1fVXUIJ/LDG137Ph+YkNinKu5rsiy/RhkMpiMBAAA= - headers: - apim-request-id: 80951aa3-71f9-4373-ae93-abe91093d3b1 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:30 GMT - etag: '"47F10D5C451CF8C37992D3CC90B385B9EDCC9F235F77819B71B4926C2FD28E85"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 80951aa3-71f9-4373-ae93-abe91093d3b1 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/468d8d25-cb18-49f8-b787-7c988d207850 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01 response: body: - string: !!binary | - H4sIAAAAAAAEAIWNMW8DIQyF/4vnEAGBg7BV7VxFajq0m+MjCdLdIYEzVFH+e+GkdO1iPb/n7/kO - aYQAZvCjH7UVdFJemP3Zi5PzTjja++ZL562EDVCJyHF8a+OY5vjJ1FgttRLSCq2OygWpw05uzU5p - 478bMmHlF+KUl/8pOwzaKNuxysi32u7eM38wlva1u7d5xvID4Q6cGScIagNnTFNLg+w5Uax11Wk5 - lHwpz3XJ/BX/qjpHuFCcnuja93rFgsSxdHFZk8fjF0xXPJwjAQAA + string: '{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 4032d1dc-30a4-4209-8778-5b8ff7e7355f + apim-request-id: 6b878ccf-4a4b-484e-8859-d002fa5508fd cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:31 GMT - etag: '"237AFBD000E39703E823BD973DEC5708D43998910E958589ECD71344141D1F26"' + date: Wed, 02 Jun 2021 07:06:58 GMT + etag: '"0F5FE28164D65EC10A3B220F3E4631FAE1EE7C3FA9C9DC2539DBAE6F0C94F7A2"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4032d1dc-30a4-4209-8778-5b8ff7e7355f + x-requestid: 6b878ccf-4a4b-484e-8859-d002fa5508fd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01 - 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/batches/468d8d25-cb18-49f8-b787-7c988d207850 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEi0bCnaivYDijYZko2hFUeALQMSPRRB/r2y0c5ZiOPdPQJ8 - iNgLL0znetdDK+mqnTSHm5NX66y0dHDVV9a1SuwE5YAc+o86jnEKJ6bKggItVStBH7X1Cnyj9qbR - YNylIiMWfiOOc3pFwb6DrjEOVqww8lJq72tJKaZhtZZpwvwj/EPwzDgKr3fihnEM9QO15kShlE3H - 9JnnIW9rbaWZz4G/GTP/lQkThfEf3e693zEjccirGLbk+fwFyZBIDiABAAA= + string: '{"id":"0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01","createdDateTimeUtc":"2021-06-02T07:06:53.808719Z","lastActionDateTimeUtc":"2021-06-02T07:06:56.3919356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: - apim-request-id: 06a08d39-a973-4736-a273-53e5ccf68434 + apim-request-id: 4831e8b8-912e-4591-8a62-b167f619f3b6 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:32 GMT - etag: '"FA5A15C298BC6EA277D09DBEA25FE7DBC2E55F8CCDEA5DFDABA4E7915A4BFBEB"' + date: Wed, 02 Jun 2021 07:06:59 GMT + etag: '"983DE04ECF1EF7A90C12691311D80C6D061C46AAEADD7A9AE81694EF3B014672"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 06a08d39-a973-4736-a273-53e5ccf68434 + x-requestid: 4831e8b8-912e-4591-8a62-b167f619f3b6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01 - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEi0bCnaivYDijYZko2hFUeALQMSPRRB/r2y0c5ZiOPdPQJ8 - iNgLL0znetdDK+mqnTSHm5NX66y0dHDVV9a1SuwE5YAc+o86jnEKJ6bKggItVStBH7X1Cnyj9qbR - YNylIiMWfiOOc3pFwb6DrjEOVqww8lJq72tJKaZhtZZpwvwj/EPwzDgKr3fihnEM9QO15kShlE3H - 9JnnIW9rbaWZz4G/GTP/lQkThfEf3e693zEjccirGLbk+fwFyZBIDiABAAA= + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target341fc79c-a823-43dc-bdc7-a41ce55bf2ca/eafd1fd2-6170-49c9-9bee-1eeda7d841f0.txt","sourcePath":"https://redacted.blob.core.windows.net/src3421cb8b-f9c0-438e-aa38-b4b9958d5002/eafd1fd2-6170-49c9-9bee-1eeda7d841f0.txt","createdDateTimeUtc":"2021-06-02T07:06:56.1902232Z","lastActionDateTimeUtc":"2021-06-02T07:06:59.3918512Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee48-0000-0000-0000-000000000000","characterCharged":17}]}' headers: - apim-request-id: c2c6ea94-ed1c-438d-bf84-ce608183fd27 + apim-request-id: 08ed454a-c3bd-4ab2-b394-38d16997e148 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:33 GMT - etag: '"FA5A15C298BC6EA277D09DBEA25FE7DBC2E55F8CCDEA5DFDABA4E7915A4BFBEB"' + date: Wed, 02 Jun 2021 07:06:59 GMT + etag: '"06537F4E75D0374BF66CEF2759722DF7C88CDE27CCBAD696C98C83C77D075C5C"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c2c6ea94-ed1c-438d-bf84-ce608183fd27 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 -- 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/batches/468d8d25-cb18-49f8-b787-7c988d207850 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMy24DIQxF/8XrEAHDDIRd1X5ApaSLducYkiDNQwLPIory74FRu+7Gsu+5xw9I - ATyYwQUXdC/orJwwh4sTZ+ussHRwNZfW9RJ2QDkix/BRxylN8YupulpqJWQvtDop66X2ndybTmnj - fqoyYuE34rTM/1l6P+ihM043rTDyWmrvuBLFGGJo4TpNmO/gH8AL4whe7eCCaazUy8Zrt5QtTvNn - Xq55OyuaF/6OfGTM/FsmnCmOf+r27/2GGYljbsu1EWWfzxdB1QKDIwEAAA== - headers: - apim-request-id: fdb695b0-5d88-429a-896e-7ed16cde54a7 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:34 GMT - etag: '"84CBF72A2547F0E064550498161F3C8840F6699F09E27B9FA70FC5AD00F028A5"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: fdb695b0-5d88-429a-896e-7ed16cde54a7 + x-requestid: 08ed454a-c3bd-4ab2-b394-38d16997e148 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/468d8d25-cb18-49f8-b787-7c988d207850 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/0d1cb893-3b44-4fa8-8d0f-ad0cdef7fb01/documents?$skip=0 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 0e1d0c3fa266..91248cb60ca2 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:00 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srce8bbe34f-93fa-4567-81ea-f28034f83bdc?restype=container + uri: https://redacted.blob.core.windows.net/src628b89ed-2bc6-4624-87e2-72a1824fef68?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:00 GMT etag: - - '"0x8D91C7A3B27FDCD"' + - '"0x8D9259504A590F4"' last-modified: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:00 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: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:00 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/srce8bbe34f-93fa-4567-81ea-f28034f83bdc/xyze70400cf-2a6e-4198-9698-5bce964a8c49.txt + uri: https://redacted.blob.core.windows.net/src628b89ed-2bc6-4624-87e2-72a1824fef68/xyzd5ec68eb-ad5d-43aa-ba9d-69274e711650.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:00 GMT etag: - - '"0x8D91C7A3B326099"' + - '"0x8D9259504AE9330"' last-modified: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:00 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:00 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target8a62e423-46f8-4750-8d6f-0e06aab50398?restype=container + uri: https://redacted.blob.core.windows.net/targetf14445c8-d89c-487c-bd8e-a45824fa1805?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:00 GMT etag: - - '"0x8D91C7A3B57777A"' + - '"0x8D9259504D2AB2E"' last-modified: - - Fri, 21 May 2021 17:02:35 GMT + - Wed, 02 Jun 2021 07:07:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,14 +126,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce8bbe34f-93fa-4567-81ea-f28034f83bdc?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {"prefix": "xyz"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8a62e423-46f8-4750-8d6f-0e06aab50398?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src628b89ed-2bc6-4624-87e2-72a1824fef68?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {"prefix": "xyz"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf14445c8-d89c-487c-bd8e-a45824fa1805?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '497' + - '501' Content-Type: - application/json User-Agent: @@ -144,277 +144,100 @@ interactions: body: string: '' headers: - apim-request-id: 44f8552b-c156-460f-95d8-0ba0ee706bd6 + apim-request-id: b2aa662e-4055-4fea-97eb-8f943c4dc96d content-length: '0' - date: Fri, 21 May 2021 17:02:35 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 + date: Wed, 02 Jun 2021 07:07:00 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8f54b0a-7814-4277-91ba-9a195eda8816 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 44f8552b-c156-460f-95d8-0ba0ee706bd6 + x-requestid: b2aa662e-4055-4fea-97eb-8f943c4dc96d status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NQW/CMAyF/4vPBMVpGyA3BGeENHYYN88NEKltpMQ9TIj/vqQSO+9iPb/n7/kJ - oQcHTdP0/O1RUUtatTvbqq25FaXt1iJyh2hhBZw8ie+PZVzC6D+FC2u0QaU7ZfCCG6eNa7r1rkXd - ob0WZqAse5YQp39iplJZSOZczk5RPoRS+VrdeRwp/YB7gkShAZxewY3CUNIq88zsc150mM4p3tN7 - naJ8+b+q6jBN7Ic3uvQdHpSIxacq7kvyev0Ce3knASMBAAA= - headers: - apim-request-id: 04264a91-6884-40d1-9172-5b07050df922 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:35 GMT - etag: '"A36C447F020A0DB73F7946A3F040618A147C10A67440F95D99AE56AC23B0D86B"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 04264a91-6884-40d1-9172-5b07050df922 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NQW/CMAyF/4vPBMVpGyA3BGeENHYYN88NEKltpMQ9TIj/vqQSO+9iPb/n7/kJ - oQcHTdP0/O1RUUtatTvbqq25FaXt1iJyh2hhBZw8ie+PZVzC6D+FC2u0QaU7ZfCCG6eNa7r1rkXd - ob0WZqAse5YQp39iplJZSOZczk5RPoRS+VrdeRwp/YB7gkShAZxewY3CUNIq88zsc150mM4p3tN7 - naJ8+b+q6jBN7Ic3uvQdHpSIxacq7kvyev0Ce3knASMBAAA= - headers: - apim-request-id: 91183038-39f9-416b-90e2-d455b4ab89bf - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:35 GMT - etag: '"A36C447F020A0DB73F7946A3F040618A147C10A67440F95D99AE56AC23B0D86B"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 91183038-39f9-416b-90e2-d455b4ab89bf - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 -- 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/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNsW7DMAxE/4VzFIiSrcTainYuAjQd2o2llUSAbQESMwRB/r2SgXTtQhx5fHd3 - iCN4sNaO/BNQUUdadYPr1N6cqtJu7xC5R3SwAc6BJIxvdRzjHD6FK2u0QaV7ZfCIO6+Nt/126FD3 - 6L4rM1GRF5aYlv8wt0Vthx1iw4qQXEv9e0/yIZRrbbte55nyDfwdJAlN4HEDJ4pTdb1uPnMoZdVx - OeR0zs91SfIV/qIax7RwmJ7omvd6oUwsITdxXp3H4xczb+y5JAEAAA== - headers: - apim-request-id: c12b2115-8f03-4e99-a2f2-9beeea9a878c - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:36 GMT - etag: '"72318EB6EC84BFA331F67C9DAC79CABEB1959CD7E9D36710704BBBC6D398B903"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: c12b2115-8f03-4e99-a2f2-9beeea9a878c - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8f54b0a-7814-4277-91ba-9a195eda8816 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFIiSLcfaivYDgjQd2o2lGVeALQMSPRRB/r2y0c5diCPv3gG8 - qziooJxzA30yaGzQ6Kb3jT7ZW1XGnzwAtQBeHRRlRuHhpY5rnPlNqLLWWNCm1Rau0AVjg2uPfQOm - Bf9RmQmLPJHEJf2HdUfvXGf6fsOKoKyl5i5rSjGN22mdZ8zfKtyVLIKTCnBQN4wT1xfM5hNxKbuO - 6ZyXMe9rTaVF3lleBbP8hgkT8fSH7n3PX5iRhPMmxt15PH4AqPSzuyEBAAA= + string: '{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 8e74e0e2-2461-4e5c-b788-84c1c08862a0 + apim-request-id: 5c4ea059-dc20-41db-8cd8-b8fc4495e942 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:37 GMT - etag: '"B824DD44F393CB7C6ECC043AB12340AE4A8A6DFCC85A0450C8F735DA8B9B4B5C"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 8e74e0e2-2461-4e5c-b788-84c1c08862a0 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 -- 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/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFIiSLcfaivYDgjQd2o2lGVeALQMSPRRB/r2y0c5diCPv3gG8 - qziooJxzA30yaGzQ6Kb3jT7ZW1XGnzwAtQBeHRRlRuHhpY5rnPlNqLLWWNCm1Rau0AVjg2uPfQOm - Bf9RmQmLPJHEJf2HdUfvXGf6fsOKoKyl5i5rSjGN22mdZ8zfKtyVLIKTCnBQN4wT1xfM5hNxKbuO - 6ZyXMe9rTaVF3lleBbP8hgkT8fSH7n3PX5iRhPMmxt15PH4AqPSzuyEBAAA= - headers: - apim-request-id: 8cf1611e-d9de-4fc1-b3c3-381b960b3ad2 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:38 GMT - etag: '"B824DD44F393CB7C6ECC043AB12340AE4A8A6DFCC85A0450C8F735DA8B9B4B5C"' + date: Wed, 02 Jun 2021 07:07:06 GMT + etag: '"A38D9DAD41DE510EEE40A6928CB173FEF1FD1F87DD507A2FDF23B191EA912F19"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8cf1611e-d9de-4fc1-b3c3-381b960b3ad2 + x-requestid: 5c4ea059-dc20-41db-8cd8-b8fc4495e942 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8f54b0a-7814-4277-91ba-9a195eda8816 - 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/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8f54b0a-7814-4277-91ba-9a195eda8816 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFIiSLcfaivYDgjQd2o2lGVeALQMSPRRB/r2y0c5diCPv3gG8 - qziooJxzA30yaGzQ6Kb3jT7ZW1XGnzwAtQBeHRRlRuHhpY5rnPlNqLLWWNCm1Rau0AVjg2uPfQOm - Bf9RmQmLPJHEJf2HdUfvXGf6fsOKoKyl5i5rSjGN22mdZ8zfKtyVLIKTCnBQN4wT1xfM5hNxKbuO - 6ZyXMe9rTaVF3lleBbP8hgkT8fSH7n3PX5iRhPMmxt15PH4AqPSzuyEBAAA= + string: '{"id":"f8f54b0a-7814-4277-91ba-9a195eda8816","createdDateTimeUtc":"2021-06-02T07:07:01.2719206Z","lastActionDateTimeUtc":"2021-06-02T07:07:03.8182342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: - apim-request-id: d438db27-0fc0-4d4d-aee9-3f2d46f2b2f6 + apim-request-id: 5749822d-77b9-44ab-831f-2a001bb199ab cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:39 GMT - etag: '"B824DD44F393CB7C6ECC043AB12340AE4A8A6DFCC85A0450C8F735DA8B9B4B5C"' + date: Wed, 02 Jun 2021 07:07:07 GMT + etag: '"5B8D3606E83A6356B150F77F56422B5D12E458B4A56031BAEC51C0772A2767F2"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d438db27-0fc0-4d4d-aee9-3f2d46f2b2f6 + x-requestid: 5749822d-77b9-44ab-831f-2a001bb199ab status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8f54b0a-7814-4277-91ba-9a195eda8816 - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8f54b0a-7814-4277-91ba-9a195eda8816/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFIiSLcfaivYDgjQd2o2lGVeALQMSPRRB/r2y0c5diCPv3gG8 - qziooJxzA30yaGzQ6Kb3jT7ZW1XGnzwAtQBeHRRlRuHhpY5rnPlNqLLWWNCm1Rau0AVjg2uPfQOm - Bf9RmQmLPJHEJf2HdUfvXGf6fsOKoKyl5i5rSjGN22mdZ8zfKtyVLIKTCnBQN4wT1xfM5hNxKbuO - 6ZyXMe9rTaVF3lleBbP8hgkT8fSH7n3PX5iRhPMmxt15PH4AqPSzuyEBAAA= + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetf14445c8-d89c-487c-bd8e-a45824fa1805/xyzd5ec68eb-ad5d-43aa-ba9d-69274e711650.txt","sourcePath":"https://redacted.blob.core.windows.net/src628b89ed-2bc6-4624-87e2-72a1824fef68/xyzd5ec68eb-ad5d-43aa-ba9d-69274e711650.txt","createdDateTimeUtc":"2021-06-02T07:07:03.2198232Z","lastActionDateTimeUtc":"2021-06-02T07:07:06.4257539Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee49-0000-0000-0000-000000000000","characterCharged":17}]}' headers: - apim-request-id: 228a1668-d3c2-4f6a-a132-350642c74629 + apim-request-id: acb017f1-5464-40cf-855b-267749ca8b7d cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:40 GMT - etag: '"B824DD44F393CB7C6ECC043AB12340AE4A8A6DFCC85A0450C8F735DA8B9B4B5C"' + date: Wed, 02 Jun 2021 07:07:07 GMT + etag: '"C49B25434A04AD0005EE2D464C02D7E1BDCB42F3F79B0B954AAC3FB3B1E1A2F0"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 228a1668-d3c2-4f6a-a132-350642c74629 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 -- 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/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMu27DMAxF/0VzFIiSLcfaivYDCiQd2o2lmFSAH4BED0WQf69ktHMX4pLnHt5V - iioo51ykTwaNHRrdjb7TJ3utyfiTB6AewKuDoswoHF/quKSZ34Sqa40FbXpt4QJDMDa4/jh2YHrw - H9WZsMgTSVqX/7Th6J0bzDg2rQjKVmrvvBExR47tuM0z5m8V7kpWwUkFOKgrpqnSYBqv3VL2c1pe - 83rL+1rRsso7y1kwy2+ZcCGe/tT93/MXZiTh3MKtERgejx/U8enhJAEAAA== - headers: - apim-request-id: e58dd97f-5040-4a4a-bc9e-f94abea520d9 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:41 GMT - etag: '"BAF6BA15D40BC33ADC16A40B6F106C75A6473B56D7E1364B5F8A73386A0CAEF5"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: e58dd97f-5040-4a4a-bc9e-f94abea520d9 + x-requestid: acb017f1-5464-40cf-855b-267749ca8b7d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/333dcbe1-a4a0-4964-82f0-4068611c5116 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/f8f54b0a-7814-4277-91ba-9a195eda8816/documents?$skip=0 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 118f1500777c..0a995677c970 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:42 GMT + - Wed, 02 Jun 2021 07:07:07 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src339d2090-a8c6-475e-b872-07f7630d9fce?restype=container + uri: https://redacted.blob.core.windows.net/srca153a02c-27cb-4cfc-b647-e5c427d547db?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:42 GMT + - Wed, 02 Jun 2021 07:07:07 GMT etag: - - '"0x8D91C7A3FAA28EC"' + - '"0x8D9259508DCAA26"' last-modified: - - Fri, 21 May 2021 17:02:42 GMT + - Wed, 02 Jun 2021 07:07:07 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: - - Fri, 21 May 2021 17:02:42 GMT + - Wed, 02 Jun 2021 07:07:07 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src339d2090-a8c6-475e-b872-07f7630d9fce/70ba27d6-3725-4825-835a-c0f6260d5714.txt + uri: https://redacted.blob.core.windows.net/srca153a02c-27cb-4cfc-b647-e5c427d547db/49c4b4ba-7edb-4309-ae2b-599e5778d4a8.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:02:42 GMT + - Wed, 02 Jun 2021 07:07:07 GMT etag: - - '"0x8D91C7A3FB539E4"' + - '"0x8D9259508E89397"' last-modified: - - Fri, 21 May 2021 17:02:43 GMT + - Wed, 02 Jun 2021 07:07:07 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:43 GMT + - Wed, 02 Jun 2021 07:07:08 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target5956301b-a7f6-4e61-9dfb-cc28174ecc0b?restype=container + uri: https://redacted.blob.core.windows.net/target57da9f23-ac01-453b-8472-67c7ce6fab94?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:42 GMT + - Wed, 02 Jun 2021 07:07:07 GMT etag: - - '"0x8D91C7A3FDFED96"' + - '"0x8D92595090A2A5A"' last-modified: - - Fri, 21 May 2021 17:02:43 GMT + - Wed, 02 Jun 2021 07:07:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -126,14 +126,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src339d2090-a8c6-475e-b872-07f7630d9fce?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {"suffix": "txt"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5956301b-a7f6-4e61-9dfb-cc28174ecc0b?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca153a02c-27cb-4cfc-b647-e5c427d547db?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {"suffix": "txt"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target57da9f23-ac01-453b-8472-67c7ce6fab94?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '505' + - '499' Content-Type: - application/json User-Agent: @@ -144,53 +144,46 @@ interactions: body: string: '' headers: - apim-request-id: cbb6d5aa-1f9f-4401-b38a-0afdbc7ee08a + apim-request-id: 3b09199c-b719-4c54-aa4e-a5cf74d4a1d2 content-length: '0' - date: Fri, 21 May 2021 17:02:43 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 + date: Wed, 02 Jun 2021 07:07:08 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/70081137-fe6d-466f-953e-2670c8f5e6da set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: cbb6d5aa-1f9f-4401-b38a-0afdbc7ee08a + x-requestid: 3b09199c-b719-4c54-aa4e-a5cf74d4a1d2 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/70081137-fe6d-466f-953e-2670c8f5e6da response: body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/0VzFEi0BNvainYuCiQd2o2i5USAbQESMxRB/r2SgXTuQhx5fHd3 - ESfhRD95Go1VEmYD0ozay8EOnbRgZg8DeD914iAoB+QwvdVxjmv4ZKosKNBSWQn6rHunwJnuaJUF - bcx3ZRYs/EIc0/YPbNDGjn3DCiPfSv17T3xizLW2XW/rivlHuLvgxLgIpw9ixrhU16nmE4VSdh23 - j5wu+bluib/CX1TjCDcKyxPd816vmJE45CYuu/N4/AKA7blzJAEAAA== + string: '{"id":"70081137-fe6d-466f-953e-2670c8f5e6da","createdDateTimeUtc":"2021-06-02T07:07:08.454661Z","lastActionDateTimeUtc":"2021-06-02T07:07:10.4666065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: - apim-request-id: 2955012b-4fa0-4b1c-af26-7ffd8fc59a92 + apim-request-id: 5bd6b210-894e-48ca-97d5-f7695c6edea7 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:43 GMT - etag: '"2B969C5FBD61D479115AA62CC6237995E995A8EEABF348528816612D76CB3D3C"' + date: Wed, 02 Jun 2021 07:07:12 GMT + etag: '"698341AB032A2156716383DB6ECC20B10F5D2139729710C3EE4CF19173748E37"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2955012b-4fa0-4b1c-af26-7ffd8fc59a92 + x-requestid: 5bd6b210-894e-48ca-97d5-f7695c6edea7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/70081137-fe6d-466f-953e-2670c8f5e6da - request: body: null headers: @@ -199,190 +192,25 @@ 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/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NsW7DMAxE/0VzFEi0BNvainYuCiQd2o2i5USAbQESMxRB/r2SgXTuQhx5fHd3 - ESfhRD95Go1VEmYD0ozay8EOnbRgZg8DeD914iAoB+QwvdVxjmv4ZKosKNBSWQn6rHunwJnuaJUF - bcx3ZRYs/EIc0/YPbNDGjn3DCiPfSv17T3xizLW2XW/rivlHuLvgxLgIpw9ixrhU16nmE4VSdh23 - j5wu+bluib/CX1TjCDcKyxPd816vmJE45CYuu/N4/AKA7blzJAEAAA== - headers: - apim-request-id: 7237d7d4-11c8-4780-9fb1-4a5ed9070a0d - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:43 GMT - etag: '"2B969C5FBD61D479115AA62CC6237995E995A8EEABF348528816612D76CB3D3C"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 7237d7d4-11c8-4780-9fb1-4a5ed9070a0d - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 -- 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/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEi0BDvaivYDijYZ0o2iZUeALQMSPRRB/j2ykc5diCPv3gG8 - i9gLJ9re08lYJWEwIM1Je9nZrpEWzOChA+/7RhwE5YAc+o86znEOF6bKggItlZWgz7p1CpxpjlZZ - 0Mb8VGbCwm/EcUn/YebYGqWV3qjCyGupsa81pZjG7bTOM+Zf4e6CF8ZJOH0QA8Yp1A/U5hOFUnYd - 02dexryvNZUWvgb+Zsz8ChMmCtMfuve93zAjccibGHfn8XgCC7/GJSABAAA= - headers: - apim-request-id: 8300b63c-3492-4d27-8e92-87d25e2c684c - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:44 GMT - etag: '"FA0B6874578ACA81C1F089F5A743D701986BC3BFEB448FDA6BAD42982C48CCDF"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 8300b63c-3492-4d27-8e92-87d25e2c684c - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 -- 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/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEi0BDvaivYDijYZ0o2iZUeALQMSPRRB/j2ykc5diCPv3gG8 - i9gLJ9re08lYJWEwIM1Je9nZrpEWzOChA+/7RhwE5YAc+o86znEOF6bKggItlZWgz7p1CpxpjlZZ - 0Mb8VGbCwm/EcUn/YebYGqWV3qjCyGupsa81pZjG7bTOM+Zf4e6CF8ZJOH0QA8Yp1A/U5hOFUnYd - 02dexryvNZUWvgb+Zsz8ChMmCtMfuve93zAjccibGHfn8XgCC7/GJSABAAA= - headers: - apim-request-id: bb553c53-4b2b-4005-921a-3f63ea5f9f88 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:45 GMT - etag: '"FA0B6874578ACA81C1F089F5A743D701986BC3BFEB448FDA6BAD42982C48CCDF"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: bb553c53-4b2b-4005-921a-3f63ea5f9f88 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 -- 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/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/70081137-fe6d-466f-953e-2670c8f5e6da/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEi0BDvaivYDijYZ0o2iZUeALQMSPRRB/j2ykc5diCPv3gG8 - i9gLJ9re08lYJWEwIM1Je9nZrpEWzOChA+/7RhwE5YAc+o86znEOF6bKggItlZWgz7p1CpxpjlZZ - 0Mb8VGbCwm/EcUn/YebYGqWV3qjCyGupsa81pZjG7bTOM+Zf4e6CF8ZJOH0QA8Yp1A/U5hOFUnYd - 02dexryvNZUWvgb+Zsz8ChMmCtMfuve93zAjccibGHfn8XgCC7/GJSABAAA= + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target57da9f23-ac01-453b-8472-67c7ce6fab94/49c4b4ba-7edb-4309-ae2b-599e5778d4a8.txt","sourcePath":"https://redacted.blob.core.windows.net/srca153a02c-27cb-4cfc-b647-e5c427d547db/49c4b4ba-7edb-4309-ae2b-599e5778d4a8.txt","createdDateTimeUtc":"2021-06-02T07:07:10.268886Z","lastActionDateTimeUtc":"2021-06-02T07:07:13.4911512Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee4a-0000-0000-0000-000000000000","characterCharged":17}]}' headers: - apim-request-id: 4c916698-c00f-4eff-94bb-82f3422b97b3 + apim-request-id: b6a7e2c0-4424-422b-a31e-5c46332f9c92 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:46 GMT - etag: '"FA0B6874578ACA81C1F089F5A743D701986BC3BFEB448FDA6BAD42982C48CCDF"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 4c916698-c00f-4eff-94bb-82f3422b97b3 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 -- 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/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPsW7DMAxE/0VzFEi0BDvaivYDijYZ0o2iZUeALQMSPRRB/j2ykc5diCPv3gG8 - i9gLJ9re08lYJWEwIM1Je9nZrpEWzOChA+/7RhwE5YAc+o86znEOF6bKggItlZWgz7p1CpxpjlZZ - 0Mb8VGbCwm/EcUn/YebYGqWV3qjCyGupsa81pZjG7bTOM+Zf4e6CF8ZJOH0QA8Yp1A/U5hOFUnYd - 02dexryvNZUWvgb+Zsz8ChMmCtMfuve93zAjccibGHfn8XgCC7/GJSABAAA= - headers: - apim-request-id: 6c279ac2-8a82-4127-b92a-3d3453f859d4 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:47 GMT - etag: '"FA0B6874578ACA81C1F089F5A743D701986BC3BFEB448FDA6BAD42982C48CCDF"' + date: Wed, 02 Jun 2021 07:07:12 GMT + etag: '"655FDAEBECE055322F34928EEA4B61C91586E7C971EECBE5AF5108F9406EC431"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6c279ac2-8a82-4127-b92a-3d3453f859d4 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 -- 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/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMy24DIQxF/4V1iMADmgm7Kv2ASkkW7c6AJ0WahwSeRRTl3wujdt2NZd9zj58i - ReFEH304GaskjAakOWkvBzt00oIZPQzgfezEQYRMyBTf67immW4cqgsKtFRWgr7q3ilwpjtaZUEb - 81WdCQu/BU7r8p9mjr1RWulmFUbeSq1dthCIIsUWbvOM+SHcU/DKOAmnD2LENFXqVOO1W8oep+Uj - r/e8nxUtK38SXxgz/5YDLoGmP3X/d/7GjIEpt+XeiO5frx8OATUJIwEAAA== - headers: - apim-request-id: 975f0f26-062b-44c6-abe1-2dd4371951b1 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:48 GMT - etag: '"3EAFAEF2DE4D5F1AF08C12BD5CB11242E494E73DC9C755A04CAAF1236507A883"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 975f0f26-062b-44c6-abe1-2dd4371951b1 + x-requestid: b6a7e2c0-4424-422b-a31e-5c46332f9c92 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/7dbc9450-2f42-491b-8583-524fb282bbd3 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/70081137-fe6d-466f-953e-2670c8f5e6da/documents?$skip=0 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 899868a71e33..4da7eba7e43d 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:13 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0534b265-fc4a-484a-acf2-81afa1f248df?restype=container + uri: https://redacted.blob.core.windows.net/src35d93a05-c5bc-47c2-b754-34c0c1b40146?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:48 GMT + - Wed, 02 Jun 2021 07:07:13 GMT etag: - - '"0x8D91C7A439017CF"' + - '"0x8D925950C8869A6"' last-modified: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:14 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: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src0534b265-fc4a-484a-acf2-81afa1f248df/ca43644f-16c7-4a5e-bb8b-7f2fb97056ac.txt + uri: https://redacted.blob.core.windows.net/src35d93a05-c5bc-47c2-b754-34c0c1b40146/e614bfcc-6f7c-4ddf-a09b-2e21f8fda845.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Fri, 21 May 2021 17:02:48 GMT + - Wed, 02 Jun 2021 07:07:13 GMT etag: - - '"0x8D91C7A439C0476"' + - '"0x8D925950C950742"' last-modified: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,11 +101,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target02442930-e912-4083-b0bd-61a1c2dffd13?restype=container + uri: https://redacted.blob.core.windows.net/target03fe8fb0-b0ce-4ab0-95f5-4ee8fa545d19?restype=container response: body: string: '' @@ -113,11 +113,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:13 GMT etag: - - '"0x8D91C7A43C9A740"' + - '"0x8D925950CBC420C"' last-modified: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -139,11 +139,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:14 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/targetc547fdc5-461e-4e4e-ad10-437043be5687?restype=container + uri: https://redacted.blob.core.windows.net/target6d4fc22d-67b3-4a41-935b-77735c996a0a?restype=container response: body: string: '' @@ -151,11 +151,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:49 GMT + - Wed, 02 Jun 2021 07:07:14 GMT etag: - - '"0x8D91C7A43F469EF"' + - '"0x8D925950CE096B8"' last-modified: - - Fri, 21 May 2021 17:02:50 GMT + - Wed, 02 Jun 2021 07:07:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -164,15 +164,15 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0534b265-fc4a-484a-acf2-81afa1f248df?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target02442930-e912-4083-b0bd-61a1c2dffd13?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", - "language": "es"}, {"targetUrl": "https://redacted.blob.core.windows.net/targetc547fdc5-461e-4e4e-ad10-437043be5687?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src35d93a05-c5bc-47c2-b754-34c0c1b40146?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target03fe8fb0-b0ce-4ab0-95f5-4ee8fa545d19?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + "language": "es"}, {"targetUrl": "https://redacted.blob.core.windows.net/target6d4fc22d-67b3-4a41-935b-77735c996a0a?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "fr"}]}]}' headers: Accept: - application/json Content-Length: - - '710' + - '708' Content-Type: - application/json User-Agent: @@ -183,53 +183,46 @@ interactions: body: string: '' headers: - apim-request-id: b1de2c74-a330-4833-ba63-f7eefbf8bad4 + apim-request-id: 2dc5d999-9abe-4363-9cc6-68cbd401aed2 content-length: '0' - date: Fri, 21 May 2021 17:02:50 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5f48504-573a-4a44-983d-c052a3dea24a + date: Wed, 02 Jun 2021 07:07:14 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/72d34ce8-d861-4d6c-a410-d6337f303948 set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b1de2c74-a330-4833-ba63-f7eefbf8bad4 + x-requestid: 2dc5d999-9abe-4363-9cc6-68cbd401aed2 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/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/batches/f5f48504-573a-4a44-983d-c052a3dea24a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/72d34ce8-d861-4d6c-a410-d6337f303948 response: body: - string: !!binary | - H4sIAAAAAAAEAI2NMQvCMBCF/8vNRtI0oZpNdBZBHXQ7rqkG2gaS6yDF/25S0NnlePfefe9m8C1Y - 6EynN0ZqYZoahUatxXZTt4KkUVi3DpVGWAFFh+zaQx4XP7grU2aVVJWQRqjqUjVWKmvkupY6NzX3 - zPSYeEfsw/gnplXBEiNPKd8dA58ZY35b3GkYML7AzsCBsQcrV9Ch73NaZJqIXEqL9uMphkf8rmPg - m/tVFYdwJNd/0aVv/8SIxC4W8ViS9/sDBDTVUCQBAAA= + string: '{"id":"72d34ce8-d861-4d6c-a410-d6337f303948","createdDateTimeUtc":"2021-06-02T07:07:14.7915463Z","lastActionDateTimeUtc":"2021-06-02T07:07:15.5245593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}' headers: - apim-request-id: cce5cb09-281a-4c9b-9ccf-8bebd64dd816 + apim-request-id: 0b96077d-aeb3-4588-94dd-20be8d86e520 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:50 GMT - etag: '"637A895BCAF83F113EE0D762F6CB98AAE33A72A8E8E90D586289754F88403E47"' + date: Wed, 02 Jun 2021 07:07:19 GMT + etag: '"F005BC0AB2D0AE41BAA5539CA70A35639FA9D15C57A25852A9AB03DD4181BA66"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: cce5cb09-281a-4c9b-9ccf-8bebd64dd816 + x-requestid: 0b96077d-aeb3-4588-94dd-20be8d86e520 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5f48504-573a-4a44-983d-c052a3dea24a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/72d34ce8-d861-4d6c-a410-d6337f303948 - request: body: null headers: @@ -238,190 +231,25 @@ 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/batches/f5f48504-573a-4a44-983d-c052a3dea24a - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NMQvCMBCF/8vNRtI0oZpNdBZBHXQ7rqkG2gaS6yDF/25S0NnlePfefe9m8C1Y - 6EynN0ZqYZoahUatxXZTt4KkUVi3DpVGWAFFh+zaQx4XP7grU2aVVJWQRqjqUjVWKmvkupY6NzX3 - zPSYeEfsw/gnplXBEiNPKd8dA58ZY35b3GkYML7AzsCBsQcrV9Ch73NaZJqIXEqL9uMphkf8rmPg - m/tVFYdwJNd/0aVv/8SIxC4W8ViS9/sDBDTVUCQBAAA= - headers: - apim-request-id: d2d5bd14-6521-4ec5-9485-c6f129ec0335 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:50 GMT - etag: '"637A895BCAF83F113EE0D762F6CB98AAE33A72A8E8E90D586289754F88403E47"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: d2d5bd14-6521-4ec5-9485-c6f129ec0335 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5f48504-573a-4a44-983d-c052a3dea24a -- 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/batches/f5f48504-573a-4a44-983d-c052a3dea24a - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWNMY/CMAyF/4tngtI0ITQbupvRScAAm+WmEKltpMQMJ8R/J6kEK4v17OfvvQeE - HhwMZtBbI7UwtkWhUWvRbdtekDQK296j0ggroOSRff9bxjFM/sRUWCVVI6QRqjk21knljFy3Upck - eynMiJl3xCHO3zFtNrazXcUyI99z+dtHPjCmUluv92nC9A/uARwZR3BqBQOGsbhOVp/I57zoMP+l - eE3vdY589p+oyhHO5Mc3uuT93DAhsU9VXBfn+XwBFIwyUyQBAAA= - headers: - apim-request-id: 1c84c24a-5833-4a1f-85a0-8e0ded038304 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:51 GMT - etag: '"3B5789309BBECFCF881635173E0CFEF7B14DACD4DE094B02269934ABB7DBFDCC"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 1c84c24a-5833-4a1f-85a0-8e0ded038304 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5f48504-573a-4a44-983d-c052a3dea24a -- 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/batches/f5f48504-573a-4a44-983d-c052a3dea24a - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwWrEMAxE/0Xn9aI4Nkl9K+0HlO720N6EoqSGxAFbOSzL/nud0J57ESPNvAHd - IQ4QYPSj6z0647uWjCPnzFPfDobRW2oHIesITsBZSGV4reMaF/lQrqxF2xj0xjbXpgtog8dzi642 - dV+VmanoM2tc039Yc+569OjdjhUl3UrNvW8pxTTtp21ZKN8g3EFXpRmCPcFIcZb6Au4+s5Ry6Jje - 8jrlY62ptOqn6EUp62+YKbHMf+jR9/JNmVgl72I6nMfjB2oXKtAhAQAA - headers: - apim-request-id: f95101fa-1e51-45e5-99e4-aafd1b172658 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:52 GMT - etag: '"BAA2DD74849A19E9562ECEECF57E2FC8A52FB04A3F4A03AED975911931605F49"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: f95101fa-1e51-45e5-99e4-aafd1b172658 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5f48504-573a-4a44-983d-c052a3dea24a -- 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/batches/f5f48504-573a-4a44-983d-c052a3dea24a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/72d34ce8-d861-4d6c-a410-d6337f303948/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPwWrEMAxE/0Xn9aI4Nkl9K+0HlO720N6EoqSGxAFbOSzL/nud0J57ESPNvAHd - IQ4QYPSj6z0647uWjCPnzFPfDobRW2oHIesITsBZSGV4reMaF/lQrqxF2xj0xjbXpgtog8dzi642 - dV+VmanoM2tc039Yc+569OjdjhUl3UrNvW8pxTTtp21ZKN8g3EFXpRmCPcFIcZb6Au4+s5Ry6Jje - 8jrlY62ptOqn6EUp62+YKbHMf+jR9/JNmVgl72I6nMfjB2oXKtAhAQAA + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target03fe8fb0-b0ce-4ab0-95f5-4ee8fa545d19/e614bfcc-6f7c-4ddf-a09b-2e21f8fda845.txt","sourcePath":"https://redacted.blob.core.windows.net/src35d93a05-c5bc-47c2-b754-34c0c1b40146/e614bfcc-6f7c-4ddf-a09b-2e21f8fda845.txt","createdDateTimeUtc":"2021-06-02T07:07:15.3204468Z","lastActionDateTimeUtc":"2021-06-02T07:07:17.4951713Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee4b-0000-0000-0000-000000000000","characterCharged":17},{"path":"https://redacted.blob.core.windows.net/target6d4fc22d-67b3-4a41-935b-77735c996a0a/e614bfcc-6f7c-4ddf-a09b-2e21f8fda845.txt","sourcePath":"https://redacted.blob.core.windows.net/src35d93a05-c5bc-47c2-b754-34c0c1b40146/e614bfcc-6f7c-4ddf-a09b-2e21f8fda845.txt","createdDateTimeUtc":"2021-06-02T07:07:15.30924Z","lastActionDateTimeUtc":"2021-06-02T07:07:17.4409972Z","status":"Succeeded","to":"fr","progress":1,"id":"0007ee4c-0000-0000-0000-000000000000","characterCharged":17}]}' headers: - apim-request-id: 75230420-d2db-4d2d-9a39-d26ddd3c50f7 + apim-request-id: 193b4d36-43ac-4047-af6c-f0eddb06d35a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:53 GMT - etag: '"BAA2DD74849A19E9562ECEECF57E2FC8A52FB04A3F4A03AED975911931605F49"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 75230420-d2db-4d2d-9a39-d26ddd3c50f7 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5f48504-573a-4a44-983d-c052a3dea24a -- 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/batches/f5f48504-573a-4a44-983d-c052a3dea24a - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPwWrEMAxE/0Xn9aI4Nkl9K+0HlO720N6EoqSGxAFbOSzL/nud0J57ESPNvAHd - IQ4QYPSj6z0647uWjCPnzFPfDobRW2oHIesITsBZSGV4reMaF/lQrqxF2xj0xjbXpgtog8dzi642 - dV+VmanoM2tc039Yc+569OjdjhUl3UrNvW8pxTTtp21ZKN8g3EFXpRmCPcFIcZb6Au4+s5Ry6Jje - 8jrlY62ptOqn6EUp62+YKbHMf+jR9/JNmVgl72I6nMfjB2oXKtAhAQAA - headers: - apim-request-id: e6176f0a-48d6-4d13-9162-ea53a5c74288 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:54 GMT - etag: '"BAA2DD74849A19E9562ECEECF57E2FC8A52FB04A3F4A03AED975911931605F49"' + date: Wed, 02 Jun 2021 07:07:19 GMT + etag: '"E666379251A29677A8FF3F41E909992B6BB245B2D8885BA14DD4C7C0AD7BE3C7"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e6176f0a-48d6-4d13-9162-ea53a5c74288 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5f48504-573a-4a44-983d-c052a3dea24a -- 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/batches/f5f48504-573a-4a44-983d-c052a3dea24a - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMu27DMAxF/0VzFNASBbvaivYDCiQdko2Q6FSAH4BED0WQf69kJHMXgrznHt5V - isqr0Y04OEDteksaCVG/DTbqAM6QjUwGSR1UyEzC8bOOc5r5W0J1DZhOg9OmO3e9B+MdHC1g/dRf - qzNRkfcgaV3+07pjP4ADh00rQrKV2jttITBHji3c5pnyr/J3JavQpLw5qJHSVKmHxmu3lD1Oy1de - b3k/K1pWubCchLI8y4GWwNNL3f99/FCmIJzbcmvE4uPxByy+i2okAQAA - headers: - apim-request-id: a9b1aae4-9db2-4c49-8d18-db4a4103cf9d - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:55 GMT - etag: '"7C260AD432BD594F37878252E1B2505482CE889CF3413A57891DB8B5DB55D90F"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: a9b1aae4-9db2-4c49-8d18-db4a4103cf9d + x-requestid: 193b4d36-43ac-4047-af6c-f0eddb06d35a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/f5f48504-573a-4a44-983d-c052a3dea24a + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/72d34ce8-d861-4d6c-a410-d6337f303948/documents?$skip=0 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 ec720d13901e..fa379baf309d 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 @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4934f6fe-3e96-4180-b999-e9ccec566c10?restype=container + uri: https://redacted.blob.core.windows.net/src4bba1890-be8f-44ca-84fb-0a8d5fa7a7e0?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:55 GMT + - Wed, 02 Jun 2021 07:07:52 GMT etag: - - '"0x8D91C7A479E8049"' + - '"0x8D92595237D0C6A"' last-modified: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 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: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4934f6fe-3e96-4180-b999-e9ccec566c10/ccc0ae16-32a5-49ce-8650-21f070eff1af.txt + uri: https://redacted.blob.core.windows.net/src4bba1890-be8f-44ca-84fb-0a8d5fa7a7e0/24cd1fe5-42d2-4ecc-9819-d5520b84fc96.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:02:55 GMT + - Wed, 02 Jun 2021 07:07:52 GMT etag: - - '"0x8D91C7A47A83861"' + - '"0x8D925952385DA8E"' last-modified: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 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: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/src4934f6fe-3e96-4180-b999-e9ccec566c10/7b565e2c-43fc-4d19-9924-e541eea4e5b3.jpg + uri: https://redacted.blob.core.windows.net/src4bba1890-be8f-44ca-84fb-0a8d5fa7a7e0/cae3aab6-566b-47f7-8d22-73b11780cd0d.jpg response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 GMT etag: - - '"0x8D91C7A47B5813E"' + - '"0x8D9259523914E4D"' last-modified: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -151,11 +151,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.9.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 GMT x-ms-version: - '2020-08-04' method: PUT - uri: https://redacted.blob.core.windows.net/target9e8235ee-45f9-4f21-adf3-146d5ab83fb8?restype=container + uri: https://redacted.blob.core.windows.net/target038b033e-4238-46df-8f58-a64de251d7b1?restype=container response: body: string: '' @@ -163,11 +163,11 @@ interactions: content-length: - '0' date: - - Fri, 21 May 2021 17:02:55 GMT + - Wed, 02 Jun 2021 07:07:52 GMT etag: - - '"0x8D91C7A47DC418A"' + - '"0x8D9259523ADF245"' last-modified: - - Fri, 21 May 2021 17:02:56 GMT + - Wed, 02 Jun 2021 07:07:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -176,14 +176,14 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4934f6fe-3e96-4180-b999-e9ccec566c10?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9e8235ee-45f9-4f21-adf3-146d5ab83fb8?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4bba1890-be8f-44ca-84fb-0a8d5fa7a7e0?se=end&sp=rl&sv=2020-08-04&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target038b033e-4238-46df-8f58-a64de251d7b1?se=end&sp=rw&sv=2020-08-04&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '486' + - '482' Content-Type: - application/json User-Agent: @@ -194,245 +194,100 @@ interactions: body: string: '' headers: - apim-request-id: a2b8d3f7-e32e-4ed5-abd0-23a1e2f04ad9 + apim-request-id: 32d32cf6-143a-481e-8eaa-d3b1e409b5d6 content-length: '0' - date: Fri, 21 May 2021 17:02:56 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com + date: Wed, 02 Jun 2021 07:07:53 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8a75a26e-4175-4085-9cc7-fb189383ffc1 + set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a2b8d3f7-e32e-4ed5-abd0-23a1e2f04ad9 + x-requestid: 32d32cf6-143a-481e-8eaa-d3b1e409b5d6 status: code: 202 message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/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/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NzU4DMQyE38Xnpspv2eaG4FwhUQ5wM15TIu1upMR7QFXfnWSlcuZijWf8ja+Q - RogwILrj6Ef1eSBS3jmtjuRREQ2GvWd0JsAOqDAKj89tnNPMb0KNtdoapYOy5mweorYxHPZDMMEa - 99GYCas8kqS8/BcbOlYFZa3t7pTlVbC0t91d5xnLD8QrSBacIOodfGGaWtplXYm41k2n5aXkS7mv - S5Z3/qvqDuFCPN3Rre/pGwuScOnisiW32y910GyFJAEAAA== - headers: - apim-request-id: 8db4954a-ccce-42a2-899f-e83dc128106c - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:56 GMT - etag: '"807423F289DEEA82C1C7179DDCEB9BE6B2D0F680B7DEEFB2D027B98349CA7DD6"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 8db4954a-ccce-42a2-899f-e83dc128106c - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 -- request: - body: null - headers: - Accept: - - application/json - User-Agent: - - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 - response: - body: - string: !!binary | - H4sIAAAAAAAEAI2NzU4DMQyE38Xnpspv2eaG4FwhUQ5wM15TIu1upMR7QFXfnWSlcuZijWf8ja+Q - RogwILrj6Ef1eSBS3jmtjuRREQ2GvWd0JsAOqDAKj89tnNPMb0KNtdoapYOy5mweorYxHPZDMMEa - 99GYCas8kqS8/BcbOlYFZa3t7pTlVbC0t91d5xnLD8QrSBacIOodfGGaWtplXYm41k2n5aXkS7mv - S5Z3/qvqDuFCPN3Rre/pGwuScOnisiW32y910GyFJAEAAA== - headers: - apim-request-id: b09de035-0505-4f16-87d8-9048c5584a88 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:56 GMT - etag: '"807423F289DEEA82C1C7179DDCEB9BE6B2D0F680B7DEEFB2D027B98349CA7DD6"' - set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: b09de035-0505-4f16-87d8-9048c5584a88 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 -- 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/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFOg3drQV7QMUTTKkG0uzjgBbBiR6KIK8e2ShnbsQR959B/Au - 4iCC6AHscXCD/DogSmetkkd0IBF7Tc4RWO3FTmAmYBre6jjHmS6MlTXKaKm8NPqsu6BM8Id977U3 - 2n5WZoLCL8hxSf9h3b5zvtO2YYWB11JzH2tKMY3baZ1nyD8i3AUvDJMIeie+IU5UX1Cbj0ilNB3T - e17G3NaaSgtfiU8MmX/DCAlp+kNb3+sNMiBT3sTYnMfjCaWJUQAhAQAA - headers: - apim-request-id: be1ce93c-f355-4ea4-b5f4-ac0f29a338dc - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:57 GMT - etag: '"47E2A8EEA5ECDFBBA9D80C1550F1B4F1298836A822E2A8526446160EE5400949"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: be1ce93c-f355-4ea4-b5f4-ac0f29a338dc - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches - 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/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8a75a26e-4175-4085-9cc7-fb189383ffc1 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFOg3drQV7QMUTTKkG0uzjgBbBiR6KIK8e2ShnbsQR959B/Au - 4iCC6AHscXCD/DogSmetkkd0IBF7Tc4RWO3FTmAmYBre6jjHmS6MlTXKaKm8NPqsu6BM8Id977U3 - 2n5WZoLCL8hxSf9h3b5zvtO2YYWB11JzH2tKMY3baZ1nyD8i3AUvDJMIeie+IU5UX1Cbj0ilNB3T - e17G3NaaSgtfiU8MmX/DCAlp+kNb3+sNMiBT3sTYnMfjCaWJUQAhAQAA + string: '{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 4b7deb1f-068d-4e42-8577-179254620697 + apim-request-id: dafd8539-f63e-4042-a011-5e2430b33cb6 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:58 GMT - etag: '"47E2A8EEA5ECDFBBA9D80C1550F1B4F1298836A822E2A8526446160EE5400949"' + date: Wed, 02 Jun 2021 07:07:57 GMT + etag: '"44E76A13182A13E7AE90DA1395AD1CEA3A1DC233EBA41439368ED19582007655"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4b7deb1f-068d-4e42-8577-179254620697 + x-requestid: dafd8539-f63e-4042-a011-5e2430b33cb6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8a75a26e-4175-4085-9cc7-fb189383ffc1 - 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/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8a75a26e-4175-4085-9cc7-fb189383ffc1 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFOg3drQV7QMUTTKkG0uzjgBbBiR6KIK8e2ShnbsQR959B/Au - 4iCC6AHscXCD/DogSmetkkd0IBF7Tc4RWO3FTmAmYBre6jjHmS6MlTXKaKm8NPqsu6BM8Id977U3 - 2n5WZoLCL8hxSf9h3b5zvtO2YYWB11JzH2tKMY3baZ1nyD8i3AUvDJMIeie+IU5UX1Cbj0ilNB3T - e17G3NaaSgtfiU8MmX/DCAlp+kNb3+sNMiBT3sTYnMfjCaWJUQAhAQAA + string: '{"id":"8a75a26e-4175-4085-9cc7-fb189383ffc1","createdDateTimeUtc":"2021-06-02T07:07:53.11336Z","lastActionDateTimeUtc":"2021-06-02T07:07:55.6569416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: 494b6b3f-b165-4f8b-bd3c-749f7cb18c4f + apim-request-id: 446e53cc-4501-4db9-9ebf-7e985811392a cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:02:59 GMT - etag: '"47E2A8EEA5ECDFBBA9D80C1550F1B4F1298836A822E2A8526446160EE5400949"' + date: Wed, 02 Jun 2021 07:07:58 GMT + etag: '"BE1269B787B04FD7E937FFC3297DCFD3C7762127BD1E7F2E9F0CB7F0677E8058"' set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 494b6b3f-b165-4f8b-bd3c-749f7cb18c4f + x-requestid: 446e53cc-4501-4db9-9ebf-7e985811392a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8a75a26e-4175-4085-9cc7-fb189383ffc1 - request: body: null headers: + Accept: + - application/json User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8a75a26e-4175-4085-9cc7-fb189383ffc1/documents?$skip=0 response: body: - string: !!binary | - H4sIAAAAAAAEAIWPvW7DMAyE30VzFOg3drQV7QMUTTKkG0uzjgBbBiR6KIK8e2ShnbsQR959B/Au - 4iCC6AHscXCD/DogSmetkkd0IBF7Tc4RWO3FTmAmYBre6jjHmS6MlTXKaKm8NPqsu6BM8Id977U3 - 2n5WZoLCL8hxSf9h3b5zvtO2YYWB11JzH2tKMY3baZ1nyD8i3AUvDJMIeie+IU5UX1Cbj0ilNB3T - e17G3NaaSgtfiU8MmX/DCAlp+kNb3+sNMiBT3sTYnMfjCaWJUQAhAQAA + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target038b033e-4238-46df-8f58-a64de251d7b1/24cd1fe5-42d2-4ecc-9819-d5520b84fc96.txt","sourcePath":"https://redacted.blob.core.windows.net/src4bba1890-be8f-44ca-84fb-0a8d5fa7a7e0/24cd1fe5-42d2-4ecc-9819-d5520b84fc96.txt","createdDateTimeUtc":"2021-06-02T07:07:55.4066138Z","lastActionDateTimeUtc":"2021-06-02T07:07:58.5835958Z","status":"Succeeded","to":"es","progress":1,"id":"0007ee4e-0000-0000-0000-000000000000","characterCharged":27}]}' headers: - apim-request-id: 5c18cfa7-1f1a-4a4e-ba51-7bec14ff9967 + apim-request-id: b067b9a9-598d-4bb8-acfa-cc67368e56f1 cache-control: public,max-age=1 - content-encoding: gzip content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:03:01 GMT - etag: '"47E2A8EEA5ECDFBBA9D80C1550F1B4F1298836A822E2A8526446160EE5400949"' + date: Wed, 02 Jun 2021 07:07:58 GMT + etag: '"6F47D43EBD43C796AED2A8F1D8A22B047DB14E9DA64A14E3CA23EF3A54C3D6C3"' set-cookie: ARRAffinitySameSite=0ff46fa6d58b00f2d44b7073721903c0eace480139d8ecfc38f61130af5e1587;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5c18cfa7-1f1a-4a4e-ba51-7bec14ff9967 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 -- 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/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 - response: - body: - string: !!binary | - H4sIAAAAAAAEAIWMy24CMQxF/yVrgvIkQ3ZV+wGVoIuyM46BSPOQEs8CIf6dzIiuu7Hse+7xQ+Qk - ougA7D65JM87ROmsVXKPDiRip8k5Aqu92AgsBEzpq41jHuiHsblGGS2Vl0YfdYjKRL/bdl57o+2p - OT1U/kDO0/ifFrbB+aDtqlUGnmvrHWZEokRpCedhgHIX8SF4YuhF1Btxgdw3GtXCW7fWNc7jd5mu - ZT0bGif+JT4wFH6XEUak/k9d/33eoAAylWW5LsSE5/MFPUkRLyQBAAA= - headers: - apim-request-id: 0d4e5960-515d-4392-9012-2630cd3dd030 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Fri, 21 May 2021 17:03:02 GMT - etag: '"38E6A92C9B0867326A815708913F7EE8D4023414E37664E7B45B428D3057A41F"' - set-cookie: ARRAffinitySameSite=20358cd7aa5d6b0695f01ef171fc9a95880154357830e1c6bb513b73834a2e5f;Path=/;HttpOnly;SameSite=None;Secure;Domain=mtbatch.nam.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 0d4e5960-515d-4392-9012-2630cd3dd030 + x-requestid: b067b9a9-598d-4bb8-acfa-cc67368e56f1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0/batches/8aa39d4d-b6cc-4330-9c4a-cc81e44ea315 + url: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0/batches/8a75a26e-4175-4085-9cc7-fb189383ffc1/documents?$skip=0 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 7dc0d8ef94a2..93db14e29cba 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 @@ -24,10 +24,10 @@ def test_list_document_statuses(self, client): 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) + poller = self._begin_and_validate_translation_with_multiple_docs(client, docs_count, language_code=target_language, wait=True) # list docs statuses - doc_statuses = list(client.list_all_document_statuses(job_id)) # convert from generic iterator to list + doc_statuses = list(client.list_all_document_statuses(poller.id)) # convert from generic iterator to list self.assertEqual(len(doc_statuses), docs_count) for document in doc_statuses: @@ -42,10 +42,10 @@ def test_list_document_statuses_with_pagination(self, client): 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) + poller = self._begin_and_validate_translation_with_multiple_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=results_per_page).by_page()) + doc_statuses_pages = list(client.list_all_document_statuses(job_id=poller.id, results_per_page=results_per_page).by_page()) self.assertEqual(len(doc_statuses_pages), no_of_pages) # iterate by page @@ -64,10 +64,10 @@ def test_list_document_statuses_with_skip(self, client): 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) + poller = self._begin_and_validate_translation_with_multiple_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)) + doc_statuses = list(client.list_all_document_statuses(job_id=poller.id, skip=skip)) self.assertEqual(len(doc_statuses), docs_count - skip) # iterate over docs @@ -82,19 +82,19 @@ def test_list_document_statuses_filter_by_status(self, client): 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) + poller = self._begin_and_validate_translation_with_multiple_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)) + doc_statuses = list(client.list_all_document_statuses(poller.id, statuses=statuses)) assert(len(doc_statuses) == 0) statuses = ["Succeeded"] - doc_statuses = list(client.list_all_document_statuses(job_id, statuses=statuses)) + doc_statuses = list(client.list_all_document_statuses(poller.id, statuses=statuses)) assert(len(doc_statuses) == docs_count) statuses = ["Failed"] - doc_statuses = list(client.list_all_document_statuses(job_id, statuses=statuses)) + doc_statuses = list(client.list_all_document_statuses(poller.id, statuses=statuses)) assert(len(doc_statuses) == 0) @@ -105,16 +105,16 @@ def test_list_document_statuses_filter_by_ids(self, client): 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) + poller = self._begin_and_validate_translation_with_multiple_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 + doc_statuses = list(client.list_all_document_statuses(poller.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)) + doc_statuses = list(client.list_all_document_statuses(poller.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) @@ -127,10 +127,10 @@ def test_list_document_statuses_order_by_creation_time_asc(self, client): 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) + poller = self._begin_and_validate_translation_with_multiple_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 + doc_statuses = list(client.list_all_document_statuses(poller.id, order_by=["createdDateTimeUtc asc"])) # convert from generic iterator to list self.assertEqual(len(doc_statuses), docs_count) curr = datetime.min @@ -146,10 +146,10 @@ def test_list_document_statuses_order_by_creation_time_desc(self, client): 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) + poller = self._begin_and_validate_translation_with_multiple_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 + doc_statuses = list(client.list_all_document_statuses(poller.id, order_by=["createdDateTimeUtc desc"])) # convert from generic iterator to list self.assertEqual(len(doc_statuses), docs_count) curr = datetime.max @@ -169,17 +169,17 @@ def test_list_document_statuses_mixed_filters(self, client): statuses = ["Succeeded"] # submit and validate job - job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) + poller = self._begin_and_validate_translation_with_multiple_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 + doc_statuses = list(client.list_all_document_statuses(poller.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, + poller.id, # filters document_ids=ids, statuses=statuses, 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 1d564f12f029..0985fab31a45 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 @@ -24,10 +24,10 @@ async def test_list_document_statuses(self, client): 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) + poller = await self._begin_and_validate_translation_with_multiple_docs_async(client, docs_count, language_code=target_language, wait=True) # check doc statuses - doc_statuses = client.list_all_document_statuses(job_id) + doc_statuses = client.list_all_document_statuses(poller.id) doc_statuses_list = [] async for document in doc_statuses: @@ -46,10 +46,10 @@ async def test_list_document_statuses_with_pagination(self, client): 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) + poller = await self._begin_and_validate_translation_with_multiple_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=results_per_page).by_page() + doc_statuses_pages = client.list_all_document_statuses(job_id=poller.id, results_per_page=results_per_page).by_page() pages_list = [] # iterate by page @@ -72,10 +72,10 @@ async def test_list_document_statuses_with_skip(self, client): 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) + poller = await self._begin_and_validate_translation_with_multiple_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) + doc_statuses = client.list_all_document_statuses(job_id=poller.id, skip=skip) doc_statuses_list = [] # iterate over docs @@ -93,25 +93,25 @@ async def test_list_document_statuses_filter_by_status(self, client): 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) + poller = await self._begin_and_validate_translation_with_multiple_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) + doc_statuses = client.list_all_document_statuses(poller.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) + doc_statuses = client.list_all_document_statuses(poller.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) + doc_statuses = client.list_all_document_statuses(poller.id, statuses=statuses) counter = 0 async for doc in doc_statuses: counter += 1 @@ -125,16 +125,16 @@ async def test_list_document_statuses_filter_by_ids(self, client): 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) + poller = await self._begin_and_validate_translation_with_multiple_docs_async(client, docs_count, language_code=target_language, wait=True) # filter ids - doc_statuses = client.list_all_document_statuses(job_id) + doc_statuses = client.list_all_document_statuses(poller.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) + doc_statuses = client.list_all_document_statuses(poller.id, document_ids=ids) counter = 0 async for document in doc_statuses: counter += 1 @@ -150,10 +150,10 @@ async def test_list_document_statuses_order_by_creation_time_asc(self, client): 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) + poller = await self._begin_and_validate_translation_with_multiple_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"]) + doc_statuses = client.list_all_document_statuses(poller.id, order_by=["createdDateTimeUtc asc"]) curr = datetime.min docs = [] @@ -172,10 +172,10 @@ async def test_list_document_statuses_order_by_creation_time_desc(self, client): 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) + poller = await self._begin_and_validate_translation_with_multiple_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"]) + doc_statuses = client.list_all_document_statuses(poller.id, order_by=["createdDateTimeUtc desc"]) curr = datetime.max docs = [] @@ -198,17 +198,17 @@ async def test_list_document_statuses_mixed_filters(self, client): 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) + poller = await self._begin_and_validate_translation_with_multiple_docs_async(client, docs_count, language_code=target_language, wait=True) # get ids - doc_statuses = client.list_all_document_statuses(job_id) + doc_statuses = client.list_all_document_statuses(poller.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, + poller.id, # filters document_ids=ids, statuses=statuses, diff --git a/sdk/translation/azure-ai-translation-document/tests/test_cancel_job.py b/sdk/translation/azure-ai-translation-document/tests/test_cancel_job.py index a58eb3ad4e1c..5a5d99eb854d 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_cancel_job.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_cancel_job.py @@ -8,6 +8,7 @@ from testcase import Document from testcase import DocumentTranslationTest from preparer import DocumentTranslationPreparer, DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer +from azure.core.exceptions import HttpResponseError from azure.ai.translation.document import DocumentTranslationClient, DocumentTranslationInput, TranslationTarget DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) @@ -27,15 +28,19 @@ def test_cancel_job(self, client): ''' # submit translation job docs_count = 8 # large number of docs - job_id = self._create_translation_job_with_dummy_docs(client, docs_count, wait=False) + poller = self._begin_and_validate_translation_with_multiple_docs(client, docs_count, wait=False) # cancel job - client.cancel_job(job_id) + client.cancel_job(poller.id) # wait for propagation wait_time = 15 # for 'cancelled' status to propagate, if test failed, increase this value! self.wait(duration=wait_time) # check job status - job_details = client.get_job_status(job_id) - self._validate_translation_job(job_details, status="Cancelled", total=docs_count) \ No newline at end of file + job_details = client.get_job_status(poller.id) + self._validate_translations(job_details, status="Cancelled", total=docs_count) + try: + poller.wait() + except HttpResponseError: + pass # expected if the operation was already in a terminal state. diff --git a/sdk/translation/azure-ai-translation-document/tests/test_cancel_job_async.py b/sdk/translation/azure-ai-translation-document/tests/test_cancel_job_async.py index 30df07fe83b9..d792f37397de 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_cancel_job_async.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_cancel_job_async.py @@ -10,6 +10,7 @@ from preparer import DocumentTranslationPreparer, DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer from azure.ai.translation.document import DocumentTranslationInput, TranslationTarget from azure.ai.translation.document.aio import DocumentTranslationClient +from azure.core.exceptions import HttpResponseError DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) @@ -28,15 +29,19 @@ async def test_cancel_job(self, client): ''' # submit translation job docs_count = 8 # large number of docs - job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, wait=False) + poller = await self._begin_and_validate_translation_with_multiple_docs_async(client, docs_count, wait=False) # cancel job - await client.cancel_job(job_id) + await client.cancel_job(poller.id) # wait for propagation wait_time = 15 # for 'cancelled' status to propagate, if test failed, increase this value! self.wait(duration=wait_time) # check job status - job_details = await client.get_job_status(job_id) - self._validate_translation_job(job_details, status="Cancelled", total=docs_count) \ No newline at end of file + job_details = await client.get_job_status(poller.id) + self._validate_translations(job_details, status="Cancelled", total=docs_count) + try: + await poller.wait() + except HttpResponseError: + pass # expected if the operation was already in a terminal state. diff --git a/sdk/translation/azure-ai-translation-document/tests/test_document_status.py b/sdk/translation/azure-ai-translation-document/tests/test_document_status.py index 10936c3294f0..ce5aef53f936 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_document_status.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_document_status.py @@ -36,7 +36,7 @@ def test_list_statuses(self, client): ] # submit and validate translation job - job_id = self._submit_and_validate_translation_job(client, translation_inputs, len(blob_data)) + job_id = self._begin_and_validate_translation(client, translation_inputs, len(blob_data), target_language) # get doc statuses doc_statuses = client.list_all_document_statuses(job_id) diff --git a/sdk/translation/azure-ai-translation-document/tests/test_document_status_async.py b/sdk/translation/azure-ai-translation-document/tests/test_document_status_async.py index 40e006250d1f..085cace9a829 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_document_status_async.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_document_status_async.py @@ -38,7 +38,7 @@ async def test_list_statuses(self, client): ] # submit and validate translation job - job_id = await self._submit_and_validate_translation_job_async(client, translation_inputs, len(blob_data)) + job_id = await self._begin_and_validate_translation_async(client, translation_inputs, len(blob_data), target_language) # get doc statuses doc_statuses = client.list_all_document_statuses(job_id) 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 7130039b4f24..fe37a80831e8 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,16 +4,17 @@ # Licensed under the MIT License. # ------------------------------------ -from datetime import datetime, date +import pytest +import pytz +from datetime import datetime import functools from testcase import DocumentTranslationTest from preparer import DocumentTranslationPreparer, DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer from azure.ai.translation.document import DocumentTranslationClient -import pytest -import pytz DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) + class TestSubmittedJobs(DocumentTranslationTest): @DocumentTranslationPreparer() @@ -22,7 +23,7 @@ def test_list_submitted_jobs(self, client): # create some jobs 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) + self._begin_multiple_translations(client, jobs_count, docs_per_job=docs_per_job, wait=False) # list jobs submitted_jobs = list(client.list_submitted_jobs()) @@ -30,7 +31,7 @@ def test_list_submitted_jobs(self, client): # check statuses for job in submitted_jobs: - self._validate_translation_job(job) + self._validate_translations(job) @DocumentTranslationPreparer() @@ -42,7 +43,7 @@ def test_list_submitted_jobs_with_pagination(self, client): results_per_page = 2 # create some jobs - self._create_and_submit_sample_translation_jobs(client, jobs_count, docs_per_job=docs_per_job, wait=False) + self._begin_multiple_translations(client, jobs_count, docs_per_job=docs_per_job, wait=False) # list jobs submitted_jobs_pages = client.list_submitted_jobs(results_per_page=results_per_page).by_page() @@ -53,7 +54,7 @@ def test_list_submitted_jobs_with_pagination(self, client): page_jobs = list(page) self.assertLessEqual(len(page_jobs), results_per_page) for job in page_jobs: - self._validate_translation_job(job) + self._validate_translations(job) @DocumentTranslationPreparer() @@ -65,7 +66,7 @@ def test_list_submitted_jobs_with_skip(self, client): skip = 5 # create some jobs - self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) + self._begin_multiple_translations(client, jobs_count, wait=False, docs_per_job=docs_per_job) # assert all_jobs = list(client.list_submitted_jobs()) @@ -80,10 +81,10 @@ def test_list_submitted_jobs_filter_by_status(self, client): 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) + completed_job_ids = self._begin_multiple_translations(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) + job_ids = self._begin_multiple_translations(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 @@ -105,7 +106,7 @@ def test_list_submitted_jobs_filter_by_ids(self, client): 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) + job_ids = self._begin_multiple_translations(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs submitted_jobs = list(client.list_submitted_jobs(job_ids=job_ids)) @@ -126,7 +127,7 @@ def test_list_submitted_jobs_filter_by_created_after(self, client): # create some jobs start = datetime.utcnow() - job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) + job_ids = self._begin_multiple_translations(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs submitted_jobs = list(client.list_submitted_jobs(created_after=start)) @@ -150,9 +151,9 @@ def test_list_submitted_jobs_filter_by_created_before(self, client): 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) + self._begin_multiple_translations(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) + job_ids = self._begin_multiple_translations(client, jobs_count, wait=True, docs_per_job=docs_per_job) # list jobs submitted_jobs = list(client.list_submitted_jobs(created_before=end)) @@ -171,7 +172,7 @@ def test_list_submitted_jobs_order_by_creation_time_asc(self, client): 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) + self._begin_multiple_translations(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs submitted_jobs = list(client.list_submitted_jobs(order_by=["createdDateTimeUtc asc"])) @@ -191,7 +192,7 @@ def test_list_submitted_jobs_order_by_creation_time_desc(self, client): 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) + self._begin_multiple_translations(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs submitted_jobs = list(client.list_submitted_jobs(order_by=["createdDateTimeUtc desc"])) @@ -217,8 +218,8 @@ def test_list_submitted_jobs_mixed_filters(self, client): # 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) + successful_job_ids = self._begin_multiple_translations(client, jobs_count, wait=True, docs_per_job=docs_per_job) + cancelled_job_ids = self._begin_multiple_translations(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 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 24818f5f55ff..2b93403a96e1 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,17 +4,18 @@ # Licensed under the MIT License. # ------------------------------------ -from datetime import datetime, date +import pytest +import pytz +from datetime import datetime import functools from asynctestcase import AsyncDocumentTranslationTest from preparer import DocumentTranslationPreparer, DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer from azure.ai.translation.document.aio import DocumentTranslationClient DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) -import pytest -import pytz TOTAL_DOC_COUNT_IN_JOB = 1 + class TestSubmittedJobs(AsyncDocumentTranslationTest): @@ -24,7 +25,7 @@ async def test_list_submitted_jobs(self, client): # create some jobs 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) + await self._begin_multiple_translations_async(client, jobs_count, docs_per_job=docs_per_job, wait=False) # list jobs submitted_jobs = client.list_submitted_jobs() @@ -32,7 +33,7 @@ async def test_list_submitted_jobs(self, client): # check statuses async for job in submitted_jobs: - self._validate_translation_job(job) + self._validate_translations(job) @DocumentTranslationPreparer() @@ -44,7 +45,7 @@ async def test_list_submitted_jobs_with_pagination(self, client): results_per_page = 2 # create some jobs - await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, docs_per_job=docs_per_job, wait=False) + await self._begin_multiple_translations_async(client, jobs_count, docs_per_job=docs_per_job, wait=False) # list jobs submitted_jobs_pages = client.list_submitted_jobs(results_per_page=results_per_page).by_page() @@ -55,7 +56,7 @@ async def test_list_submitted_jobs_with_pagination(self, client): page_jobs = [] async for job in page: page_jobs.append(job) - self._validate_translation_job(job) + self._validate_translations(job) self.assertLessEqual(len(page_jobs), results_per_page) @@ -69,7 +70,7 @@ async def test_list_submitted_jobs_with_skip(self, client): skip = 5 # create some jobs - await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) + await self._begin_multiple_translations_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs - unable to assert skip!! all_jobs = client.list_submitted_jobs() @@ -92,10 +93,10 @@ async def test_list_submitted_jobs_filter_by_status(self, client): 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) + completed_job_ids = await self._begin_multiple_translations_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) + job_ids = await self._begin_multiple_translations_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 @@ -117,7 +118,7 @@ async def test_list_submitted_jobs_filter_by_ids(self, client): 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) + job_ids = await self._begin_multiple_translations_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs submitted_jobs = client.list_submitted_jobs(job_ids=job_ids) @@ -138,7 +139,7 @@ async def test_list_submitted_jobs_filter_by_created_after(self, client): # create some jobs start = datetime.utcnow() - job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) + job_ids = await self._begin_multiple_translations_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs submitted_jobs = client.list_submitted_jobs(created_after=start) @@ -162,9 +163,9 @@ async def test_list_submitted_jobs_filter_by_created_before(self, client): 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) + await self._begin_multiple_translations_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) + job_ids = await self._begin_multiple_translations_async(client, jobs_count, wait=True, docs_per_job=docs_per_job) # list jobs submitted_jobs = client.list_submitted_jobs(created_before=end) @@ -183,7 +184,7 @@ async def test_list_submitted_jobs_order_by_creation_time_asc(self, client): 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) + await self._begin_multiple_translations_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs submitted_jobs = client.list_submitted_jobs(order_by=["createdDateTimeUtc asc"]) @@ -203,7 +204,7 @@ async def test_list_submitted_jobs_order_by_creation_time_desc(self, client): 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) + await self._begin_multiple_translations_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs submitted_jobs = client.list_submitted_jobs(order_by=["createdDateTimeUtc desc"]) @@ -229,8 +230,8 @@ async def test_list_submitted_jobs_mixed_filters(self, client): # 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) + successful_job_ids = await self._begin_multiple_translations_async(client, jobs_count, wait=True, docs_per_job=docs_per_job) + cancelled_job_ids = await self._begin_multiple_translations_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 diff --git a/sdk/translation/azure-ai-translation-document/tests/test_translation.py b/sdk/translation/azure-ai-translation-document/tests/test_translation.py index 29634a776526..3bef3f346fb1 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_translation.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_translation.py @@ -6,9 +6,7 @@ import functools import pytest -import uuid from azure.core.exceptions import HttpResponseError -from azure.storage.blob import ContainerClient from testcase import DocumentTranslationTest, Document from preparer import DocumentTranslationPreparer, \ DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer @@ -43,7 +41,7 @@ def test_active_directory_auth(self): ] # submit job and test - self._submit_and_validate_translation_job(client, translation_inputs, 1) + self._begin_and_validate_translation(client, translation_inputs, 1, "fr") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -67,7 +65,7 @@ def test_single_source_single_target(self, client): ] # submit job and test - self._submit_and_validate_translation_job(client, translation_inputs, 1) + self._begin_and_validate_translation(client, translation_inputs, 1, "es") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -96,7 +94,7 @@ def test_single_source_two_targets(self, client): ] # submit job and test - self._submit_and_validate_translation_job(client, translation_inputs) + self._begin_and_validate_translation(client, translation_inputs, 2) @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -131,7 +129,7 @@ def test_multiple_sources_single_target(self, client): ] # submit job and test - self._submit_and_validate_translation_job(client, translation_inputs, 2) + self._begin_and_validate_translation(client, translation_inputs, 2) @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -157,7 +155,7 @@ def test_single_source_single_target_with_prefix(self, client): ] # submit job and test - self._submit_and_validate_translation_job(client, translation_inputs, 1) + self._begin_and_validate_translation(client, translation_inputs, 1, "es") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -183,7 +181,7 @@ def test_single_source_single_target_with_suffix(self, client): ] # submit job and test - self._submit_and_validate_translation_job(client, translation_inputs, 1) + self._begin_and_validate_translation(client, translation_inputs, 1, "es") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -205,8 +203,8 @@ def test_bad_input_source(self, client): ] with pytest.raises(HttpResponseError) as e: - job = client.create_translation_job(translation_inputs) - job = client.wait_until_done(job.id) + poller = client.begin_translation(translation_inputs) + result = poller.result() assert e.value.error.code == "InvalidDocumentAccessLevel" @pytest.mark.skip("https://github.com/Azure/azure-sdk-for-python/issues/17914") @@ -231,8 +229,8 @@ def test_bad_input_target(self, client): ] with pytest.raises(HttpResponseError) as e: - job = client.create_translation_job(translation_inputs) - job = client.wait_until_done(job.id) + poller = client.begin_translation(translation_inputs) + result = poller.result() assert e.value.error.code == "InvalidDocumentAccessLevel" @DocumentTranslationPreparer() @@ -259,9 +257,11 @@ def test_use_supported_and_unsupported_files(self, client): ) ] - job = client.create_translation_job(translation_inputs) - job = client.wait_until_done(job.id) - self._validate_translation_job(job, status="Succeeded", total=1, succeeded=1) + poller = client.begin_translation(translation_inputs) + result = poller.result() + self._validate_translation_metadata(poller=poller, status="Succeeded", total=1, succeeded=1) + for document in result: + self._validate_doc_status(document, "es") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -283,14 +283,13 @@ def test_existing_documents_in_target(self, client): ) ] - job = client.create_translation_job(translation_inputs) - job = client.wait_until_done(job.id) - self._validate_translation_job(job, status="Failed", total=1, failed=1) + poller = client.begin_translation(translation_inputs) + result = poller.result() + self._validate_translation_metadata(poller, status="Failed", total=1, failed=1) - doc_status = client.list_all_document_statuses(job.id) - doc = next(doc_status) - assert doc.status == "Failed" - assert doc.error.code == "TargetFileAlreadyExists" + for doc in result: + assert doc.status == "Failed" + assert doc.error.code == "TargetFileAlreadyExists" @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -312,12 +311,11 @@ def test_existing_documents_in_target_one_valid(self, client): ) ] - job = client.create_translation_job(translation_inputs) - job = client.wait_until_done(job.id) - self._validate_translation_job(job, status="Succeeded", total=2, failed=1) + poller = client.begin_translation(translation_inputs) + result = poller.result() + self._validate_translation_metadata(poller, status="Succeeded", total=2, failed=1) - doc_statuses = client.list_all_document_statuses(job.id) - for doc in doc_statuses: + for doc in result: if doc.status == "Failed": assert doc.error.code == "TargetFileAlreadyExists" @@ -341,11 +339,10 @@ def test_empty_document(self, client): ) ] - job = client.create_translation_job(translation_inputs) - job = client.wait_until_done(job.id) - self._validate_translation_job(job, status="Failed", total=1, failed=1) + poller = client.begin_translation(translation_inputs) + result = poller.result() + self._validate_translation_metadata(poller, status="Failed", total=1, failed=1) - doc_status = client.list_all_document_statuses(job.id) - doc = next(doc_status) - assert doc.status == "Failed" - assert doc.error.code == "WrongDocumentEncoding" + for doc in result: + assert doc.status == "Failed" + assert doc.error.code == "WrongDocumentEncoding" diff --git a/sdk/translation/azure-ai-translation-document/tests/test_translation_async.py b/sdk/translation/azure-ai-translation-document/tests/test_translation_async.py index e1688567aac6..4dbbcb41536a 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_translation_async.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_translation_async.py @@ -11,7 +11,6 @@ from preparer import DocumentTranslationPreparer, \ DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer from azure.core.exceptions import HttpResponseError -from azure.storage.blob import ContainerClient from azure.ai.translation.document import DocumentTranslationInput, TranslationTarget from azure.ai.translation.document.aio import DocumentTranslationClient DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) @@ -44,7 +43,7 @@ async def test_active_directory_auth_async(self): ] # submit job and test - await self._submit_and_validate_translation_job_async(client, translation_inputs, 1) + await self._begin_and_validate_translation_async(client, translation_inputs, 1, "fr") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -68,7 +67,7 @@ async def test_single_source_single_target(self, client): ] # submit job and test - await self._submit_and_validate_translation_job_async(client, translation_inputs, 1) + await self._begin_and_validate_translation_async(client, translation_inputs, 1, "es") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -97,7 +96,7 @@ async def test_single_source_two_targets(self, client): ] # submit job and test - await self._submit_and_validate_translation_job_async(client, translation_inputs) + await self._begin_and_validate_translation_async(client, translation_inputs, 2) @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -132,7 +131,7 @@ async def test_multiple_sources_single_target(self, client): ] # submit job and test - await self._submit_and_validate_translation_job_async(client, translation_inputs, 2) + await self._begin_and_validate_translation_async(client, translation_inputs, 2) @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -158,7 +157,7 @@ async def test_single_source_single_target_with_prefix(self, client): ] # submit job and test - await self._submit_and_validate_translation_job_async(client, translation_inputs, 1) + await self._begin_and_validate_translation_async(client, translation_inputs, 1, "es") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -184,7 +183,7 @@ async def test_single_source_single_target_with_suffix(self, client): ] # submit job and test - await self._submit_and_validate_translation_job_async(client, translation_inputs, 1) + await self._begin_and_validate_translation_async(client, translation_inputs, 1, "es") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -206,8 +205,8 @@ async def test_bad_input_source(self, client): ] with pytest.raises(HttpResponseError) as e: - job = await client.create_translation_job(translation_inputs) - job = await client.wait_until_done(job.id) + poller = await client.begin_translation(translation_inputs) + result = await poller.result() assert e.value.error.code == "InvalidDocumentAccessLevel" @pytest.mark.skip("https://github.com/Azure/azure-sdk-for-python/issues/17914") @@ -232,8 +231,8 @@ async def test_bad_input_target(self, client): ] with pytest.raises(HttpResponseError) as e: - job = await client.create_translation_job(translation_inputs) - job = await client.wait_until_done(job.id) + poller = await client.begin_translation(translation_inputs) + result = await poller.result() assert e.value.error.code == "InvalidDocumentAccessLevel" @DocumentTranslationPreparer() @@ -260,9 +259,11 @@ async def test_use_supported_and_unsupported_files(self, client): ) ] - job = await client.create_translation_job(translation_inputs) - job = await client.wait_until_done(job.id) - self._validate_translation_job(job, status="Succeeded", total=1, succeeded=1) + poller = await client.begin_translation(translation_inputs) + result = await poller.result() + self._validate_translation_metadata(poller, status="Succeeded", total=1, succeeded=1) + async for document in result: + self._validate_doc_status(document, "es") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -284,14 +285,13 @@ async def test_existing_documents_in_target(self, client): ) ] - job = await client.create_translation_job(translation_inputs) - job = await client.wait_until_done(job.id) - self._validate_translation_job(job, status="Failed", total=1, failed=1) + poller = await client.begin_translation(translation_inputs) + result = await poller.result() + self._validate_translation_metadata(poller, status="Failed", total=1, failed=1) - doc_status = client.list_all_document_statuses(job.id) - doc = await doc_status.__anext__() - assert doc.status == "Failed" - assert doc.error.code == "TargetFileAlreadyExists" + async for doc in result: + assert doc.status == "Failed" + assert doc.error.code == "TargetFileAlreadyExists" @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() @@ -313,12 +313,11 @@ async def test_existing_documents_in_target_one_valid(self, client): ) ] - job = await client.create_translation_job(translation_inputs) - job = await client.wait_until_done(job.id) - self._validate_translation_job(job, status="Succeeded", total=2, failed=1) + poller = await client.begin_translation(translation_inputs) + result = await poller.result() + self._validate_translation_metadata(poller, status="Succeeded", total=2, failed=1) - doc_statuses = client.list_all_document_statuses(job.id) - async for doc in doc_statuses: + async for doc in result: if doc.status == "Failed": assert doc.error.code == "TargetFileAlreadyExists" @@ -342,11 +341,10 @@ async def test_empty_document(self, client): ) ] - job = await client.create_translation_job(translation_inputs) - job = await client.wait_until_done(job.id) - self._validate_translation_job(job, status="Failed", total=1, failed=1) + poller = await client.begin_translation(translation_inputs) + result = await poller.result() + self._validate_translation_metadata(poller, status="Failed", total=1, failed=1) - doc_status = client.list_all_document_statuses(job.id) - doc = await doc_status.__anext__() - assert doc.status == "Failed" - assert doc.error.code == "WrongDocumentEncoding" + async for doc in result: + assert doc.status == "Failed" + assert doc.error.code == "WrongDocumentEncoding" diff --git a/sdk/translation/azure-ai-translation-document/tests/testcase.py b/sdk/translation/azure-ai-translation-document/tests/testcase.py index eddc55867f8a..68ef32491fff 100644 --- a/sdk/translation/azure-ai-translation-document/tests/testcase.py +++ b/sdk/translation/azure-ai-translation-document/tests/testcase.py @@ -39,7 +39,7 @@ class OperationLocationReplacer(RecordingProcessor): """Replace the location/operation location uri in a request/response body.""" def __init__(self): - self._replacement = "https://redacted.cognitiveservices.azure.com/translator" + self._replacement = "https://redacted.cognitiveservices.azure.com/translator/" def process_response(self, response): try: @@ -147,15 +147,14 @@ def wait(self, duration=30): if self.is_live: time.sleep(duration) - # model helpers - def _validate_doc_status(self, doc_details, target_language, **kwargs): + def _validate_doc_status(self, doc_details, target_language=None, **kwargs): status = kwargs.pop("statuses", ["Succeeded"]) ids = kwargs.pop("ids", None) # specific assertions self.assertIn(doc_details.status, status) - self.assertEqual(doc_details.has_completed, True) - self.assertIsNotNone(doc_details.translate_to, target_language) + if target_language: + self.assertEqual(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) @@ -166,7 +165,7 @@ def _validate_doc_status(self, doc_details, target_language, **kwargs): self.assertIsNotNone(doc_details.created_on) self.assertIsNotNone(doc_details.last_updated_on) - def _validate_translation_job(self, job_details, **kwargs): + def _validate_translation_metadata(self, poller, **kwargs): status = kwargs.pop("status", None) total = kwargs.pop('total', None) failed = kwargs.pop('failed', None) @@ -175,19 +174,51 @@ def _validate_translation_job(self, job_details, **kwargs): notstarted = kwargs.pop('notstarted', None) cancelled = kwargs.pop('cancelled', None) - has_completed = False - if status: - has_completed = True if status not in ["NotStarted", "Running", "Cancelling"] else False + # status + p = poller.status() + self.assertEqual(poller.status(), status) if status else self.assertIsNotNone(poller.status()) + # docs count + + if poller.done(): + self.assertEqual(poller.details.documents_total_count, total) if total else self.assertIsNotNone(poller.details.documents_total_count) + self.assertEqual(poller.details.documents_failed_count, failed) if failed else self.assertIsNotNone(poller.details.documents_failed_count) + self.assertEqual(poller.details.documents_succeeded_count, succeeded) if succeeded else self.assertIsNotNone(poller.details.documents_succeeded_count) + self.assertEqual(poller.details.documents_in_progress_count, inprogress) if inprogress else self.assertIsNotNone(poller.details.documents_in_progress_count) + self.assertEqual(poller.details.documents_not_yet_started_count, notstarted) if notstarted else self.assertIsNotNone(poller.details.documents_not_yet_started_count) + self.assertEqual(poller.details.documents_cancelled_count, cancelled) if cancelled else self.assertIsNotNone(poller.details.documents_cancelled_count) + # generic assertions + self.assertIsNotNone(poller.details.id) + self.assertIsNotNone(poller.details.created_on) + self.assertIsNotNone(poller.details.last_updated_on) + self.assertIsNotNone(poller.details.total_characters_charged) + + def _validate_translations(self, job_details, **kwargs): + status = kwargs.pop("status", None) + total = kwargs.pop('total', None) + failed = kwargs.pop('failed', None) + succeeded = kwargs.pop('succeeded', None) + inprogress = kwargs.pop('inprogress', None) + notstarted = kwargs.pop('notstarted', None) + cancelled = kwargs.pop('cancelled', None) + # status self.assertEqual(job_details.status, status) if status else self.assertIsNotNone(job_details.status) # docs count - self.assertEqual(job_details.documents_total_count, total) if total else self.assertIsNotNone(job_details.documents_total_count) - self.assertEqual(job_details.documents_failed_count, failed) if failed else self.assertIsNotNone(job_details.documents_failed_count) - self.assertEqual(job_details.documents_succeeded_count, succeeded) if succeeded else self.assertIsNotNone(job_details.documents_succeeded_count) - self.assertEqual(job_details.documents_in_progress_count, inprogress) if inprogress else self.assertIsNotNone(job_details.documents_in_progress_count) - self.assertEqual(job_details.documents_not_yet_started_count, notstarted) if notstarted else self.assertIsNotNone(job_details.documents_not_yet_started_count) - self.assertEqual(job_details.documents_cancelled_count, cancelled) if cancelled else self.assertIsNotNone(job_details.documents_cancelled_count) - self.assertEqual(job_details.has_completed, has_completed) if status else self.assertIsNotNone(job_details.has_completed) + + self.assertEqual(job_details.documents_total_count, total) if total else self.assertIsNotNone( + job_details.documents_total_count) + self.assertEqual(job_details.documents_failed_count, failed) if failed else self.assertIsNotNone( + job_details.documents_failed_count) + self.assertEqual(job_details.documents_succeeded_count, + succeeded) if succeeded else self.assertIsNotNone(job_details.documents_succeeded_count) + self.assertEqual(job_details.documents_in_progress_count, + inprogress) if inprogress else self.assertIsNotNone( + job_details.documents_in_progress_count) + self.assertEqual(job_details.documents_not_yet_started_count, + notstarted) if notstarted else self.assertIsNotNone( + job_details.documents_not_yet_started_count) + self.assertEqual(job_details.documents_cancelled_count, + cancelled) if cancelled else self.assertIsNotNone(job_details.documents_cancelled_count) # generic assertions self.assertIsNotNone(job_details.id) self.assertIsNotNone(job_details.created_on) @@ -201,19 +232,20 @@ def _validate_format(self, format): # client helpers - def _submit_and_validate_translation_job(self, client, translation_inputs, total_docs_count=None): + def _begin_and_validate_translation(self, client, translation_inputs, total_docs_count, language=None): # submit job - job_details = client.create_translation_job(translation_inputs) - self.assertIsNotNone(job_details.id) + poller = client.begin_translation(translation_inputs) + self.assertIsNotNone(poller.id) # wait for result - job_details = client.wait_until_done(job_details.id) + result = poller.result() # validate - self._validate_translation_job(job_details=job_details, status='Succeeded', total=total_docs_count, succeeded=total_docs_count) - - return job_details.id + self._validate_translation_metadata(poller=poller, status='Succeeded', total=total_docs_count, succeeded=total_docs_count) + for doc in result: + self._validate_doc_status(doc, language) + return poller.id - def _create_and_submit_sample_translation_jobs(self, client, jobs_count, **kwargs): + def _begin_multiple_translations(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) @@ -238,16 +270,17 @@ def _create_and_submit_sample_translation_jobs(self, client, jobs_count, **kwarg ] # submit multiple jobs - job_details = client.create_translation_job(translation_inputs) - self.assertIsNotNone(job_details.id) + poller = client.begin_translation(translation_inputs) + self.assertIsNotNone(poller.id) if wait_for_job: - client.wait_until_done(job_details.id) - result_job_ids.append(job_details.id) + result = poller.result() + else: + poller.wait() + result_job_ids.append(poller.id) return result_job_ids - - def _create_translation_job_with_dummy_docs(self, client, docs_count, **kwargs): + def _begin_and_validate_translation_with_multiple_docs(self, client, docs_count, **kwargs): # get input parms wait_for_job = kwargs.pop('wait', False) language_code = kwargs.pop('language_code', "es") @@ -271,12 +304,14 @@ def _create_translation_job_with_dummy_docs(self, client, docs_count, **kwargs): ] # submit job - job_details = client.create_translation_job(translation_inputs) - self.assertIsNotNone(job_details.id) + poller = client.begin_translation(translation_inputs) + self.assertIsNotNone(poller.id) # wait for result if wait_for_job: - client.wait_until_done(job_details.id) + result = poller.result() + for doc in result: + self._validate_doc_status(doc, "es") # validate - self._validate_translation_job(job_details=job_details) + self._validate_translation_metadata(poller=poller) - return job_details.id \ No newline at end of file + return poller