diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs index b1d973721acb0..89cf65eecfad3 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs @@ -42,8 +42,10 @@ public void FormRecognizerClientCannotAuthenticateWithFakeApiKey() } } + #region StartRecognizeContent + [Test] - public async Task FormRecognizerClientCanAuthenticateWithTokenCredential() + public async Task StartRecognizeContentCanAuthenticateWithTokenCredential() { var client = CreateFormRecognizerClient(useTokenCredential: true); RecognizeContentOperation operation; @@ -63,8 +65,6 @@ public async Task FormRecognizerClientCanAuthenticateWithTokenCredential() Assert.AreEqual("Contoso", formPage.Lines[0].Text); } - #region StartRecognizeContent - /// /// Verifies that the is able to connect to the Form /// Recognizer cognitive service and perform operations. @@ -521,6 +521,32 @@ public void StartRecognizeContentWithNoSupporttedLanguage() #region StartRecognizeReceipts + [Test] + public async Task StartRecognizeReceiptsCanAuthenticateWithTokenCredential() + { + var client = CreateFormRecognizerClient(useTokenCredential: true); + RecognizeReceiptsOperation operation; + + using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.ReceiptJpg); + using (Recording.DisableRequestBodyRecording()) + { + operation = await client.StartRecognizeReceiptsAsync(stream); + } + + // Sanity check to make sure we got an actual response back from the service. + + RecognizedFormCollection formPage = await operation.WaitForCompletionAsync(PollingInterval); + + RecognizedForm form = formPage.Single(); + Assert.NotNull(form); + + ValidatePrebuiltForm( + form, + includeFieldElements: true, + expectedFirstPageNumber: 1, + expectedLastPageNumber: 1); + } + /// /// Verifies that the is able to connect to the Form /// Recognizer cognitive service and perform analysis of receipts. @@ -969,6 +995,32 @@ public void StartRecognizeReceiptsWithWrongLocale() #region StartRecognizeBusinessCards + [Test] + public async Task StartRecognizeBusinessCardsCanAuthenticateWithTokenCredential() + { + var client = CreateFormRecognizerClient(useTokenCredential: true); + RecognizeBusinessCardsOperation operation; + + using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.BusinessCardJpg); + using (Recording.DisableRequestBodyRecording()) + { + operation = await client.StartRecognizeBusinessCardsAsync(stream); + } + + // Sanity check to make sure we got an actual response back from the service. + + RecognizedFormCollection formPage = await operation.WaitForCompletionAsync(PollingInterval); + + RecognizedForm form = formPage.Single(); + Assert.NotNull(form); + + ValidatePrebuiltForm( + form, + includeFieldElements: true, + expectedFirstPageNumber: 1, + expectedLastPageNumber: 1); + } + [Test] [TestCase(true)] [TestCase(false) ] @@ -1333,6 +1385,32 @@ public async Task StartRecognizeBusinessCardsCanParseMultipageForm(bool useStrea #region StartRecognizeInvoices + [Test] + public async Task StartRecognizeInvoicesCanAuthenticateWithTokenCredential() + { + var client = CreateFormRecognizerClient(useTokenCredential: true); + RecognizeInvoicesOperation operation; + + using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.InvoicePdf); + using (Recording.DisableRequestBodyRecording()) + { + operation = await client.StartRecognizeInvoicesAsync(stream); + } + + // Sanity check to make sure we got an actual response back from the service. + + RecognizedFormCollection formPage = await operation.WaitForCompletionAsync(PollingInterval); + + RecognizedForm form = formPage.Single(); + Assert.NotNull(form); + + ValidatePrebuiltForm( + form, + includeFieldElements: true, + expectedFirstPageNumber: 1, + expectedLastPageNumber: 1); + } + [Test] [TestCase(true)] [TestCase(false)] @@ -1671,6 +1749,49 @@ public void StartRecognizeInvoicesWithWrongLocale() #region StartRecognizeCustomForms + [Test] + [TestCase(true)] + [TestCase(false)] + public async Task StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(bool useTrainingLabels) + { + var client = CreateFormRecognizerClient(useTokenCredential: true); + await using var trainedModel = await CreateDisposableTrainedModelAsync(useTrainingLabels); + RecognizeCustomFormsOperation operation; + + using var stream = FormRecognizerTestEnvironment.CreateStream(TestFile.Form1); + using (Recording.DisableRequestBodyRecording()) + { + operation = await client.StartRecognizeCustomFormsAsync(trainedModel.ModelId, stream); + } + + // Sanity check to make sure we got an actual response back from the service. + + RecognizedFormCollection formPage = await operation.WaitForCompletionAsync(PollingInterval); + + RecognizedForm form = formPage.Single(); + Assert.NotNull(form); + + if (useTrainingLabels) + { + ValidateModelWithLabelsForm( + form, + trainedModel.ModelId, + includeFieldElements: false, + expectedFirstPageNumber: 1, + expectedLastPageNumber: 1, + isComposedModel: false); + } + else + { + ValidateModelWithNoLabelsForm( + form, + trainedModel.ModelId, + includeFieldElements: false, + expectedFirstPageNumber: 1, + expectedLastPageNumber: 1); + } + } + /// /// Verifies that the is able to connect to the Form /// Recognizer cognitive service and perform analysis based on a custom labeled model. diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormTrainingClient/FormTrainingClientLiveTests.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormTrainingClient/FormTrainingClientLiveTests.cs index 54e6dab6f3d3a..417150f156e22 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormTrainingClient/FormTrainingClientLiveTests.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormTrainingClient/FormTrainingClientLiveTests.cs @@ -38,7 +38,7 @@ public void FormTrainingClientCannotAuthenticateWithFakeApiKey() } [Test] - public async Task FormTrainingClientCanAuthenticateWithTokenCredential() + public async Task StartTrainingCanAuthenticateWithTokenCredential() { var client = CreateFormTrainingClient(useTokenCredential: true); var trainingFilesUri = new Uri(TestEnvironment.BlobContainerSasUrl); @@ -133,9 +133,11 @@ public async Task CheckFormTypeinSubmodelAndRecognizedForm(bool labeled) } [Test] - public async Task StartCreateComposedModel() + [TestCase(false)] + [TestCase(true)] + public async Task StartCreateComposedModel(bool useTokenCredential) { - var client = CreateFormTrainingClient(); + var client = CreateFormTrainingClient(useTokenCredential); await using var trainedModelA = await CreateDisposableTrainedModelAsync(useTrainingLabels: true); await using var trainedModelB = await CreateDisposableTrainedModelAsync(useTrainingLabels: true); @@ -289,11 +291,13 @@ public async Task StartTrainingError() } [Test] - [TestCase(true)] - [TestCase(false)] - public async Task TrainingOps(bool labeled) + [TestCase(true, true)] + [TestCase(false, true)] + [TestCase(true, false)] + [TestCase(false, false)] + public async Task TrainingOps(bool labeled, bool useTokenCredential) { - var client = CreateFormTrainingClient(); + var client = CreateFormTrainingClient(useTokenCredential); var trainingFilesUri = new Uri(TestEnvironment.BlobContainerSasUrl); TrainingOperation operation = await client.StartTrainingAsync(trainingFilesUri, labeled); @@ -371,10 +375,12 @@ public void DeleteModelFailsWhenModelDoesNotExist() } [Test] - public async Task CopyModel() + [TestCase(true)] + [TestCase(false)] + public async Task CopyModel(bool useTokenCredential) { - var sourceClient = CreateFormTrainingClient(); - var targetClient = CreateFormTrainingClient(); + var sourceClient = CreateFormTrainingClient(useTokenCredential); + var targetClient = CreateFormTrainingClient(useTokenCredential); var resourceId = TestEnvironment.TargetResourceId; var region = TestEnvironment.TargetResourceRegion; @@ -424,10 +430,12 @@ public async Task CopyModelWithLabelsAndModelName() } [Test] - public async Task CopyComposedModel() + [TestCase(true)] + [TestCase(false)] + public async Task CopyComposedModel(bool useTokenCredential) { - var sourceClient = CreateFormTrainingClient(); - var targetClient = CreateFormTrainingClient(); + var sourceClient = CreateFormTrainingClient(useTokenCredential); + var targetClient = CreateFormTrainingClient(useTokenCredential); var resourceId = TestEnvironment.TargetResourceId; var region = TestEnvironment.TargetResourceRegion; diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeBusinessCardsCanAuthenticateWithTokenCredential.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeBusinessCardsCanAuthenticateWithTokenCredential.json new file mode 100644 index 0000000000000..a57a65140c21d --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeBusinessCardsCanAuthenticateWithTokenCredential.json @@ -0,0 +1,370 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "915108", + "Content-Type": "image/jpeg", + "traceparent": "00-1e8312403fe08c49afc07a3b5612b8f9-3a1f0f3ac8d1af44-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "802b0dec94a6d8f27e0fd8008d8e7b6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c8163abc-340f-4897-bb49-1b695ca234b0", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:18:26 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyzeResults/c8163abc-340f-4897-bb49-1b695ca234b0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "532" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyzeResults/c8163abc-340f-4897-bb49-1b695ca234b0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "51a93d205cac43068a0f83944386e6e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f1ebdf9-31a4-44ff-9d5a-e88f3ed00c4d", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:18:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:18:27Z", + "lastUpdatedDateTime": "2020-11-25T03:18:27Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyzeResults/c8163abc-340f-4897-bb49-1b695ca234b0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6c6854a9fabc74af35edbb1394ffd9b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3421941e-47cb-4af1-8f87-cd8087b4aca3", + "Content-Length": "2683", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:18:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T03:18:27Z", + "lastUpdatedDateTime": "2020-11-25T03:18:29Z", + "analyzeResult": { + "version": "2.1.0", + "readResults": [ + { + "page": 1, + "angle": -16.6836, + "width": 4032, + "height": 3024, + "unit": "pixel" + } + ], + "documentResults": [ + { + "docType": "prebuilt:businesscard", + "pageRange": [ + 1, + 1 + ], + "fields": { + "ContactNames": { + "type": "array", + "valueArray": [ + { + "type": "object", + "valueObject": { + "FirstName": { + "type": "string", + "valueString": "Avery", + "text": "Avery", + "boundingBox": [ + 683, + 1098, + 1158, + 984, + 1187, + 1103, + 712, + 1212 + ], + "page": 1 + }, + "LastName": { + "type": "string", + "valueString": "Smith", + "text": "Smith", + "boundingBox": [ + 1179, + 979, + 1610, + 871, + 1637, + 990, + 1209, + 1097 + ], + "page": 1 + } + }, + "text": "Dr. Avery Smith", + "boundingBox": [ + 413.8, + 1151.8, + 1610, + 871, + 1639.5, + 996.8, + 443.4, + 1277.6 + ], + "page": 1, + "confidence": 0.979 + } + ] + }, + "JobTitles": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "Senior Researcher", + "text": "Senior Researcher", + "boundingBox": [ + 446.8, + 1312.2, + 1318, + 1103, + 1336.7, + 1180.9, + 465.5, + 1390.1 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "Departments": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "Cloud \u0026 Al Department", + "text": "Cloud \u0026 Al Department", + "boundingBox": [ + 473.1, + 1407.2, + 1594, + 1132, + 1615.4, + 1219.3, + 494.5, + 1494.5 + ], + "page": 1, + "confidence": 0.989 + } + ] + }, + "Emails": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "avery.smith@contoso.com", + "text": "avery.smith@contoso.com", + "boundingBox": [ + 2103, + 935, + 2926, + 701, + 2938, + 764, + 2119, + 994 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "Websites": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "https://www.contoso.com/", + "text": "https://www.contoso.com/", + "boundingBox": [ + 2116, + 1004, + 2981, + 757, + 3006, + 824, + 2136, + 1075 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "MobilePhones": { + "type": "array", + "valueArray": [ + { + "type": "phoneNumber", + "text": "\u002B44 (0) 7911 123456", + "boundingBox": [ + 2431.9, + 1037.2, + 3081.2, + 843.3, + 3102.7, + 915.2, + 2453.3, + 1109.1 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "OtherPhones": { + "type": "array", + "valueArray": [ + { + "type": "phoneNumber", + "text": "\u002B44 (0) 20 9876 5432", + "boundingBox": [ + 2469.1, + 1118.1, + 3136.2, + 912.4, + 3158.8, + 985.8, + 2491.8, + 1191.5 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "Faxes": { + "type": "array", + "valueArray": [ + { + "type": "phoneNumber", + "text": "\u002B44 (0) 20 6789 2345", + "boundingBox": [ + 2521.3, + 1196.2, + 3198, + 979, + 3222.3, + 1054.7, + 2545.6, + 1271.9 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "CompanyNames": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "Contoso", + "text": "Contoso", + "boundingBox": [ + 1157, + 1923, + 2299, + 1565, + 2361, + 1731, + 1213, + 2098 + ], + "page": 1, + "confidence": 0.222 + } + ] + }, + "Addresses": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "2 Kingdom Street Paddington, London, W2 6BD", + "text": "2 Kingdom Street Paddington, London, W2 6BD", + "boundingBox": [ + 1224.6, + 2139.5, + 2536.4, + 1685.2, + 2613.1, + 1906.7, + 1301.3, + 2361 + ], + "page": 1, + "confidence": 0.979 + } + ] + } + } + } + ] + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "967458419" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeBusinessCardsCanAuthenticateWithTokenCredentialAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeBusinessCardsCanAuthenticateWithTokenCredentialAsync.json new file mode 100644 index 0000000000000..4a32fc267677e --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeBusinessCardsCanAuthenticateWithTokenCredentialAsync.json @@ -0,0 +1,400 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "915108", + "Content-Type": "image/jpeg", + "traceparent": "00-0162d16f30abad45b1894711ebb35cae-4fc53fd496f12543-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e452a4a348f36ae089715e9842e99f45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0aa77eea-b57d-410f-9042-022a28bb38f1", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:19:18 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyzeResults/0aa77eea-b57d-410f-9042-022a28bb38f1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "512" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyzeResults/0aa77eea-b57d-410f-9042-022a28bb38f1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b4f52e3a0448e18bb5fd2d54c7f760f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cad78768-a4e1-4b76-a117-ae7dc44f9c1f", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:19:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:19:19Z", + "lastUpdatedDateTime": "2020-11-25T03:19:19Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyzeResults/0aa77eea-b57d-410f-9042-022a28bb38f1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "26564b116ff901e3cbd3b3545d21d2a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "79f31717-8443-4b54-9854-2d89d755f084", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:19:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:19:19Z", + "lastUpdatedDateTime": "2020-11-25T03:19:19Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/businessCard/analyzeResults/0aa77eea-b57d-410f-9042-022a28bb38f1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d48291532ce99ff018712ef61a8ca392", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a821039-a9ff-4d37-b28a-cd2e159d7ea0", + "Content-Length": "2683", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:19:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T03:19:19Z", + "lastUpdatedDateTime": "2020-11-25T03:19:22Z", + "analyzeResult": { + "version": "2.1.0", + "readResults": [ + { + "page": 1, + "angle": -16.6836, + "width": 4032, + "height": 3024, + "unit": "pixel" + } + ], + "documentResults": [ + { + "docType": "prebuilt:businesscard", + "pageRange": [ + 1, + 1 + ], + "fields": { + "ContactNames": { + "type": "array", + "valueArray": [ + { + "type": "object", + "valueObject": { + "FirstName": { + "type": "string", + "valueString": "Avery", + "text": "Avery", + "boundingBox": [ + 683, + 1098, + 1158, + 984, + 1187, + 1103, + 712, + 1212 + ], + "page": 1 + }, + "LastName": { + "type": "string", + "valueString": "Smith", + "text": "Smith", + "boundingBox": [ + 1179, + 979, + 1610, + 871, + 1637, + 990, + 1209, + 1097 + ], + "page": 1 + } + }, + "text": "Dr. Avery Smith", + "boundingBox": [ + 413.8, + 1151.8, + 1610, + 871, + 1639.5, + 996.8, + 443.4, + 1277.6 + ], + "page": 1, + "confidence": 0.979 + } + ] + }, + "JobTitles": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "Senior Researcher", + "text": "Senior Researcher", + "boundingBox": [ + 446.8, + 1312.2, + 1318, + 1103, + 1336.7, + 1180.9, + 465.5, + 1390.1 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "Departments": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "Cloud \u0026 Al Department", + "text": "Cloud \u0026 Al Department", + "boundingBox": [ + 473.1, + 1407.2, + 1594, + 1132, + 1615.4, + 1219.3, + 494.5, + 1494.5 + ], + "page": 1, + "confidence": 0.989 + } + ] + }, + "Emails": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "avery.smith@contoso.com", + "text": "avery.smith@contoso.com", + "boundingBox": [ + 2103, + 935, + 2926, + 701, + 2938, + 764, + 2119, + 994 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "Websites": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "https://www.contoso.com/", + "text": "https://www.contoso.com/", + "boundingBox": [ + 2116, + 1004, + 2981, + 757, + 3006, + 824, + 2136, + 1075 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "MobilePhones": { + "type": "array", + "valueArray": [ + { + "type": "phoneNumber", + "text": "\u002B44 (0) 7911 123456", + "boundingBox": [ + 2431.9, + 1037.2, + 3081.2, + 843.3, + 3102.7, + 915.2, + 2453.3, + 1109.1 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "OtherPhones": { + "type": "array", + "valueArray": [ + { + "type": "phoneNumber", + "text": "\u002B44 (0) 20 9876 5432", + "boundingBox": [ + 2469.1, + 1118.1, + 3136.2, + 912.4, + 3158.8, + 985.8, + 2491.8, + 1191.5 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "Faxes": { + "type": "array", + "valueArray": [ + { + "type": "phoneNumber", + "text": "\u002B44 (0) 20 6789 2345", + "boundingBox": [ + 2521.3, + 1196.2, + 3198, + 979, + 3222.3, + 1054.7, + 2545.6, + 1271.9 + ], + "page": 1, + "confidence": 0.99 + } + ] + }, + "CompanyNames": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "Contoso", + "text": "Contoso", + "boundingBox": [ + 1157, + 1923, + 2299, + 1565, + 2361, + 1731, + 1213, + 2098 + ], + "page": 1, + "confidence": 0.222 + } + ] + }, + "Addresses": { + "type": "array", + "valueArray": [ + { + "type": "string", + "valueString": "2 Kingdom Street Paddington, London, W2 6BD", + "text": "2 Kingdom Street Paddington, London, W2 6BD", + "boundingBox": [ + 1224.6, + 2139.5, + 2536.4, + 1685.2, + 2613.1, + 1906.7, + 1301.3, + 2361 + ], + "page": 1, + "confidence": 0.979 + } + ] + } + } + } + ] + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "461155780" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCanAuthenticateWithTokenCredentialAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanAuthenticateWithTokenCredential.json similarity index 93% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCanAuthenticateWithTokenCredentialAsync.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanAuthenticateWithTokenCredential.json index add8dfa1f8eac..9ad89dc350753 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCanAuthenticateWithTokenCredentialAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanAuthenticateWithTokenCredential.json @@ -8,145 +8,145 @@ "Authorization": "Sanitized", "Content-Length": "279674", "Content-Type": "image/jpeg", - "traceparent": "00-b8bf00cd2825454488e68f3765fe82e6-3b8fe39a718d4140-00", + "traceparent": "00-2d2835e472246a4bacc170c2a3793236-cde7ddd76a7fb544-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8cc5f30bb3bf1b87232aac7059f41f27", + "x-ms-client-request-id": "d6f97c2a42da2f26730e5ea5f9f13fea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cf96367e-632a-4fff-83e8-835cc3b0beba", + "apim-request-id": "4837d360-6643-4a24-bc0f-2bd5952f2683", "Content-Length": "0", - "Date": "Fri, 20 Nov 2020 18:38:21 GMT", - "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cf96367e-632a-4fff-83e8-835cc3b0beba", + "Date": "Wed, 25 Nov 2020 03:23:18 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/4837d360-6643-4a24-bc0f-2bd5952f2683", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cf96367e-632a-4fff-83e8-835cc3b0beba", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/4837d360-6643-4a24-bc0f-2bd5952f2683", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ad31e46bbae568ea1e5365a830a24e45", + "x-ms-client-request-id": "685b8e4abd58af023c77dca778f38353", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec188820-8901-42d1-988c-80dfa988c07e", + "apim-request-id": "4cdbc555-4625-4fd5-bf03-57d047cd5614", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:21 GMT", + "Date": "Wed, 25 Nov 2020 03:23:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-11-20T18:38:21Z", - "lastUpdatedDateTime": "2020-11-20T18:38:21Z" + "createdDateTime": "2020-11-25T03:23:19Z", + "lastUpdatedDateTime": "2020-11-25T03:23:19Z" } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cf96367e-632a-4fff-83e8-835cc3b0beba", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/4837d360-6643-4a24-bc0f-2bd5952f2683", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "81a547ea697edd57f76b3a2993a05969", + "x-ms-client-request-id": "d22f602baa7146ee362433f26521ca4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dba255c3-d283-4fdb-ac20-6e6e19a47ca0", + "apim-request-id": "4f1470c7-7843-4c96-b465-7d1b7b16c659", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:23 GMT", + "Date": "Wed, 25 Nov 2020 03:23:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "189" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-11-20T18:38:21Z", - "lastUpdatedDateTime": "2020-11-20T18:38:21Z" + "createdDateTime": "2020-11-25T03:23:19Z", + "lastUpdatedDateTime": "2020-11-25T03:23:19Z" } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cf96367e-632a-4fff-83e8-835cc3b0beba", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/4837d360-6643-4a24-bc0f-2bd5952f2683", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "594709ab00d450eb095d6d6b4ddeea80", + "x-ms-client-request-id": "f3e38912bc396d777a499963667fb680", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32966460-5e65-4b33-9ed3-efb7cdb938d5", + "apim-request-id": "61be8c83-5618-4e22-b0e2-170f712c4206", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:24 GMT", + "Date": "Wed, 25 Nov 2020 03:23:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-11-20T18:38:21Z", - "lastUpdatedDateTime": "2020-11-20T18:38:21Z" + "createdDateTime": "2020-11-25T03:23:19Z", + "lastUpdatedDateTime": "2020-11-25T03:23:19Z" } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cf96367e-632a-4fff-83e8-835cc3b0beba", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/4837d360-6643-4a24-bc0f-2bd5952f2683", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "128666db9e4f02a88c53b67980c1d57d", + "x-ms-client-request-id": "997a0b8a6cc2a0799f143133890f491b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19ba26ad-cdd8-4dd2-bc86-b3e64737987a", + "apim-request-id": "dcc7abb8-2604-439b-9d0c-cb30940f8a72", "Content-Length": "6612", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:25 GMT", + "Date": "Wed, 25 Nov 2020 03:23:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-11-20T18:38:21Z", - "lastUpdatedDateTime": "2020-11-20T18:38:25Z", + "createdDateTime": "2020-11-25T03:23:19Z", + "lastUpdatedDateTime": "2020-11-25T03:23:23Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1152,6 +1152,6 @@ ], "Variables": { "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", - "RandomSeed": "417520620" + "RandomSeed": "598206716" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCanAuthenticateWithTokenCredential.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanAuthenticateWithTokenCredentialAsync.json similarity index 93% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCanAuthenticateWithTokenCredential.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanAuthenticateWithTokenCredentialAsync.json index bb57a849950fb..8b2fb41255130 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCanAuthenticateWithTokenCredential.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanAuthenticateWithTokenCredentialAsync.json @@ -8,145 +8,145 @@ "Authorization": "Sanitized", "Content-Length": "279674", "Content-Type": "image/jpeg", - "traceparent": "00-b5377da627b0934a9c3bd64ec96d3d40-10c665f3f46ce346-00", + "traceparent": "00-f13301a54be2434fb7c1f3deb664e329-79c73690a1cb6d49-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e681151b4269d94a51fe386016e02b95", + "x-ms-client-request-id": "21df3ddd8d01881c1d2f259b09c0f95d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d794e165-d1f6-4bd3-b175-48975ffaa932", + "apim-request-id": "601ec78a-1f12-43a4-999c-d1b1ff574b81", "Content-Length": "0", - "Date": "Fri, 20 Nov 2020 18:38:16 GMT", - "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/d794e165-d1f6-4bd3-b175-48975ffaa932", + "Date": "Wed, 25 Nov 2020 03:23:25 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/601ec78a-1f12-43a4-999c-d1b1ff574b81", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/d794e165-d1f6-4bd3-b175-48975ffaa932", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/601ec78a-1f12-43a4-999c-d1b1ff574b81", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7cc915545ca02bcba70f4409e737a1a9", + "x-ms-client-request-id": "fba75dbd4940273747e55c80eb0f4c38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06d30489-6214-4352-87d6-b1a51faa5ec1", + "apim-request-id": "04fcf2db-2b3e-4c98-abb9-9915bb3c7181", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:16 GMT", + "Date": "Wed, 25 Nov 2020 03:23:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-11-20T18:38:16Z", - "lastUpdatedDateTime": "2020-11-20T18:38:16Z" + "createdDateTime": "2020-11-25T03:23:25Z", + "lastUpdatedDateTime": "2020-11-25T03:23:25Z" } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/d794e165-d1f6-4bd3-b175-48975ffaa932", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/601ec78a-1f12-43a4-999c-d1b1ff574b81", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6af5f379cb5b7026d346eeb61657176d", + "x-ms-client-request-id": "f0fe46e05df9be5dee508a0744119a77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b655639e-f166-4b6b-a333-d1dbe7550b24", + "apim-request-id": "baf83fa3-8696-40b7-b09b-64a32f960f17", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:17 GMT", + "Date": "Wed, 25 Nov 2020 03:23:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-11-20T18:38:16Z", - "lastUpdatedDateTime": "2020-11-20T18:38:16Z" + "createdDateTime": "2020-11-25T03:23:25Z", + "lastUpdatedDateTime": "2020-11-25T03:23:25Z" } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/d794e165-d1f6-4bd3-b175-48975ffaa932", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/601ec78a-1f12-43a4-999c-d1b1ff574b81", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0795ea6f9e6bbf054a553e5afd40f219", + "x-ms-client-request-id": "1577378a8ead948305b8da1b319b9c0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37e1a8a5-e4a8-4a30-982c-92c0072510ef", + "apim-request-id": "33092e4e-6db3-4119-af00-e637ead723db", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:18 GMT", + "Date": "Wed, 25 Nov 2020 03:23:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-11-20T18:38:16Z", - "lastUpdatedDateTime": "2020-11-20T18:38:16Z" + "createdDateTime": "2020-11-25T03:23:25Z", + "lastUpdatedDateTime": "2020-11-25T03:23:25Z" } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/d794e165-d1f6-4bd3-b175-48975ffaa932", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/601ec78a-1f12-43a4-999c-d1b1ff574b81", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "23e68e5dc0ea893aee59a8596d151450", + "x-ms-client-request-id": "c3bbece308c16064ffe80cefbf2fe336", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34acfc1d-dece-480c-b1ef-b7ccfcf91ead", + "apim-request-id": "1189b1b0-a1b3-494b-9ae7-dc67c5b4d6e8", "Content-Length": "6612", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:19 GMT", + "Date": "Wed, 25 Nov 2020 03:23:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-11-20T18:38:16Z", - "lastUpdatedDateTime": "2020-11-20T18:38:19Z", + "createdDateTime": "2020-11-25T03:23:25Z", + "lastUpdatedDateTime": "2020-11-25T03:23:29Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1152,6 +1152,6 @@ ], "Variables": { "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", - "RandomSeed": "869505473" + "RandomSeed": "165554296" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(False).json new file mode 100644 index 0000000000000..caec98f8529b4 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(False).json @@ -0,0 +1,1567 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "43", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-be18565443064b4aa5b2df9c3bd537fb-1eeb4d85dcaeaa4b-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "be2f77d25342324dc68d5d99ff12a444", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": false + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "10d3e96f-6f9c-477a-afff-201292a70a81", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:37:07 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "246" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cb4668deffba890381a6fd45f8cb6450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e350ed19-5421-4bcd-8dd3-032f5ce6703d", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "64fcb2034389f91bee23396d962bb2c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6733b336-19c6-4f8f-912d-80d3edaf72ce", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "86" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "49784a267e69d20973a63d9b550839fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e999b3d8-fbe1-41c4-8292-4840b4c3e9b4", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "182" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4d960c2940169bbb4c4ddd97c696f255", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "76eb6a11-766d-409b-8f38-5d4e8ea2c388", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ad1e3cf41b5284e7a82af0e3057fa3e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fa8e825b-d0d8-4c22-80a5-43e739dda8ea", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8a433de96494e6ab8fddfc1ba1720cdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "299a7525-8d45-47da-8a7f-18b48e3e9a44", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "19a7e8b38ce90ea82412a4eb4fd895cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "312f091c-c411-4316-b8f8-c4c5fe4474e6", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "88aef6a968528fc090381e751fcbe236", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b91280f-800a-4ad8-98a3-42374890f0e0", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1d2f131d8ad85cfd94346582c0bf97b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c829208-0948-4418-8d3d-5f28cca05736", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "77ce7a13-580f-44b3-8479-270d52240eb3", + "status": "ready", + "createdDateTime": "2020-12-01T18:37:08Z", + "lastUpdatedDateTime": "2020-12-01T18:37:20Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "479269", + "Content-Type": "image/jpeg", + "traceparent": "00-5da3d310551d2541bb5d92a9d5636f4d-d17045e391e9da43-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ab722f4783c44b8a271788b06d33ef59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1da5345c-4a4d-42c9-a71e-f8afed35337e", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:37:25 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3/analyzeresults/fddb4b9a-0b8d-49ac-a598-ba4a7a0efa4d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3/analyzeResults/fddb4b9a-0b8d-49ac-a598-ba4a7a0efa4d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3bce6e2f78a81ef4f951f31e033dcfd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7dc20560-c8e6-457c-bbd6-afac21703779", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:37:25Z", + "lastUpdatedDateTime": "2020-12-01T18:37:25Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3/analyzeResults/fddb4b9a-0b8d-49ac-a598-ba4a7a0efa4d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f02d67a13759997289e3f6c1024cef60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f89c3628-6520-4b3b-899a-116fdb6b3788", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:25Z", + "lastUpdatedDateTime": "2020-12-01T18:37:25Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3/analyzeResults/fddb4b9a-0b8d-49ac-a598-ba4a7a0efa4d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "51530c455bf1cf0e3a54b1738f6c48e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5774dc23-da31-4c60-8707-7d09f0fe8d18", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:25Z", + "lastUpdatedDateTime": "2020-12-01T18:37:25Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3/analyzeResults/fddb4b9a-0b8d-49ac-a598-ba4a7a0efa4d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "060fb748ff06f800fb34b1c582331cad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d0b8f94-1abe-4654-8eb2-e3337c8f9feb", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "22" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:25Z", + "lastUpdatedDateTime": "2020-12-01T18:37:25Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3/analyzeResults/fddb4b9a-0b8d-49ac-a598-ba4a7a0efa4d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f7d893617dea45df585db50485ff091d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77b54cc4-14a2-478c-bf33-7ed9c491fbe1", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "179" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:25Z", + "lastUpdatedDateTime": "2020-12-01T18:37:25Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3/analyzeResults/fddb4b9a-0b8d-49ac-a598-ba4a7a0efa4d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4a780c9be83c455a0b5a56bca9494d07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "39febfc2-8856-4aba-8c65-59333ac706af", + "Content-Length": "8091", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-12-01T18:37:25Z", + "lastUpdatedDateTime": "2020-12-01T18:37:30Z", + "analyzeResult": { + "version": null, + "readResults": [ + { + "page": 1, + "angle": 0, + "width": 1700, + "height": 2200, + "unit": "pixel", + "lines": [] + } + ], + "pageResults": [ + { + "page": 1, + "keyValuePairs": [ + { + "key": { + "text": "Company Phone:", + "boundingBox": [ + 163, + 352, + 359, + 352, + 359, + 378, + 163, + 378 + ], + "elements": null + }, + "value": { + "text": "555-348-6512", + "boundingBox": [ + 364, + 351, + 528, + 351, + 528, + 378, + 364, + 378 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Website:", + "boundingBox": [ + 167, + 394, + 269, + 394, + 269, + 417, + 167, + 417 + ], + "elements": null + }, + "value": { + "text": "www.herolimited.com", + "boundingBox": [ + 273, + 393, + 531, + 393, + 531, + 418, + 273, + 418 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Email:", + "boundingBox": [ + 165, + 435, + 237, + 435, + 237, + 460, + 165, + 460 + ], + "elements": null + }, + "value": { + "text": "accounts@herolimited.com", + "boundingBox": [ + 164, + 481, + 479, + 481, + 479, + 503, + 164, + 503 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Dated As:", + "boundingBox": [ + 1025, + 421, + 1160, + 421, + 1160, + 448, + 1025, + 448 + ], + "elements": null + }, + "value": { + "text": "12/20/2020", + "boundingBox": [ + 1165, + 420, + 1317, + 420, + 1317, + 448, + 1165, + 448 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Purchase Order #:", + "boundingBox": [ + 1023, + 461, + 1272, + 461, + 1272, + 488, + 1023, + 488 + ], + "elements": null + }, + "value": { + "text": "948284", + "boundingBox": [ + 1277, + 461, + 1376, + 461, + 1376, + 489, + 1277, + 489 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Vendor Name:", + "boundingBox": [ + 160, + 611, + 344, + 611, + 344, + 637, + 160, + 637 + ], + "elements": null + }, + "value": { + "text": "Hillary Swank", + "boundingBox": [ + 350, + 609, + 521, + 609, + 521, + 639, + 350, + 639 + ], + "elements": null + }, + "confidence": 0.7 + }, + { + "key": { + "text": "Company Name:", + "boundingBox": [ + 160, + 648, + 370, + 648, + 370, + 677, + 160, + 677 + ], + "elements": null + }, + "value": { + "text": "Higgly Wiggly Books", + "boundingBox": [ + 375, + 646, + 630, + 646, + 630, + 679, + 375, + 679 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Address:", + "boundingBox": [ + 161, + 685, + 269, + 685, + 269, + 711, + 161, + 711 + ], + "elements": null + }, + "value": { + "text": "938 NE Burner Road Boulder City, CO 92848", + "boundingBox": [ + 274, + 685, + 565, + 685, + 565, + 751, + 274, + 751 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Phone:", + "boundingBox": [ + 613, + 722, + 702, + 722, + 702, + 749, + 613, + 749 + ], + "elements": null + }, + "value": { + "text": "938-294-2949", + "boundingBox": [ + 708, + 722, + 885, + 722, + 885, + 749, + 708, + 749 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Name:", + "boundingBox": [ + 166, + 853, + 250, + 853, + 250, + 879, + 166, + 879 + ], + "elements": null + }, + "value": { + "text": "Bernie Sanders", + "boundingBox": [ + 255, + 852, + 446, + 852, + 446, + 880, + 255, + 880 + ], + "elements": null + }, + "confidence": 0.53 + }, + { + "key": { + "text": "Company Name:", + "boundingBox": [ + 164, + 890, + 374, + 890, + 374, + 919, + 164, + 919 + ], + "elements": null + }, + "value": { + "text": "Jupiter Book Supply", + "boundingBox": [ + 380, + 889, + 629, + 889, + 629, + 919, + 380, + 919 + ], + "elements": null + }, + "confidence": 0.53 + }, + { + "key": { + "text": "Address:", + "boundingBox": [ + 166, + 926, + 273, + 926, + 273, + 953, + 166, + 953 + ], + "elements": null + }, + "value": { + "text": "383 N Kinnick Road Seattle, WA 38383", + "boundingBox": [ + 279, + 926, + 521, + 926, + 521, + 991, + 279, + 991 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Phone:", + "boundingBox": [ + 760, + 964, + 849, + 964, + 849, + 990, + 760, + 990 + ], + "elements": null + }, + "value": { + "text": "932-299-0292", + "boundingBox": [ + 855, + 964, + 1033, + 964, + 1033, + 990, + 855, + 990 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "SUBTOTAL", + "boundingBox": [ + 1147, + 1575, + 1296, + 1575, + 1296, + 1600, + 1147, + 1600 + ], + "elements": null + }, + "value": { + "text": "$140.00", + "boundingBox": [ + 1426, + 1571, + 1529, + 1571, + 1529, + 1599, + 1426, + 1599 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "TAX", + "boundingBox": [ + 1238, + 1618, + 1296, + 1618, + 1296, + 1643, + 1238, + 1643 + ], + "elements": null + }, + "value": { + "text": "$4.00", + "boundingBox": [ + 1458, + 1615, + 1529, + 1615, + 1529, + 1643, + 1458, + 1643 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "TOTAL", + "boundingBox": [ + 1204, + 1674, + 1297, + 1674, + 1297, + 1699, + 1204, + 1699 + ], + "elements": null + }, + "value": { + "text": "$144.00", + "boundingBox": [ + 1427, + 1671, + 1529, + 1671, + 1529, + 1698, + 1427, + 1698 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Additional Notes:", + "boundingBox": [ + 173, + 1796, + 479, + 1796, + 479, + 1831, + 173, + 1831 + ], + "elements": null + }, + "value": { + "text": "Do not Jostle Box. Unpack carefully. Enjoy. Jupiter Book Supply will refund you 50% per book if returned within 60 days of reading and offer you 25% off you next total purchase.", + "boundingBox": [ + 169, + 1880, + 1511, + 1880, + 1511, + 1992, + 169, + 1992 + ], + "elements": null + }, + "confidence": 0.53 + } + ], + "tables": [ + { + "rows": 5, + "columns": 4, + "cells": [ + { + "text": "Details", + "rowIndex": 0, + "columnIndex": 0, + "boundingBox": [ + 447, + 1048, + 558, + 1048, + 558, + 1078, + 447, + 1078 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": true, + "isFooter": false + }, + { + "text": "Quantity", + "rowIndex": 0, + "columnIndex": 1, + "boundingBox": [ + 886, + 1048, + 1034, + 1048, + 1034, + 1084, + 886, + 1084 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": true, + "isFooter": false + }, + { + "text": "Unit Price", + "rowIndex": 0, + "columnIndex": 2, + "boundingBox": [ + 1111, + 1047, + 1269, + 1047, + 1269, + 1078, + 1111, + 1078 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": true, + "isFooter": false + }, + { + "text": "Total", + "rowIndex": 0, + "columnIndex": 3, + "boundingBox": [ + 1383, + 1047, + 1467, + 1047, + 1467, + 1077, + 1383, + 1077 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": true, + "isFooter": false + }, + { + "text": "Bindings", + "rowIndex": 1, + "columnIndex": 0, + "boundingBox": [ + 172, + 1094, + 280, + 1094, + 280, + 1122, + 172, + 1122 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20", + "rowIndex": 1, + "columnIndex": 1, + "boundingBox": [ + 861, + 1094, + 892, + 1094, + 892, + 1119, + 861, + 1119 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "1.00", + "rowIndex": 1, + "columnIndex": 2, + "boundingBox": [ + 1241, + 1095, + 1293, + 1095, + 1293, + 1118, + 1241, + 1118 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20.00", + "rowIndex": 1, + "columnIndex": 3, + "boundingBox": [ + 1458, + 1096, + 1531, + 1096, + 1531, + 1119, + 1458, + 1119 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "Covers Small", + "rowIndex": 2, + "columnIndex": 0, + "boundingBox": [ + 170, + 1136, + 333, + 1136, + 333, + 1161, + 170, + 1161 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20", + "rowIndex": 2, + "columnIndex": 1, + "boundingBox": [ + 861, + 1135, + 892, + 1135, + 892, + 1160, + 861, + 1160 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "1.00", + "rowIndex": 2, + "columnIndex": 2, + "boundingBox": [ + 1240, + 1135, + 1294, + 1135, + 1294, + 1160, + 1240, + 1160 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20.00", + "rowIndex": 2, + "columnIndex": 3, + "boundingBox": [ + 1458, + 1135, + 1529, + 1135, + 1529, + 1160, + 1458, + 1160 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "Feather Bookmark", + "rowIndex": 3, + "columnIndex": 0, + "boundingBox": [ + 173, + 1179, + 402, + 1179, + 402, + 1206, + 173, + 1206 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20", + "rowIndex": 3, + "columnIndex": 1, + "boundingBox": [ + 863, + 1179, + 892, + 1179, + 892, + 1204, + 863, + 1204 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "5.00", + "rowIndex": 3, + "columnIndex": 2, + "boundingBox": [ + 1239, + 1179, + 1294, + 1179, + 1294, + 1204, + 1239, + 1204 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "100.00", + "rowIndex": 3, + "columnIndex": 3, + "boundingBox": [ + 1443, + 1181, + 1529, + 1181, + 1529, + 1205, + 1443, + 1205 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "Copper Swirl Marker", + "rowIndex": 4, + "columnIndex": 0, + "boundingBox": [ + 170, + 1222, + 429, + 1222, + 429, + 1252, + 170, + 1252 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20", + "rowIndex": 4, + "columnIndex": 1, + "boundingBox": [ + 860, + 1223, + 892, + 1223, + 892, + 1247, + 860, + 1247 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "5.00", + "rowIndex": 4, + "columnIndex": 2, + "boundingBox": [ + 1239, + 1221, + 1293, + 1221, + 1293, + 1247, + 1239, + 1247 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "100.00", + "rowIndex": 4, + "columnIndex": 3, + "boundingBox": [ + 1444, + 1224, + 1530, + 1224, + 1530, + 1248, + 1444, + 1248 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + } + ] + } + ], + "clusterId": 0 + } + ], + "documentResults": [], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/77ce7a13-580f-44b3-8479-270d52240eb3", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-564179ac6aa7bc498c1e0675637f1be8-8932f6fcb9734e4c-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fc1104375193cafed7c9aea84afb72fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "15f78733-983d-4a7d-a140-4bfa5d7b7c08", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:37:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "172" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "408978630" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(False)Async.json new file mode 100644 index 0000000000000..44df728b1d6f7 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(False)Async.json @@ -0,0 +1,1739 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "43", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-186466eb96a2274f903ca6a328a84244-4b7013a4d09c1c49-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "aecad02fbeb9de3b0645267541fba90a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": false + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "e7ef007a-332a-4163-9ef8-de0ddc6f905b", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:37:34 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "247" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "35f4352ea34634332b078de736e518f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a32de126-544a-48c0-bdbb-1eb50964286c", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "99" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d9c8eae23264e4fe8c806079ec173625", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8d874a4-f148-4aa0-95c2-622de4a8aff4", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "112" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9d6cfaab6b848c349c9682b23054a820", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "95458a01-ff8f-4ed3-bd90-f0a55f8a097c", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "57932e2ccf32fba53610a9c543b94714", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "17be2d74-2648-410e-9644-0fe11fc698a4", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "222" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3b3b67d17b787772b53c3cceaf4cb337", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3bb3bd98-5747-462a-a1f2-658389370528", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "127" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "be4c3fd8de84dbf354716673c26e48e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "396339e3-d977-470f-890a-2aace01d3845", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c8e06e4e6c18b1a7bb1ca1f593d74bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c396c050-1e36-4b26-b745-30fcfd477256", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "04ec715d896df3907460e60714ffb447", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4bd47b19-1be6-4973-934f-ae2e894eced9", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "418059f3ea6c6c1e979a02683cfd487d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c10e66ee-8637-4861-91ac-36a9e12bfdbe", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "50167c254481c475deed54b885a09cbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9034916c-80cb-49cf-9514-0f84d8cf3b72", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "creating", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:33Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "39015a670a57727e52806dd28727b676", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "884f1b31-72fd-43f4-9bd6-499fce3b83b6", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "status": "ready", + "createdDateTime": "2020-12-01T18:37:33Z", + "lastUpdatedDateTime": "2020-12-01T18:37:46Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "479269", + "Content-Type": "image/jpeg", + "traceparent": "00-581c13253c16984ca365d540826d700d-7cde96dd5221ec4d-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "98e1691764e9afc5e4bb627f9566e6f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1ebc1e83-55b0-4228-90aa-ed1f4359d890", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:37:47 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeresults/943815da-7638-4c0e-bd90-a7e0490d295f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "112" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e20045fe0ffb1b26fea3fd01d7a23db6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b641807c-3877-40fe-9b7f-d8f556b88056", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1ca0dd3604be02d39452549ca7ffddec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad842007-d741-4bc6-b720-39869fc64a99", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "42d47699d427087a42c69a4566c4d841", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f88fdc63-7acc-4885-82a5-a080f45e82ec", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b848ab7dcac6f93771fd4da9ba8a73ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ebeb1923-fb8c-4e7d-a58c-b37796fa30de", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "616711c6fbce628f6297d9f86a8d9cd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6dabdeb-845e-4abf-8744-2ecdefec2ca9", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fb1e137924b6cf263edbd02986d14eb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b83a0bdf-3f03-4436-9b39-66483e7229e6", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "557f9a52775c82731ce5552ef03f8fe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a511b260-fe90-4efa-b2d7-af0fcdedfb3a", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a72f7c61776ca148eb9722f32b65dc91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ecbc8cdb-5c09-4e67-9fed-5501072cc18d", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cfa62149460e02739f9bdfd0cff7dfff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a524c72-ab97-4ae3-a702-2b363dd18905", + "Content-Length": "127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:48Z", + "analyzeResult": null + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1/analyzeResults/943815da-7638-4c0e-bd90-a7e0490d295f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "09c7ec4ca6a1da4c52de6ac5548057b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0c273f8-3431-4afe-9406-80193592905c", + "Content-Length": "8091", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:37:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-12-01T18:37:48Z", + "lastUpdatedDateTime": "2020-12-01T18:37:58Z", + "analyzeResult": { + "version": null, + "readResults": [ + { + "page": 1, + "angle": 0, + "width": 1700, + "height": 2200, + "unit": "pixel", + "lines": [] + } + ], + "pageResults": [ + { + "page": 1, + "keyValuePairs": [ + { + "key": { + "text": "Company Phone:", + "boundingBox": [ + 163, + 352, + 359, + 352, + 359, + 378, + 163, + 378 + ], + "elements": null + }, + "value": { + "text": "555-348-6512", + "boundingBox": [ + 364, + 351, + 528, + 351, + 528, + 378, + 364, + 378 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Website:", + "boundingBox": [ + 167, + 394, + 269, + 394, + 269, + 417, + 167, + 417 + ], + "elements": null + }, + "value": { + "text": "www.herolimited.com", + "boundingBox": [ + 273, + 393, + 531, + 393, + 531, + 418, + 273, + 418 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Email:", + "boundingBox": [ + 165, + 435, + 237, + 435, + 237, + 460, + 165, + 460 + ], + "elements": null + }, + "value": { + "text": "accounts@herolimited.com", + "boundingBox": [ + 164, + 481, + 479, + 481, + 479, + 503, + 164, + 503 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Dated As:", + "boundingBox": [ + 1025, + 421, + 1160, + 421, + 1160, + 448, + 1025, + 448 + ], + "elements": null + }, + "value": { + "text": "12/20/2020", + "boundingBox": [ + 1165, + 420, + 1317, + 420, + 1317, + 448, + 1165, + 448 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Purchase Order #:", + "boundingBox": [ + 1023, + 461, + 1272, + 461, + 1272, + 488, + 1023, + 488 + ], + "elements": null + }, + "value": { + "text": "948284", + "boundingBox": [ + 1277, + 461, + 1376, + 461, + 1376, + 489, + 1277, + 489 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Vendor Name:", + "boundingBox": [ + 160, + 611, + 344, + 611, + 344, + 637, + 160, + 637 + ], + "elements": null + }, + "value": { + "text": "Hillary Swank", + "boundingBox": [ + 350, + 609, + 521, + 609, + 521, + 639, + 350, + 639 + ], + "elements": null + }, + "confidence": 0.7 + }, + { + "key": { + "text": "Company Name:", + "boundingBox": [ + 160, + 648, + 370, + 648, + 370, + 677, + 160, + 677 + ], + "elements": null + }, + "value": { + "text": "Higgly Wiggly Books", + "boundingBox": [ + 375, + 646, + 630, + 646, + 630, + 679, + 375, + 679 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Address:", + "boundingBox": [ + 161, + 685, + 269, + 685, + 269, + 711, + 161, + 711 + ], + "elements": null + }, + "value": { + "text": "938 NE Burner Road Boulder City, CO 92848", + "boundingBox": [ + 274, + 685, + 565, + 685, + 565, + 751, + 274, + 751 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Phone:", + "boundingBox": [ + 613, + 722, + 702, + 722, + 702, + 749, + 613, + 749 + ], + "elements": null + }, + "value": { + "text": "938-294-2949", + "boundingBox": [ + 708, + 722, + 885, + 722, + 885, + 749, + 708, + 749 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Name:", + "boundingBox": [ + 166, + 853, + 250, + 853, + 250, + 879, + 166, + 879 + ], + "elements": null + }, + "value": { + "text": "Bernie Sanders", + "boundingBox": [ + 255, + 852, + 446, + 852, + 446, + 880, + 255, + 880 + ], + "elements": null + }, + "confidence": 0.53 + }, + { + "key": { + "text": "Company Name:", + "boundingBox": [ + 164, + 890, + 374, + 890, + 374, + 919, + 164, + 919 + ], + "elements": null + }, + "value": { + "text": "Jupiter Book Supply", + "boundingBox": [ + 380, + 889, + 629, + 889, + 629, + 919, + 380, + 919 + ], + "elements": null + }, + "confidence": 0.53 + }, + { + "key": { + "text": "Address:", + "boundingBox": [ + 166, + 926, + 273, + 926, + 273, + 953, + 166, + 953 + ], + "elements": null + }, + "value": { + "text": "383 N Kinnick Road Seattle, WA 38383", + "boundingBox": [ + 279, + 926, + 521, + 926, + 521, + 991, + 279, + 991 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Phone:", + "boundingBox": [ + 760, + 964, + 849, + 964, + 849, + 990, + 760, + 990 + ], + "elements": null + }, + "value": { + "text": "932-299-0292", + "boundingBox": [ + 855, + 964, + 1033, + 964, + 1033, + 990, + 855, + 990 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "SUBTOTAL", + "boundingBox": [ + 1147, + 1575, + 1296, + 1575, + 1296, + 1600, + 1147, + 1600 + ], + "elements": null + }, + "value": { + "text": "$140.00", + "boundingBox": [ + 1426, + 1571, + 1529, + 1571, + 1529, + 1599, + 1426, + 1599 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "TAX", + "boundingBox": [ + 1238, + 1618, + 1296, + 1618, + 1296, + 1643, + 1238, + 1643 + ], + "elements": null + }, + "value": { + "text": "$4.00", + "boundingBox": [ + 1458, + 1615, + 1529, + 1615, + 1529, + 1643, + 1458, + 1643 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "TOTAL", + "boundingBox": [ + 1204, + 1674, + 1297, + 1674, + 1297, + 1699, + 1204, + 1699 + ], + "elements": null + }, + "value": { + "text": "$144.00", + "boundingBox": [ + 1427, + 1671, + 1529, + 1671, + 1529, + 1698, + 1427, + 1698 + ], + "elements": null + }, + "confidence": 1.0 + }, + { + "key": { + "text": "Additional Notes:", + "boundingBox": [ + 173, + 1796, + 479, + 1796, + 479, + 1831, + 173, + 1831 + ], + "elements": null + }, + "value": { + "text": "Do not Jostle Box. Unpack carefully. Enjoy. Jupiter Book Supply will refund you 50% per book if returned within 60 days of reading and offer you 25% off you next total purchase.", + "boundingBox": [ + 169, + 1880, + 1511, + 1880, + 1511, + 1992, + 169, + 1992 + ], + "elements": null + }, + "confidence": 0.53 + } + ], + "tables": [ + { + "rows": 5, + "columns": 4, + "cells": [ + { + "text": "Details", + "rowIndex": 0, + "columnIndex": 0, + "boundingBox": [ + 447, + 1048, + 558, + 1048, + 558, + 1078, + 447, + 1078 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": true, + "isFooter": false + }, + { + "text": "Quantity", + "rowIndex": 0, + "columnIndex": 1, + "boundingBox": [ + 886, + 1048, + 1034, + 1048, + 1034, + 1084, + 886, + 1084 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": true, + "isFooter": false + }, + { + "text": "Unit Price", + "rowIndex": 0, + "columnIndex": 2, + "boundingBox": [ + 1111, + 1047, + 1269, + 1047, + 1269, + 1078, + 1111, + 1078 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": true, + "isFooter": false + }, + { + "text": "Total", + "rowIndex": 0, + "columnIndex": 3, + "boundingBox": [ + 1383, + 1047, + 1467, + 1047, + 1467, + 1077, + 1383, + 1077 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": true, + "isFooter": false + }, + { + "text": "Bindings", + "rowIndex": 1, + "columnIndex": 0, + "boundingBox": [ + 172, + 1094, + 280, + 1094, + 280, + 1122, + 172, + 1122 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20", + "rowIndex": 1, + "columnIndex": 1, + "boundingBox": [ + 861, + 1094, + 892, + 1094, + 892, + 1119, + 861, + 1119 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "1.00", + "rowIndex": 1, + "columnIndex": 2, + "boundingBox": [ + 1241, + 1095, + 1293, + 1095, + 1293, + 1118, + 1241, + 1118 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20.00", + "rowIndex": 1, + "columnIndex": 3, + "boundingBox": [ + 1458, + 1096, + 1531, + 1096, + 1531, + 1119, + 1458, + 1119 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "Covers Small", + "rowIndex": 2, + "columnIndex": 0, + "boundingBox": [ + 170, + 1136, + 333, + 1136, + 333, + 1161, + 170, + 1161 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20", + "rowIndex": 2, + "columnIndex": 1, + "boundingBox": [ + 861, + 1135, + 892, + 1135, + 892, + 1160, + 861, + 1160 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "1.00", + "rowIndex": 2, + "columnIndex": 2, + "boundingBox": [ + 1240, + 1135, + 1294, + 1135, + 1294, + 1160, + 1240, + 1160 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20.00", + "rowIndex": 2, + "columnIndex": 3, + "boundingBox": [ + 1458, + 1135, + 1529, + 1135, + 1529, + 1160, + 1458, + 1160 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "Feather Bookmark", + "rowIndex": 3, + "columnIndex": 0, + "boundingBox": [ + 173, + 1179, + 402, + 1179, + 402, + 1206, + 173, + 1206 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20", + "rowIndex": 3, + "columnIndex": 1, + "boundingBox": [ + 863, + 1179, + 892, + 1179, + 892, + 1204, + 863, + 1204 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "5.00", + "rowIndex": 3, + "columnIndex": 2, + "boundingBox": [ + 1239, + 1179, + 1294, + 1179, + 1294, + 1204, + 1239, + 1204 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "100.00", + "rowIndex": 3, + "columnIndex": 3, + "boundingBox": [ + 1443, + 1181, + 1529, + 1181, + 1529, + 1205, + 1443, + 1205 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "Copper Swirl Marker", + "rowIndex": 4, + "columnIndex": 0, + "boundingBox": [ + 170, + 1222, + 429, + 1222, + 429, + 1252, + 170, + 1252 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "20", + "rowIndex": 4, + "columnIndex": 1, + "boundingBox": [ + 860, + 1223, + 892, + 1223, + 892, + 1247, + 860, + 1247 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "5.00", + "rowIndex": 4, + "columnIndex": 2, + "boundingBox": [ + 1239, + 1221, + 1293, + 1221, + 1293, + 1247, + 1239, + 1247 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + }, + { + "text": "100.00", + "rowIndex": 4, + "columnIndex": 3, + "boundingBox": [ + 1444, + 1224, + 1530, + 1224, + 1530, + 1248, + 1444, + 1248 + ], + "confidence": 1.0, + "rowSpan": 1, + "columnSpan": 1, + "elements": null, + "isHeader": false, + "isFooter": false + } + ] + } + ], + "clusterId": 0 + } + ], + "documentResults": [], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf8b06f3-65d4-474d-a341-d00cfe09c5a1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-989c4faeabcdda40b41ed26bbe029291-a72b6bc9ac823f44-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cfe4c309bf981ad5092c07d09878d1f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "fa675d33-1f3a-4d10-bb6e-a3c394454168", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:37:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "1283318671" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(True).json new file mode 100644 index 0000000000000..e1a671ab21bfd --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(True).json @@ -0,0 +1,1180 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-8befb05cb6f4ac4db465ab62bd91659e-d97e5fa476e24643-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d2e341564e7c670637e74e4e3de2aba0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "9d8a3782-6d82-44ff-9fd7-c7e92d3dc8bb", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:32:55 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "181" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5d5b023ca6a33dd4feaa8a0e731ef0ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "28087750-2ef0-4dd8-a93b-927349450507", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:32:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "226f0844-d3c3-422e-8e37-a5fd20423729", + "status": "creating", + "createdDateTime": "2020-12-01T18:32:55Z", + "lastUpdatedDateTime": "2020-12-01T18:32:55Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1a5cc8d70c77664e8d50cc20d66b5e47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ef96dadb-7755-4fff-95d3-9ce301f72a7c", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:32:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "226f0844-d3c3-422e-8e37-a5fd20423729", + "status": "creating", + "createdDateTime": "2020-12-01T18:32:55Z", + "lastUpdatedDateTime": "2020-12-01T18:32:55Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a46b16d251d7af3e6da5d3d2c3f7f318", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ec3da50e-dbf6-4a5d-8e58-1af593120253", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:32:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "226f0844-d3c3-422e-8e37-a5fd20423729", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-12-01T18:32:55Z", + "lastUpdatedDateTime": "2020-12-01T18:32:58Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "479269", + "Content-Type": "image/jpeg", + "traceparent": "00-e74f22b6b697e64da443123e90fc9fa1-dca4d4f9d3078a4b-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "74779ff790863028b3f4cf52d9b36693", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1c4216ca-ff23-4729-9380-ffbf62225610", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:33:04 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729/analyzeresults/9055bfa5-abc1-449e-a23d-30de4f575ff6", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729/analyzeResults/9055bfa5-abc1-449e-a23d-30de4f575ff6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5d3b434b4bb285d789acacd1387ca395", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3a9c9e04-f39a-497f-857c-ebe8a6dd188d", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "22" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:04Z", + "lastUpdatedDateTime": "2020-12-01T18:33:05Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729/analyzeResults/9055bfa5-abc1-449e-a23d-30de4f575ff6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3729b45de9f442c0ed3bf1e281ecd5ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "254b2dfc-8b37-4520-83bd-35d0e8db23f6", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:04Z", + "lastUpdatedDateTime": "2020-12-01T18:33:05Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729/analyzeResults/9055bfa5-abc1-449e-a23d-30de4f575ff6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8086403e96bcac66c8f1ead9e357f737", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7991cd7c-b036-4742-b1fa-24d12c0c5258", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:04Z", + "lastUpdatedDateTime": "2020-12-01T18:33:05Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729/analyzeResults/9055bfa5-abc1-449e-a23d-30de4f575ff6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "25f43a512f8a629f82f970765af4039d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ef77d065-cce3-47f2-9eb5-4784aaeb14e2", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:04Z", + "lastUpdatedDateTime": "2020-12-01T18:33:08Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729/analyzeResults/9055bfa5-abc1-449e-a23d-30de4f575ff6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f893f2d622f5c7d84d7d6e02fee75e96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "263698f3-e2e2-48ea-a0e3-9eed3589390d", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:04Z", + "lastUpdatedDateTime": "2020-12-01T18:33:08Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729/analyzeResults/9055bfa5-abc1-449e-a23d-30de4f575ff6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4690b944b0f70e30a124fec325ef51d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ec3bdfc0-574b-4a8e-ad2d-51f8984f8039", + "Content-Length": "6215", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-12-01T18:33:04Z", + "lastUpdatedDateTime": "2020-12-01T18:33:12Z", + "analyzeResult": { + "version": "2.1.0", + "readResults": [ + { + "page": 1, + "angle": 0, + "width": 1700, + "height": 2200, + "unit": "pixel" + } + ], + "pageResults": [ + { + "page": 1, + "tables": [ + { + "rows": 5, + "columns": 5, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "columnSpan": 2, + "text": "Details", + "boundingBox": [ + 157, + 1038, + 847, + 1037, + 847, + 1086, + 157, + 1086 + ] + }, + { + "rowIndex": 0, + "columnIndex": 2, + "text": "Quantity", + "boundingBox": [ + 847, + 1037, + 1071, + 1037, + 1071, + 1086, + 847, + 1086 + ] + }, + { + "rowIndex": 0, + "columnIndex": 3, + "text": "Unit Price", + "boundingBox": [ + 1071, + 1037, + 1310, + 1038, + 1310, + 1086, + 1071, + 1086 + ] + }, + { + "rowIndex": 0, + "columnIndex": 4, + "text": "Total", + "boundingBox": [ + 1310, + 1038, + 1543, + 1038, + 1543, + 1086, + 1310, + 1086 + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "columnSpan": 2, + "text": "Bindings", + "boundingBox": [ + 157, + 1086, + 847, + 1086, + 847, + 1127, + 157, + 1128 + ] + }, + { + "rowIndex": 1, + "columnIndex": 2, + "text": "20", + "boundingBox": [ + 847, + 1086, + 1071, + 1086, + 1071, + 1127, + 847, + 1127 + ] + }, + { + "rowIndex": 1, + "columnIndex": 3, + "text": "1.00", + "boundingBox": [ + 1071, + 1086, + 1310, + 1086, + 1310, + 1127, + 1071, + 1127 + ] + }, + { + "rowIndex": 1, + "columnIndex": 4, + "text": "20.00", + "boundingBox": [ + 1310, + 1086, + 1543, + 1086, + 1543, + 1127, + 1310, + 1127 + ] + }, + { + "rowIndex": 2, + "columnIndex": 0, + "columnSpan": 2, + "text": "Covers Small", + "boundingBox": [ + 157, + 1128, + 847, + 1127, + 847, + 1171, + 157, + 1171 + ] + }, + { + "rowIndex": 2, + "columnIndex": 2, + "text": "20", + "boundingBox": [ + 847, + 1127, + 1071, + 1127, + 1071, + 1171, + 847, + 1171 + ] + }, + { + "rowIndex": 2, + "columnIndex": 3, + "text": "1.00", + "boundingBox": [ + 1071, + 1127, + 1310, + 1127, + 1310, + 1171, + 1071, + 1171 + ] + }, + { + "rowIndex": 2, + "columnIndex": 4, + "text": "20.00", + "boundingBox": [ + 1310, + 1127, + 1543, + 1127, + 1543, + 1171, + 1310, + 1171 + ] + }, + { + "rowIndex": 3, + "columnIndex": 0, + "columnSpan": 2, + "text": "Feather Bookmark", + "boundingBox": [ + 157, + 1171, + 847, + 1171, + 847, + 1214, + 157, + 1214 + ] + }, + { + "rowIndex": 3, + "columnIndex": 2, + "text": "20", + "boundingBox": [ + 847, + 1171, + 1071, + 1171, + 1071, + 1214, + 847, + 1214 + ] + }, + { + "rowIndex": 3, + "columnIndex": 3, + "text": "5.00", + "boundingBox": [ + 1071, + 1171, + 1310, + 1171, + 1310, + 1214, + 1071, + 1214 + ] + }, + { + "rowIndex": 3, + "columnIndex": 4, + "text": "100.00", + "boundingBox": [ + 1310, + 1171, + 1543, + 1171, + 1543, + 1215, + 1310, + 1214 + ] + }, + { + "rowIndex": 4, + "columnIndex": 0, + "columnSpan": 2, + "text": "Copper Swirl Marker", + "boundingBox": [ + 157, + 1214, + 847, + 1214, + 847, + 1258, + 157, + 1258 + ] + }, + { + "rowIndex": 4, + "columnIndex": 2, + "text": "20", + "boundingBox": [ + 847, + 1214, + 1071, + 1214, + 1071, + 1258, + 847, + 1258 + ] + }, + { + "rowIndex": 4, + "columnIndex": 3, + "text": "5.00", + "boundingBox": [ + 1071, + 1214, + 1310, + 1214, + 1310, + 1258, + 1071, + 1258 + ] + }, + { + "rowIndex": 4, + "columnIndex": 4, + "text": "100.00", + "boundingBox": [ + 1310, + 1214, + 1543, + 1215, + 1543, + 1260, + 1310, + 1258 + ] + } + ], + "boundingBox": [ + 153, + 1036, + 1547, + 1037, + 1547, + 1265, + 153, + 1265 + ] + }, + { + "rows": 4, + "columns": 2, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "text": "SUBTOTAL", + "boundingBox": [ + 1072, + 1564, + 1307, + 1565, + 1308, + 1609, + 1071, + 1608 + ] + }, + { + "rowIndex": 0, + "columnIndex": 1, + "text": "$140.00", + "boundingBox": [ + 1307, + 1565, + 1542, + 1564, + 1543, + 1609, + 1308, + 1609 + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "text": "TAX", + "boundingBox": [ + 1071, + 1608, + 1308, + 1609, + 1308, + 1652, + 1071, + 1651 + ] + }, + { + "rowIndex": 1, + "columnIndex": 1, + "text": "$4.00", + "boundingBox": [ + 1308, + 1609, + 1543, + 1609, + 1543, + 1652, + 1308, + 1652 + ] + }, + { + "rowIndex": 2, + "columnIndex": 0, + "text": "", + "boundingBox": [ + 1071, + 1651, + 1308, + 1652, + 1308, + 1663, + 1071, + 1663 + ] + }, + { + "rowIndex": 2, + "columnIndex": 1, + "text": "", + "boundingBox": [ + 1308, + 1652, + 1543, + 1652, + 1543, + 1663, + 1308, + 1663 + ] + }, + { + "rowIndex": 3, + "columnIndex": 0, + "text": "TOTAL", + "boundingBox": [ + 1071, + 1663, + 1308, + 1663, + 1308, + 1707, + 1071, + 1707 + ] + }, + { + "rowIndex": 3, + "columnIndex": 1, + "text": "$144.00", + "boundingBox": [ + 1308, + 1663, + 1543, + 1663, + 1543, + 1708, + 1308, + 1707 + ] + } + ], + "boundingBox": [ + 1058, + 1563, + 1555, + 1563, + 1555, + 1707, + 1058, + 1707 + ] + } + ] + } + ], + "documentResults": [ + { + "docType": "custom:226f0844-d3c3-422e-8e37-a5fd20423729", + "modelId": "226f0844-d3c3-422e-8e37-a5fd20423729", + "pageRange": [ + 1, + 1 + ], + "fields": { + "CompanyPhoneNumber": { + "type": "string", + "valueString": "938-294-2949", + "text": "938-294-2949", + "page": 1, + "boundingBox": [ + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 + ], + "confidence": 1.0 + }, + "DatedAs": { + "type": "string", + "valueString": "12/20/2020", + "text": "12/20/2020", + "page": 1, + "boundingBox": [ + 1165.0, + 420.0, + 1317.0, + 420.0, + 1317.0, + 449.0, + 1165.0, + 449.0 + ], + "confidence": 0.99 + }, + "Tax": { + "type": "string", + "valueString": "$4.00", + "text": "$4.00", + "page": 1, + "boundingBox": [ + 1458.0, + 1615.0, + 1529.0, + 1615.0, + 1529.0, + 1643.0, + 1458.0, + 1643.0 + ], + "confidence": 0.994 + }, + "Quantity": { + "type": "number", + "text": "20", + "page": 1, + "boundingBox": [ + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 + ], + "confidence": 0.962 + }, + "Total": { + "type": "string", + "valueString": "$144.00", + "text": "$144.00", + "page": 1, + "boundingBox": [ + 1427.0, + 1669.0, + 1529.0, + 1669.0, + 1529.0, + 1698.0, + 1427.0, + 1698.0 + ], + "confidence": 0.991 + }, + "Website": { + "type": "string", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", + "page": 1, + "boundingBox": [ + 273.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, + 273.0, + 418.0 + ], + "confidence": 0.95 + }, + "CompanyName": { + "type": "string", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", + "page": 1, + "boundingBox": [ + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 + ], + "confidence": 0.95 + }, + "Merchant": { + "type": "string", + "valueString": "Hero Limited", + "text": "Hero Limited", + "page": 1, + "boundingBox": [ + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 + ], + "confidence": 0.97 + }, + "Subtotal": { + "type": "string", + "valueString": "$140.00", + "text": "$140.00", + "page": 1, + "boundingBox": [ + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 + ], + "confidence": 0.984 + }, + "Email": { + "type": "string", + "valueString": "accounts@herolimited.com", + "text": "accounts@herolimited.com", + "page": 1, + "boundingBox": [ + 164.0, + 479.0, + 478.0, + 479.0, + 478.0, + 503.0, + 164.0, + 503.0 + ], + "confidence": 1.0 + }, + "Signature": { + "type": "string", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", + "page": 1, + "boundingBox": [ + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 + ], + "confidence": 0.998 + }, + "CompanyAddress": { + "type": "string", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", + "page": 1, + "boundingBox": [ + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 + ], + "confidence": 1.0 + }, + "VendorName": { + "type": "string", + "valueString": "Hillary Swank", + "text": "Hillary Swank", + "page": 1, + "boundingBox": [ + 349.0, + 609.0, + 521.0, + 609.0, + 521.0, + 639.0, + 349.0, + 639.0 + ], + "confidence": 0.93 + }, + "PhoneNumber": { + "type": "string", + "valueString": "555-348-6512", + "text": "555-348-6512", + "page": 1, + "boundingBox": [ + 364.0, + 351.0, + 528.0, + 351.0, + 528.0, + 378.0, + 364.0, + 378.0 + ], + "confidence": 0.89 + }, + "PurchaseOrderNumber": { + "type": "string", + "valueString": "948284", + "text": "948284", + "page": 1, + "boundingBox": [ + 1277.0, + 461.0, + 1376.0, + 461.0, + 1376.0, + 489.0, + 1277.0, + 489.0 + ], + "confidence": 0.94 + } + }, + "docTypeConfidence": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/226f0844-d3c3-422e-8e37-a5fd20423729", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-0572e12b6bfbde498119ec8ef14d1ee4-c0d88a8be04baa45-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f1024deefec32e42622dd80dc19c639a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "bcfce9df-7d68-45b9-88ba-0af827ed97d2", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:33:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "218396401" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(True)Async.json new file mode 100644 index 0000000000000..118fa57b4e414 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsCanAuthenticateWithTokenCredential(True)Async.json @@ -0,0 +1,1207 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d3c57a865ec03d4299df2e264125b509-14fb567dde81b049-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "272398cd2e32ffc4ea97183068e17350", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "dd0ebd5f-0c28-47d7-849a-142c3723695b", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:33:36 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "aabcea7383fe541412fe03c9486bff56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c34967c-4249-433d-91fc-0c798c6b01be", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1", + "status": "creating", + "createdDateTime": "2020-12-01T18:33:36Z", + "lastUpdatedDateTime": "2020-12-01T18:33:36Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "876042370f8dee69ec4d5e70d569ed0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6c8a2514-dfad-49c9-b8ad-5e7ee5edfa9d", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1", + "status": "creating", + "createdDateTime": "2020-12-01T18:33:36Z", + "lastUpdatedDateTime": "2020-12-01T18:33:36Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e1453415110c4a1d84ce14332bfab67f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca44cf61-d4ff-4b42-b22c-12cd8dbcb85e", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-12-01T18:33:36Z", + "lastUpdatedDateTime": "2020-12-01T18:33:38Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "479269", + "Content-Type": "image/jpeg", + "traceparent": "00-3d7168f42e633f47a75fa56b564dbc3a-7819e7aa0c4d674e-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "26f8c198eb8064c381cdbdb024a37ea9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "8984c751-0e79-460d-9c4f-222e587d39c8", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:33:40 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyzeresults/23e3655c-c36a-4401-8269-b264f19c0260", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyzeResults/23e3655c-c36a-4401-8269-b264f19c0260", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "14b4f8101e26264a241603bffa35c3f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "38973543-e794-4f64-a17a-9f6d0410a4c7", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:40Z", + "lastUpdatedDateTime": "2020-12-01T18:33:40Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyzeResults/23e3655c-c36a-4401-8269-b264f19c0260", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "14d8df97c7702a8970e15f3e536d25e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a74bd973-18b2-4eb3-b68b-5f252d4b35d0", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:40Z", + "lastUpdatedDateTime": "2020-12-01T18:33:41Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyzeResults/23e3655c-c36a-4401-8269-b264f19c0260", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "32226b4fa1457a5877d10169e704694c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c06abcc-dc68-47f9-9b87-f12753a5ca78", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:40Z", + "lastUpdatedDateTime": "2020-12-01T18:33:41Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyzeResults/23e3655c-c36a-4401-8269-b264f19c0260", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4519ca0a6aca48386f89a344be0bd2b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "537d46d4-fb76-49aa-a46c-4f1d0e2557aa", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "91" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:40Z", + "lastUpdatedDateTime": "2020-12-01T18:33:41Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyzeResults/23e3655c-c36a-4401-8269-b264f19c0260", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8e6f22f19012f6ac865e9c9ec61f426c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8b02169-1f48-4592-95ac-23d902b190d0", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:40Z", + "lastUpdatedDateTime": "2020-12-01T18:33:44Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyzeResults/23e3655c-c36a-4401-8269-b264f19c0260", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "88341377df54e51633d9c3bbfd13bb6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f18d21c4-0dc0-4597-8eb2-1fce098b5587", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-12-01T18:33:40Z", + "lastUpdatedDateTime": "2020-12-01T18:33:44Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1/analyzeResults/23e3655c-c36a-4401-8269-b264f19c0260", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c5784afedb9479391d22bf6ccd99824f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c8f79c4a-c7c7-4074-808d-6c1b31afabec", + "Content-Length": "6215", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 01 Dec 2020 18:33:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-12-01T18:33:40Z", + "lastUpdatedDateTime": "2020-12-01T18:33:47Z", + "analyzeResult": { + "version": "2.1.0", + "readResults": [ + { + "page": 1, + "angle": 0, + "width": 1700, + "height": 2200, + "unit": "pixel" + } + ], + "pageResults": [ + { + "page": 1, + "tables": [ + { + "rows": 5, + "columns": 5, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "columnSpan": 2, + "text": "Details", + "boundingBox": [ + 157, + 1038, + 847, + 1037, + 847, + 1086, + 157, + 1086 + ] + }, + { + "rowIndex": 0, + "columnIndex": 2, + "text": "Quantity", + "boundingBox": [ + 847, + 1037, + 1071, + 1037, + 1071, + 1086, + 847, + 1086 + ] + }, + { + "rowIndex": 0, + "columnIndex": 3, + "text": "Unit Price", + "boundingBox": [ + 1071, + 1037, + 1310, + 1038, + 1310, + 1086, + 1071, + 1086 + ] + }, + { + "rowIndex": 0, + "columnIndex": 4, + "text": "Total", + "boundingBox": [ + 1310, + 1038, + 1543, + 1038, + 1543, + 1086, + 1310, + 1086 + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "columnSpan": 2, + "text": "Bindings", + "boundingBox": [ + 157, + 1086, + 847, + 1086, + 847, + 1127, + 157, + 1128 + ] + }, + { + "rowIndex": 1, + "columnIndex": 2, + "text": "20", + "boundingBox": [ + 847, + 1086, + 1071, + 1086, + 1071, + 1127, + 847, + 1127 + ] + }, + { + "rowIndex": 1, + "columnIndex": 3, + "text": "1.00", + "boundingBox": [ + 1071, + 1086, + 1310, + 1086, + 1310, + 1127, + 1071, + 1127 + ] + }, + { + "rowIndex": 1, + "columnIndex": 4, + "text": "20.00", + "boundingBox": [ + 1310, + 1086, + 1543, + 1086, + 1543, + 1127, + 1310, + 1127 + ] + }, + { + "rowIndex": 2, + "columnIndex": 0, + "columnSpan": 2, + "text": "Covers Small", + "boundingBox": [ + 157, + 1128, + 847, + 1127, + 847, + 1171, + 157, + 1171 + ] + }, + { + "rowIndex": 2, + "columnIndex": 2, + "text": "20", + "boundingBox": [ + 847, + 1127, + 1071, + 1127, + 1071, + 1171, + 847, + 1171 + ] + }, + { + "rowIndex": 2, + "columnIndex": 3, + "text": "1.00", + "boundingBox": [ + 1071, + 1127, + 1310, + 1127, + 1310, + 1171, + 1071, + 1171 + ] + }, + { + "rowIndex": 2, + "columnIndex": 4, + "text": "20.00", + "boundingBox": [ + 1310, + 1127, + 1543, + 1127, + 1543, + 1171, + 1310, + 1171 + ] + }, + { + "rowIndex": 3, + "columnIndex": 0, + "columnSpan": 2, + "text": "Feather Bookmark", + "boundingBox": [ + 157, + 1171, + 847, + 1171, + 847, + 1214, + 157, + 1214 + ] + }, + { + "rowIndex": 3, + "columnIndex": 2, + "text": "20", + "boundingBox": [ + 847, + 1171, + 1071, + 1171, + 1071, + 1214, + 847, + 1214 + ] + }, + { + "rowIndex": 3, + "columnIndex": 3, + "text": "5.00", + "boundingBox": [ + 1071, + 1171, + 1310, + 1171, + 1310, + 1214, + 1071, + 1214 + ] + }, + { + "rowIndex": 3, + "columnIndex": 4, + "text": "100.00", + "boundingBox": [ + 1310, + 1171, + 1543, + 1171, + 1543, + 1215, + 1310, + 1214 + ] + }, + { + "rowIndex": 4, + "columnIndex": 0, + "columnSpan": 2, + "text": "Copper Swirl Marker", + "boundingBox": [ + 157, + 1214, + 847, + 1214, + 847, + 1258, + 157, + 1258 + ] + }, + { + "rowIndex": 4, + "columnIndex": 2, + "text": "20", + "boundingBox": [ + 847, + 1214, + 1071, + 1214, + 1071, + 1258, + 847, + 1258 + ] + }, + { + "rowIndex": 4, + "columnIndex": 3, + "text": "5.00", + "boundingBox": [ + 1071, + 1214, + 1310, + 1214, + 1310, + 1258, + 1071, + 1258 + ] + }, + { + "rowIndex": 4, + "columnIndex": 4, + "text": "100.00", + "boundingBox": [ + 1310, + 1214, + 1543, + 1215, + 1543, + 1260, + 1310, + 1258 + ] + } + ], + "boundingBox": [ + 153, + 1036, + 1547, + 1037, + 1547, + 1265, + 153, + 1265 + ] + }, + { + "rows": 4, + "columns": 2, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "text": "SUBTOTAL", + "boundingBox": [ + 1072, + 1564, + 1307, + 1565, + 1308, + 1609, + 1071, + 1608 + ] + }, + { + "rowIndex": 0, + "columnIndex": 1, + "text": "$140.00", + "boundingBox": [ + 1307, + 1565, + 1542, + 1564, + 1543, + 1609, + 1308, + 1609 + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "text": "TAX", + "boundingBox": [ + 1071, + 1608, + 1308, + 1609, + 1308, + 1652, + 1071, + 1651 + ] + }, + { + "rowIndex": 1, + "columnIndex": 1, + "text": "$4.00", + "boundingBox": [ + 1308, + 1609, + 1543, + 1609, + 1543, + 1652, + 1308, + 1652 + ] + }, + { + "rowIndex": 2, + "columnIndex": 0, + "text": "", + "boundingBox": [ + 1071, + 1651, + 1308, + 1652, + 1308, + 1663, + 1071, + 1663 + ] + }, + { + "rowIndex": 2, + "columnIndex": 1, + "text": "", + "boundingBox": [ + 1308, + 1652, + 1543, + 1652, + 1543, + 1663, + 1308, + 1663 + ] + }, + { + "rowIndex": 3, + "columnIndex": 0, + "text": "TOTAL", + "boundingBox": [ + 1071, + 1663, + 1308, + 1663, + 1308, + 1707, + 1071, + 1707 + ] + }, + { + "rowIndex": 3, + "columnIndex": 1, + "text": "$144.00", + "boundingBox": [ + 1308, + 1663, + 1543, + 1663, + 1543, + 1708, + 1308, + 1707 + ] + } + ], + "boundingBox": [ + 1058, + 1563, + 1555, + 1563, + 1555, + 1707, + 1058, + 1707 + ] + } + ] + } + ], + "documentResults": [ + { + "docType": "custom:360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1", + "modelId": "360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1", + "pageRange": [ + 1, + 1 + ], + "fields": { + "Quantity": { + "type": "number", + "text": "20", + "page": 1, + "boundingBox": [ + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 + ], + "confidence": 0.962 + }, + "Merchant": { + "type": "string", + "valueString": "Hero Limited", + "text": "Hero Limited", + "page": 1, + "boundingBox": [ + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 + ], + "confidence": 0.97 + }, + "Tax": { + "type": "string", + "valueString": "$4.00", + "text": "$4.00", + "page": 1, + "boundingBox": [ + 1458.0, + 1615.0, + 1529.0, + 1615.0, + 1529.0, + 1643.0, + 1458.0, + 1643.0 + ], + "confidence": 0.994 + }, + "CompanyName": { + "type": "string", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", + "page": 1, + "boundingBox": [ + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 + ], + "confidence": 0.95 + }, + "VendorName": { + "type": "string", + "valueString": "Hillary Swank", + "text": "Hillary Swank", + "page": 1, + "boundingBox": [ + 349.0, + 609.0, + 521.0, + 609.0, + 521.0, + 639.0, + 349.0, + 639.0 + ], + "confidence": 0.93 + }, + "CompanyPhoneNumber": { + "type": "string", + "valueString": "938-294-2949", + "text": "938-294-2949", + "page": 1, + "boundingBox": [ + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 + ], + "confidence": 1.0 + }, + "PurchaseOrderNumber": { + "type": "string", + "valueString": "948284", + "text": "948284", + "page": 1, + "boundingBox": [ + 1277.0, + 461.0, + 1376.0, + 461.0, + 1376.0, + 489.0, + 1277.0, + 489.0 + ], + "confidence": 0.94 + }, + "Subtotal": { + "type": "string", + "valueString": "$140.00", + "text": "$140.00", + "page": 1, + "boundingBox": [ + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 + ], + "confidence": 0.984 + }, + "Email": { + "type": "string", + "valueString": "accounts@herolimited.com", + "text": "accounts@herolimited.com", + "page": 1, + "boundingBox": [ + 164.0, + 479.0, + 478.0, + 479.0, + 478.0, + 503.0, + 164.0, + 503.0 + ], + "confidence": 1.0 + }, + "Website": { + "type": "string", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", + "page": 1, + "boundingBox": [ + 273.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, + 273.0, + 418.0 + ], + "confidence": 0.95 + }, + "DatedAs": { + "type": "string", + "valueString": "12/20/2020", + "text": "12/20/2020", + "page": 1, + "boundingBox": [ + 1165.0, + 420.0, + 1317.0, + 420.0, + 1317.0, + 449.0, + 1165.0, + 449.0 + ], + "confidence": 0.99 + }, + "CompanyAddress": { + "type": "string", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", + "page": 1, + "boundingBox": [ + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 + ], + "confidence": 1.0 + }, + "Signature": { + "type": "string", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", + "page": 1, + "boundingBox": [ + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 + ], + "confidence": 0.998 + }, + "PhoneNumber": { + "type": "string", + "valueString": "555-348-6512", + "text": "555-348-6512", + "page": 1, + "boundingBox": [ + 364.0, + 351.0, + 528.0, + 351.0, + 528.0, + 378.0, + 364.0, + 378.0 + ], + "confidence": 0.89 + }, + "Total": { + "type": "string", + "valueString": "$144.00", + "text": "$144.00", + "page": 1, + "boundingBox": [ + 1427.0, + 1669.0, + 1529.0, + 1669.0, + 1529.0, + 1698.0, + 1427.0, + 1698.0 + ], + "confidence": 0.991 + } + }, + "docTypeConfidence": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/360b4f8c-75c0-4ae0-9fbc-5f3bb1bdd6b1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-5c02c915bedf224b8790927b51149ce0-f7bc2bdbda313f4f-00", + "User-Agent": "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201201.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "aacd36474ad612630b8a5b38ccf0f872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "2b0432c3-5b14-401d-a846-98e1d3a1b58c", + "Content-Length": "0", + "Date": "Tue, 01 Dec 2020 18:33:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "1489175626" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeInvoicesCanAuthenticateWithTokenCredential.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeInvoicesCanAuthenticateWithTokenCredential.json new file mode 100644 index 0000000000000..4d0f6b94b91a7 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeInvoicesCanAuthenticateWithTokenCredential.json @@ -0,0 +1,587 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "147362", + "Content-Type": "application/pdf", + "traceparent": "00-2a14c428866b5c4b8db69c875f8397ff-8289b81681b2984a-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4f69276c25bb0db1460b13c62c98ce91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "8fbc1fcc-8890-4593-9ea6-1e7b8925a8bb", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:18:55 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/8fbc1fcc-8890-4593-9ea6-1e7b8925a8bb", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "305" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/8fbc1fcc-8890-4593-9ea6-1e7b8925a8bb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "841e1985987030411208264cdee2672b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "29897892-9f92-42c2-b01a-51c7a7940804", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:18:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:18:55Z", + "lastUpdatedDateTime": "2020-11-25T03:18:56Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/8fbc1fcc-8890-4593-9ea6-1e7b8925a8bb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c68b45920b09fd7714ad29224f043246", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c7b929e-da76-44e7-afff-593bfcb9cf03", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:18:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "145" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:18:55Z", + "lastUpdatedDateTime": "2020-11-25T03:18:56Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/8fbc1fcc-8890-4593-9ea6-1e7b8925a8bb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9b731e3a6824d344e6383db3ff642e64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ddee85ce-1f30-4ef0-bf34-ea9c8b72f9ef", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:18:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:18:55Z", + "lastUpdatedDateTime": "2020-11-25T03:18:56Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/8fbc1fcc-8890-4593-9ea6-1e7b8925a8bb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e634e8a3070d7a88a1216fc26e1fe00e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "91b6a776-d7a0-4c61-b316-403a577ff831", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:19:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:18:55Z", + "lastUpdatedDateTime": "2020-11-25T03:18:56Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/8fbc1fcc-8890-4593-9ea6-1e7b8925a8bb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bf12e0d5cc6e2a0700b7e0d1cdc4feaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1857875f-35d4-44db-bac7-1a12fc9cde85", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:19:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:18:55Z", + "lastUpdatedDateTime": "2020-11-25T03:18:56Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/8fbc1fcc-8890-4593-9ea6-1e7b8925a8bb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "677ec57e4bcf323896f8f902f88264c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "78d698a3-dcb7-4f2b-8495-81c63ddd0175", + "Content-Length": "3526", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:19:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T03:18:55Z", + "lastUpdatedDateTime": "2020-11-25T03:19:02Z", + "analyzeResult": { + "version": "2.1.0", + "readResults": [ + { + "page": 1, + "angle": 0, + "width": 8.5, + "height": 11, + "unit": "inch" + } + ], + "pageResults": [ + { + "page": 1, + "tables": [ + { + "rows": 3, + "columns": 6, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "text": "Invoice Number", + "boundingBox": [ + 0.5136, + 2.7829, + 1.8978, + 2.79, + 1.8978, + 3.311, + 0.5136, + 3.311 + ] + }, + { + "rowIndex": 0, + "columnIndex": 1, + "text": "Invoice Date", + "boundingBox": [ + 1.8978, + 2.79, + 3.2964, + 2.79, + 3.3036, + 3.311, + 1.8978, + 3.311 + ] + }, + { + "rowIndex": 0, + "columnIndex": 2, + "text": "Invoice Due Date", + "boundingBox": [ + 3.2964, + 2.79, + 4.7022, + 2.79, + 4.7094, + 3.311, + 3.3036, + 3.311 + ] + }, + { + "rowIndex": 0, + "columnIndex": 3, + "columnSpan": 2, + "text": "Charges", + "boundingBox": [ + 4.7022, + 2.79, + 6.1079, + 2.7829, + 6.1079, + 3.311, + 4.7094, + 3.311 + ] + }, + { + "rowIndex": 0, + "columnIndex": 5, + "text": "VAT ID", + "boundingBox": [ + 6.1079, + 2.7829, + 7.485, + 2.7829, + 7.4922, + 3.311, + 6.1079, + 3.311 + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "rowSpan": 2, + "text": "34278587", + "boundingBox": [ + 0.5136, + 3.311, + 1.8978, + 3.311, + 1.8978, + 3.8534, + 0.5136, + 3.8534 + ] + }, + { + "rowIndex": 1, + "columnIndex": 1, + "rowSpan": 2, + "text": "6/18/2017", + "boundingBox": [ + 1.8978, + 3.311, + 3.3036, + 3.311, + 3.3036, + 3.8534, + 1.8978, + 3.8534 + ] + }, + { + "rowIndex": 1, + "columnIndex": 2, + "rowSpan": 2, + "text": "6/24/2017", + "boundingBox": [ + 3.3036, + 3.311, + 4.7094, + 3.311, + 4.7165, + 3.8534, + 3.3036, + 3.8534 + ] + }, + { + "rowIndex": 1, + "columnIndex": 3, + "rowSpan": 2, + "columnSpan": 2, + "text": "$56,651.49", + "boundingBox": [ + 4.7094, + 3.311, + 6.1079, + 3.311, + 6.1079, + 3.8534, + 4.7165, + 3.8534 + ] + }, + { + "rowIndex": 1, + "columnIndex": 5, + "text": "PT", + "boundingBox": [ + 6.1079, + 3.311, + 7.4922, + 3.311, + 7.4922, + 3.6393, + 6.1079, + 3.6393 + ] + }, + { + "rowIndex": 2, + "columnIndex": 5, + "boundingBox": [ + 6.1079, + 3.6393, + 7.4922, + 3.6393, + 7.4922, + 3.8534, + 6.1079, + 3.8534 + ], + "text": "" + } + ], + "boundingBox": [ + 0.4985, + 2.7802, + 7.4933, + 2.7816, + 7.4913, + 3.8459, + 0.4966, + 3.8447 + ] + } + ] + } + ], + "documentResults": [ + { + "docType": "prebuilt:invoice", + "pageRange": [ + 1, + 1 + ], + "fields": { + "CustomerAddress": { + "type": "string", + "valueString": "1020 Enterprise Way Sunnayvale, CA 87659", + "text": "1020 Enterprise Way Sunnayvale, CA 87659", + "boundingBox": [ + 5.196, + 1.716, + 6.6526, + 1.716, + 6.6526, + 2.0359, + 5.196, + 2.0359 + ], + "page": 1, + "confidence": 0.992 + }, + "CustomerAddressRecipient": { + "type": "string", + "valueString": "Microsoft", + "text": "Microsoft", + "boundingBox": [ + 5.2045, + 1.5114, + 5.8155, + 1.5114, + 5.8155, + 1.6151, + 5.2045, + 1.6151 + ], + "page": 1, + "confidence": 0.989 + }, + "CustomerName": { + "type": "string", + "valueString": "Microsoft", + "text": "Microsoft", + "boundingBox": [ + 5.2045, + 1.5114, + 5.8155, + 1.5114, + 5.8155, + 1.6151, + 5.2045, + 1.6151 + ], + "page": 1, + "confidence": 0.989 + }, + "DueDate": { + "type": "date", + "valueDate": "2017-06-24", + "text": "6/24/2017", + "boundingBox": [ + 3.346, + 3.41, + 3.9514, + 3.41, + 3.9514, + 3.5144, + 3.346, + 3.5144 + ], + "page": 1, + "confidence": 0.989 + }, + "InvoiceDate": { + "type": "date", + "valueDate": "2017-06-18", + "text": "6/18/2017", + "boundingBox": [ + 1.9455, + 3.41, + 2.551, + 3.41, + 2.551, + 3.5144, + 1.9455, + 3.5144 + ], + "page": 1, + "confidence": 0.936 + }, + "InvoiceId": { + "type": "string", + "valueString": "34278587", + "text": "34278587", + "boundingBox": [ + 0.5397, + 3.411, + 1.1457, + 3.411, + 1.1457, + 3.5144, + 0.5397, + 3.5144 + ], + "page": 1, + "confidence": 0.842 + }, + "InvoiceTotal": { + "type": "number", + "valueNumber": 56651.49, + "text": "$56,651.49", + "boundingBox": [ + 5.3871, + 3.4047, + 6.0702, + 3.4047, + 6.0702, + 3.5321, + 5.3871, + 3.5321 + ], + "page": 1, + "confidence": 0.576 + }, + "VendorAddress": { + "type": "string", + "valueString": "1 Redmond way Suite 6000 Redmond, WA 99243", + "text": "1 Redmond way Suite 6000 Redmond, WA 99243", + "boundingBox": [ + 0.8019, + 1.7033, + 2.1445, + 1.7033, + 2.1445, + 2.1911, + 0.8019, + 2.1911 + ], + "page": 1, + "confidence": 0.953 + }, + "VendorName": { + "type": "string", + "valueString": "Contoso", + "text": "Contoso", + "boundingBox": [ + 0.5384, + 1.1583, + 1.4466, + 1.1583, + 1.4466, + 1.3534, + 0.5384, + 1.3534 + ], + "page": 1, + "confidence": 0.979 + } + } + } + ] + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "817989734" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeInvoicesCanAuthenticateWithTokenCredentialAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeInvoicesCanAuthenticateWithTokenCredentialAsync.json new file mode 100644 index 0000000000000..1803c9c3d4a27 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeInvoicesCanAuthenticateWithTokenCredentialAsync.json @@ -0,0 +1,587 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "147362", + "Content-Type": "application/pdf", + "traceparent": "00-c1d59f2bcf9b3a41af3fddaa50643aa6-446d8639636df848-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bd2dbeb8e5125f7327588cedf9b82521", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "f9a5958c-0b80-4346-85ca-33eb11abb3f7", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:21:48 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/f9a5958c-0b80-4346-85ca-33eb11abb3f7", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "220" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/f9a5958c-0b80-4346-85ca-33eb11abb3f7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c33cb852c48e7410c1c8d99275e9f4e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3e31025e-2f6b-4232-bea6-8b867368ac90", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:21:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "129" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:21:48Z", + "lastUpdatedDateTime": "2020-11-25T03:21:49Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/f9a5958c-0b80-4346-85ca-33eb11abb3f7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3ed0ddbdd9840eeee9b18b6dcf9a4901", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1bd3dc35-af68-4d48-973f-8285faad31ab", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:21:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:21:48Z", + "lastUpdatedDateTime": "2020-11-25T03:21:49Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/f9a5958c-0b80-4346-85ca-33eb11abb3f7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "58bb9c0fb16ff381adb9fc4a0ce0e93e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5480ea6f-d103-41e2-8927-1b0825883232", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:21:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:21:48Z", + "lastUpdatedDateTime": "2020-11-25T03:21:49Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/f9a5958c-0b80-4346-85ca-33eb11abb3f7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1c2fac64e7e7789cca2dd9dc39a3a426", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5fcf27b4-0f77-42d6-a6ed-4f517612d21f", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:21:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:21:48Z", + "lastUpdatedDateTime": "2020-11-25T03:21:49Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/f9a5958c-0b80-4346-85ca-33eb11abb3f7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d882d77e9c2e0b705bdc90cbdda30208", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "db5962a8-1fb0-4a6f-80de-96df6e997892", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:21:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:21:48Z", + "lastUpdatedDateTime": "2020-11-25T03:21:49Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/invoice/analyzeResults/f9a5958c-0b80-4346-85ca-33eb11abb3f7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "23084dc72d6b281a00428e41d8a4ba0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d1d1d6c-ddaf-4bf0-8ea4-7aa0460f8ac7", + "Content-Length": "3526", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:21:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T03:21:48Z", + "lastUpdatedDateTime": "2020-11-25T03:21:56Z", + "analyzeResult": { + "version": "2.1.0", + "readResults": [ + { + "page": 1, + "angle": 0, + "width": 8.5, + "height": 11, + "unit": "inch" + } + ], + "pageResults": [ + { + "page": 1, + "tables": [ + { + "rows": 3, + "columns": 6, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "text": "Invoice Number", + "boundingBox": [ + 0.5136, + 2.7829, + 1.8978, + 2.79, + 1.8978, + 3.311, + 0.5136, + 3.311 + ] + }, + { + "rowIndex": 0, + "columnIndex": 1, + "text": "Invoice Date", + "boundingBox": [ + 1.8978, + 2.79, + 3.2964, + 2.79, + 3.3036, + 3.311, + 1.8978, + 3.311 + ] + }, + { + "rowIndex": 0, + "columnIndex": 2, + "text": "Invoice Due Date", + "boundingBox": [ + 3.2964, + 2.79, + 4.7022, + 2.79, + 4.7094, + 3.311, + 3.3036, + 3.311 + ] + }, + { + "rowIndex": 0, + "columnIndex": 3, + "columnSpan": 2, + "text": "Charges", + "boundingBox": [ + 4.7022, + 2.79, + 6.1079, + 2.7829, + 6.1079, + 3.311, + 4.7094, + 3.311 + ] + }, + { + "rowIndex": 0, + "columnIndex": 5, + "text": "VAT ID", + "boundingBox": [ + 6.1079, + 2.7829, + 7.485, + 2.7829, + 7.4922, + 3.311, + 6.1079, + 3.311 + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "rowSpan": 2, + "text": "34278587", + "boundingBox": [ + 0.5136, + 3.311, + 1.8978, + 3.311, + 1.8978, + 3.8534, + 0.5136, + 3.8534 + ] + }, + { + "rowIndex": 1, + "columnIndex": 1, + "rowSpan": 2, + "text": "6/18/2017", + "boundingBox": [ + 1.8978, + 3.311, + 3.3036, + 3.311, + 3.3036, + 3.8534, + 1.8978, + 3.8534 + ] + }, + { + "rowIndex": 1, + "columnIndex": 2, + "rowSpan": 2, + "text": "6/24/2017", + "boundingBox": [ + 3.3036, + 3.311, + 4.7094, + 3.311, + 4.7165, + 3.8534, + 3.3036, + 3.8534 + ] + }, + { + "rowIndex": 1, + "columnIndex": 3, + "rowSpan": 2, + "columnSpan": 2, + "text": "$56,651.49", + "boundingBox": [ + 4.7094, + 3.311, + 6.1079, + 3.311, + 6.1079, + 3.8534, + 4.7165, + 3.8534 + ] + }, + { + "rowIndex": 1, + "columnIndex": 5, + "text": "PT", + "boundingBox": [ + 6.1079, + 3.311, + 7.4922, + 3.311, + 7.4922, + 3.6393, + 6.1079, + 3.6393 + ] + }, + { + "rowIndex": 2, + "columnIndex": 5, + "boundingBox": [ + 6.1079, + 3.6393, + 7.4922, + 3.6393, + 7.4922, + 3.8534, + 6.1079, + 3.8534 + ], + "text": "" + } + ], + "boundingBox": [ + 0.4985, + 2.7802, + 7.4933, + 2.7816, + 7.4913, + 3.8459, + 0.4966, + 3.8447 + ] + } + ] + } + ], + "documentResults": [ + { + "docType": "prebuilt:invoice", + "pageRange": [ + 1, + 1 + ], + "fields": { + "CustomerAddress": { + "type": "string", + "valueString": "1020 Enterprise Way Sunnayvale, CA 87659", + "text": "1020 Enterprise Way Sunnayvale, CA 87659", + "boundingBox": [ + 5.196, + 1.716, + 6.6526, + 1.716, + 6.6526, + 2.0359, + 5.196, + 2.0359 + ], + "page": 1, + "confidence": 0.992 + }, + "CustomerAddressRecipient": { + "type": "string", + "valueString": "Microsoft", + "text": "Microsoft", + "boundingBox": [ + 5.2045, + 1.5114, + 5.8155, + 1.5114, + 5.8155, + 1.6151, + 5.2045, + 1.6151 + ], + "page": 1, + "confidence": 0.989 + }, + "CustomerName": { + "type": "string", + "valueString": "Microsoft", + "text": "Microsoft", + "boundingBox": [ + 5.2045, + 1.5114, + 5.8155, + 1.5114, + 5.8155, + 1.6151, + 5.2045, + 1.6151 + ], + "page": 1, + "confidence": 0.989 + }, + "DueDate": { + "type": "date", + "valueDate": "2017-06-24", + "text": "6/24/2017", + "boundingBox": [ + 3.346, + 3.41, + 3.9514, + 3.41, + 3.9514, + 3.5144, + 3.346, + 3.5144 + ], + "page": 1, + "confidence": 0.989 + }, + "InvoiceDate": { + "type": "date", + "valueDate": "2017-06-18", + "text": "6/18/2017", + "boundingBox": [ + 1.9455, + 3.41, + 2.551, + 3.41, + 2.551, + 3.5144, + 1.9455, + 3.5144 + ], + "page": 1, + "confidence": 0.936 + }, + "InvoiceId": { + "type": "string", + "valueString": "34278587", + "text": "34278587", + "boundingBox": [ + 0.5397, + 3.411, + 1.1457, + 3.411, + 1.1457, + 3.5144, + 0.5397, + 3.5144 + ], + "page": 1, + "confidence": 0.842 + }, + "InvoiceTotal": { + "type": "number", + "valueNumber": 56651.49, + "text": "$56,651.49", + "boundingBox": [ + 5.3871, + 3.4047, + 6.0702, + 3.4047, + 6.0702, + 3.5321, + 5.3871, + 3.5321 + ], + "page": 1, + "confidence": 0.576 + }, + "VendorAddress": { + "type": "string", + "valueString": "1 Redmond way Suite 6000 Redmond, WA 99243", + "text": "1 Redmond way Suite 6000 Redmond, WA 99243", + "boundingBox": [ + 0.8019, + 1.7033, + 2.1445, + 1.7033, + 2.1445, + 2.1911, + 0.8019, + 2.1911 + ], + "page": 1, + "confidence": 0.953 + }, + "VendorName": { + "type": "string", + "valueString": "Contoso", + "text": "Contoso", + "boundingBox": [ + 0.5384, + 1.1583, + 1.4466, + 1.1583, + 1.4466, + 1.3534, + 0.5384, + 1.3534 + ], + "page": 1, + "confidence": 0.979 + } + } + } + ] + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "646946656" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeReceiptsCanAuthenticateWithTokenCredential.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeReceiptsCanAuthenticateWithTokenCredential.json new file mode 100644 index 0000000000000..f92399207bac4 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeReceiptsCanAuthenticateWithTokenCredential.json @@ -0,0 +1,360 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "279674", + "Content-Type": "image/jpeg", + "traceparent": "00-323ec6d538481f42945acb2713c6af42-1c250d0761c39c44-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b38724f0b1cb1f5488211e6f0726a81a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "50223713-da1b-493b-8f25-26ddc3d5690f", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:19:14 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyzeResults/50223713-da1b-493b-8f25-26ddc3d5690f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "315" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyzeResults/50223713-da1b-493b-8f25-26ddc3d5690f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d2b99d87848deaa8d820849ad91e948d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e14e26a7-025a-40d7-a820-123d88389765", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:19:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:19:14Z", + "lastUpdatedDateTime": "2020-11-25T03:19:14Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyzeResults/50223713-da1b-493b-8f25-26ddc3d5690f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0482a215b2ed6c86aedb97d8131bbd00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ebd6315-d74d-4c4d-b6d0-dd92c0006f43", + "Content-Length": "2560", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:19:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T03:19:14Z", + "lastUpdatedDateTime": "2020-11-25T03:19:16Z", + "analyzeResult": { + "version": "2.1.0", + "readResults": [ + { + "page": 1, + "angle": 0.2511, + "width": 1688, + "height": 3000, + "unit": "pixel" + } + ], + "documentResults": [ + { + "docType": "prebuilt:receipt", + "pageRange": [ + 1, + 1 + ], + "fields": { + "ReceiptType": { + "type": "string", + "valueString": "Itemized", + "confidence": 0.663 + }, + "MerchantName": { + "type": "string", + "valueString": "Contoso Contoso", + "text": "Contoso Contoso", + "boundingBox": [ + 349.3, + 241.3, + 1058, + 284.4, + 1033.5, + 687.1, + 324.8, + 644 + ], + "page": 1, + "confidence": 0.516 + }, + "MerchantAddress": { + "type": "string", + "valueString": "123 Main Street Redmond, WA 98052", + "text": "123 Main Street Redmond, WA 98052", + "boundingBox": [ + 319.9, + 689.9, + 750.7, + 697.5, + 747.8, + 865.6, + 317, + 858 + ], + "page": 1, + "confidence": 0.987 + }, + "MerchantPhoneNumber": { + "type": "phoneNumber", + "text": "123-456-7890", + "boundingBox": [ + 306, + 1005, + 617, + 1012, + 615, + 1069, + 305, + 1064 + ], + "page": 1, + "confidence": 0.99 + }, + "TransactionDate": { + "type": "date", + "valueDate": "2019-06-10", + "text": "6/10/2019", + "boundingBox": [ + 304, + 1224, + 506, + 1224, + 505, + 1289, + 303, + 1288 + ], + "page": 1, + "confidence": 0.986 + }, + "TransactionTime": { + "type": "time", + "valueTime": "13:59:00", + "text": "13:59", + "boundingBox": [ + 518, + 1225, + 629, + 1228, + 627, + 1290, + 517, + 1289 + ], + "page": 1, + "confidence": 0.97 + }, + "Items": { + "type": "array", + "valueArray": [ + { + "type": "object", + "valueObject": { + "Name": { + "type": "string", + "valueString": "8GB RAM (Black)", + "text": "8GB RAM (Black)", + "boundingBox": [ + 370.7, + 1781.5, + 731, + 1785, + 730.3, + 1854, + 370, + 1850.6 + ], + "page": 1, + "confidence": 0.916 + }, + "TotalPrice": { + "type": "number", + "valueNumber": 999, + "text": "$999.00", + "boundingBox": [ + 939, + 1784.6, + 1134.4, + 1788.3, + 1133, + 1863, + 937.6, + 1859.3 + ], + "page": 1, + "confidence": 0.559 + } + } + }, + { + "type": "object", + "valueObject": { + "Quantity": { + "type": "number", + "valueNumber": 1, + "text": "1", + "boundingBox": [ + 321, + 2021, + 348, + 2020, + 349, + 2084, + 322, + 2084 + ], + "page": 1, + "confidence": 0.858 + }, + "Name": { + "type": "string", + "valueString": "SurfacePen", + "text": "SurfacePen", + "boundingBox": [ + 360, + 2020, + 626, + 2014, + 628, + 2077, + 362, + 2083 + ], + "page": 1, + "confidence": 0.858 + }, + "TotalPrice": { + "type": "number", + "valueNumber": 99.99, + "text": "99.99", + "boundingBox": [ + 1007, + 2028, + 1127, + 2028, + 1126, + 2091, + 1007, + 2091 + ], + "page": 1, + "confidence": 0.386 + } + } + } + ] + }, + "Subtotal": { + "type": "number", + "valueNumber": 1098.99, + "text": "1098.99", + "boundingBox": [ + 963, + 2260, + 1136, + 2254, + 1137, + 2320, + 966, + 2325 + ], + "page": 1, + "confidence": 0.965 + }, + "Tax": { + "type": "number", + "valueNumber": 104.4, + "text": "$104.40", + "boundingBox": [ + 942.6, + 2367.5, + 1132, + 2363.7, + 1133.4, + 2434.2, + 944, + 2438 + ], + "page": 1, + "confidence": 0.714 + }, + "Total": { + "type": "number", + "valueNumber": 1203.39, + "text": "1203.39", + "boundingBox": [ + 955, + 2594, + 1124, + 2611, + 1115, + 2678, + 949, + 2661 + ], + "page": 1, + "confidence": 0.774 + } + } + } + ] + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "1870807606" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeReceiptsCanAuthenticateWithTokenCredentialAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeReceiptsCanAuthenticateWithTokenCredentialAsync.json new file mode 100644 index 0000000000000..fa69fd982733d --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeReceiptsCanAuthenticateWithTokenCredentialAsync.json @@ -0,0 +1,390 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyze?includeTextDetails=false", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "279674", + "Content-Type": "image/jpeg", + "traceparent": "00-3c8c1b720730cd45a306d11523b5b63a-2eb3c13bc111dd4d-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2f499722f6cfae1944cbc9bafc781c97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "69343081-5463-4eb6-8ec8-db6ac163343c", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:21:58 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyzeResults/69343081-5463-4eb6-8ec8-db6ac163343c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "379" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyzeResults/69343081-5463-4eb6-8ec8-db6ac163343c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ff1d5140737cde2d37dd737b66f7ab42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c7affff-3d6b-4b8f-9850-e06f5935c2b8", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:21:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "109" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:21:58Z", + "lastUpdatedDateTime": "2020-11-25T03:21:58Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyzeResults/69343081-5463-4eb6-8ec8-db6ac163343c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c5c0d21933dd876f1483a80ac9326bd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ef3909b1-d96a-4276-b92a-1a9c44bc6e4f", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:22:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-11-25T03:21:58Z", + "lastUpdatedDateTime": "2020-11-25T03:21:58Z" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/prebuilt/receipt/analyzeResults/69343081-5463-4eb6-8ec8-db6ac163343c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "938149113e1faf0a696bf7f1829e474d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c757373a-c3aa-466c-ac21-7bced8cc56fd", + "Content-Length": "2560", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:22:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T03:21:58Z", + "lastUpdatedDateTime": "2020-11-25T03:22:00Z", + "analyzeResult": { + "version": "2.1.0", + "readResults": [ + { + "page": 1, + "angle": 0.2511, + "width": 1688, + "height": 3000, + "unit": "pixel" + } + ], + "documentResults": [ + { + "docType": "prebuilt:receipt", + "pageRange": [ + 1, + 1 + ], + "fields": { + "ReceiptType": { + "type": "string", + "valueString": "Itemized", + "confidence": 0.663 + }, + "MerchantName": { + "type": "string", + "valueString": "Contoso Contoso", + "text": "Contoso Contoso", + "boundingBox": [ + 349.3, + 241.3, + 1058, + 284.4, + 1033.5, + 687.1, + 324.8, + 644 + ], + "page": 1, + "confidence": 0.516 + }, + "MerchantAddress": { + "type": "string", + "valueString": "123 Main Street Redmond, WA 98052", + "text": "123 Main Street Redmond, WA 98052", + "boundingBox": [ + 319.9, + 689.9, + 750.7, + 697.5, + 747.8, + 865.6, + 317, + 858 + ], + "page": 1, + "confidence": 0.987 + }, + "MerchantPhoneNumber": { + "type": "phoneNumber", + "text": "123-456-7890", + "boundingBox": [ + 306, + 1005, + 617, + 1012, + 615, + 1069, + 305, + 1064 + ], + "page": 1, + "confidence": 0.99 + }, + "TransactionDate": { + "type": "date", + "valueDate": "2019-06-10", + "text": "6/10/2019", + "boundingBox": [ + 304, + 1224, + 506, + 1224, + 505, + 1289, + 303, + 1288 + ], + "page": 1, + "confidence": 0.986 + }, + "TransactionTime": { + "type": "time", + "valueTime": "13:59:00", + "text": "13:59", + "boundingBox": [ + 518, + 1225, + 629, + 1228, + 627, + 1290, + 517, + 1289 + ], + "page": 1, + "confidence": 0.97 + }, + "Items": { + "type": "array", + "valueArray": [ + { + "type": "object", + "valueObject": { + "Name": { + "type": "string", + "valueString": "8GB RAM (Black)", + "text": "8GB RAM (Black)", + "boundingBox": [ + 370.7, + 1781.5, + 731, + 1785, + 730.3, + 1854, + 370, + 1850.6 + ], + "page": 1, + "confidence": 0.916 + }, + "TotalPrice": { + "type": "number", + "valueNumber": 999, + "text": "$999.00", + "boundingBox": [ + 939, + 1784.6, + 1134.4, + 1788.3, + 1133, + 1863, + 937.6, + 1859.3 + ], + "page": 1, + "confidence": 0.559 + } + } + }, + { + "type": "object", + "valueObject": { + "Quantity": { + "type": "number", + "valueNumber": 1, + "text": "1", + "boundingBox": [ + 321, + 2021, + 348, + 2020, + 349, + 2084, + 322, + 2084 + ], + "page": 1, + "confidence": 0.858 + }, + "Name": { + "type": "string", + "valueString": "SurfacePen", + "text": "SurfacePen", + "boundingBox": [ + 360, + 2020, + 626, + 2014, + 628, + 2077, + 362, + 2083 + ], + "page": 1, + "confidence": 0.858 + }, + "TotalPrice": { + "type": "number", + "valueNumber": 99.99, + "text": "99.99", + "boundingBox": [ + 1007, + 2028, + 1127, + 2028, + 1126, + 2091, + 1007, + 2091 + ], + "page": 1, + "confidence": 0.386 + } + } + } + ] + }, + "Subtotal": { + "type": "number", + "valueNumber": 1098.99, + "text": "1098.99", + "boundingBox": [ + 963, + 2260, + 1136, + 2254, + 1137, + 2320, + 966, + 2325 + ], + "page": 1, + "confidence": 0.965 + }, + "Tax": { + "type": "number", + "valueNumber": 104.4, + "text": "$104.40", + "boundingBox": [ + 942.6, + 2367.5, + 1132, + 2363.7, + 1133.4, + 2434.2, + 944, + 2438 + ], + "page": 1, + "confidence": 0.714 + }, + "Total": { + "type": "number", + "valueNumber": 1203.39, + "text": "1203.39", + "boundingBox": [ + 955, + 2594, + 1124, + 2611, + 1115, + 2678, + 949, + 2661 + ], + "page": 1, + "confidence": 0.774 + } + } + } + ] + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "2072477586" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModelAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(False).json similarity index 59% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModelAsync.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(False).json index 7bb19612c4ced..795440e0dcff8 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModelAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(False).json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e9fa012d6eb1bf44a55af930dca295cf-2f64ad1e2f03e84f-00", + "traceparent": "00-d66c3d8221c7f94c8af051d2fb5ecfab-08d13fcb9646e445-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3dea1c72d9654e1bbf589d51b29a5184", + "x-ms-client-request-id": "980fe7d86611dfda1c5c2df464207d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,82 +22,115 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "7ca74b91-b1c0-4f8e-9764-b6c01b5354f4", + "apim-request-id": "0f05a9e0-8c3f-4909-815e-b69b2c22b27d", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:39 GMT", - "Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/aee1a0be-ff0d-4f3a-9c1d-368b37b42573", + "Date": "Wed, 25 Nov 2020 03:58:39 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a4c5d632-c029-4df1-8934-d08a202e3a71", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/aee1a0be-ff0d-4f3a-9c1d-368b37b42573?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a4c5d632-c029-4df1-8934-d08a202e3a71?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b9bfccd719e555cdd7ea953d003c62ba", + "x-ms-client-request-id": "49cff8bfb49bf3e0f5b647f04d8674f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "689916f6-d579-47a4-bcea-7d1e69766d15", + "apim-request-id": "6f241eba-5a9e-4d33-a088-9b17d9c121d9", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:40 GMT", + "Date": "Wed, 25 Nov 2020 03:58:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "aee1a0be-ff0d-4f3a-9c1d-368b37b42573", + "modelId": "a4c5d632-c029-4df1-8934-d08a202e3a71", "status": "creating", - "createdDateTime": "2020-11-11T23:34:40Z", - "lastUpdatedDateTime": "2020-11-11T23:34:40Z" + "createdDateTime": "2020-11-25T03:58:38Z", + "lastUpdatedDateTime": "2020-11-25T03:58:38Z" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/aee1a0be-ff0d-4f3a-9c1d-368b37b42573?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a4c5d632-c029-4df1-8934-d08a202e3a71?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "559acc8dfef65fadca05e97250ce52c4", + "x-ms-client-request-id": "38c81ebfd69c22a0dd54901bf5275b99", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6ac69b9-9a48-4670-9cda-7b35edbfe78d", + "apim-request-id": "42e4cb75-1c72-451b-bdb2-6669e72eee84", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "a4c5d632-c029-4df1-8934-d08a202e3a71", + "status": "creating", + "createdDateTime": "2020-11-25T03:58:38Z", + "lastUpdatedDateTime": "2020-11-25T03:58:38Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a4c5d632-c029-4df1-8934-d08a202e3a71?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d2a0ecea1e092350071ca25a1ee99195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c7f246b1-24f6-4f71-8a11-59bdb15124e9", "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:41 GMT", + "Date": "Wed, 25 Nov 2020 03:58:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "217" }, "ResponseBody": { "modelInfo": { - "modelId": "aee1a0be-ff0d-4f3a-9c1d-368b37b42573", + "modelId": "a4c5d632-c029-4df1-8934-d08a202e3a71", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-11-11T23:34:40Z", - "lastUpdatedDateTime": "2020-11-11T23:34:41Z" + "createdDateTime": "2020-11-25T03:58:38Z", + "lastUpdatedDateTime": "2020-11-25T03:58:41Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -195,19 +228,19 @@ } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c8d460d901e44047bfa58033daddffda-1f3df79223dd734a-00", + "traceparent": "00-26a582fc2ca63d4e8959236efd34e178-75911dcdfedf4242-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "62929252783159024f95667a43de4e82", + "x-ms-client-request-id": "463538e74558e8ed58ad6c4724c5fdce", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -216,82 +249,115 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b492da66-52cb-4556-82d0-9f12624ab492", + "apim-request-id": "e80d29a7-b874-4753-9162-cc99d9b1811b", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:41 GMT", - "Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e2378d52-9c7e-4bfa-8375-5147fbefa765", + "Date": "Wed, 25 Nov 2020 03:58:41 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91643267-49ce-4844-8322-da4a89924d70", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "300" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e2378d52-9c7e-4bfa-8375-5147fbefa765?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91643267-49ce-4844-8322-da4a89924d70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e6c4e2f5fb00d98d1f5fefdf305b0408", + "x-ms-client-request-id": "6106ae5ba2e6a0eccea53080334503f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f13dc0da-8d37-4018-b1dd-172982f89b5d", + "apim-request-id": "4168998e-d3f0-4395-974b-a8a7c7bed357", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:41 GMT", + "Date": "Wed, 25 Nov 2020 03:58:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "91643267-49ce-4844-8322-da4a89924d70", + "status": "creating", + "createdDateTime": "2020-11-25T03:58:41Z", + "lastUpdatedDateTime": "2020-11-25T03:58:41Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91643267-49ce-4844-8322-da4a89924d70?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bc33fac215f1a441feb7795bb209fe42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "239ad66d-f1c9-459f-9528-198d261ef720", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "e2378d52-9c7e-4bfa-8375-5147fbefa765", + "modelId": "91643267-49ce-4844-8322-da4a89924d70", "status": "creating", - "createdDateTime": "2020-11-11T23:34:42Z", - "lastUpdatedDateTime": "2020-11-11T23:34:42Z" + "createdDateTime": "2020-11-25T03:58:41Z", + "lastUpdatedDateTime": "2020-11-25T03:58:41Z" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e2378d52-9c7e-4bfa-8375-5147fbefa765?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91643267-49ce-4844-8322-da4a89924d70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6dead19800aa1489c940056198321cec", + "x-ms-client-request-id": "70ffd41e30e245af4c9477b3156db512", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "419e6789-0086-443c-b34f-7f4822244e57", + "apim-request-id": "07bc3126-e67f-4496-8e9a-821141974072", "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:43 GMT", + "Date": "Wed, 25 Nov 2020 03:58:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "e2378d52-9c7e-4bfa-8375-5147fbefa765", + "modelId": "91643267-49ce-4844-8322-da4a89924d70", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-11-11T23:34:42Z", - "lastUpdatedDateTime": "2020-11-11T23:34:43Z" + "createdDateTime": "2020-11-25T03:58:41Z", + "lastUpdatedDateTime": "2020-11-25T03:58:43Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -389,7 +455,7 @@ } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -399,67 +465,101 @@ "Content-Length": "124", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2f1b404a99432a48a7d5aeb4ce111a78-67ff762b23408f43-00", + "traceparent": "00-be675573da07f64a9b716c7ad73b8c14-4b559201e92db045-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6e7c66b76b0a56c404b942d1882229f3", + "x-ms-client-request-id": "298478aa419146dc6c61632e2890eec4", "x-ms-return-client-request-id": "true" }, "RequestBody": { "modelIds": [ - "aee1a0be-ff0d-4f3a-9c1d-368b37b42573", - "e2378d52-9c7e-4bfa-8375-5147fbefa765" + "a4c5d632-c029-4df1-8934-d08a202e3a71", + "91643267-49ce-4844-8322-da4a89924d70" ], "modelName": "My composed model" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "9d2b2c6d-cfca-42e1-b086-83db246b51cd", + "apim-request-id": "ce12a498-3db9-4573-8033-6d36c1ddaa82", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:43 GMT", - "Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f", + "Date": "Wed, 25 Nov 2020 03:58:44 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "217" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "71e15d91e0f3f4d859af1cbff62c40ec", + "x-ms-client-request-id": "5f61eea6924692114aed705d9d8d8f90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81458726-9c37-4bf7-801c-274e8cb5a777", + "apim-request-id": "aab6c8f8-cb8f-46be-bba1-ee7e44e25ff7", + "Content-Length": "202", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "status": "creating", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "39b06602d584ddb0f8b80381cd811cbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c26f1961-9ac9-42f8-9e78-8e25a928c94e", "Content-Length": "2361", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:43 GMT", + "Date": "Wed, 25 Nov 2020 03:58:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "ff974adc-564c-4e36-bba3-a576d22c840f", + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", "modelName": "My composed model", "attributes": { "isComposed": true }, "status": "ready", - "createdDateTime": "2020-11-11T23:34:44Z", - "lastUpdatedDateTime": "2020-11-11T23:34:44Z" + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" }, "composedTrainResults": [ { @@ -553,7 +653,7 @@ "accuracy": 1.0 } ], - "modelId": "aee1a0be-ff0d-4f3a-9c1d-368b37b42573", + "modelId": "a4c5d632-c029-4df1-8934-d08a202e3a71", "errors": [] }, { @@ -647,743 +747,776 @@ "accuracy": 1.0 } ], - "modelId": "e2378d52-9c7e-4bfa-8375-5147fbefa765", + "modelId": "91643267-49ce-4844-8322-da4a89924d70", "errors": [] } ] } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-97fc050149faa740bd2d56f6453ab3f1-1470b4ee599ba64e-00", + "traceparent": "00-dec5415cc20bbd45882d8513bf9aff0e-d2208b3c30686041-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c928024396de2dfe0d9369f0bdb78ca7", + "x-ms-client-request-id": "270db3a6550c18cc67f2dea3d07fa9df", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "71a5eb6f-9a6d-4840-9ca9-bc0d043342dd", + "apim-request-id": "bcd526a9-ee0b-4f36-942c-9c73a3ce2c33", "Content-Length": "113", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:43 GMT", - "Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e0452198-58ec-4351-aaa3-30fd869b864d", + "Date": "Wed, 25 Nov 2020 03:58:45 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6d476a9d-95c9-4a25-8461-8877e922c45d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d", + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1605224084 + "expirationDateTimeTicks": 1606363126 } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copy", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "345", + "Content-Length": "346", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4edaea563052864099f7f78c025908a0-c85a392bb8dd2949-00", + "traceparent": "00-a03d1dbfb6fd6843818c7b4ffc223e40-9f6c88b4190e8b4e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3ad01217ab50d6f88d87145a4e0460d8", + "x-ms-client-request-id": "c22bd2d2b4e0d1403d83678d8e8fc4c9", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-centraluseuap", - "targetResourceRegion": "centraluseuap", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", "copyAuthorization": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d", + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1605224084 + "expirationDateTimeTicks": 1606363126 } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9fab98bd-eded-4c1b-a383-9a7180e037bf", + "apim-request-id": "1040321f-4669-45b6-a993-13152d333f40", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:45 GMT", - "Operation-Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyresults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "Date": "Wed, 25 Nov 2020 03:58:45 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyresults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "868e56785ff9fa155fb4646077e737a1", + "x-ms-client-request-id": "eab7b5d16880ac839a98d291f60c0d78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b38966e-338b-418f-be6c-40215afcaa19", + "apim-request-id": "ef2c7b3e-ffca-49e9-bccf-9eed6b973bac", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:45 GMT", + "Date": "Wed, 25 Nov 2020 03:58:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e3a87523065b979b0a513c5681a4de08", + "x-ms-client-request-id": "faae240f5a55f1da723be989ee3e89d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99e3e048-b946-421d-bd94-fc346d38aa6f", + "apim-request-id": "d9bb3c2f-b2c5-4bc2-a3f2-ad3a930fb07c", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:46 GMT", + "Date": "Wed, 25 Nov 2020 03:58:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "677890320529b7adfdd5db9c47985fa5", + "x-ms-client-request-id": "1ad2152ebfc8695e4e7f2848e2afdb30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f7dec92-fc95-4e05-9062-321ab2c46ddc", + "apim-request-id": "7bd78ce9-a77f-4cca-92e5-d45ade23acc8", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:47 GMT", + "Date": "Wed, 25 Nov 2020 03:58:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d93672507c5c727cbaf67ca823be79bb", + "x-ms-client-request-id": "697eee75cae17773dac577447efabe5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a308b6e6-08ca-4e12-94e8-85fd395eaff8", + "apim-request-id": "e0b3dd5a-afec-4a26-bd2b-076e3ecb73d1", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:49 GMT", + "Date": "Wed, 25 Nov 2020 03:58:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e62d5bd5d06f1d78c7f0e6852aff5071", + "x-ms-client-request-id": "e063fb0ef23a50b0c644acd631920fc2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1517f9dc-f9d3-4fbf-942b-19b4f8cabb36", + "apim-request-id": "3d1c95c8-4dde-4ced-be25-128015d09c20", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:50 GMT", + "Date": "Wed, 25 Nov 2020 03:58:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0e0696f2056db5ac1405ac328905943f", + "x-ms-client-request-id": "0013b96020bf63f5a15a4002471aeb53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a164d49-c91c-4866-84b8-39ede4161a44", + "apim-request-id": "87b03cf8-bd54-4aa8-a8f8-3fe02118304a", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:51 GMT", + "Date": "Wed, 25 Nov 2020 03:58:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ecc6205c786a8035fa18116b96f647ba", + "x-ms-client-request-id": "e639ccc1fa4c83f53d2ea39c1e9d4547", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86d18cab-f8ed-4e9f-b903-795fb3938e61", + "apim-request-id": "1e25436c-f56b-4670-a48d-3e3f59154b87", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:52 GMT", + "Date": "Wed, 25 Nov 2020 03:58:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8cb50aa56ab7d04dae78d269234693c2", + "x-ms-client-request-id": "c5e3b5b6bde7ee9b05ff3fe0b2ae09ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67294b0d-1650-45ec-835b-a0ac400c1600", + "apim-request-id": "e6e68fef-026f-4beb-884c-cb03a1acac81", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:54 GMT", + "Date": "Wed, 25 Nov 2020 03:58:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0a29a75c6439790761861454f3411f1d", + "x-ms-client-request-id": "6415585928586676c38fc2917c594504", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "642993ef-9fb7-465b-b54d-a14b0680f384", + "apim-request-id": "a2bf46a8-b15b-413b-9222-c899c7d7bb67", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:55 GMT", + "Date": "Wed, 25 Nov 2020 03:58:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7f8cf1bd074ff287d2f53df2a6cb5cb3", + "x-ms-client-request-id": "924cf8142536036c314be14cbb15d18f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b93cbcc-23a1-46e9-9598-92877ee82229", + "apim-request-id": "748259c2-a645-41a5-933a-3b23977f2450", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:56 GMT", + "Date": "Wed, 25 Nov 2020 03:58:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ee0e4f843dcd4181033c2b3155f8dd6c", + "x-ms-client-request-id": "c542f725e0878eef3e7d0158fa0a72ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52b0a780-bfbb-4f15-9fc6-fd0d2b98877d", + "apim-request-id": "bcd17987-6730-41cb-a0f7-112f87733e33", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:57 GMT", + "Date": "Wed, 25 Nov 2020 03:58:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "228" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "31acb55914b95572203638432615d395", + "x-ms-client-request-id": "b9cb3ab976623375ec11330d4629abad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b75b7ad-70b6-4e93-a14f-6e550d4197d0", + "apim-request-id": "91c5a3f1-58e7-4bec-9aa9-2bfab43f52cd", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:59 GMT", + "Date": "Wed, 25 Nov 2020 03:58:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a4cf60293033804f6f4b7c13dc559cd9", + "x-ms-client-request-id": "846b33be8016337c09bd53b923130827", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "610582b7-c7e4-4d4e-8eb8-23c00fc33d66", + "apim-request-id": "f2c9cc89-6963-4e67-8209-7a4b6405aa5e", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:35:00 GMT", + "Date": "Wed, 25 Nov 2020 03:58:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f198d1182a1f70f9dcb8cd97053e1aee", + "x-ms-client-request-id": "809335d9174aae2d820ed975ade24714", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71f1531c-2a98-497f-a505-dde1c0444d3d", + "apim-request-id": "9c168854-7afb-485e-b61f-dc24be4085c9", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:35:01 GMT", + "Date": "Wed, 25 Nov 2020 03:59:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f408956838282839652bc16e985f79ca", + "x-ms-client-request-id": "c79953d2ed9e3995be97b0a423bc0fd8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65856c7f-4469-488c-8073-083b38f642b7", + "apim-request-id": "ba46f0c8-0341-4bc4-bc95-e63284a78b81", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:35:02 GMT", + "Date": "Wed, 25 Nov 2020 03:59:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "552a5e99e27cfe75665fc87a63b87b31", + "x-ms-client-request-id": "10330c092a96a66306bd0107a6068626", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "719e45bc-c61b-4356-a410-06536965ef62", + "apim-request-id": "c5d2802f-0989-42e7-bfec-1c221ba3a0f2", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:35:04 GMT", + "Date": "Wed, 25 Nov 2020 03:59:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "46aa8e31a74ddfb097708bf4688bd87c", + "x-ms-client-request-id": "d0e73e75417aeb89a05ac2b367888bc6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3712793-b74a-45a5-8095-2de4737441a4", + "apim-request-id": "c25b76bb-79da-4bb3-be58-7954ed9bb916", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:35:05 GMT", + "Date": "Wed, 25 Nov 2020 03:59:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a6fd033fc413867120098dc970bec5ad", + "x-ms-client-request-id": "a06c01ff36aea77ef0f3c0e0eb8d92b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "41510c97-4997-4896-b1a5-d7135dcfc0bd", + "apim-request-id": "f4234c7e-cb16-4cc3-aa11-20d2f6c89859", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:35:06 GMT", + "Date": "Wed, 25 Nov 2020 03:59:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", + "copyResult": { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e42e89103fd5c75e8347703b67b03f7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "567aa9b1-05ae-4988-922b-459943c3a2e3", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:45Z", - "lastUpdatedDateTime": "2020-11-11T23:34:45Z", + "createdDateTime": "2020-11-25T03:58:46Z", + "lastUpdatedDateTime": "2020-11-25T03:58:46Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff974adc-564c-4e36-bba3-a576d22c840f/copyResults/88f8c9dd-0732-463c-88b2-2dbdaf14a356", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a716231a-6f7c-4004-a873-4748b39b00fc/copyResults/90c9647e-19c1-4d4b-a749-2f7610639a8a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0a3d90af32b4f27cad4abe0b578195db", + "x-ms-client-request-id": "a4083b32e5993e78c03fdf8680a80012", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff9aa8a9-9a15-4b44-b699-b679e4dbe920", - "Content-Length": "188", + "apim-request-id": "8527d5f2-dfea-404b-bab8-01eb816d54bc", + "Content-Length": "186", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:35:07 GMT", + "Date": "Wed, 25 Nov 2020 03:59:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-11-11T23:35:07.6809836Z", - "lastUpdatedDateTime": "2020-11-11T23:35:07.6809839Z", + "createdDateTime": "2020-11-25T03:59:07.87413Z", + "lastUpdatedDateTime": "2020-11-25T03:59:07.8741304Z", "copyResult": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d" + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e0452198-58ec-4351-aaa3-30fd869b864d?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6d476a9d-95c9-4a25-8461-8877e922c45d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e2e5d1a559b4af44b98d83c0522eff83-fda16a12e1f0be48-00", + "traceparent": "00-ab16b835fa55c34aa7023cb9cbde347b-ab6f6175cf46bd4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5f3a4b87d4ba6d1e1c24264419e76fd8", + "x-ms-client-request-id": "dda20ac7a659bff0a3a51d67c6423f40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d2b9aa94-57b2-4971-9a6e-812065ecf337", + "apim-request-id": "1214145c-24a4-414c-8cf9-bc72a5321c28", "Content-Length": "2361", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:35:07 GMT", + "Date": "Wed, 25 Nov 2020 03:59:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "e0452198-58ec-4351-aaa3-30fd869b864d", + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", "modelName": "My composed model", "attributes": { "isComposed": true }, "status": "ready", - "createdDateTime": "2020-11-11T23:34:44Z", - "lastUpdatedDateTime": "2020-11-11T23:34:44Z" + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" }, "composedTrainResults": [ { @@ -1477,7 +1610,7 @@ "accuracy": 1.0 } ], - "modelId": "aee1a0be-ff0d-4f3a-9c1d-368b37b42573", + "modelId": "a4c5d632-c029-4df1-8934-d08a202e3a71", "errors": [] }, { @@ -1571,61 +1704,61 @@ "accuracy": 1.0 } ], - "modelId": "e2378d52-9c7e-4bfa-8375-5147fbefa765", + "modelId": "91643267-49ce-4844-8322-da4a89924d70", "errors": [] } ] } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e2378d52-9c7e-4bfa-8375-5147fbefa765", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91643267-49ce-4844-8322-da4a89924d70", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-acdaa8fc2c14c942aad2f32a834ba105-35819646e50d6a48-00", + "traceparent": "00-52f97830a4529f4cb4f7e1af20703c18-3595618ea2b37648-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d844ddabce4e0cc8860bf9c806662f9e", + "x-ms-client-request-id": "afae43b4ee852b1d11ef249560d747da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "e20ca64d-dc96-400e-9624-ab3a67050318", + "apim-request-id": "45947c41-f67a-4de5-957b-fb7aaa5eea7e", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:35:08 GMT", + "Date": "Wed, 25 Nov 2020 03:59:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/aee1a0be-ff0d-4f3a-9c1d-368b37b42573", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a4c5d632-c029-4df1-8934-d08a202e3a71", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-40a81ee535c25e448c64ab2b2957f72f-1693d00805f8cf4d-00", + "traceparent": "00-f0195f716c39f1488634b5c4765139c4-e1a8b1195e049542-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2542b2736583dbf371d0ee8f0c38d8c6", + "x-ms-client-request-id": "5d745d47610d8b234a4901f4c711787d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "37a51168-d7ab-4112-b792-70f1bfded2ea", + "apim-request-id": "9099932a-a244-41b1-9d9a-77ce22a521af", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:35:08 GMT", + "Date": "Wed, 25 Nov 2020 03:59:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": [] } @@ -1633,9 +1766,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-centraluseuap.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-centraluseuap", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "centraluseuap", - "RandomSeed": "1604275986" + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "canadacentral", + "RandomSeed": "544850417" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(False)Async.json new file mode 100644 index 0000000000000..2d6ad32572bbb --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(False)Async.json @@ -0,0 +1,1807 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-70cc973a6f11d5408c1673d75f5d9a55-e7b803ea889f7e42-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f5163aa98a33026941408b9145898c67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "ed703a83-eff6-4e52-8ce7-73b77d9cf93c", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:01:39 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c15c1725-050b-44f3-b80d-81d65957b320", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c15c1725-050b-44f3-b80d-81d65957b320?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b3c8c3130cfc2b51166c9e2b8f04e2da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5fa4bcff-0fc8-4a47-b205-7b9ffe8517c1", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "c15c1725-050b-44f3-b80d-81d65957b320", + "status": "creating", + "createdDateTime": "2020-11-25T04:01:39Z", + "lastUpdatedDateTime": "2020-11-25T04:01:39Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c15c1725-050b-44f3-b80d-81d65957b320?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b617a6ba7b92b2435eea71ec28df7aa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a34227c9-bc99-41ad-976d-2a80c816d035", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "c15c1725-050b-44f3-b80d-81d65957b320", + "status": "creating", + "createdDateTime": "2020-11-25T04:01:39Z", + "lastUpdatedDateTime": "2020-11-25T04:01:39Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c15c1725-050b-44f3-b80d-81d65957b320?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d02a7850fb169d24e8eadfc7ec3d723d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d26efae5-f857-446b-b496-8f5cd91d3001", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "c15c1725-050b-44f3-b80d-81d65957b320", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:39Z", + "lastUpdatedDateTime": "2020-11-25T04:01:41Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-25a22365ab0cfb40a5be316b329fbfa1-d1798d0deedea547-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9fd7b15ed67298d47f1654119a650337", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "9aad3446-a3f1-4283-b9f5-89475604fc6f", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:01:42 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/75060eb4-f6a5-41a1-92e3-6de5a0fafe83", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/75060eb4-f6a5-41a1-92e3-6de5a0fafe83?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "16dbf4f211dabfc3817acda79c7bc620", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "089faba8-7c93-4cdb-943d-a4a04007baff", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "75060eb4-f6a5-41a1-92e3-6de5a0fafe83", + "status": "creating", + "createdDateTime": "2020-11-25T04:01:42Z", + "lastUpdatedDateTime": "2020-11-25T04:01:42Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/75060eb4-f6a5-41a1-92e3-6de5a0fafe83?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "778e3478db077a37a3915100a6120283", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9fb38ea-95f8-486e-bfd8-6422ff667aa5", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "75060eb4-f6a5-41a1-92e3-6de5a0fafe83", + "status": "creating", + "createdDateTime": "2020-11-25T04:01:42Z", + "lastUpdatedDateTime": "2020-11-25T04:01:42Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/75060eb4-f6a5-41a1-92e3-6de5a0fafe83?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f7d4a7e75c624d62ed181df7082dfc03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f3a22573-e1c5-438f-8fef-376791d53b23", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "75060eb4-f6a5-41a1-92e3-6de5a0fafe83", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:42Z", + "lastUpdatedDateTime": "2020-11-25T04:01:43Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "124", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-ead0fc0382b7754da5c4ae111c9a673f-c0b70aab8e10be4f-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6699334f8cd6172fbc607348c0c3186f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "modelIds": [ + "c15c1725-050b-44f3-b80d-81d65957b320", + "75060eb4-f6a5-41a1-92e3-6de5a0fafe83" + ], + "modelName": "My composed model" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "c4715c8b-b34c-4440-b092-cd5fed2fe32b", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:01:44 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "100" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f4c04978cea71bbdd14189efbd3f7176", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3eab196-4cce-421a-a4fe-9c70cf072be2", + "Content-Length": "202", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5b577d8d-4837-4344-9262-8cf22ad2551f", + "modelName": "My composed model", + "status": "creating", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "72b04d959b785aad78bd3b01e81a8c29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3de547af-95f0-46ec-be9e-b3482d333be7", + "Content-Length": "2361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5b577d8d-4837-4344-9262-8cf22ad2551f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + "composedTrainResults": [ + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "c15c1725-050b-44f3-b80d-81d65957b320", + "errors": [] + }, + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "75060eb4-f6a5-41a1-92e3-6de5a0fafe83", + "errors": [] + } + ] + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-40820551f823e74bbd48588e1030fa18-57cf462ac72f434a-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bf7fadff076d815c757d9495023f597c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "f3edbe2d-b919-47ce-a10b-7c94f7577009", + "Content-Length": "113", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:46 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ea28130e-938b-4629-b878-4b20b4946dc6", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363306 + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "346", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-e4c7deb9d3e8f74293230d07156d25ed-e477eee0f5f3354b-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "73b3fdefa613dcf69c657be993bc33b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363306 + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6f3adcd5-b09b-45ef-ac22-f47ea53ae67f", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:01:46 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyresults/393184a9-42ba-41dc-990e-886fd6c20b95", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0ff060b4b1c08d09f02ffcfa06185838", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d5c5dc7d-f8ee-41b1-bbe6-823b859adb6b", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "eb12be6319665916b7a323078c72edb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "95f2b205-22c4-41d5-9a70-e4828a5aa0f6", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a2e0dd4a494f3dbcf32682e3a9fbd583", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb0e0961-a337-4ae1-a614-e08c105e309f", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d586430c47a99b504996581d8e01017d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6965ddc5-4203-4106-8f90-d5e111d3137e", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "29b04341b53719e801d4f7409732afbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c00e7bde-a693-4360-86ba-c6ecd91ade83", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "48fa9fcd18ec03108c4559b8f19faef2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23f7aa96-dc5c-4527-b95b-92dea9187dc0", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "66a10425ac4b574b5a6cd3d44f100416", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a980e105-39ee-4771-986e-a646fe0c44ff", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ef4f9ce7b806299132ad9cf25c2f2862", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e1856031-9201-47ba-8503-6ad33fb49166", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "921b05264990217053a3ee7f443bb37c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "547a9dde-f2ff-44a3-8361-311f8c3108b9", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "54d14241bf4f6cec7278339e0f59fa2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6c2ed9a6-2249-426b-9160-18daae997027", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4aae714371f59d852c2e9c62ca11e5f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ccc565d9-648c-4806-92d7-e490d9260500", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1ab120f9d45d661318ae1f1815d211fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e5c2fccf-a9cb-426e-9584-f4b7673d1d7d", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d33cc3a9688ccf86bd3327202389a260", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a9ad62df-84d4-4f17-9869-302e7fc85fc5", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "eea43c92e0a76ecd5d473246516c885a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "505fc6e5-3085-42c0-a3e7-f3e8ebc67fb3", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "06b8a21c12d5916a99e15d29adf3438e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3af920b-7259-4b3f-973d-d11322ee3612", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d985bf0c232ec952f6cd754536407e50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "49615915-d430-4cff-9685-3cf5e0b5e343", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8003ccab9bd0808bd11254c583a3c16a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b60bb123-b570-4c0b-878e-bf00573b0e9d", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "923aa303aee6f92c4fef10079c255b59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "57157a3d-f140-42d2-9b44-53c8993fae7a", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e07d0c63c2ef70bd3305081bce8c4553", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6101e302-494e-4fac-bf78-f0be9c6f4a17", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "92410b0ceb06fd69a00a31e18a83e4ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6298e20-6e5c-4cde-8c87-52b94e57f44c", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:01:46Z", + "lastUpdatedDateTime": "2020-11-25T04:01:46Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5b577d8d-4837-4344-9262-8cf22ad2551f/copyResults/393184a9-42ba-41dc-990e-886fd6c20b95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7662fbb7e025417ae6c95ee1a6102bc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94fb0b68-cb84-4b5b-ab29-3dc016e769fc", + "Content-Length": "188", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T04:02:08.6704367Z", + "lastUpdatedDateTime": "2020-11-25T04:02:08.6704371Z", + "copyResult": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ea28130e-938b-4629-b878-4b20b4946dc6?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d594477591649b44b365093f1383ac57-52b527781782664d-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "90fbbda9c8e47753a38040e491dce6b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f7c8a780-de4c-4bb7-83d3-5a6599dea228", + "Content-Length": "2361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + "composedTrainResults": [ + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "c15c1725-050b-44f3-b80d-81d65957b320", + "errors": [] + }, + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "75060eb4-f6a5-41a1-92e3-6de5a0fafe83", + "errors": [] + } + ] + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/75060eb4-f6a5-41a1-92e3-6de5a0fafe83", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-da50c10d1e5dc149804350b9476ae6ea-4897986c6e568d4f-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d2645c21cf2a2c2d9000ac3c8d87578f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "00501362-6599-4d85-b550-326351a1c34a", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:02:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c15c1725-050b-44f3-b80d-81d65957b320", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d53edefa4668954b8770e610b552a7a1-14d1f2fc5bb5aa4c-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "cd376edf5388eec7a8ead2a5a095af09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "dadbb9ff-993c-42c9-a65d-7fd1d969bda8", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:02:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "canadacentral", + "RandomSeed": "1191233535" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(True).json new file mode 100644 index 0000000000000..c020527345f0e --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(True).json @@ -0,0 +1,1840 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-4bc2590c0ba13b459655ce567f9d2507-bd19187cfa50bf4a-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "840db0fd68799b73ac430cf1e4ae5407", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "c165d5f7-68dd-4a70-9c6e-aa8632a4d011", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:58:04 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6b92da48-38f4-4f0d-99dd-8beda79cfbd8", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6b92da48-38f4-4f0d-99dd-8beda79cfbd8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "628690078e2ceac4a07b63f1395ea078", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f1963cbb-e182-4203-ab39-45648a750660", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "193" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "6b92da48-38f4-4f0d-99dd-8beda79cfbd8", + "status": "creating", + "createdDateTime": "2020-11-25T03:58:05Z", + "lastUpdatedDateTime": "2020-11-25T03:58:05Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6b92da48-38f4-4f0d-99dd-8beda79cfbd8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3a8785b3fa0f5589df5bc79fcc4300bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "83f3d216-63d3-462d-8606-8e4c11a7f3a5", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "6b92da48-38f4-4f0d-99dd-8beda79cfbd8", + "status": "creating", + "createdDateTime": "2020-11-25T03:58:05Z", + "lastUpdatedDateTime": "2020-11-25T03:58:05Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6b92da48-38f4-4f0d-99dd-8beda79cfbd8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1b8f27626fc56eb6eb23e4fe0481624e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5e188c9e-1b32-4745-94f0-106de2bf06a5", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "6b92da48-38f4-4f0d-99dd-8beda79cfbd8", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:05Z", + "lastUpdatedDateTime": "2020-11-25T03:58:08Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-02ea279f193fd84598f23b44587975f3-13a86dcddb1fee48-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5e3d94a319260df7073082d0c7251d5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "484495f8-67ee-4e4b-82ac-36922f16a676", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:58:08 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1ee4b934-5907-403b-b3f8-e186297f01e7", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1ee4b934-5907-403b-b3f8-e186297f01e7?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "118fa67b85ce43b3ce194fec158b515d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2aa11afc-e792-4523-bf99-f8cb9267f4dd", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "1ee4b934-5907-403b-b3f8-e186297f01e7", + "status": "creating", + "createdDateTime": "2020-11-25T03:58:08Z", + "lastUpdatedDateTime": "2020-11-25T03:58:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1ee4b934-5907-403b-b3f8-e186297f01e7?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "38fc79f9a106489630821494ede6a7c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "100bc68b-637c-4b66-9da6-2a0f85a0f330", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "1ee4b934-5907-403b-b3f8-e186297f01e7", + "status": "creating", + "createdDateTime": "2020-11-25T03:58:08Z", + "lastUpdatedDateTime": "2020-11-25T03:58:08Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1ee4b934-5907-403b-b3f8-e186297f01e7?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5d83880551f21d7fe1f9900cca0bf77b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7341d08d-7b3a-40d3-9e1d-d5b5e47adbeb", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "1ee4b934-5907-403b-b3f8-e186297f01e7", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:08Z", + "lastUpdatedDateTime": "2020-11-25T03:58:10Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Authorization": "Sanitized", + "Content-Length": "124", + "Content-Type": "application/json", + "traceparent": "00-4b8473c1b920d940b0709c304dd6d2e6-d7e864c5d0e9dd42-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4dd725dfe528d9560f46e14c711e56e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "modelIds": [ + "6b92da48-38f4-4f0d-99dd-8beda79cfbd8", + "1ee4b934-5907-403b-b3f8-e186297f01e7" + ], + "modelName": "My composed model" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "6658705a-a84e-4bef-b3af-26bbd717cdf4", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:58:11 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8de68872f307a86bf9de570c118a7d25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d49c07f4-f649-47af-b072-0f8c898cb254", + "Content-Length": "202", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "169" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "status": "creating", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:11Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c7b5988b590e209d31a94dab6f33acc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb84dda3-ccf5-4bbf-a2ef-35ef5e2d57ce", + "Content-Length": "2361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + "composedTrainResults": [ + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "6b92da48-38f4-4f0d-99dd-8beda79cfbd8", + "errors": [] + }, + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "1ee4b934-5907-403b-b3f8-e186297f01e7", + "errors": [] + } + ] + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3a546e1aafb47848a3efa10f13c672f6-e3945f92f8296746-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "429aa8a26924eb74b92e53498e49c885", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "4b5bc8cd-34b5-4508-aef9-e9f6b8e68e99", + "Content-Length": "113", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:13 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/979aa077-25d5-4ed5-b538-6456a7d1088d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363093 + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "346", + "Content-Type": "application/json", + "traceparent": "00-779f5d5dc38fdc4f995519e4a8f68d15-95529ba5df043645-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d9c0bcc98f6918d9ebc55b5ea6c038c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363093 + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "7eac0088-8ef4-4851-b490-e6534608f792", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:58:13 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyresults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "75" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "696994323bef210023c90de0055392e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3a9d6033-f7f0-47af-9bd5-e27d117b7da6", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b3e2c7e0d2721359ce81575f0d1645f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7ad8d1cd-0a73-4799-b6a5-66b5d18b52e3", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f9178df65fe08d96bc9eb59f81f91397", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "751d732a-8f5d-465e-be3d-345ff9c0fd0b", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "de7d733384dd5f533b559a6ee4a0140d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "70e09ca7-e70d-43a1-a4ca-332ce3dd047f", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "77e91484983c80073154f7d31db992d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "31af8e45-1c8a-4106-8481-9687313c98c5", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "992bbf6e6698711b3ab7be8bc528a91b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "de51b14e-4d1a-42d7-8dc4-90349fc37962", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6c1aa78a9b0f9a5b6cfcad898d7f4281", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b0fe050-30a6-4b66-896c-4ce94211f7fb", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "24ffc4c27a751e74f8783c84da7cbb08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8346206a-3068-476d-a355-ed50a29c7962", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7549dcab259fd2c664912d9cb892e4bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99a3f6ab-cf3d-43a8-876c-77cb489aab09", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "00c83d75852810a533fc74965ed6c0ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18c4422f-34a7-4880-9079-34f709d4dc0d", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b0dea441cc359de1fe2dbfe44cd86565", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be023d08-5643-42e3-8df8-b42d8123b689", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9c0e8194bab426e0363842a3b12f748d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cabee289-ad4d-49a8-8c5c-fc3477d6b76e", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "145b3dd033b4a9855b2b02fbc5c1c45a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "32b1ffa7-13a6-4e14-972f-7b580c8aa094", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dd020f9623c7863bc4b77afd893eeccf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd7bab36-27db-468a-81a0-54b39833274f", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0e1332b8517d61b0fb654189b8e46174", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f7b8441f-9f6e-4c46-8322-08b3ec57df30", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a20ce774962dacc602d450fcb9881f1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "85ce02fe-bbb6-4bb6-87ac-feb6465fc42f", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9242323fb5ae45dd5ea1e162e2b2cedf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "151a6e0e-4428-4425-98b0-ac9356c87c3b", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a18805564a3122a16c660ca801b4a773", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "70c869df-586b-4114-b29b-7b51feed52bc", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "854a2345cea2bfc60ac7438cb563ca4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "939b2925-37ff-4e56-830a-486d0ce4350d", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b4a570067efff5eb91202647a93444aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9fc6e0a-da87-45d6-ab0e-ba8f0c2bfd19", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "be1d6ef94868883d3ec9976a06156c08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd670503-185c-4636-a2b4-f18ff8087c61", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:58:14Z", + "lastUpdatedDateTime": "2020-11-25T03:58:14Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4/copyResults/96eb83e0-c89b-4c60-92eb-b85b72a0f545", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "90a2bc9cf30ec7733854f481a77e15d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "78be1704-9c6d-4c7e-a011-b9ceeae5044b", + "Content-Length": "188", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T03:58:37.7322042Z", + "lastUpdatedDateTime": "2020-11-25T03:58:37.7322048Z", + "copyResult": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/979aa077-25d5-4ed5-b538-6456a7d1088d?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c6a43f6927917642ab22857126115546-1f944087ccbd6f47-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "479299820b46bde7331c7536e681ee7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "233ae2df-f5f2-4b92-bfec-f052dde409e6", + "Content-Length": "2361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:58:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + "composedTrainResults": [ + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "6b92da48-38f4-4f0d-99dd-8beda79cfbd8", + "errors": [] + }, + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "1ee4b934-5907-403b-b3f8-e186297f01e7", + "errors": [] + } + ] + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1ee4b934-5907-403b-b3f8-e186297f01e7", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b09ab27625daab4ba2f7f3797ac185c8-24335ce5390bc444-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "edab1eb3b492059bfa55861353bbe1c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "2511530a-22e7-4fa5-b9c6-607936c69435", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:58:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6b92da48-38f4-4f0d-99dd-8beda79cfbd8", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-2e0a3f638ff3754e9edac7bd35eeac10-dc6786e2959bda49-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6ce7c2b4258290c2d4e45cf17e3de0b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "2c405ea3-fb73-4946-8c1f-538881314f31", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:58:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "169" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "canadacentral", + "RandomSeed": "1436769230" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(True)Async.json similarity index 61% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(True)Async.json index 0886e42154c8e..bdd90314232a0 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyComposedModel(True)Async.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a6575f318557fb47b15723a3d9a143a0-9ebb6783216ef143-00", + "traceparent": "00-84b4509fc42ae8498c2fb46d5e496e52-61a9e36373de6541-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3fb16cf60e331487b03c0ec25fd1c7e8", + "x-ms-client-request-id": "a7835110136da8c7c65cfccd43636d66", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,82 +22,82 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "5f6f7101-7ee3-4245-b1c4-ca0ea28e6c1a", + "apim-request-id": "209da1e1-8dd3-4876-942e-b13bfcfaa8cd", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:12 GMT", - "Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b", + "Date": "Wed, 25 Nov 2020 04:01:16 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/427f010b-c69b-49ce-90d0-d74ce3f4ce69", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/427f010b-c69b-49ce-90d0-d74ce3f4ce69?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0bc7f6fa3cfb4033ced19b7ac9d0c6e2", + "x-ms-client-request-id": "5fd083e306dd7856a1ba6e807d2b53a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e86a0d6-f4c8-4327-abbe-085155b0728f", + "apim-request-id": "5724cf2c-5ade-480b-b55e-de77abaf336d", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:12 GMT", + "Date": "Wed, 25 Nov 2020 04:01:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b", + "modelId": "427f010b-c69b-49ce-90d0-d74ce3f4ce69", "status": "creating", - "createdDateTime": "2020-11-11T23:34:12Z", - "lastUpdatedDateTime": "2020-11-11T23:34:12Z" + "createdDateTime": "2020-11-25T04:01:17Z", + "lastUpdatedDateTime": "2020-11-25T04:01:17Z" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/427f010b-c69b-49ce-90d0-d74ce3f4ce69?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3ffa90cd5af2e0feded0a6c0b3617301", + "x-ms-client-request-id": "b9bd76e22aea82028af7bebf39affbb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51a85a0e-0781-41d3-8ed4-b8bf0960b72d", + "apim-request-id": "2d161934-55f5-4841-ad7a-6ad436132c16", "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:13 GMT", + "Date": "Wed, 25 Nov 2020 04:01:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "modelInfo": { - "modelId": "d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b", + "modelId": "427f010b-c69b-49ce-90d0-d74ce3f4ce69", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-11-11T23:34:12Z", - "lastUpdatedDateTime": "2020-11-11T23:34:14Z" + "createdDateTime": "2020-11-25T04:01:17Z", + "lastUpdatedDateTime": "2020-11-25T04:01:19Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -195,19 +195,19 @@ } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-198237a50a47eb45a7cf24560ca19bd2-9774c64b42de1046-00", + "traceparent": "00-6ecaffa7d438b347891f12bcb87f65c9-23489fef9d0e0547-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "657ad44c055ab9eb38717161720d4be0", + "x-ms-client-request-id": "020db52298490ac9fa0a05b3a4472a9a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -216,115 +216,115 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "6c903a98-0132-40d4-a26b-5b634b99e83b", + "apim-request-id": "e364299b-c32e-48f3-8da4-d925e42bc52a", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:14 GMT", - "Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/69c9ee9e-2978-4e5e-8a26-de50ca781375", + "Date": "Wed, 25 Nov 2020 04:01:19 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/060463a8-d62a-4b10-b520-f1068e466400", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/69c9ee9e-2978-4e5e-8a26-de50ca781375?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/060463a8-d62a-4b10-b520-f1068e466400?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cff52c7688d69ff5f7e72c2b96728d6c", + "x-ms-client-request-id": "ccea5409b4a5b97c804dd5e647973ef2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17f3b948-eb35-4530-82e3-87e4dc6fb61f", + "apim-request-id": "acbdd590-8cf0-45e5-b78e-28b2498047d3", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:14 GMT", + "Date": "Wed, 25 Nov 2020 04:01:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "69c9ee9e-2978-4e5e-8a26-de50ca781375", + "modelId": "060463a8-d62a-4b10-b520-f1068e466400", "status": "creating", - "createdDateTime": "2020-11-11T23:34:14Z", - "lastUpdatedDateTime": "2020-11-11T23:34:14Z" + "createdDateTime": "2020-11-25T04:01:19Z", + "lastUpdatedDateTime": "2020-11-25T04:01:19Z" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/69c9ee9e-2978-4e5e-8a26-de50ca781375?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/060463a8-d62a-4b10-b520-f1068e466400?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f42e9a5d6156c788a4400681e89c6dd1", + "x-ms-client-request-id": "c75db5be501e4a5eadb2bedf244fdd43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74f72ab8-0cec-4bb9-b001-19cf520c931e", + "apim-request-id": "a36fddef-1a83-4625-9cdd-c27e4d954167", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:15 GMT", + "Date": "Wed, 25 Nov 2020 04:01:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "69c9ee9e-2978-4e5e-8a26-de50ca781375", + "modelId": "060463a8-d62a-4b10-b520-f1068e466400", "status": "creating", - "createdDateTime": "2020-11-11T23:34:14Z", - "lastUpdatedDateTime": "2020-11-11T23:34:14Z" + "createdDateTime": "2020-11-25T04:01:19Z", + "lastUpdatedDateTime": "2020-11-25T04:01:19Z" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/69c9ee9e-2978-4e5e-8a26-de50ca781375?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/060463a8-d62a-4b10-b520-f1068e466400?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "864ac684a36bc42adeda6d73d8c023c6", + "x-ms-client-request-id": "e5b624cc2ec46d12395382fbc3e3c263", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "451cc62f-f1c6-4bc7-917b-67a9cd4c7b18", + "apim-request-id": "023beec4-d24b-4f64-a6a3-fb7720011b8a", "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:17 GMT", + "Date": "Wed, 25 Nov 2020 04:01:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "69c9ee9e-2978-4e5e-8a26-de50ca781375", + "modelId": "060463a8-d62a-4b10-b520-f1068e466400", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-11-11T23:34:14Z", - "lastUpdatedDateTime": "2020-11-11T23:34:17Z" + "createdDateTime": "2020-11-25T04:01:19Z", + "lastUpdatedDateTime": "2020-11-25T04:01:21Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -422,77 +422,111 @@ } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ "application/json", "text/json" ], + "Authorization": "Sanitized", "Content-Length": "124", "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c94bbc98ee348740954816f49f98532b-e5a14ac808504f40-00", + "traceparent": "00-496edb3f7f3ab347873ab75609e2d9d7-137728b3d17f384a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d70404e457de1489a42e2b968274b75b", + "x-ms-client-request-id": "eef412cc62e9b87cf59f1ef2f59c9531", "x-ms-return-client-request-id": "true" }, "RequestBody": { "modelIds": [ - "d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b", - "69c9ee9e-2978-4e5e-8a26-de50ca781375" + "427f010b-c69b-49ce-90d0-d74ce3f4ce69", + "060463a8-d62a-4b10-b520-f1068e466400" ], "modelName": "My composed model" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "be5d635c-28a2-4a5e-b5fa-d37eac0e585a", + "apim-request-id": "3760945c-3a5d-43d3-b271-582016425433", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:18 GMT", - "Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd", + "Date": "Wed, 25 Nov 2020 04:01:22 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "287" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d0a65b790627ba007069157cf314eee3", + "x-ms-client-request-id": "2319916f59e08f2da3f08ecace6287ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5f4fb8b-bf26-4cd6-8c02-5db48ecdb9a3", + "apim-request-id": "598276dc-5520-4ff8-85ae-be9b54ed3cba", + "Content-Length": "202", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "71" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "3926013a-fa9d-406f-a099-3dd90859a9bd", + "modelName": "My composed model", + "status": "creating", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "11135bf0ef5a695aa7fdef240f1f789c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27664fca-60b1-4670-b40c-e568fd447d2b", "Content-Length": "2361", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:18 GMT", + "Date": "Wed, 25 Nov 2020 04:01:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "3cada616-5da3-43df-b0b3-dc7db5f1bbcd", + "modelId": "3926013a-fa9d-406f-a099-3dd90859a9bd", "modelName": "My composed model", "attributes": { "isComposed": true }, "status": "ready", - "createdDateTime": "2020-11-11T23:34:18Z", - "lastUpdatedDateTime": "2020-11-11T23:34:18Z" + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" }, "composedTrainResults": [ { @@ -586,7 +620,7 @@ "accuracy": 1.0 } ], - "modelId": "d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b", + "modelId": "427f010b-c69b-49ce-90d0-d74ce3f4ce69", "errors": [] }, { @@ -680,644 +714,578 @@ "accuracy": 1.0 } ], - "modelId": "69c9ee9e-2978-4e5e-8a26-de50ca781375", + "modelId": "060463a8-d62a-4b10-b520-f1068e466400", "errors": [] } ] } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-78f8c96e69472c4bb6c3704e6502528b-479fafcaa2426d42-00", + "Authorization": "Sanitized", + "traceparent": "00-58c06f35617603498a276cf5c41d5c82-b33cc6d7edf20c43-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e49d3f1d95982df23c35e23d7893426a", + "x-ms-client-request-id": "318c50be9fc97382e5644bf9d4b1ea93", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "7d8d3eaf-5ebb-4274-9ab2-7ff531b5ea52", + "apim-request-id": "ae1c009d-3293-436e-a7a6-44bcceb71743", "Content-Length": "113", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:18 GMT", - "Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b2332f77-8d71-404b-82ee-f2e54c2c67cb", + "Date": "Wed, 25 Nov 2020 04:01:23 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42b8f7e1-b823-4055-aa7b-5ab326bd08c1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb", + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1605224058 + "expirationDateTimeTicks": 1606363283 } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copy", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "345", + "Authorization": "Sanitized", + "Content-Length": "346", "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-61c0537b5a3d394dae3cac623bfc7c71-fbd3bde547a4a943-00", + "traceparent": "00-310cb8ebe6c1b3408e474bf7e408551c-dd78e23a9e75fa41-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7df91223521add9e03496775420d218f", + "x-ms-client-request-id": "9a025418838980d737af7be269087f83", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-centraluseuap", - "targetResourceRegion": "centraluseuap", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", "copyAuthorization": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb", + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1605224058 + "expirationDateTimeTicks": 1606363283 } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "41a46ba3-de6c-469f-88fb-b40294955058", + "apim-request-id": "678a3cd1-21c9-47bc-b816-ad6c8d1f4eb6", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:18 GMT", - "Operation-Location": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyresults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "Date": "Wed, 25 Nov 2020 04:01:23 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyresults/92057303-ed7f-4dbf-b01f-605630ce0908", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4278473fd2d7e4c2697894f223c341dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8139d5d7-6faf-46ca-b017-a24d6b973093", - "Content-Length": "173", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", - "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" - } - } - }, - { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e159aa27711bcbc9a1bfe04e2e7deb2f", + "x-ms-client-request-id": "7d0cf17756d65000d8a02cf5a36095f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "803eb672-c087-4673-88bf-efbdfdb9d08e", + "apim-request-id": "a037aed4-7ff8-4fe1-90fe-93c1636c6bd5", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:20 GMT", + "Date": "Wed, 25 Nov 2020 04:01:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "31fe5214001b50924f1514a2beacba40", + "x-ms-client-request-id": "bb0c5c13de1c3a12790bf91923a009dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4dd8069-37a8-44a8-831f-920a0efd6ffb", + "apim-request-id": "7733e8d8-c701-4907-93df-1f2ab4965631", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:21 GMT", + "Date": "Wed, 25 Nov 2020 04:01:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", - "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" - } - } - }, - { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "974d8a083fb3cd747eaca018f273b5eb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "53f5142b-7b13-450b-a129-e9d5473e9ee1", - "Content-Length": "173", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d0dd648c10c427c1170991055d270cf4", + "x-ms-client-request-id": "e281c7e46da4c1bd54b2c1e957e1dcd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a45f3879-971f-43f0-89d4-2f76969924b5", + "apim-request-id": "703c5b3b-9f84-4418-903c-545c734301e5", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:23 GMT", + "Date": "Wed, 25 Nov 2020 04:01:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a4469f05542fd57bde31b36e5f7a5ddc", + "x-ms-client-request-id": "0dcf851ac4fc9967ded103ca5ce62d38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbb3d385-564a-456e-ab39-20dc57272ee2", + "apim-request-id": "99a0ae1d-300b-49d3-9024-fe72feced49a", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:24 GMT", + "Date": "Wed, 25 Nov 2020 04:01:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5915285fe9cef87bc9267faaad6f6f56", + "x-ms-client-request-id": "dc105096b2dfa5519e4a676a1c29e398", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f64b602-bc81-4904-b5d6-dd1423b2c0be", + "apim-request-id": "34d770dc-c4cf-4764-9be4-cd57f47c5ebd", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:26 GMT", + "Date": "Wed, 25 Nov 2020 04:01:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5213ab9f112d38bce908f2935d52c89d", + "x-ms-client-request-id": "9dff222efcd020e060e704d369f2656d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40ddd8aa-fe6f-41da-bc7a-c26a184d678a", + "apim-request-id": "7f3d5c74-1f13-476c-bf2b-73e736e819a7", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:28 GMT", + "Date": "Wed, 25 Nov 2020 04:01:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "35a5b5abb3111b25244edb09d4d0276e", + "x-ms-client-request-id": "0652898400d068f733296eb15dfc7db5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2db56fe-29c9-4a9a-a8ae-a97ba756c22e", + "apim-request-id": "af45209d-fb10-43b1-b0e7-589f51276c98", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:29 GMT", + "Date": "Wed, 25 Nov 2020 04:01:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b3cf5cc10b674eae6bdc6fc6f6e89a76", + "x-ms-client-request-id": "3a9c6bee8fe7996870f07bf7ae7e3cac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3006d76f-b310-4f65-b5da-c03969d3f0ca", + "apim-request-id": "0679c48a-df97-480e-aa03-4db0f73e7f94", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:30 GMT", + "Date": "Wed, 25 Nov 2020 04:01:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f8fee25d3ac9ec4486f72ede36b26318", + "x-ms-client-request-id": "92e6fae5dcd62dc72b976aa68e2ec264", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01db65fa-cc58-4a2d-91cc-cdded1bace0a", + "apim-request-id": "baf0bbb7-0b8c-4e05-a06e-d5afbff295b4", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:31 GMT", + "Date": "Wed, 25 Nov 2020 04:01:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "00d284e11483a0350757c935435f253c", + "x-ms-client-request-id": "fee44e6a2a56f48521b996df85ffb9b5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57dbae6e-f511-4639-b4d9-34e9bb62659a", + "apim-request-id": "a2547f9c-ca27-42d4-a461-6711ebdf6a3b", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:32 GMT", + "Date": "Wed, 25 Nov 2020 04:01:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f2ab64b32fd286a517e22d70dccf18b8", + "x-ms-client-request-id": "63cbc2edea1611dea36f0f5025c10b41", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92a88942-52cf-498f-8f16-87af26126beb", + "apim-request-id": "3b17d1de-7adc-4b3e-a9af-6c097ac504f4", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:33 GMT", + "Date": "Wed, 25 Nov 2020 04:01:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "72e557789a1548f3ad5ef172700fa826", + "x-ms-client-request-id": "5f8d172e3e99ba5574f1711d46e7a72b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf341ae1-e392-4ab1-90b8-41a5a1489160", + "apim-request-id": "66adf148-a877-484d-947d-7b19c291f2f0", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:36 GMT", + "Date": "Wed, 25 Nov 2020 04:01:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d22bf1d17106b246de4be9a0e7c4c337", + "x-ms-client-request-id": "cbb8b5dd5e63804d70d35ae61b35cf5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6873d42d-3421-4742-bd73-5c8b434ba50e", + "apim-request-id": "811385fc-b731-4875-84a0-6482135caba0", "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:37 GMT", + "Date": "Wed, 25 Nov 2020 04:01:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-11-11T23:34:19Z", - "lastUpdatedDateTime": "2020-11-11T23:34:19Z", + "createdDateTime": "2020-11-25T04:01:24Z", + "lastUpdatedDateTime": "2020-11-25T04:01:24Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3cada616-5da3-43df-b0b3-dc7db5f1bbcd/copyResults/a2e23594-a8f5-4196-9fdc-b5672abe67d2", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3926013a-fa9d-406f-a099-3dd90859a9bd/copyResults/92057303-ed7f-4dbf-b01f-605630ce0908", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ecbc103eb37a1926706345733d321508", + "x-ms-client-request-id": "6eb154ae5a72af1b6c10ef2478c1cbbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ae53c0d-81a1-429a-ba3e-62cb90aeda8e", + "apim-request-id": "cebf374e-c428-4381-b749-5518929d736f", "Content-Length": "188", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:38 GMT", + "Date": "Wed, 25 Nov 2020 04:01:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-11-11T23:34:37.5805091Z", - "lastUpdatedDateTime": "2020-11-11T23:34:37.5805094Z", + "createdDateTime": "2020-11-25T04:01:38.4944085Z", + "lastUpdatedDateTime": "2020-11-25T04:01:38.4944087Z", "copyResult": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb" + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1" } } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b2332f77-8d71-404b-82ee-f2e54c2c67cb?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42b8f7e1-b823-4055-aa7b-5ab326bd08c1?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-869363f055eb7f4a8b5c5b1a962fbb68-d681d98e990e5c4d-00", + "Authorization": "Sanitized", + "traceparent": "00-f1a136f1c106084a8724fc31b743695a-d23cf1a300a1f34d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "eb9e063a45a407b2103393c9b15361e8", + "x-ms-client-request-id": "7072e3c73f09cfdec90ceec6e46f9e3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa9a981f-eb56-4e84-911a-6f43ca6c9df9", + "apim-request-id": "b97687c7-3f4a-4aca-957d-eb9a4257c025", "Content-Length": "2361", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:34:38 GMT", + "Date": "Wed, 25 Nov 2020 04:01:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "modelInfo": { - "modelId": "b2332f77-8d71-404b-82ee-f2e54c2c67cb", + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1", "modelName": "My composed model", "attributes": { "isComposed": true }, "status": "ready", - "createdDateTime": "2020-11-11T23:34:18Z", - "lastUpdatedDateTime": "2020-11-11T23:34:18Z" + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" }, "composedTrainResults": [ { @@ -1411,7 +1379,7 @@ "accuracy": 1.0 } ], - "modelId": "d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b", + "modelId": "427f010b-c69b-49ce-90d0-d74ce3f4ce69", "errors": [] }, { @@ -1505,61 +1473,61 @@ "accuracy": 1.0 } ], - "modelId": "69c9ee9e-2978-4e5e-8a26-de50ca781375", + "modelId": "060463a8-d62a-4b10-b520-f1068e466400", "errors": [] } ] } }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/69c9ee9e-2978-4e5e-8a26-de50ca781375", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/060463a8-d62a-4b10-b520-f1068e466400", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f0e24ba950f7fa48a3d75ecee2a6ad1f-8f338c76b6c0ed4c-00", + "traceparent": "00-e31aae9cce527143aa5aa1a1948c6c78-8e8a70c07e2dc94b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6033b99abc531eaccb1262a32cd274ac", + "x-ms-client-request-id": "f16f1222393583b899095f526f2907af", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "db6e1c45-f7d7-41e4-b389-99159b4aa194", + "apim-request-id": "f5a506f7-3173-4b39-b04a-4628079c5172", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:38 GMT", + "Date": "Wed, 25 Nov 2020 04:01:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-centraluseuap.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1c04d01-ec1d-4ad6-8f32-6d705c78cb2b", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/427f010b-c69b-49ce-90d0-d74ce3f4ce69", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c278824a89765646940b6df3104d684f-3c98271dd1cc1144-00", + "traceparent": "00-162c818e02dc494599eeda6648d34560-88175c21c1131147-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201111.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e166e135d826f9935eb4db471f5c671c", + "x-ms-client-request-id": "381f9d075ec26e5676e2a4656b55cbfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "7fabdecd-ba25-453f-866f-265d3b812602", + "apim-request-id": "70552690-7ead-461a-8851-b0a660631935", "Content-Length": "0", - "Date": "Wed, 11 Nov 2020 23:34:39 GMT", + "Date": "Wed, 25 Nov 2020 04:01:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -1567,9 +1535,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-centraluseuap.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-centraluseuap", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "centraluseuap", - "RandomSeed": "321642945" + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "canadacentral", + "RandomSeed": "607145082" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(False).json new file mode 100644 index 0000000000000..42f80a7db8c9c --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(False).json @@ -0,0 +1,904 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-f62c96a896c7d144a34b53ab365e081f-dcd1389407b7f944-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "484b3e446b0327a8cb64d48c9458ec3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "e06ebb70-05ef-485b-9b37-da2222edefdd", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:59:39 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dea9ec25bbf4b3cec3110aa52c5895ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "13a4c2d4-be59-4b3d-bace-3f980e6271b6", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "67dde2a6-6b65-427e-8eb0-0e1e2e374987", + "status": "creating", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:39Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "52cca5287746aac93390ca2c1117a6d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1da369db-a990-48d0-a949-8beffa00bc70", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "67dde2a6-6b65-427e-8eb0-0e1e2e374987", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-4b7248d9d7ea8a408f0e4c4c064e6a36-6c63c833b65ff84b-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8e6fbd15a2c888996f9785f16003fb72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "fba00dc3-2208-4c8f-80e2-f29d5be50a4f", + "Content-Length": "113", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:41 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/9ddc7158-3bad-478a-8b5e-94b5deedced3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363181 + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "346", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-6c9b5dfcf24fd34b9b5b1ff3fab13835-2faa1dd644d0cb4b-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ef64e7cf998badf822feab63f1a2a1ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363181 + } + }, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "a73c44c6-f58e-4718-bffa-611a5ff02767", + "Content-Length": "356", + "Content-Type": "application/json", + "Date": "Wed, 25 Nov 2020 03:59:41 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - Copy Custom Model Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "346", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-6c9b5dfcf24fd34b9b5b1ff3fab13835-2faa1dd644d0cb4b-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ef64e7cf998badf822feab63f1a2a1ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363181 + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "314f1be2-89a7-4b99-ab84-1ddd3e489bc4", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:59:46 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyresults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6e90386b07e886240c44e3aef2d74a30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b72a9352-fa45-4b4e-b338-237fe23ea470", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "295d5795b7b27b47c4c26bc9f73697cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a676853-921b-4cf1-a39c-dfad95f03b46", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2886d8f58c73c88ac3dee247b54abb4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "50079e97-19ab-4e8a-b2cb-a9a86f635370", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9acd7ab47844b4f9f014aa269c5a8ed5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d234fd0-2516-4609-a833-b9809c7b9a8e", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "19b816ac215108bdcd9565d4d400c579", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1bfe2a7b-3351-4b65-8dba-dc19c859e948", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7c152007fd687d88ded1375ee2642c69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "821337d6-1686-47f1-acce-739e29d541de", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9f9a0d4fa19292f9bdc5ccaf1325e0f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "46498f67-448c-4409-b822-7d7333024a62", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7b1f304e1244af6d8e3a3a80ea5e2669", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "81b15ec7-f41c-41c8-838e-64976e44e743", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c684fc69266565e72782bfa330d86ab9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "79fa9880-cf7d-4b6b-b86a-ac2ad8859aeb", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b20f46f1b0453d24a0ea10576678a85e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "82e5cca3-f713-4ebd-9c3f-38e1abe810ba", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1646639e19a0288a48b954c253c97fb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "66a1ccb3-891a-4792-a6a3-bd79ff703902", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a38f81d0744fb824d747267b168fffae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2f9b667-6b82-444a-ae05-11134f909b27", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "cd0460da5392d718bce7698b5b62e9d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c9689b81-3e85-46c0-8a31-e2e7c5dca6ce", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e487596b04e92a0f3f8d3f58f20f12b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "242e378a-321c-4b44-ad20-dd0eccf918e0", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f3e7a6bab1c47c2468b7e7670b985d75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7e947ef-b0cd-4e48-a0c0-a09b0f54d451", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bc10505d1a08d6c450da8e0414c0e4ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "770b5278-8b37-4c8a-85b2-3797e6a65525", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:47Z", + "lastUpdatedDateTime": "2020-11-25T03:59:47Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987/copyResults/0b3fe336-a38e-497f-acda-c5425f3bf5ff", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b5d1afd4f67bb911350a7c311da71fa6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "31eafa84-e100-479c-8648-98d214c081b2", + "Content-Length": "187", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T04:00:08.2764377Z", + "lastUpdatedDateTime": "2020-11-25T04:00:08.276438Z", + "copyResult": { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/67dde2a6-6b65-427e-8eb0-0e1e2e374987", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-5f27fad6abfd9c4b8e8ed490aaaec9d5-1f28a490153ad845-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a2faca3055ff9fb1e111a2ea231f68a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "23fbd8ad-2536-4fa9-9054-2fbfaaac5236", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "canadacentral", + "RandomSeed": "1691151667" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(False)Async.json new file mode 100644 index 0000000000000..a658feb26eb9f --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(False)Async.json @@ -0,0 +1,1069 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-f208f7beed7f73479f505910c8beeb0c-a25f5582ba48e543-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "744d5a51502e0138414b4555d45cb493", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "c113fade-95f6-40bd-b39d-35bbce083e15", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:02:39 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "33ccadfb370165eb62f27dfcf059c062", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "263a8757-1581-47a3-b29d-fd1054fe5dc2", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "1bb82a89-d082-40ed-9957-5e6e439fd5d5", + "status": "creating", + "createdDateTime": "2020-11-25T04:02:39Z", + "lastUpdatedDateTime": "2020-11-25T04:02:39Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3b4e2c87daf4dcf7f2208742d7fba0af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f08e9cb3-5fae-4b67-ba5e-dc084e4dbde1", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "1bb82a89-d082-40ed-9957-5e6e439fd5d5", + "status": "creating", + "createdDateTime": "2020-11-25T04:02:39Z", + "lastUpdatedDateTime": "2020-11-25T04:02:39Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "92296706feb51a346fe7123bd23b10e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c95d8cbf-7e8d-42ac-8f8b-34a9e847b277", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "1bb82a89-d082-40ed-9957-5e6e439fd5d5", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:39Z", + "lastUpdatedDateTime": "2020-11-25T04:02:41Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-ce4cee4e376b674fabd98c55039ccc23-7da015f62129104f-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a7cde38b790d209eb6f040e1afa98e66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "7ca76aee-1136-4825-9e79-225dd2ced322", + "Content-Length": "113", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:42 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/462caf6e-2c79-486d-a9de-1be3d3c1924d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363362 + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "346", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-eaa7dc27c74c0741aef6bd24705c5140-bbd3c4947855894c-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "89f6cd522d2f88acf834cc0cc8bb0ab6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363362 + } + }, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "c629d07b-f2c6-4749-b39e-04e552cd3ef5", + "Content-Length": "356", + "Content-Type": "application/json", + "Date": "Wed, 25 Nov 2020 04:02:42 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - Copy Custom Model Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "346", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-eaa7dc27c74c0741aef6bd24705c5140-bbd3c4947855894c-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "89f6cd522d2f88acf834cc0cc8bb0ab6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363362 + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "83d351e6-aeda-4569-abe4-fc6b28221642", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:02:46 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyresults/5c04edde-51ce-49e3-b318-11f23121883c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f3b69e0ff82d8da2c908dcc5be526ac5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "631857f9-a993-4cff-8aaa-75117ed91f33", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "04e9ab5986455eb93645aed9ac9158fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c37fa2c1-f04f-4e23-b80d-202312508ef6", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "11d189e69af259392b68c02650e7caa6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "944c38e6-62fd-4578-8a16-41765f0fe262", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1db306ca05d28871e558bde84ac8e037", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7027c700-359f-436a-9c7b-2230d88e5fe7", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "34dee1b05880bfd37290d8dcc6920d4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "29973241-51da-4243-843f-f443fc478cde", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a60f077a3bdee12818482c99dd500f63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "566335cd-ac1d-47a5-8c98-272b00c54aad", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6f7689889608712632f4ab422c94c252", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4984df72-084d-4c1c-a479-38554ff0345c", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "426d6d4a39b97558b8fd1c372c39e221", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "749fca92-376d-4a92-a7b2-55d909ae30a7", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3d5475809e1ce446e19e73ea8fe6b483", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f2e1e30f-23bb-42ec-9dc0-f04a2b7b4388", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6f4eda86cce24ea93000b60a7aee44f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "719a64e9-b2ab-4116-8bd8-6cf0364aa5b3", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b7c189128440ac352689601bc66ee5d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "21fb4e86-35da-4682-b951-a9939bbdba49", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "52b1984972ebb43ecb050d1ce83c6af3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9fe69f67-c4e3-4a30-b939-92f9c01fe63f", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:02:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "05d87b59fd250142a4a248596c8e88c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "73e30c04-070e-42f5-8030-8b482ca3031c", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e1c1e41af13d9f0d4b0deb3a7719c4ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8eb197c9-cd4c-4900-abd5-6d956e13d6ff", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4bc16c1fdf964cac56afae482ae5473d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb6c7bef-b6c1-40b8-af35-76562f1cbc66", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "03014b7d887b67b66d38ba1811078a8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "43a14f3b-1686-4d47-93e0-897900130cf1", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ff395ddd3dcd3b2b37748b8d43c47465", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb48e709-796b-4e20-8349-bba46ae2fdfd", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2bbcaec5c018966fb659dd5d24933a4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b1f18ed5-2462-44fa-a887-1279d67edd1c", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "cd6a232448ab406f1fc5cb06fc2824a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "20b80b45-c5c8-4461-b4d1-0f3969881e66", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "635254c45f4b1d72eea249735fce16a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3409cf5f-e274-46d3-8fd9-e3efae65acfd", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T04:02:46Z", + "lastUpdatedDateTime": "2020-11-25T04:02:46Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5/copyResults/5c04edde-51ce-49e3-b318-11f23121883c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "20693d3aa7597dba3e7b0b52f4699a8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "95db8457-da7e-4238-94aa-f9c03ab632ae", + "Content-Length": "188", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T04:03:08.9698321Z", + "lastUpdatedDateTime": "2020-11-25T04:03:08.9698324Z", + "copyResult": { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1bb82a89-d082-40ed-9957-5e6e439fd5d5", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b3a06f9b4fbfd545bc415288388d5c06-d69402ca94282142-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d0993435d740c502b04ddf08fefbe151", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "5628a26b-9e0b-4605-976b-9357637630c6", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "canadacentral", + "RandomSeed": "159884097" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(True).json new file mode 100644 index 0000000000000..68a48e41d6701 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(True).json @@ -0,0 +1,1036 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-1640c8424f4a754a8ed46a687340018a-68a071369d2e8f44-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "637729fc4295c7059773585abb49f44c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "c37894cd-7c31-40ed-a0c6-012236e15be5", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:59:08 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "03a93379c4d094f88b1fb399653703db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a8586c6c-cf9d-4a75-a185-4a8135836953", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "29b2d9f6-3726-4ced-815a-c5e6625cc791", + "status": "creating", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:09Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b62fde2f52870ee6919ca481f5f15237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b4f3f07f-6dcd-49f3-a1e4-173e769224fe", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "29b2d9f6-3726-4ced-815a-c5e6625cc791", + "status": "creating", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:09Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0acb7b0f1e8b374531e3d8758e6b625f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9fd757c7-27d4-401c-9abd-53b248a29160", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "29b2d9f6-3726-4ced-815a-c5e6625cc791", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-049efcf1bb16fb41a9e954616eaa37e7-1b135291a5ecc84e-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dd2a7d703d1a27c44d9b723420779e99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "af780673-e5a5-4625-8e3d-bee20dedb481", + "Content-Length": "113", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:11 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363152 + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "346", + "Content-Type": "application/json", + "traceparent": "00-c20ea3dee1cf104a9361504c4ce3c3b1-8ad971def9957740-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ea8a7cccf86b114f99f785a479707f25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363152 + } + }, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "fe2eabe6-f90e-4c53-b043-379b0bbc41ca", + "Content-Length": "84", + "Content-Type": "application/json", + "Date": "Wed, 25 Nov 2020 03:59:11 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Rate limit is exceeded. Try again in 1 seconds." + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "346", + "Content-Type": "application/json", + "traceparent": "00-c20ea3dee1cf104a9361504c4ce3c3b1-8ad971def9957740-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ea8a7cccf86b114f99f785a479707f25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363152 + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "65a7b3fb-ebf9-4e4b-99f4-ff460b36d5f9", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:59:14 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyresults/9111253b-6542-42d3-b713-830c015a4090", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7811443975c7d11db6a4bcf0ac1017b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "923b8c07-d509-4414-b97e-17d225d2ba0d", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "12a93e4478e077f42d184422b81faddd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d677e78-6a3a-4a97-8d33-440b97759326", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dbfa4c1b256657d25eb833c73b5f6588", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9cd62938-2a95-42d8-92f9-709f596c9dbb", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3a5fcbe06dc7c14550994bae31fa1996", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "db481c7c-4239-474e-9691-7f93282f6a89", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5fd4dff73b161f536c51b327442c3cce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41007ef8-bb6d-43a2-b4a2-50e66674d0bd", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ec42bbb372bfae1607388acdd9242564", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "336c9e92-b133-480c-99f6-df91a87e96e9", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5ccf9c9f058aa4727840ce75b91d7d23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53969f19-976d-4c50-a35a-01cdfcf60862", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "75fa7d5d2cb785d6c82558ddb0864548", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aff24e4f-55ed-4f91-a433-99a909c0e1c3", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a7874f2cdf5dae43499d747fa3a1f5ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eee31c5a-8562-42b3-9370-6a1370442c0e", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5c6f66bbb02973acc54a9465ac94f3f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d63b7d58-6cb0-4949-9a8e-5b325bdfd0a2", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6a4986fad5957dc6394c2c19b757e126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c192f6c-8cb9-4164-8513-7f789c4ed383", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "49216e30e9167c1ea214e1124bde01b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "840a245f-aade-4bb6-9a2e-2a8ce44f1419", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1d8582aa8a58e6549ff222dd8392bb6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55adb5e7-3d9f-4ca9-b711-2079eee59086", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3d346d69a97210db68ccc780f3b4325b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9266e5bd-16b6-49f4-8332-6a729ace2a2b", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "356f774bc4d1a5ce193ba924c641f810", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "befedd1f-73cd-4dce-8d28-6325d5b125f6", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dda97358c3a90042a674b58bc3d3f2eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7eb5e94-4ad1-45d1-bb5d-ba5ce107703d", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0c91c6bf8622a49d9f8e243600b74926", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a204cb6-06f4-43a2-b4e7-87aacfdec909", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8028b6d4540b87b2356f8e5c0f42e146", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "97673302-6e77-4de5-a3f9-efba7a6d60de", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0064be49ecafd2edd6043e1a9f0b00ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c75fff26-2ad6-41d1-9655-d6dff73fcd97", + "Content-Length": "173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-11-25T03:59:14Z", + "lastUpdatedDateTime": "2020-11-25T03:59:14Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791/copyResults/9111253b-6542-42d3-b713-830c015a4090", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0cb68e2a72ab6ae01409d6b3f840955c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be1b8a22-d902-4161-b63f-b28ec3dd15f4", + "Content-Length": "188", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 03:59:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "status": "succeeded", + "createdDateTime": "2020-11-25T03:59:38.0264671Z", + "lastUpdatedDateTime": "2020-11-25T03:59:38.0264674Z", + "copyResult": { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/29b2d9f6-3726-4ced-815a-c5e6625cc791", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b55613ca50f81e41a4a0a1af719ca72d-418fb787aa5d1740-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "41edddac4953e877c956aa061697e82a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "a5fc6822-483a-4ec2-80a5-8a24d2083645", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 03:59:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "canadacentral", + "RandomSeed": "1864577777" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(True)Async.json similarity index 50% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelAsync.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(True)Async.json index 9364fdca5b73f..0ca91b8233ea9 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel(True)Async.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0b659444f972fc40824b9e5b97d8b316-0fd0fd0cf9d3bd46-00", + "traceparent": "00-a46dd8c29e2e6145b5e9b041a8739bbd-272ae75096051542-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7ec0752ff6d8bf4c284be304b6c10a29", + "x-ms-client-request-id": "960bf905b6ed5e5813c39ee87f331fc3", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,115 +22,115 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "7732388c-2397-40ef-bac4-3b2715efcea3", + "apim-request-id": "ddeb8810-21d4-4e9f-8f0b-4d1a13cc7e94", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:22:18 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7", + "Date": "Wed, 25 Nov 2020 04:02:09 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5394ae0f16206d4675cbc09496e4c32f", + "x-ms-client-request-id": "2fcae74cae8604f2aa3f3bb354dd6e29", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b0991107-063f-49b1-8445-270a22037f9c", + "apim-request-id": "f469302e-3269-41be-be85-80ab9ce60824", + "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:18 GMT", + "Date": "Wed, 25 Nov 2020 04:02:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "e6f18909-6770-4cac-83c9-2dd20a90aec7", + "modelId": "446384f8-273d-40f8-8c50-911d4f5bd9fa", "status": "creating", - "createdDateTime": "2020-10-30T13:22:18Z", - "lastUpdatedDateTime": "2020-10-30T13:22:18Z" + "createdDateTime": "2020-11-25T04:02:09Z", + "lastUpdatedDateTime": "2020-11-25T04:02:09Z" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4338f56301c572b00595988fd897d996", + "x-ms-client-request-id": "aa3b60aa6d3ea5594ddc12d8e7070e4e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b13b57d-8f06-43fe-8a46-2af4fdbaf076", + "apim-request-id": "dc085462-b7b6-433a-b553-9cdfbc667c00", + "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:19 GMT", + "Date": "Wed, 25 Nov 2020 04:02:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "e6f18909-6770-4cac-83c9-2dd20a90aec7", + "modelId": "446384f8-273d-40f8-8c50-911d4f5bd9fa", "status": "creating", - "createdDateTime": "2020-10-30T13:22:18Z", - "lastUpdatedDateTime": "2020-10-30T13:22:18Z" + "createdDateTime": "2020-11-25T04:02:09Z", + "lastUpdatedDateTime": "2020-11-25T04:02:09Z" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "32558181864319172e52090d36b72844", + "x-ms-client-request-id": "20fdeb4b0f7b56c60707ebae7ba40a35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c098a9c1-e5db-4af9-a6a5-5a62d2271fa1", + "apim-request-id": "b59e90a6-012c-4942-9019-06f423252ba7", + "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:21 GMT", + "Date": "Wed, 25 Nov 2020 04:02:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "e6f18909-6770-4cac-83c9-2dd20a90aec7", + "modelId": "446384f8-273d-40f8-8c50-911d4f5bd9fa", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-30T13:22:18Z", - "lastUpdatedDateTime": "2020-10-30T13:22:19Z" + "createdDateTime": "2020-11-25T04:02:09Z", + "lastUpdatedDateTime": "2020-11-25T04:02:11Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,592 +228,601 @@ } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1a20e6dcb3f66d4c8fc985beb605880b-5d554ee0fa0a2340-00", + "Authorization": "Sanitized", + "traceparent": "00-0316e70f513ddb48a17aed6acf8b138c-3d98bbcc892d1546-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c1a1b487c7880d63fd224d8b7db795dd", + "x-ms-client-request-id": "1e3d745575f7df858d25e1a99c191ca3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "8b00a3db-a96e-4384-8174-d16b3b2d1497", + "apim-request-id": "a6671d37-c915-403b-8952-50e02e00f0c5", + "Content-Length": "113", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:21 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/43be25f8-aa98-4523-ab6b-120e4b29c7bf", + "Date": "Wed, 25 Nov 2020 04:02:12 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8c7462c7-15e4-4760-87e6-42e2953b6f96", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1604150541 + "expirationDateTimeTicks": 1606363332 } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copy", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "352", + "Authorization": "Sanitized", + "Content-Length": "346", "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3c9b1173531ce4e8f01961aaf6117cc-2688eb47e624754d-00", + "traceparent": "00-41e96f2f429e024d878441783ecdc3d0-dcd4354efe92eb41-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "141329f1908fddebdd1f1573f8a33b4d", + "x-ms-client-request-id": "6967ed304ee09aae99e4a33681ab2aa9", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", - "targetResourceRegion": "westcentralus", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", "copyAuthorization": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1604150541 + "expirationDateTimeTicks": 1606363332 } }, - "StatusCode": 202, + "StatusCode": 429, "ResponseHeaders": { - "apim-request-id": "be819698-4739-4bf7-902f-6119ba4a653f", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:22:21 GMT", - "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyresults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "apim-request-id": "a6249a2b-43ce-40f9-a24e-2f78f24d4c35", + "Content-Length": "85", + "Content-Type": "application/json", + "Date": "Wed, 25 Nov 2020 04:02:12 GMT", + "Retry-After": "1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff" }, - "ResponseBody": [] + "ResponseBody": { + "error": { + "code": "429", + "message": "Rate limit is exceeded. Try again in 1 seconds." + } + } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", - "RequestMethod": "GET", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copy", + "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", + "Content-Length": "346", + "Content-Type": "application/json", + "traceparent": "00-41e96f2f429e024d878441783ecdc3d0-dcd4354efe92eb41-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2408546c18f6b90d1e483521388c9b77", + "x-ms-client-request-id": "6967ed304ee09aae99e4a33681ab2aa9", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "targetResourceRegion": "canadacentral", + "copyAuthorization": { + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1606363332 + } + }, + "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e3d4cca1-cd8e-42de-ba07-1f795bc0f202", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:22 GMT", + "apim-request-id": "cfc1c446-0269-4244-8649-a1455ab87b85", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:02:24 GMT", + "Operation-Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyresults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "36" }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", - "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" - } - } + "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0d1b2bbd13a4f7b4c9c4e369b2f01459", + "x-ms-client-request-id": "7383dcd1efc9d656661e92552e1cbaee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4c0475a-1e8b-42c4-82d4-dac452cace4b", + "apim-request-id": "4c3d9e1d-b782-4c4c-8294-8d24c72b368c", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:23 GMT", + "Date": "Wed, 25 Nov 2020 04:02:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "281e00e671aed8e71b59f6465bc9a451", + "x-ms-client-request-id": "8d7d48eba03d0755c6a28513d24e5de2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ee79e52-0597-4fac-aece-4b9a97435a23", + "apim-request-id": "4bd7b1d3-1368-4137-b3a5-bcb63f666d64", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:24 GMT", + "Date": "Wed, 25 Nov 2020 04:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cdb59d832e8759a9a0115a3134a4072d", + "x-ms-client-request-id": "c0d838fba99541d9969003c1bb586c7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7982f65b-6722-49bc-a37c-279448a2465b", + "apim-request-id": "161cef98-6dc7-463c-a22a-2dd7e11ddc63", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:25 GMT", + "Date": "Wed, 25 Nov 2020 04:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "383bdb33726e4cc84342f14b1c6e9bff", + "x-ms-client-request-id": "394bb42a9c2d316c867cad2669430417", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b42ae60-0b72-4085-983e-b51b373425e0", + "apim-request-id": "ecde3762-dbd6-4d86-9ca6-cfd4945fea85", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:26 GMT", + "Date": "Wed, 25 Nov 2020 04:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "14e5921f473ab7d156c4889d16b6a476", + "x-ms-client-request-id": "f55ab0c0fa4442586e3bf7ac9d934b6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba210926-8ebe-4ab1-b26d-a77ec942d242", + "apim-request-id": "ae7bf98d-c416-452f-bb17-f4eb2d10fbe3", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:29 GMT", + "Date": "Wed, 25 Nov 2020 04:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7f13c9516c8e10e3d56989453d5e3c31", + "x-ms-client-request-id": "1de8083524025fb4cca63919fbb3d753", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "644862d3-0823-4adc-95b5-af888f0b75e2", + "apim-request-id": "253b5b30-8859-45d4-b998-5a229d0835df", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:30 GMT", + "Date": "Wed, 25 Nov 2020 04:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a2125b75f3bfebf30984e1a9ea2a368d", + "x-ms-client-request-id": "0a01eb8c77fd30375c09caf2a4bf93f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8ba7c53-c63d-4aee-92c9-27e51baf0933", + "apim-request-id": "280b27dc-4525-49bd-a7c6-b85ce049cf32", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:31 GMT", + "Date": "Wed, 25 Nov 2020 04:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "53f97a9e1b5ab370aed43ed0bd8c79f8", + "x-ms-client-request-id": "61f03f30e75a9c15fbfb289ec03f46bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d9b96797-5cb7-4b78-9ff2-17828f56282a", + "apim-request-id": "d63fd52a-91e5-4dd1-9d58-9fcc49fbd5e3", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:33 GMT", + "Date": "Wed, 25 Nov 2020 04:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ba28568801a45db7d52776098a3a26aa", + "x-ms-client-request-id": "b120a3644192be6fd1b8c0f859c2ba0c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01ebad4b-a531-4bab-bc9d-b1d14a265430", + "apim-request-id": "3de2e05c-fb69-4ea1-8198-375bb7ebc108", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:34 GMT", + "Date": "Wed, 25 Nov 2020 04:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c2a6fc33e86459d7ea5ef4ebb4222d7c", + "x-ms-client-request-id": "bce8461376c2a4f8d6640f024e99701d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b51fc1f-df5c-47f6-bf02-c22545178200", + "apim-request-id": "d49b0d73-6137-47cb-b7c8-cc9feb9c5bca", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:35 GMT", + "Date": "Wed, 25 Nov 2020 04:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9320e90a7b029ce9c39b7e32a5672873", + "x-ms-client-request-id": "018d0fc3e19fef60cf3190a2271c4238", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d99625e-c473-4985-b798-78c6a1ef133d", + "apim-request-id": "cc2260f3-4007-472c-a062-846b09b7abc8", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:36 GMT", + "Date": "Wed, 25 Nov 2020 04:02:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c19d94adb7e5a0937fcecf450dcba8b2", + "x-ms-client-request-id": "798a1c408a56edf8ab7bdb2d316d7037", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79272b69-5def-4869-8578-2016c32d82f6", + "apim-request-id": "3c57454d-36dd-4da0-9736-2e6452b1b554", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:37 GMT", + "Date": "Wed, 25 Nov 2020 04:02:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a1fff9fa921ab7a8130affc86aa5b483", + "x-ms-client-request-id": "4a35a348b934316de6f9ec90e6557dba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74c39ccf-2bfa-4a1b-83d2-2ea28021b064", + "apim-request-id": "79421cc1-1305-4bd2-aca0-1672a68d85c8", + "Content-Length": "173", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:39 GMT", + "Date": "Wed, 25 Nov 2020 04:02:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-30T13:22:21Z", - "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "createdDateTime": "2020-11-25T04:02:24Z", + "lastUpdatedDateTime": "2020-11-25T04:02:24Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa/copyResults/53af52b9-d9e5-45eb-a567-6ecf5d725666", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", + "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "203d80366c85539755801434aca48ef7", + "x-ms-client-request-id": "32c1d622f60e39c716a055230632bd62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d700be51-4d25-4dcc-a2b3-98ecf528de68", + "apim-request-id": "ebb7edcb-3146-4c7f-8b9d-0410d7bafe11", + "Content-Length": "187", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:22:40 GMT", + "Date": "Wed, 25 Nov 2020 04:02:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-30T13:22:40.9291689Z", - "lastUpdatedDateTime": "2020-10-30T13:22:40.9291692Z", + "createdDateTime": "2020-11-25T04:02:38.8141037Z", + "lastUpdatedDateTime": "2020-11-25T04:02:38.814104Z", "copyResult": { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/446384f8-273d-40f8-8c50-911d4f5bd9fa", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-36322fe69c675b46aded769e4852c802-9077b68b15972b43-00", + "traceparent": "00-12e880468f80ef4cb14d2ec600533046-bbc0daa63008ef4f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ab38cbf286671a59ebe5aedbb8ca35d9", + "x-ms-client-request-id": "845a58c1f7e68704af59925c9d670755", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "9dbec6b4-e745-43b1-bc73-fb2e12ed2300", + "apim-request-id": "cad9c05c-e1ca-4b75-b706-1ee56d7cad6e", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:22:40 GMT", + "Date": "Wed, 25 Nov 2020 04:02:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": [] } @@ -821,9 +830,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", - "RandomSeed": "77527080" + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-canada-central", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "canadacentral", + "RandomSeed": "1891098611" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel.json deleted file mode 100644 index d8658075623ac..0000000000000 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel.json +++ /dev/null @@ -1,664 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Content-Length": "42", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3c6417ac1ff6974883a393cbfb3e833d-5297250c768dd54f-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9cace63dd7fb484735df7bd2bc53c17e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "source": "Sanitized", - "useLabelFile": true - }, - "StatusCode": 201, - "ResponseHeaders": { - "apim-request-id": "f25da0e8-6376-4483-90c8-69881b9afb5e", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:19:24 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "330" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "60f6c21087923b363b46f4562924543b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "421c1d7a-e700-44ba-bcdc-aa2afa7d77a1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "66d36b2f-bbe2-483b-965a-26300b8cb3e8", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:24Z", - "lastUpdatedDateTime": "2020-10-30T13:19:24Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6020eb5d10f17059a51715bd4f128084", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "da4e1ed8-7d77-4ad0-90d3-b45ea6c4e9b6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "66d36b2f-bbe2-483b-965a-26300b8cb3e8", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:24Z", - "lastUpdatedDateTime": "2020-10-30T13:19:24Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "523219200df5b6a4af7060b4e2f01f10", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d9e54b82-2e0e-4748-81b9-8a0b53504772", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "66d36b2f-bbe2-483b-965a-26300b8cb3e8", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:19:24Z", - "lastUpdatedDateTime": "2020-10-30T13:19:26Z" - }, - "trainResult": { - "averageModelAccuracy": 0.96, - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "status": "succeeded" - } - ], - "fields": [ - { - "fieldName": "CompanyAddress", - "accuracy": 0.8 - }, - { - "fieldName": "CompanyName", - "accuracy": 1.0 - }, - { - "fieldName": "CompanyPhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "DatedAs", - "accuracy": 1.0 - }, - { - "fieldName": "Email", - "accuracy": 0.8 - }, - { - "fieldName": "Merchant", - "accuracy": 1.0 - }, - { - "fieldName": "PhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "PurchaseOrderNumber", - "accuracy": 1.0 - }, - { - "fieldName": "Quantity", - "accuracy": 1.0 - }, - { - "fieldName": "Signature", - "accuracy": 0.8 - }, - { - "fieldName": "Subtotal", - "accuracy": 1.0 - }, - { - "fieldName": "Tax", - "accuracy": 1.0 - }, - { - "fieldName": "Total", - "accuracy": 1.0 - }, - { - "fieldName": "VendorName", - "accuracy": 1.0 - }, - { - "fieldName": "Website", - "accuracy": 1.0 - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-17d246be0a190746a5792fbca4d6fbf3-35368621ac386642-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d1743f8b6133ff8d6885ba7b7278ec29", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 201, - "ResponseHeaders": { - "apim-request-id": "aeff2081-52ac-49a1-9a33-5beb02d87f76", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:28 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4100004-e84e-4795-b220-983fafee5a10", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" - }, - "ResponseBody": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10", - "accessToken": "Sanitized", - "expirationDateTimeTicks": 1604150368 - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copy", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Content-Length": "352", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fb27e837ba24d540b529020da0fa7f3e-f063d31dbe48de46-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "10366fc601f250464669b080b0a48db4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", - "targetResourceRegion": "westcentralus", - "copyAuthorization": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10", - "accessToken": "Sanitized", - "expirationDateTimeTicks": 1604150368 - } - }, - "StatusCode": 202, - "ResponseHeaders": { - "apim-request-id": "b5ec9800-d76c-40cb-a1a1-705d1605043f", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:19:28 GMT", - "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyresults/52f37001-728e-4e0e-b086-19d41f30b39e", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "156" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0f3204f8ae9dbe518b32e96f52294437", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bf82d5da-5fb3-4e49-af0d-39210f6ae4b9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "72ee36830eba891ef8238ac9b10c4fc3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "105e47cd-e2bc-4191-b977-f185333290bc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6d8305f8dc45178b1e7785bf18d7fe1d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "393365eb-e151-4d72-b9b0-d54bc0cec59b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "79fc78251ab6e9fae5a9177923870d7e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "04e47be9-1f5f-4598-86ef-e57bceb5a14d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4c7725e2d6a5a7f2abd75443895e7121", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "91f99852-36e4-41e3-968b-6465b65a4dd5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "38a46d25d60fdd0d0b99889bc512f397", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fcfa510b-7695-45d2-a46d-09a93c0a1b44", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f2dc066ab1604e788655cedec6b66086", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e65a62e7-b879-4d5e-921d-f4ceadbccb92", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b653f538d4e30c6e1899400b4e56e298", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4eb0c614-3760-48f5-84e2-6b736e9005f3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "83d8bce37f8174c1f555b2ba082e1654", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d139a93c-eef0-4d6f-b666-87e51ee9cbac", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-30T13:19:29Z", - "lastUpdatedDateTime": "2020-10-30T13:19:29Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cf6301393dbe96b397d0dac6706c002f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e842434f-224c-41f2-8f39-98b31494cc0b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:19:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" - }, - "ResponseBody": { - "status": "succeeded", - "createdDateTime": "2020-10-30T13:19:40.3050036Z", - "lastUpdatedDateTime": "2020-10-30T13:19:40.3050039Z", - "copyResult": { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-485859d10b6f9c4da3e6339ba5df2ec2-c50c22903a463747-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "09fb3573dddeb90434dfc18e21b404e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "apim-request-id": "1159adc6-cfad-43d1-81ef-96608575ae6c", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:19:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" - }, - "ResponseBody": [] - } - ], - "Variables": { - "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", - "RandomSeed": "338750905" - } -} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(False).json similarity index 69% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(False).json index c407e7768bf84..ad882bf52ffdb 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(False).json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2eec1c03b9c63c4bb1915586b0f205d9-b7b9d11694034d48-00", + "traceparent": "00-b88ed0282979434780e7b375e592ab3a-cfa2cdc209c3c64a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4a958766c718bba0704f78c9635381c2", + "x-ms-client-request-id": "43db9f0d9967a9cba6be231ceebf401b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,115 +22,82 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "18ca9574-50c3-467f-8e27-0328a57f3681", + "apim-request-id": "98cde3a0-e21d-4534-8cd8-e5643478c766", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:20:41 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689", + "Date": "Wed, 25 Nov 2020 04:00:08 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cb551890-8ebd-48c9-81bf-73bd0fc7f1a2", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cb551890-8ebd-48c9-81bf-73bd0fc7f1a2?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b28259d7fbec66645a04e9f953421656", + "x-ms-client-request-id": "3cfa0256bf8cbd4a11a29f2e76b9690d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc56becb-8f40-4d9a-9fed-5fff86c46ef5", + "apim-request-id": "fc8f98ef-514b-413e-865d-b3707d4955a7", + "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:20:42 GMT", + "Date": "Wed, 25 Nov 2020 04:00:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "11c8f78b-f533-45d3-a5d2-009be808d689", + "modelId": "cb551890-8ebd-48c9-81bf-73bd0fc7f1a2", "status": "creating", - "createdDateTime": "2020-10-30T13:20:42Z", - "lastUpdatedDateTime": "2020-10-30T13:20:42Z" + "createdDateTime": "2020-11-25T04:00:09Z", + "lastUpdatedDateTime": "2020-11-25T04:00:09Z" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cb551890-8ebd-48c9-81bf-73bd0fc7f1a2?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "40cb9a54d78991d9ceb1627119d8d756", + "x-ms-client-request-id": "f3d7623af522f3db033050f719c009d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f91a695-d1be-4463-a952-c1f6813bf01a", + "apim-request-id": "eae09dab-9bf9-4cd0-9c2d-f72f3f2ee4ac", + "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:20:43 GMT", + "Date": "Wed, 25 Nov 2020 04:00:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "11c8f78b-f533-45d3-a5d2-009be808d689", - "status": "creating", - "createdDateTime": "2020-10-30T13:20:42Z", - "lastUpdatedDateTime": "2020-10-30T13:20:42Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1fe8d2425cd56a09232fef13dda6672e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "39ef5c45-7f06-4023-a4e5-9b8d5b9486f8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:20:45 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "11c8f78b-f533-45d3-a5d2-009be808d689", + "modelId": "cb551890-8ebd-48c9-81bf-73bd0fc7f1a2", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-30T13:20:42Z", - "lastUpdatedDateTime": "2020-10-30T13:20:44Z" + "createdDateTime": "2020-11-25T04:00:09Z", + "lastUpdatedDateTime": "2020-11-25T04:00:10Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,19 +195,19 @@ } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1e1a267ace8cb645bd3bb189b90a4cc2-5a04503f7e375c4e-00", + "traceparent": "00-eb9991f5c10c1f44ab07196a3109eb53-4029357c34365347-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c87521394188ff3980f0e43a98f34d82", + "x-ms-client-request-id": "eae453a752134d45541d31c4fa9c33ec", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -249,82 +216,115 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "c8650fc0-fdc8-4b6d-a663-f00fe978e6a6", + "apim-request-id": "42edba04-15cc-4f9f-a97d-7d19cf48c2e1", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:20:45 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6579bed7-764a-44fb-93c6-841fb2e80a86", + "Date": "Wed, 25 Nov 2020 04:00:10 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/955fcdcc-7ce3-4136-b166-bdb66897cc5d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6579bed7-764a-44fb-93c6-841fb2e80a86?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/955fcdcc-7ce3-4136-b166-bdb66897cc5d?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8ce216554de760f82607395b6f52a450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "92c4767b-6747-480d-85d1-92533ee881c0", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "955fcdcc-7ce3-4136-b166-bdb66897cc5d", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:11Z", + "lastUpdatedDateTime": "2020-11-25T04:00:11Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/955fcdcc-7ce3-4136-b166-bdb66897cc5d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "81b7932cf75af78191601d59e8c5b427", + "x-ms-client-request-id": "2387c8997ed4e7f91c8a9e04c416f866", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3897281-3bc3-42da-9d91-2a0c10fb0103", + "apim-request-id": "d5d6b6e0-644e-4d74-9321-1cd2a509383c", + "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:20:45 GMT", + "Date": "Wed, 25 Nov 2020 04:00:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "modelInfo": { - "modelId": "6579bed7-764a-44fb-93c6-841fb2e80a86", + "modelId": "955fcdcc-7ce3-4136-b166-bdb66897cc5d", "status": "creating", - "createdDateTime": "2020-10-30T13:20:45Z", - "lastUpdatedDateTime": "2020-10-30T13:20:45Z" + "createdDateTime": "2020-11-25T04:00:11Z", + "lastUpdatedDateTime": "2020-11-25T04:00:11Z" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6579bed7-764a-44fb-93c6-841fb2e80a86?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/955fcdcc-7ce3-4136-b166-bdb66897cc5d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f738344a0f6201cd98e89ee478ced230", + "x-ms-client-request-id": "03a264fd7cde59ee5a84c40b19eadd02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "abc03831-7b13-4c20-83ae-d731cfbd53d2", + "apim-request-id": "c74829de-7003-4860-b40d-58458823e6bd", + "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:20:46 GMT", + "Date": "Wed, 25 Nov 2020 04:00:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "6579bed7-764a-44fb-93c6-841fb2e80a86", + "modelId": "955fcdcc-7ce3-4136-b166-bdb66897cc5d", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-30T13:20:45Z", - "lastUpdatedDateTime": "2020-10-30T13:20:46Z" + "createdDateTime": "2020-11-25T04:00:11Z", + "lastUpdatedDateTime": "2020-11-25T04:00:14Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -422,7 +422,7 @@ } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -432,101 +432,101 @@ "Content-Length": "124", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4986ee8396729f46a147380941756645-a379f37c168d3045-00", + "traceparent": "00-4a5104977bf38d4699c0780687da32fa-ddbd96f61946a94c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4ae76ce2e6ef42d39f7d372823df17bb", + "x-ms-client-request-id": "312be0791015d6171cfb6f5caff39c0f", "x-ms-return-client-request-id": "true" }, "RequestBody": { "modelIds": [ - "11c8f78b-f533-45d3-a5d2-009be808d689", - "6579bed7-764a-44fb-93c6-841fb2e80a86" + "cb551890-8ebd-48c9-81bf-73bd0fc7f1a2", + "955fcdcc-7ce3-4136-b166-bdb66897cc5d" ], "modelName": "My composed model" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "013b1c4e-8330-4626-9d99-8fa69189ff5b", + "apim-request-id": "51fdaf47-801a-42a8-a403-024c380b0198", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:20:47 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/031bb91f-b029-4d9e-a165-f9c76dbec981", + "Date": "Wed, 25 Nov 2020 04:00:14 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ac7585bb-d975-4499-a1bc-43aa18004c7f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "196" + "x-envoy-upstream-service-time": "222" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/031bb91f-b029-4d9e-a165-f9c76dbec981?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ac7585bb-d975-4499-a1bc-43aa18004c7f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "64f0bc3c55bb1d20c5b6e871589d7ec2", + "x-ms-client-request-id": "0b5ed20fa0af1c72da2dc850baeece32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d4ef869-a3d3-4315-9cdf-c48a740e8b96", + "apim-request-id": "e1aaf34c-cb53-4075-a884-9ebd4d5b5cd1", + "Content-Length": "202", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:20:47 GMT", + "Date": "Wed, 25 Nov 2020 04:00:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", "modelName": "My composed model", "status": "creating", - "createdDateTime": "2020-10-30T13:20:47Z", - "lastUpdatedDateTime": "2020-10-30T13:20:47Z" + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/031bb91f-b029-4d9e-a165-f9c76dbec981?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ac7585bb-d975-4499-a1bc-43aa18004c7f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7c77ec8d69de643760f558e5d8a5ddb8", + "x-ms-client-request-id": "e38b9cacc6eaec514ccce7e30d91aa67", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d39055a-0c4e-4485-983d-e59a85cc277f", + "apim-request-id": "f2bd6558-b1e8-46f5-adcc-f58ed1e2ae53", + "Content-Length": "2361", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:20:48 GMT", + "Date": "Wed, 25 Nov 2020 04:00:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", "modelName": "My composed model", "attributes": { "isComposed": true }, "status": "ready", - "createdDateTime": "2020-10-30T13:20:47Z", - "lastUpdatedDateTime": "2020-10-30T13:20:48Z" + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" }, "composedTrainResults": [ { @@ -620,7 +620,7 @@ "accuracy": 1.0 } ], - "modelId": "11c8f78b-f533-45d3-a5d2-009be808d689", + "modelId": "cb551890-8ebd-48c9-81bf-73bd0fc7f1a2", "errors": [] }, { @@ -714,61 +714,61 @@ "accuracy": 1.0 } ], - "modelId": "6579bed7-764a-44fb-93c6-841fb2e80a86", + "modelId": "955fcdcc-7ce3-4136-b166-bdb66897cc5d", "errors": [] } ] } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6579bed7-764a-44fb-93c6-841fb2e80a86", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/955fcdcc-7ce3-4136-b166-bdb66897cc5d", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0f5818c4e7326f46bf8f8a45d04366b2-1c7fbc93be172446-00", + "traceparent": "00-710dde7b88840d4488a8e5f47b67e195-78af47702c61304b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bca8e3d16dde8c754cc98539fd62ea02", + "x-ms-client-request-id": "46fcb4e7d28bd8526e0f57e747c71b2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "3297901e-69a8-4db7-8e26-642b03b50260", + "apim-request-id": "a257eac6-edf9-4940-b134-87730c256bec", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:20:48 GMT", + "Date": "Wed, 25 Nov 2020 04:00:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cb551890-8ebd-48c9-81bf-73bd0fc7f1a2", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-44623ed0525d02409d3f442a35b9017f-b3f11a6a91376740-00", + "traceparent": "00-e3d471c21729c64ea3f31326e20799ee-75a4a21b725ecc4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "379a75fe9a68d2dc858c03c5fd3a4520", + "x-ms-client-request-id": "12b03c2cb96848258171bee3b98e0e48", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "3b5e9a34-e76e-4147-86a4-b67e1146b359", + "apim-request-id": "df5b720c-fdfe-483f-896b-db28d49f9e03", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:20:49 GMT", + "Date": "Wed, 25 Nov 2020 04:00:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -776,7 +776,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", - "RandomSeed": "51900180" + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "765999188" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(False)Async.json similarity index 69% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelAsync.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(False)Async.json index bc7d50a0f2a05..186eff3639f5d 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(False)Async.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2d38d9cf65192c469020238c689a1ba3-0c19831c5e58094b-00", + "traceparent": "00-8254eb094d779f4d90959725a7fb7242-61cd5fe072e7c345-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cbe99057356706f7070829518bd8d7fe", + "x-ms-client-request-id": "0ada721d3f72c53669324ee5b30c7c8f", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,115 +22,115 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "456f7aec-5d33-4aca-ba7d-d52e1266ca6c", + "apim-request-id": "35652d3a-c275-4d14-90cb-0068a52f8281", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:23:42 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41", + "Date": "Wed, 25 Nov 2020 04:03:09 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a977d2c10ad2726888d361488cd7b125", + "x-ms-client-request-id": "d6ef6529153bf865f1927f34008cb9b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7861397-85ac-4b29-9f42-3c15c106010b", + "apim-request-id": "465737db-4a9d-4352-afc8-dacb020de671", + "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:23:42 GMT", + "Date": "Wed, 25 Nov 2020 04:03:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "7da24fa3-6696-477e-9cd8-f00bd708ce41", + "modelId": "bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f", "status": "creating", - "createdDateTime": "2020-10-30T13:23:41Z", - "lastUpdatedDateTime": "2020-10-30T13:23:41Z" + "createdDateTime": "2020-11-25T04:03:10Z", + "lastUpdatedDateTime": "2020-11-25T04:03:10Z" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2ade40209704faedfc744fcc80f0827b", + "x-ms-client-request-id": "c3a735767ee89c82d3ab443a588e2d8e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d9c4ad4-41b5-4b4e-89eb-d8e982454883", + "apim-request-id": "5573b5fd-09f1-4df3-9bc6-703b3854ac96", + "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:23:43 GMT", + "Date": "Wed, 25 Nov 2020 04:03:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "7da24fa3-6696-477e-9cd8-f00bd708ce41", + "modelId": "bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f", "status": "creating", - "createdDateTime": "2020-10-30T13:23:41Z", - "lastUpdatedDateTime": "2020-10-30T13:23:41Z" + "createdDateTime": "2020-11-25T04:03:10Z", + "lastUpdatedDateTime": "2020-11-25T04:03:10Z" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8d4d5bfdc14f4c1028774293d3af7a30", + "x-ms-client-request-id": "429541fbb0b508550ce119e0c002c4dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4bd8ed8a-6ad0-449c-a063-cc98867fccf8", + "apim-request-id": "1310dfa7-2a6d-4344-8ccf-2cd83f3bc7f4", + "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:23:44 GMT", + "Date": "Wed, 25 Nov 2020 04:03:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "7da24fa3-6696-477e-9cd8-f00bd708ce41", + "modelId": "bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-30T13:23:41Z", - "lastUpdatedDateTime": "2020-10-30T13:23:43Z" + "createdDateTime": "2020-11-25T04:03:10Z", + "lastUpdatedDateTime": "2020-11-25T04:03:11Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,19 +228,19 @@ } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5c26e1524f5cf74387e2c39c10598b80-fe916d4f17f78b4a-00", + "traceparent": "00-afe3ac0325eedd47b046b210512ca4ff-f237a117f8f8ea4e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4b310457acfa2af9e57cad5dba9cf298", + "x-ms-client-request-id": "7d6f9e79b865aba7e2530390d12b9f63", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -249,82 +249,115 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "e4d55a79-4876-48e9-9bd3-744e1eb76a0b", + "apim-request-id": "bb566ea2-fa5b-4e4c-9507-8e8a2a33e673", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:23:44 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8017943e-8836-4219-8056-26297c056b39", + "Date": "Wed, 25 Nov 2020 04:03:12 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ee9d2df8-9acf-4a9e-9307-08b43d875419", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8017943e-8836-4219-8056-26297c056b39?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ee9d2df8-9acf-4a9e-9307-08b43d875419?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "be38f06476f6c6fae09fb60665a2dcd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5220d100-0d37-4544-842a-1cba35299c35", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "ee9d2df8-9acf-4a9e-9307-08b43d875419", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:12Z", + "lastUpdatedDateTime": "2020-11-25T04:03:12Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ee9d2df8-9acf-4a9e-9307-08b43d875419?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "304be551238a5fd52f92028d5459264c", + "x-ms-client-request-id": "bac167e7b01f43299aea6062adc536e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1305a5b7-d4e4-477e-a1d6-8ab2bdd66ee6", + "apim-request-id": "1831d555-61ff-427b-9b36-32a9d9ae6ec8", + "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:23:44 GMT", + "Date": "Wed, 25 Nov 2020 04:03:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "modelInfo": { - "modelId": "8017943e-8836-4219-8056-26297c056b39", + "modelId": "ee9d2df8-9acf-4a9e-9307-08b43d875419", "status": "creating", - "createdDateTime": "2020-10-30T13:23:44Z", - "lastUpdatedDateTime": "2020-10-30T13:23:44Z" + "createdDateTime": "2020-11-25T04:03:12Z", + "lastUpdatedDateTime": "2020-11-25T04:03:12Z" } } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8017943e-8836-4219-8056-26297c056b39?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ee9d2df8-9acf-4a9e-9307-08b43d875419?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7b751ff936bf51816122a8d214b2918b", + "x-ms-client-request-id": "cf7bb54105c902e6a3a89dc501a0453f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40b50875-d59e-4965-8282-de90a65af745", + "apim-request-id": "2d9ae04f-c06e-4878-a5de-a93e0eb9511f", + "Content-Length": "1218", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:23:45 GMT", + "Date": "Wed, 25 Nov 2020 04:03:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "modelInfo": { - "modelId": "8017943e-8836-4219-8056-26297c056b39", + "modelId": "ee9d2df8-9acf-4a9e-9307-08b43d875419", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-30T13:23:44Z", - "lastUpdatedDateTime": "2020-10-30T13:23:46Z" + "createdDateTime": "2020-11-25T04:03:12Z", + "lastUpdatedDateTime": "2020-11-25T04:03:15Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -422,7 +455,7 @@ } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -432,101 +465,67 @@ "Content-Length": "124", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a4de04151aaf2e4f86ad01f4a8ec6b05-8bf7fed1160e0e4f-00", + "traceparent": "00-c591877a2b8970439817b1fd59965dc7-5c275fcf917c1841-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ee42aa844a6433a62ed11b67a96bd58b", + "x-ms-client-request-id": "6aa83176e56ab444c6f5240c1698181a", "x-ms-return-client-request-id": "true" }, "RequestBody": { "modelIds": [ - "7da24fa3-6696-477e-9cd8-f00bd708ce41", - "8017943e-8836-4219-8056-26297c056b39" + "bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f", + "ee9d2df8-9acf-4a9e-9307-08b43d875419" ], "modelName": "My composed model" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "c4d47574-a7e9-441b-b12e-29d8cb22e767", + "apim-request-id": "47d34de9-f4ca-4077-b889-bed2a3a760bf", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:23:46 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", + "Date": "Wed, 25 Nov 2020 04:03:15 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d363aeec-be98-4524-b087-5c776cb5a91a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-envoy-upstream-service-time": "162" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b7af13d6-8a7c-4254-ab2f-1ccd03d26f97?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9b63605676271ad963f9cf677b034b7d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5d0b022a-5e6a-4470-8aec-f44653ffda25", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:23:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", - "modelName": "My composed model", - "status": "creating", - "createdDateTime": "2020-10-30T13:23:46Z", - "lastUpdatedDateTime": "2020-10-30T13:23:46Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b7af13d6-8a7c-4254-ab2f-1ccd03d26f97?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d363aeec-be98-4524-b087-5c776cb5a91a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a90976003816afe879414ced1a19a7f6", + "x-ms-client-request-id": "afc4d5680c27e10780be1676136441fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fc9c6f2a-fbb0-4ba4-84fd-c0207a805bca", + "apim-request-id": "82891c61-ac09-414c-a546-125fcb54f745", + "Content-Length": "2361", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:23:47 GMT", + "Date": "Wed, 25 Nov 2020 04:03:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", + "modelId": "d363aeec-be98-4524-b087-5c776cb5a91a", "modelName": "My composed model", "attributes": { "isComposed": true }, "status": "ready", - "createdDateTime": "2020-10-30T13:23:46Z", - "lastUpdatedDateTime": "2020-10-30T13:23:47Z" + "createdDateTime": "2020-11-25T04:03:15Z", + "lastUpdatedDateTime": "2020-11-25T04:03:15Z" }, "composedTrainResults": [ { @@ -620,7 +619,7 @@ "accuracy": 1.0 } ], - "modelId": "7da24fa3-6696-477e-9cd8-f00bd708ce41", + "modelId": "bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f", "errors": [] }, { @@ -714,61 +713,61 @@ "accuracy": 1.0 } ], - "modelId": "8017943e-8836-4219-8056-26297c056b39", + "modelId": "ee9d2df8-9acf-4a9e-9307-08b43d875419", "errors": [] } ] } }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8017943e-8836-4219-8056-26297c056b39", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ee9d2df8-9acf-4a9e-9307-08b43d875419", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4199eb31ca464c43b3458861877f1481-b081fe033a395343-00", + "traceparent": "00-91e4971002b87543a834e8eabf4d8b5f-4fd83a3f9cbf834f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b47c1d4cf64e0d64d1288a6a7a3eb82b", + "x-ms-client-request-id": "7beb20a4cc1c5b7771c609d4e1d9eb0b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "4bbe9ed7-3ede-4bf6-8373-af371fc47e4e", + "apim-request-id": "6debdd19-ed1c-4d15-a6c0-d172bea838a4", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:23:47 GMT", + "Date": "Wed, 25 Nov 2020 04:03:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] }, { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bfc796a6-2c6a-4744-b7a4-cc0b16c4fa7f", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5be2884d404cda46b90da6df5386ad08-13eaaa5974e8a645-00", + "traceparent": "00-458b36ffecc6714ab1fd864d10752888-bde29aab889cbb4e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "33679e852b621d7477b422e52aebff4a", + "x-ms-client-request-id": "2c5c829095db6a182ac7e9abcfcda162", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "6d2f5e11-2101-4ad8-84d7-e000ea55ce24", + "apim-request-id": "199c3f36-8c94-409b-b0d7-1c105be834f9", "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:23:47 GMT", + "Date": "Wed, 25 Nov 2020 04:03:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": [] } @@ -776,7 +775,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", - "RandomSeed": "1411350031" + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "649037183" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(True).json new file mode 100644 index 0000000000000..c36f22d8dd425 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(True).json @@ -0,0 +1,815 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-7f663a20f20c2f4a8f858c047c4be938-df2d79fc25ebcb45-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4b33b3bed6e8df7dd9ddaae6e76d1a30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "6e858fcc-85d0-4fdb-b421-07d14f180565", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:16 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/be67f4d4-371c-41b3-9696-1eb810e3f177", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/be67f4d4-371c-41b3-9696-1eb810e3f177?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3ad9e944173510512b0691699e50c4e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7d2a3ee-22df-4bce-8c17-121e85089085", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "be67f4d4-371c-41b3-9696-1eb810e3f177", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:17Z", + "lastUpdatedDateTime": "2020-11-25T04:00:17Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/be67f4d4-371c-41b3-9696-1eb810e3f177?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a416e5395a0dee209b46bb2f5858fead", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be9c3eba-6d5d-4c3f-8c6a-361d684633e0", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "be67f4d4-371c-41b3-9696-1eb810e3f177", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:17Z", + "lastUpdatedDateTime": "2020-11-25T04:00:17Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/be67f4d4-371c-41b3-9696-1eb810e3f177?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "738d6f45ce67a70c61231fe145134088", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ef9e325-868b-4132-9683-bd12193f5f77", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "be67f4d4-371c-41b3-9696-1eb810e3f177", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:17Z", + "lastUpdatedDateTime": "2020-11-25T04:00:19Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b91751d176a7834d9ce4b0c2bdf4ff44-380190445dc99748-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "02adc2187656ea22c8eb9eee5c22b8d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "0d5dcdde-1300-4ce0-8cea-87be73e219f9", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:20 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/dc706276-7d4f-48c5-834a-41d859e53bbe", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "103" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/dc706276-7d4f-48c5-834a-41d859e53bbe?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2f24e40851c36b7fd86e42ea3a3fa887", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "33cc7eef-b4f3-4356-a98c-5db7c0c8953f", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "dc706276-7d4f-48c5-834a-41d859e53bbe", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:20Z", + "lastUpdatedDateTime": "2020-11-25T04:00:20Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/dc706276-7d4f-48c5-834a-41d859e53bbe?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "95163205fcabce564ca3aa7c301d4b3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "10637f44-8bc8-447b-9432-eb3607f5980e", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "dc706276-7d4f-48c5-834a-41d859e53bbe", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:20Z", + "lastUpdatedDateTime": "2020-11-25T04:00:20Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/dc706276-7d4f-48c5-834a-41d859e53bbe?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "61d94c6a11efc7c5424129e73337af89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23da8d72-b266-4bbc-86a7-a1dd196a81a9", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "dc706276-7d4f-48c5-834a-41d859e53bbe", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:20Z", + "lastUpdatedDateTime": "2020-11-25T04:00:22Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Authorization": "Sanitized", + "Content-Length": "124", + "Content-Type": "application/json", + "traceparent": "00-9319e4cd4b4df64f956821328a554a82-b5eb23c7ce859c4a-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "29e81642220c0b278d55e21fa6033abb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "modelIds": [ + "be67f4d4-371c-41b3-9696-1eb810e3f177", + "dc706276-7d4f-48c5-834a-41d859e53bbe" + ], + "modelName": "My composed model" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "8f72bfa9-3043-4973-a803-d343a6bdd9b8", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:22 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff35c346-0f2d-4486-bd70-1cb92e00933a", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "306" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff35c346-0f2d-4486-bd70-1cb92e00933a?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ed7f04234765f4986d4f5369d26e9a15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0694ac28-7286-4f1e-b380-4315c588ab27", + "Content-Length": "202", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:23Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ff35c346-0f2d-4486-bd70-1cb92e00933a?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "193921f42235483224cdd3992ea5203e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "755ccdf7-41a1-48da-a810-27db5fd65563", + "Content-Length": "2361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + }, + "composedTrainResults": [ + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "be67f4d4-371c-41b3-9696-1eb810e3f177", + "errors": [] + }, + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "dc706276-7d4f-48c5-834a-41d859e53bbe", + "errors": [] + } + ] + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/dc706276-7d4f-48c5-834a-41d859e53bbe", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-9da401bb883fef4e8463c47580017411-1e534ae63b0e5645-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2fc46e07c1b7fb237df4bbbdcfbe381e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "a6d17e85-076c-4c36-83ae-21868c683e83", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/be67f4d4-371c-41b3-9696-1eb810e3f177", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-87169cdfa01ea24b9e116c47fe7b5db2-6829147650887a46-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "842bcdbb21ca0085d237c99773ffc5c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "893be859-8bed-4a25-b73e-331a34a9bee0", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "216" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "2052813009" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(True)Async.json new file mode 100644 index 0000000000000..e6a831ecffa30 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel(True)Async.json @@ -0,0 +1,815 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-6562d819ca2b7948ac60e105affbe04c-ace85ac1d430314e-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "779c8da3dd29f7a8f0d588b4ab4014a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "06a7fc1e-9836-4926-8e20-ad0f75527674", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:15 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/52d0a2f7-a0c3-4ead-97cf-778fa3595cba", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/52d0a2f7-a0c3-4ead-97cf-778fa3595cba?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dd2b545ca9880eb9fc91405856666caf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b42a4a6d-d3ac-4c50-b961-839fbd4ba070", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "52d0a2f7-a0c3-4ead-97cf-778fa3595cba", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:15Z", + "lastUpdatedDateTime": "2020-11-25T04:03:15Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/52d0a2f7-a0c3-4ead-97cf-778fa3595cba?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fa136115a15033e54952962aa13f36ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "78eca2fd-093c-4e97-910e-0e1ece8d361d", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "52d0a2f7-a0c3-4ead-97cf-778fa3595cba", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:15Z", + "lastUpdatedDateTime": "2020-11-25T04:03:15Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/52d0a2f7-a0c3-4ead-97cf-778fa3595cba?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "50740ab79514fa4cd38d7a989d50a18a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc4ba7fe-edd1-4a3a-a446-3c7ec3521faa", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "52d0a2f7-a0c3-4ead-97cf-778fa3595cba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:15Z", + "lastUpdatedDateTime": "2020-11-25T04:03:17Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-fae11aa8cabac442a537cf3312a97f2d-5dc073f26d03f449-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "499fd9691a2dba516ff79336138f6dbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "5c541975-b96e-44af-8496-8e0e00f64d91", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:18 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/13dd5fec-3faf-4a35-a766-023bfb9a7b86", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/13dd5fec-3faf-4a35-a766-023bfb9a7b86?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4ba0535a1bf17f9a151826c3264c96f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cce27316-5f25-4759-a02a-9a4fd717b466", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "13dd5fec-3faf-4a35-a766-023bfb9a7b86", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:18Z", + "lastUpdatedDateTime": "2020-11-25T04:03:18Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/13dd5fec-3faf-4a35-a766-023bfb9a7b86?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c8c10bb0ed9f9dbeb8b9e01d0115e644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "21bd1b52-d79c-4bf1-b388-120d12107f5a", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "13dd5fec-3faf-4a35-a766-023bfb9a7b86", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:18Z", + "lastUpdatedDateTime": "2020-11-25T04:03:18Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/13dd5fec-3faf-4a35-a766-023bfb9a7b86?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "493ebd1f56af4d983e203414f38e9423", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "59678376-6df2-476d-ae82-36c1ad720184", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "13dd5fec-3faf-4a35-a766-023bfb9a7b86", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:18Z", + "lastUpdatedDateTime": "2020-11-25T04:03:20Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Authorization": "Sanitized", + "Content-Length": "124", + "Content-Type": "application/json", + "traceparent": "00-a4d44b679af8ba41864896e999cac2e1-8563d56e252e4e4e-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "07869a60a5ce6d1d950392383a7d7d00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "modelIds": [ + "52d0a2f7-a0c3-4ead-97cf-778fa3595cba", + "13dd5fec-3faf-4a35-a766-023bfb9a7b86" + ], + "modelName": "My composed model" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "a82129e7-87d3-43de-8b05-3a0bd56a0dda", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:21 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/af4b8eae-13e6-45a3-9743-dfeb4a042fe5", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "110" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/af4b8eae-13e6-45a3-9743-dfeb4a042fe5?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "69a3e2314d0d59497273897fb8a9a92a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f0f0de90-e3c3-424e-b4d0-2892c1f10cea", + "Content-Length": "202", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "af4b8eae-13e6-45a3-9743-dfeb4a042fe5", + "modelName": "My composed model", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:21Z", + "lastUpdatedDateTime": "2020-11-25T04:03:21Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/af4b8eae-13e6-45a3-9743-dfeb4a042fe5?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "67bcbd25de8e7a769fd1b4acc36013c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be57e25c-3aeb-46b3-b734-d5913d522a08", + "Content-Length": "2361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "80" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "af4b8eae-13e6-45a3-9743-dfeb4a042fe5", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:21Z", + "lastUpdatedDateTime": "2020-11-25T04:03:22Z" + }, + "composedTrainResults": [ + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "52d0a2f7-a0c3-4ead-97cf-778fa3595cba", + "errors": [] + }, + { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "modelId": "13dd5fec-3faf-4a35-a766-023bfb9a7b86", + "errors": [] + } + ] + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/13dd5fec-3faf-4a35-a766-023bfb9a7b86", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-377ff027379e5246a47417855d153fe1-153550ea13e9d24c-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "11e333a22aea1315502c955a1b9db4eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "ae584390-39e3-4121-abd6-c872aa5afdb9", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/52d0a2f7-a0c3-4ead-97cf-778fa3595cba", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-5062cb48dff6e246b539944965d03e7f-ca050cba11a57347-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7d13675a16c153716c29ca3c999d9612", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "5273d02d-c6dc-4be8-af3a-467188951d7b", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": [] + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "752700262" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCanAuthenticateWithTokenCredentialAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingCanAuthenticateWithTokenCredential.json similarity index 63% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCanAuthenticateWithTokenCredentialAsync.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingCanAuthenticateWithTokenCredential.json index 321aec722d64e..fc8b1aef46a5b 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCanAuthenticateWithTokenCredentialAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingCanAuthenticateWithTokenCredential.json @@ -8,12 +8,12 @@ "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-04f2896d897824428ed46940b249e2f8-2b81af1331740d4e-00", + "traceparent": "00-4383ad29b151ce42b476394f63c818da-02a11072fb2de74d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "825fbd5587c75494ab85db2afe93f659", + "x-ms-client-request-id": "051ff1b661d0de9129910b60b2c858dd", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,376 +22,376 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "30003b42-5514-4488-82c9-3f334727b942", + "apim-request-id": "38c24106-7465-4eb5-baa0-2bfb903b5880", "Content-Length": "0", - "Date": "Fri, 20 Nov 2020 18:38:38 GMT", - "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "Date": "Wed, 25 Nov 2020 03:57:52 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-envoy-upstream-service-time": "217" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d46d344095b76cc6c328adf4de4e18d6", + "x-ms-client-request-id": "0d61e3dd6fc9e1c11db34648c7b203ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4859a1e1-5ed5-466e-aa8b-6e0679f14c7f", + "apim-request-id": "d007d684-e170-4d8c-beba-da689ed80fbf", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:38 GMT", + "Date": "Wed, 25 Nov 2020 03:57:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "515476b8dd1d53fbb0237ddd5f968fc1", + "x-ms-client-request-id": "f57e769d565bb9b5fd69fcc6e5c4666a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cacd6109-a587-4bbb-8d18-537ed4c19d67", + "apim-request-id": "edfb5012-7714-4084-b91c-657e9b1a26fa", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:40 GMT", + "Date": "Wed, 25 Nov 2020 03:57:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "356f7541b519c040f7f2be9ed99f765c", + "x-ms-client-request-id": "46361537b70d47f7303de71c1b491676", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e43216b-23bf-47ad-9232-250f288f24c4", + "apim-request-id": "871ed742-cb88-4d60-9355-fcdf587925d7", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:41 GMT", + "Date": "Wed, 25 Nov 2020 03:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8772046da43e633b391a249318e80d2c", + "x-ms-client-request-id": "3cc3218e624986812da70f6073fafc59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06db5878-ca64-49f1-9e19-1bc57310a262", + "apim-request-id": "e67fdda2-ea99-4c15-abcf-297a043d790d", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:42 GMT", + "Date": "Wed, 25 Nov 2020 03:57:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "69b3eb98e2de02bc36945a2a1e5c7911", + "x-ms-client-request-id": "b111dc4cbc7ce6dc7e37c51d6f989db4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d37b837c-e6b3-4cbf-906d-2c516bf77930", + "apim-request-id": "b9547cb4-629f-4af4-bde5-e6ffab484e5f", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:44 GMT", + "Date": "Wed, 25 Nov 2020 03:57:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5a7020ad08249c82390cfcff91aca70e", + "x-ms-client-request-id": "c33886522901d42093af1865a797d335", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62b02910-afc5-430a-9061-f0f7bc1aabd3", + "apim-request-id": "951d7bb7-a345-4b47-9473-cbc44d204016", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:45 GMT", + "Date": "Wed, 25 Nov 2020 03:57:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "234" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ee0691e50ceb8a7e486f50aa491145dc", + "x-ms-client-request-id": "3fcf8e416438d1fa44dcbe129d641794", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "013ed304-e3ce-4ab0-a016-c462f7e594b0", + "apim-request-id": "b94fab46-7c02-42ce-8ffd-88d7860a30d7", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:46 GMT", + "Date": "Wed, 25 Nov 2020 03:58:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f8e512a1b277900869162fd2e6bd718a", + "x-ms-client-request-id": "ed0e5b0938c22357bb3c1dcca4773ee7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be9f6c7e-f24a-416c-b2f4-d29c05e323c8", + "apim-request-id": "dd429a1a-285d-4636-ae1c-e0c663ae75f9", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:47 GMT", + "Date": "Wed, 25 Nov 2020 03:58:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8c444bec8b56a025a2e612b4b7d85328", + "x-ms-client-request-id": "e0dc8f635ec8ed7b8b667f246a0d372f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9e416ad-f2e1-4c44-9678-770edeabe6e2", + "apim-request-id": "f09fb363-73df-4658-9179-576175ad67d8", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:49 GMT", + "Date": "Wed, 25 Nov 2020 03:58:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7e5e1fc7afc63297897684d4ddaba38b", + "x-ms-client-request-id": "4c5b8498e689087336ac83fb462e2dcc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e5a3e7e-6b02-48a3-9848-1097abfa0c30", + "apim-request-id": "3710ec6f-29c8-440c-a889-5572f2e62889", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:50 GMT", + "Date": "Wed, 25 Nov 2020 03:58:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "creating", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:39Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:57:52Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40ec5db2-80b2-4458-874d-3c9a9e35aa30?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3ca9f1aa-9c25-4bc7-b122-b9ef97039cad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "febdc6feb8cc1686ed455590a053d891", + "x-ms-client-request-id": "0dafd79d3787abcbdf20615bb932b8ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b0914fe9-89b2-43cc-8d57-5e2d5004e622", + "apim-request-id": "6e9926bd-af9a-4ed2-9537-686d3ac4bb07", "Content-Length": "939", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:51 GMT", + "Date": "Wed, 25 Nov 2020 03:58:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "modelInfo": { - "modelId": "40ec5db2-80b2-4458-874d-3c9a9e35aa30", + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", "status": "ready", - "createdDateTime": "2020-11-20T18:38:39Z", - "lastUpdatedDateTime": "2020-11-20T18:38:51Z" + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" }, "keys": { "clusters": { @@ -464,6 +464,6 @@ "Variables": { "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", - "RandomSeed": "952740324" + "RandomSeed": "1292336948" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCanAuthenticateWithTokenCredential.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingCanAuthenticateWithTokenCredentialAsync.json similarity index 58% rename from sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCanAuthenticateWithTokenCredential.json rename to sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingCanAuthenticateWithTokenCredentialAsync.json index 1747d57922a8a..d1e7e99e22dd4 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCanAuthenticateWithTokenCredential.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingCanAuthenticateWithTokenCredentialAsync.json @@ -8,12 +8,12 @@ "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-4357a2365d0f874098fa19ddf533b79d-32d037710ba89446-00", + "traceparent": "00-20a495411e1599499639aa4264697185-0c1f47ab4e02744c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e3d6f192213326e3e10d393ea18ded55", + "x-ms-client-request-id": "2cbe16f8a07ebbe8fbb58902408bd4d2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,376 +22,409 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "c762327a-b7fe-428e-8e1f-aebb1e7b87ad", + "apim-request-id": "9196bbdb-a338-4160-aab6-50b84f34d577", "Content-Length": "0", - "Date": "Fri, 20 Nov 2020 18:38:26 GMT", - "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e", + "Date": "Wed, 25 Nov 2020 04:01:03 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "247" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0012b8fc8a2f803ca3ae3658140f1f41", + "x-ms-client-request-id": "28d6188a5e8be37335f9b78b71f17fc9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48d2216b-36e0-4e28-bbe4-2f41dee6e381", + "apim-request-id": "d66d6cdb-90dd-44a5-979b-5499ccfc60cf", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:26 GMT", + "Date": "Wed, 25 Nov 2020 04:01:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "27650835ad1e079b8cb8b3d621b185cf", + "x-ms-client-request-id": "57be6f426b26c06836d766768b72af9c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25d45653-3830-4f92-9e13-6755cdd12934", + "apim-request-id": "f2be0aea-3f2d-44c7-8a32-b557ca4ab607", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:27 GMT", + "Date": "Wed, 25 Nov 2020 04:01:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "464fe0504bfa08a9b5563f85eb8b12d2", + "x-ms-client-request-id": "bee1da9cfeb29a83a3dbf685e95d4a0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9577ba48-3b6a-437c-9d88-c9ae211be74f", + "apim-request-id": "74571ac3-0d04-4e35-bd21-25b9e8bae1cb", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:28 GMT", + "Date": "Wed, 25 Nov 2020 04:01:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", + "status": "creating", + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d0bfc0367ccc1facb015f1b3f7fc57c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe7ce83d-80b7-4929-bdfe-6a106fe98e7c", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9809f8edc5284f361d0b7377d6655ef2", + "x-ms-client-request-id": "97ee1a49c0104417ec24b44a74e2d7d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ddb328f1-1f63-42c2-854e-9da92d01a2a6", + "apim-request-id": "d725d279-c8a8-48cb-a3dc-76757c40e557", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:29 GMT", + "Date": "Wed, 25 Nov 2020 04:01:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "33086629d8bfe9465e5d71c76d151b01", + "x-ms-client-request-id": "ca405c8ddfb220cf2ec20e9c0ccfa2a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2edf4341-237c-445d-8f48-5065856f7eb1", + "apim-request-id": "0bb815e4-90ad-422d-b77d-898079f82ec5", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:31 GMT", + "Date": "Wed, 25 Nov 2020 04:01:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "28e9e1a6eca88aa7a90029eed8323150", + "x-ms-client-request-id": "ce3c3284b26e75faa97be4a8c761aace", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a418f3dc-5679-4268-8ee9-e1c3c45736c1", + "apim-request-id": "209f41e7-e009-4cbb-8b01-054c684d7409", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:32 GMT", + "Date": "Wed, 25 Nov 2020 04:01:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "845b4df7de831412b2203acb546ee107", + "x-ms-client-request-id": "9b26183d8cbc6a114bce684db17a371c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06c9cf7d-63e2-4d67-9c99-d569f3fabf9a", + "apim-request-id": "a9a8f59d-566b-45d5-9284-e9449d9dd596", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:33 GMT", + "Date": "Wed, 25 Nov 2020 04:01:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f4d072f0367c3c49bf7e89bfaf57112b", + "x-ms-client-request-id": "42c60d8109a5da6a62ca2036fa2758cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c97e81e8-dcf6-445a-938d-22ce64927fb8", + "apim-request-id": "f0946137-2b51-43d1-b0d1-7e94076e166a", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:35 GMT", + "Date": "Wed, 25 Nov 2020 04:01:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "20d0212b97bac77dcfd47688b2dc363a", + "x-ms-client-request-id": "f45f401807a9f7ea21d283a049acc32f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "482a030b-f39d-4c8a-b4eb-5d34144d4b15", + "apim-request-id": "3f13678a-7f6b-461a-90e1-fa931a2700e1", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:36 GMT", + "Date": "Wed, 25 Nov 2020 04:01:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "65fe221f3c62c1d3031fc5055553655a", + "x-ms-client-request-id": "b926c844689b3428ad4b39f16bdb6f24", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af536731-2f6f-42e2-b3ed-3b7e4cb4c07e", + "apim-request-id": "d860ad4c-bde7-4680-8494-cd2abc9ea4f2", "Content-Length": "170", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:37 GMT", + "Date": "Wed, 25 Nov 2020 04:01:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "creating", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:26Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" } } }, { - "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/10fbb42c-62ce-4610-a324-cec99564d25e?includeKeys=true", + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bc4dda28-3aba-4782-9004-92b3c0cbaccc?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201120.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "329f0e0ec19e584df50925a8bfc189e3", + "x-ms-client-request-id": "71359c76431b7a7223ce20d385ca90b5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18b0d861-4564-4c4f-9237-f32b7f7e5c30", + "apim-request-id": "590aa663-f1e5-4753-91ed-555d7f99b3e4", "Content-Length": "939", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 20 Nov 2020 18:38:38 GMT", + "Date": "Wed, 25 Nov 2020 04:01:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "10fbb42c-62ce-4610-a324-cec99564d25e", + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", "status": "ready", - "createdDateTime": "2020-11-20T18:38:26Z", - "lastUpdatedDateTime": "2020-11-20T18:38:38Z" + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:16Z" }, "keys": { "clusters": { @@ -464,6 +497,6 @@ "Variables": { "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", - "RandomSeed": "1271227153" + "RandomSeed": "186438621" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False).json deleted file mode 100644 index 83220d4f3bb27..0000000000000 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False).json +++ /dev/null @@ -1,2838 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Content-Length": "43", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f2a548e04fcee840b981e9ee8f8b7e5a-6e75ac68ea1f734e-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "636426281891eef9699bbdfd00fd6a07", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "source": "Sanitized", - "useLabelFile": false - }, - "StatusCode": 201, - "ResponseHeaders": { - "apim-request-id": "817c9849-219e-4822-8652-80bfb13eacd4", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:30:56 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b79beff98f6c5701a1123ed80542a1fc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f325355b-824d-497b-b1a3-5f1370b6be1f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "71a44ce3575b8e10b7531daa302bcb05", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "14333b61-0b85-488b-b8cc-d283acf975fa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4af934d406a599d1250dc27ed920e826", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "110bb09a-1c2f-4af4-9dc2-af47cc5e4c83", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b319c1f9f859a2acdf0cff1871562676", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3d650cb7-9b79-4307-aed0-6ea1a109a034", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d10438475749dd577b0a4c4e9591b597", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d6e491d6-dcab-40c8-8eba-78dce44b0665", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6fb1f76a1811dcac87566b9807b927ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fa39af3d-ae11-439d-9ff0-7a3f9b7a9d61", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:03 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a0374ce6161ca2dc693c384eac5d0d4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2cb1822b-297d-4448-99c8-1e0297045d2b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "197" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "79ad6757b6a52f648c284af2ebbed6c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3da715ec-22bb-4037-85ee-ead3124d6632", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "48677ee21459537a1b0e05d4df5d2f2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6bcdb831-5e57-4de4-9350-87aea754afc5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9f411e49ad0b2f28e70814f4cce9b6ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7e3968d4-92a8-434e-93f5-392995fece8b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:30:57Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2e6b7665c4f542f3ec5a5e96b18f4f2f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "24457e9d-7b59-4ae6-97a8-a2403cc2d6f1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "ready", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:31:09Z" - }, - "keys": { - "clusters": { - "0": [ - "Additional Notes:", - "Address:", - "Company Name:", - "Company Phone:", - "Dated As:", - "Details", - "Email:", - "Ft Lauderdale, FL Phone:", - "Hero Limited", - "Name:", - "Phone:", - "Purchase Order", - "Purchase Order #:", - "Quantity", - "SUBTOTAL", - "Seattle, WA 93849 Phone:", - "Shipped From", - "Shipped To", - "TAX", - "TOTAL", - "Total", - "Unit Price", - "Vendor Name:", - "Website:" - ] - } - }, - "trainResult": { - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2c3575f3cb42f2418abc88dd431876a7-77e111c5b3884644-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cda91ff8377c35b65538615100868631", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3dc2a32e-2759-4379-b388-dcfff2e5995b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "ready", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:31:09Z" - }, - "keys": { - "clusters": { - "0": [ - "Additional Notes:", - "Address:", - "Company Name:", - "Company Phone:", - "Dated As:", - "Details", - "Email:", - "Ft Lauderdale, FL Phone:", - "Hero Limited", - "Name:", - "Phone:", - "Purchase Order", - "Purchase Order #:", - "Quantity", - "SUBTOTAL", - "Seattle, WA 93849 Phone:", - "Shipped From", - "Shipped To", - "TAX", - "TOTAL", - "Total", - "Unit Price", - "Vendor Name:", - "Website:" - ] - } - }, - "trainResult": { - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "686f5a5701f185342afeb2b14e917e57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9d297a10-c19b-4326-b023-794142ba8a3c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "343" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "007c06a2-25ad-48f2-9d13-b104d0d8f1e0", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:43:30Z", - "lastUpdatedDateTime": "2020-08-20T18:43:32Z" - }, - { - "modelId": "01579645-6803-4345-8db9-659c6a1744a0", - "status": "ready", - "createdDateTime": "2020-10-30T13:23:55Z", - "lastUpdatedDateTime": "2020-10-30T13:24:00Z" - }, - { - "modelId": "01bc0ea9-d7e3-4515-b502-f2b57efb0aa2", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:54Z", - "lastUpdatedDateTime": "2020-08-20T18:44:54Z" - }, - { - "modelId": "01bd21ac-ce1b-4e9f-b1a3-92847479633e", - "status": "ready", - "createdDateTime": "2020-08-20T22:28:00Z", - "lastUpdatedDateTime": "2020-08-20T22:28:09Z" - }, - { - "modelId": "01ef6d0c-d5c1-4343-bbcd-6add5cda3741", - "status": "creating", - "createdDateTime": "2020-08-17T21:42:37Z", - "lastUpdatedDateTime": "2020-08-17T21:42:37Z" - }, - { - "modelId": "022a3ddc-a723-4df1-bbee-df16b2092efa", - "status": "ready", - "createdDateTime": "2020-08-14T18:52:29Z", - "lastUpdatedDateTime": "2020-08-14T18:52:37Z" - }, - { - "modelId": "02f68a79-b056-4f85-9e93-898f8261d55e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:44:14Z", - "lastUpdatedDateTime": "2020-08-20T18:44:16Z" - }, - { - "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", - "modelName": "My composed model", - "attributes": { - "isComposed": true - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:20:47Z", - "lastUpdatedDateTime": "2020-10-30T13:20:48Z" - }, - { - "modelId": "032312e5-3e29-4a17-8297-96ce181e9ff7", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:25Z", - "lastUpdatedDateTime": "2020-08-20T23:26:33Z" - }, - { - "modelId": "0613c81a-b6e2-41f4-94ba-b7d033e07848", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:45Z", - "lastUpdatedDateTime": "2020-08-14T19:44:45Z" - }, - { - "modelId": "08500349-8e12-4ecc-b22f-6378fd21a608", - "status": "invalid", - "createdDateTime": "2020-08-14T19:45:11Z", - "lastUpdatedDateTime": "2020-08-14T19:45:11Z" - }, - { - "modelId": "09c0ba1d-f88d-4670-ac36-9dc8dc979a1b", - "status": "invalid", - "createdDateTime": "2020-08-20T23:26:11Z", - "lastUpdatedDateTime": "2020-08-20T23:26:11Z" - }, - { - "modelId": "0b325cdc-5a78-4d79-85f2-f53abaf4f151", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:33Z", - "lastUpdatedDateTime": "2020-08-20T22:45:33Z" - }, - { - "modelId": "0b32e649-44b9-4842-803d-4ec855514aa7", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:16Z", - "lastUpdatedDateTime": "2020-08-20T21:53:25Z" - }, - { - "modelId": "0cad4cc0-ea89-497c-86f0-9b57d2f02517", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:46Z", - "lastUpdatedDateTime": "2020-08-20T18:44:00Z" - }, - { - "modelId": "0cfe37f7-87fa-4475-a105-1777ea41c6cd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:49:12Z", - "lastUpdatedDateTime": "2020-08-20T21:49:19Z" - }, - { - "modelId": "0d93d3a5-9024-479c-827b-859d0bd7c006", - "status": "creating", - "createdDateTime": "2020-08-17T17:15:56Z", - "lastUpdatedDateTime": "2020-08-17T17:15:56Z" - }, - { - "modelId": "0da54f9c-ef82-4d08-9011-ffe4d3c02447", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:50Z", - "lastUpdatedDateTime": "2020-08-14T19:46:50Z" - }, - { - "modelId": "0ea70033-e01f-4365-b890-839c2a628ea7", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:43:43Z", - "lastUpdatedDateTime": "2020-08-20T22:43:44Z" - }, - { - "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", - "status": "invalid", - "createdDateTime": "2020-10-30T13:23:53Z", - "lastUpdatedDateTime": "2020-10-30T13:23:54Z" - }, - { - "modelId": "0fd3cd6d-4782-4f5e-bb8f-319394c848dd", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:21Z", - "lastUpdatedDateTime": "2020-08-20T18:43:24Z" - }, - { - "modelId": "102e5b73-5b01-431e-bfce-ca83ebc47c05", - "status": "ready", - "createdDateTime": "2020-08-20T22:49:46Z", - "lastUpdatedDateTime": "2020-08-20T22:49:55Z" - }, - { - "modelId": "1034ef53-16b6-492b-a511-2a89e5326349", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:13:32Z", - "lastUpdatedDateTime": "2020-10-30T13:13:34Z" - }, - { - "modelId": "1127179b-ee78-46d0-a51a-ca8a088ec177", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:42:19Z", - "lastUpdatedDateTime": "2020-08-20T18:42:21Z" - }, - { - "modelId": "11eb2552-c707-43f3-a673-897433da9f66", - "status": "invalid", - "createdDateTime": "2020-08-20T21:25:24Z", - "lastUpdatedDateTime": "2020-08-20T21:25:24Z" - }, - { - "modelId": "1239ac73-a1ba-43a8-b725-6118c6c4cb7d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:08:03Z", - "lastUpdatedDateTime": "2020-08-20T21:08:10Z" - }, - { - "modelId": "12b12b23-10d3-4efa-927b-8b79c153099a", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:34Z", - "lastUpdatedDateTime": "2020-08-14T19:10:34Z" - }, - { - "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:45Z", - "lastUpdatedDateTime": "2020-10-30T13:22:45Z" - }, - { - "modelId": "17c078da-8f4e-4376-923a-7672a8a621ab", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:47:37Z", - "lastUpdatedDateTime": "2020-08-14T19:47:38Z" - }, - { - "modelId": "17e8374c-6cd4-40d7-8d33-8fa52286a883", - "status": "ready", - "createdDateTime": "2020-08-20T22:06:19Z", - "lastUpdatedDateTime": "2020-08-20T22:06:29Z" - }, - { - "modelId": "18cb6b55-f009-4df2-8d56-ab423d29d5c4", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:20Z", - "lastUpdatedDateTime": "2020-08-20T22:43:23Z" - }, - { - "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:32Z", - "lastUpdatedDateTime": "2020-08-20T21:25:40Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "acfbe4b9e9402e2ec036d9bd62a24266", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "fc1b83ff-c7d3-453a-8345-79103170199c", - "Content-Length": "358", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:31:11 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "acfbe4b9e9402e2ec036d9bd62a24266", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3387d9e5-490d-4d06-895b-78cfca47ff05", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "286" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:32Z", - "lastUpdatedDateTime": "2020-08-20T21:25:40Z" - }, - { - "modelId": "1bf14c97-93e2-44ee-9ac6-a11478fc33da", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:45Z", - "lastUpdatedDateTime": "2020-08-20T23:28:45Z" - }, - { - "modelId": "1cba0c75-0acd-4ff0-9a06-02fd708ebd0b", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:51Z", - "lastUpdatedDateTime": "2020-08-14T19:46:51Z" - }, - { - "modelId": "1cc4fde0-89ac-4b67-b537-1fcf6275fe8e", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:22Z", - "lastUpdatedDateTime": "2020-08-20T23:29:30Z" - }, - { - "modelId": "1f2bca7f-9bf8-4138-8a4c-53c03c3c8f55", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:46:19Z", - "lastUpdatedDateTime": "2020-08-20T21:46:26Z" - }, - { - "modelId": "1fd33a7f-9726-4d73-a737-5e4a3016d7ad", - "status": "invalid", - "createdDateTime": "2020-08-14T19:47:13Z", - "lastUpdatedDateTime": "2020-08-14T19:47:13Z" - }, - { - "modelId": "20cbcc4d-191f-4c74-aac5-ecc2e3d959e6", - "status": "ready", - "createdDateTime": "2020-08-20T23:25:30Z", - "lastUpdatedDateTime": "2020-08-20T23:25:38Z" - }, - { - "modelId": "24307288-59a3-4cf8-b5c3-cc981928dc5d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:23:00Z", - "lastUpdatedDateTime": "2020-08-20T21:23:08Z" - }, - { - "modelId": "25365575-b6ce-4351-add0-b3c5b6f68ad0", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:28Z", - "lastUpdatedDateTime": "2020-08-20T22:45:28Z" - }, - { - "modelId": "253f0935-8a68-4425-88ca-9804d7ef40a4", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:11:18Z", - "lastUpdatedDateTime": "2020-08-14T19:11:20Z" - }, - { - "modelId": "26e8eb28-909b-4a5e-b10d-c862e0dde861", - "status": "ready", - "createdDateTime": "2020-08-20T22:45:55Z", - "lastUpdatedDateTime": "2020-08-20T22:46:01Z" - }, - { - "modelId": "272021b8-def8-48d8-8b89-10b3664b4dd4", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:54Z", - "lastUpdatedDateTime": "2020-08-20T18:44:54Z" - }, - { - "modelId": "27bc87a8-6ef8-4e41-b023-22f3484a078b", - "status": "ready", - "createdDateTime": "2020-08-14T19:29:45Z", - "lastUpdatedDateTime": "2020-08-14T19:29:52Z" - }, - { - "modelId": "2800da27-3d69-4333-bd95-e9b217732660", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:42Z", - "lastUpdatedDateTime": "2020-10-30T13:22:42Z" - }, - { - "modelId": "284f716b-a8a0-4333-9ad5-6be8b981ce79", - "status": "creating", - "createdDateTime": "2020-08-17T21:43:17Z", - "lastUpdatedDateTime": "2020-08-17T21:43:17Z" - }, - { - "modelId": "28cd0f90-8143-48e9-85b2-baf4b2cc4a8f", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:36Z", - "lastUpdatedDateTime": "2020-08-20T21:22:36Z" - }, - { - "modelId": "2a023ee3-7a0c-42ee-9946-571124631d68", - "status": "ready", - "createdDateTime": "2020-08-20T21:51:49Z", - "lastUpdatedDateTime": "2020-08-20T21:51:58Z" - }, - { - "modelId": "2a3fb884-1ef3-462c-bd28-0684e728d55a", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:45:27Z", - "lastUpdatedDateTime": "2020-08-20T18:45:28Z" - }, - { - "modelId": "2d0d3ec2-c813-4840-837a-65e3f14a4fd7", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:26Z", - "lastUpdatedDateTime": "2020-08-20T21:25:30Z" - }, - { - "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:15Z", - "lastUpdatedDateTime": "2020-10-30T13:21:26Z" - }, - { - "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:13Z", - "lastUpdatedDateTime": "2020-10-30T13:24:25Z" - }, - { - "modelId": "2fb4524b-3239-45c6-a9c0-4667b16ab72e", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:49Z", - "lastUpdatedDateTime": "2020-08-20T18:42:49Z" - }, - { - "modelId": "32a70028-9497-4938-b27d-a46c07315800", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:50:08Z", - "lastUpdatedDateTime": "2020-08-20T21:50:10Z" - }, - { - "modelId": "33921c16-6dd2-4666-aaed-3863b28e0eeb", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:34Z", - "lastUpdatedDateTime": "2020-08-14T19:10:34Z" - }, - { - "modelId": "34c52af3-ce6c-465c-9fc0-797f8b6dcfdc", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:14Z", - "lastUpdatedDateTime": "2020-08-14T19:08:22Z" - }, - { - "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:43Z", - "lastUpdatedDateTime": "2020-10-30T13:19:43Z" - }, - { - "modelId": "35238cbc-5c0b-4ae6-b19d-779568d5c3af", - "status": "ready", - "createdDateTime": "2020-08-20T21:06:49Z", - "lastUpdatedDateTime": "2020-08-20T21:06:57Z" - }, - { - "modelId": "35a3d57f-d630-437e-85cf-14f0a6ed1f29", - "status": "ready", - "createdDateTime": "2020-08-14T19:44:36Z", - "lastUpdatedDateTime": "2020-08-14T19:44:44Z" - }, - { - "modelId": "361ba8b7-61d0-4051-ba20-2dac77a428ef", - "status": "ready", - "createdDateTime": "2020-08-14T18:52:29Z", - "lastUpdatedDateTime": "2020-08-14T18:52:37Z" - }, - { - "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:42Z", - "lastUpdatedDateTime": "2020-10-30T13:22:42Z" - }, - { - "modelId": "37cbc664-e1aa-4fc1-b73e-d241dec98dfe", - "status": "invalid", - "createdDateTime": "2020-08-20T21:25:25Z", - "lastUpdatedDateTime": "2020-08-20T21:25:26Z" - }, - { - "modelId": "38d1e2ad-b058-4dfe-bb00-797b4f6ef957", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:57Z", - "lastUpdatedDateTime": "2020-08-20T22:42:57Z" - }, - { - "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:04Z", - "lastUpdatedDateTime": "2020-08-20T22:46:12Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "563f2dd3e620f63eeb23a27e8404e6c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0118c718-e7ef-4b6f-9bff-e57427c8d9d1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "220" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:04Z", - "lastUpdatedDateTime": "2020-08-20T22:46:12Z" - }, - { - "modelId": "3af295a0-785e-4567-bba5-54797c4aa61d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:23:19Z", - "lastUpdatedDateTime": "2020-08-20T21:23:20Z" - }, - { - "modelId": "3d445599-3e82-43bb-ad48-241788aec3b9", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:42:25Z", - "lastUpdatedDateTime": "2020-08-20T22:42:32Z" - }, - { - "modelId": "3d452732-d856-4579-bb92-817af8438a2f", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:38Z", - "lastUpdatedDateTime": "2020-10-30T13:21:50Z" - }, - { - "modelId": "3e5d1032-b968-458c-901f-7daa543210a7", - "status": "ready", - "createdDateTime": "2020-08-14T19:49:17Z", - "lastUpdatedDateTime": "2020-08-14T19:49:25Z" - }, - { - "modelId": "3efd32fe-763f-4cca-a58b-2fa57d13dc83", - "status": "creating", - "createdDateTime": "2020-08-17T17:15:30Z", - "lastUpdatedDateTime": "2020-08-17T17:15:30Z" - }, - { - "modelId": "40152914-610e-47f8-b6c6-8c155df7650e", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:46Z", - "lastUpdatedDateTime": "2020-08-20T22:45:46Z" - }, - { - "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:35Z", - "lastUpdatedDateTime": "2020-10-30T13:21:37Z" - }, - { - "modelId": "4120e08d-2693-4f80-a69f-53029d556457", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:29:31Z", - "lastUpdatedDateTime": "2020-08-20T23:29:38Z" - }, - { - "modelId": "412a541e-6015-4ba3-bc06-bda9dcfb4563", - "status": "ready", - "createdDateTime": "2020-08-20T21:28:50Z", - "lastUpdatedDateTime": "2020-08-20T21:28:58Z" - }, - { - "modelId": "41dcd3b4-7da4-4947-afc2-8267342bf8d3", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:08:56Z", - "lastUpdatedDateTime": "2020-08-14T19:08:58Z" - }, - { - "modelId": "42ca775f-ce05-4794-9afa-1206f9ec4e4b", - "status": "ready", - "createdDateTime": "2020-08-14T19:28:36Z", - "lastUpdatedDateTime": "2020-08-14T19:28:44Z" - }, - { - "modelId": "4363499c-72ab-45b2-8931-d8b1838bef70", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:26:34Z", - "lastUpdatedDateTime": "2020-08-20T23:26:41Z" - }, - { - "modelId": "438b68f8-bec6-4313-88d6-43f201f64e26", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:22:10Z", - "lastUpdatedDateTime": "2020-08-20T21:22:12Z" - }, - { - "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:37Z", - "lastUpdatedDateTime": "2020-10-30T13:24:49Z" - }, - { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:22:18Z", - "lastUpdatedDateTime": "2020-10-30T13:22:19Z" - }, - { - "modelId": "44cf7b0c-17d8-461b-8a14-972532fcf6d6", - "status": "creating", - "createdDateTime": "2020-08-17T22:30:19Z", - "lastUpdatedDateTime": "2020-08-17T22:30:19Z" - }, - { - "modelId": "44d3f221-a1ad-4726-a5f5-43bc37fe7222", - "status": "ready", - "createdDateTime": "2020-08-20T22:45:18Z", - "lastUpdatedDateTime": "2020-08-20T22:45:27Z" - }, - { - "modelId": "4559697f-580d-439c-a336-1272be0526f9", - "status": "invalid", - "createdDateTime": "2020-10-30T13:20:53Z", - "lastUpdatedDateTime": "2020-10-30T13:20:54Z" - }, - { - "modelId": "45c5498b-3755-44fd-95d5-8d5b5924e3a6", - "status": "invalid", - "createdDateTime": "2020-08-20T22:43:19Z", - "lastUpdatedDateTime": "2020-08-20T22:43:19Z" - }, - { - "modelId": "45f1adde-a451-4746-a675-f0ebb166151b", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:08Z", - "lastUpdatedDateTime": "2020-08-20T21:47:08Z" - }, - { - "modelId": "46201f03-7ffc-4e1e-bd07-a48bb6bccad4", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:23Z", - "lastUpdatedDateTime": "2020-08-14T19:08:23Z" - }, - { - "modelId": "46a86632-ff1f-4e80-bd06-6c8d48af3157", - "status": "ready", - "createdDateTime": "2020-08-20T18:44:45Z", - "lastUpdatedDateTime": "2020-08-20T18:44:53Z" - }, - { - "modelId": "47a7b4cd-d993-4d83-b6ca-ee18c547acfb", - "status": "ready", - "createdDateTime": "2020-08-20T22:49:07Z", - "lastUpdatedDateTime": "2020-08-20T22:49:16Z" - }, - { - "modelId": "488d74c6-25ae-4271-b7e5-cff85e10abc4", - "status": "ready", - "createdDateTime": "2020-08-20T18:26:04Z", - "lastUpdatedDateTime": "2020-08-20T18:26:12Z" - }, - { - "modelId": "49b0f1a2-e699-4f0d-a873-040df8e08e6c", - "status": "ready", - "createdDateTime": "2020-08-14T19:13:59Z", - "lastUpdatedDateTime": "2020-08-14T19:14:08Z" - }, - { - "modelId": "4acac1b2-4f07-46b2-9d21-c172d2a66330", - "status": "ready", - "createdDateTime": "2020-08-14T19:28:36Z", - "lastUpdatedDateTime": "2020-08-14T19:28:44Z" - }, - { - "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:33Z", - "lastUpdatedDateTime": "2020-10-30T13:24:35Z" - }, - { - "modelId": "4bfcc25d-0b2f-4fa2-a284-bcc98cf1f8fd", - "status": "ready", - "createdDateTime": "2020-08-20T21:31:42Z", - "lastUpdatedDateTime": "2020-08-20T21:31:51Z" - }, - { - "modelId": "4c92bc3c-f25c-4f02-84d9-f8ceae9b16b6", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:09Z", - "lastUpdatedDateTime": "2020-08-14T19:11:17Z" - }, - { - "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:20Z", - "lastUpdatedDateTime": "2020-08-20T18:45:20Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1b9709b9d98a6df12c40a8ba28762288", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "4c189b5e-f2f0-4c51-bb3d-1432ed11053c", - "Content-Length": "356", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:31:53 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1b9709b9d98a6df12c40a8ba28762288", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "81dcc3bc-ccc8-4d0d-ad57-c9df3e48e90f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "243" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:20Z", - "lastUpdatedDateTime": "2020-08-20T18:45:20Z" - }, - { - "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:52Z", - "lastUpdatedDateTime": "2020-10-30T13:25:13Z" - }, - { - "modelId": "52db9454-9b6c-4514-a6f4-27d3d404a999", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:43:30Z", - "lastUpdatedDateTime": "2020-08-20T22:43:32Z" - }, - { - "modelId": "547f6f41-f70e-4cb5-aa8f-2129e33df2af", - "status": "ready", - "createdDateTime": "2020-07-30T00:55:04Z", - "lastUpdatedDateTime": "2020-07-30T00:55:12Z" - }, - { - "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:42Z", - "lastUpdatedDateTime": "2020-10-30T13:19:42Z" - }, - { - "modelId": "55c30a55-134a-4f9d-8b42-37caa8198471", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:21Z", - "lastUpdatedDateTime": "2020-08-14T19:11:31Z" - }, - { - "modelId": "56292da4-33e9-421f-ad9b-859234c5d111", - "status": "invalid", - "createdDateTime": "2020-08-20T23:29:05Z", - "lastUpdatedDateTime": "2020-08-20T23:29:05Z" - }, - { - "modelId": "566b7d84-318a-4acb-a928-d684e42b93b3", - "status": "invalid", - "createdDateTime": "2020-08-20T21:50:02Z", - "lastUpdatedDateTime": "2020-08-20T21:50:02Z" - }, - { - "modelId": "56ce1ece-256f-480d-8637-1005534971de", - "status": "ready", - "createdDateTime": "2020-08-20T21:27:11Z", - "lastUpdatedDateTime": "2020-08-20T21:27:19Z" - }, - { - "modelId": "5737eddb-d3c3-4e43-8658-b0f4322af5dc", - "status": "invalid", - "createdDateTime": "2020-08-20T23:29:06Z", - "lastUpdatedDateTime": "2020-08-20T23:29:07Z" - }, - { - "modelId": "578062d7-dbfb-4548-a54e-299c967f17be", - "status": "ready", - "createdDateTime": "2020-08-20T18:48:16Z", - "lastUpdatedDateTime": "2020-08-20T18:48:27Z" - }, - { - "modelId": "57c1049c-a148-461a-ad5d-fe7e953f7d09", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:36Z", - "lastUpdatedDateTime": "2020-08-14T19:10:36Z" - }, - { - "modelId": "57e0eb22-6bdb-4ef9-a597-11d96876ad1d", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:21Z", - "lastUpdatedDateTime": "2020-08-14T19:45:29Z" - }, - { - "modelId": "5802c9ef-6ce3-41ac-be05-b4afb5613cb2", - "status": "ready", - "createdDateTime": "2020-08-20T21:08:18Z", - "lastUpdatedDateTime": "2020-08-20T21:08:26Z" - }, - { - "modelId": "5837470d-2183-4c9a-b005-80ab6b76765b", - "status": "ready", - "createdDateTime": "2020-08-20T23:31:12Z", - "lastUpdatedDateTime": "2020-08-20T23:31:26Z" - }, - { - "modelId": "584c4432-36cf-4a0b-a2e1-5c651bfd4227", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:08:02Z", - "lastUpdatedDateTime": "2020-08-14T19:08:04Z" - }, - { - "modelId": "58871fae-0f09-4f14-bce7-769d4bd35354", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:30Z", - "lastUpdatedDateTime": "2020-08-14T19:08:30Z" - }, - { - "modelId": "5bde02de-1dcb-4ea8-b497-0427a16b26fb", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:39Z", - "lastUpdatedDateTime": "2020-08-20T23:25:39Z" - }, - { - "modelId": "5f0ca916-4ca0-4f2d-9447-caeac53bcf2e", - "status": "ready", - "createdDateTime": "2020-08-20T23:32:15Z", - "lastUpdatedDateTime": "2020-08-20T23:32:25Z" - }, - { - "modelId": "5faf34f8-8399-477b-ba82-48f1e2e7688f", - "status": "invalid", - "createdDateTime": "2020-08-14T19:45:12Z", - "lastUpdatedDateTime": "2020-08-14T19:45:12Z" - }, - { - "modelId": "5feddb70-fa11-450f-b34b-37a45b5c80d3", - "status": "invalid", - "createdDateTime": "2020-08-20T23:26:09Z", - "lastUpdatedDateTime": "2020-08-20T23:26:10Z" - }, - { - "modelId": "6035d354-53ef-4dcd-93de-5b9ad1c1ea77", - "status": "ready", - "createdDateTime": "2020-08-20T18:42:40Z", - "lastUpdatedDateTime": "2020-08-20T18:42:48Z" - }, - { - "modelId": "6216b1ae-970a-485b-a35e-070150082adb", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:57Z", - "lastUpdatedDateTime": "2020-08-20T22:42:57Z" - }, - { - "modelId": "63262869-1ff0-49d0-a26f-1d1552cad649", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:09:49Z", - "lastUpdatedDateTime": "2020-08-20T23:09:51Z" - }, - { - "modelId": "637426f9-5d46-4e4c-8bfb-86f2b60bd94b", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:44Z", - "lastUpdatedDateTime": "2020-08-20T21:49:44Z" - }, - { - "modelId": "66087b32-fce4-402d-9101-1bc4f627462d", - "status": "ready", - "createdDateTime": "2020-08-20T21:22:24Z", - "lastUpdatedDateTime": "2020-08-20T21:22:33Z" - }, - { - "modelId": "6645dde9-caf0-4beb-8758-501325f2e605", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:58Z", - "lastUpdatedDateTime": "2020-08-20T21:54:06Z" - }, - { - "modelId": "68f6c9f8-795d-43bc-97bd-619dad38c66d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:28:13Z", - "lastUpdatedDateTime": "2020-08-20T23:28:19Z" - }, - { - "modelId": "6bbda4de-97ee-4d62-a7ab-2a9a13f503f6", - "status": "invalid", - "createdDateTime": "2020-08-20T21:49:56Z", - "lastUpdatedDateTime": "2020-08-20T21:49:56Z" - }, - { - "modelId": "6c252bb0-d84a-47c8-82af-0dabf36c4c6f", - "status": "invalid", - "createdDateTime": "2020-08-20T21:47:26Z", - "lastUpdatedDateTime": "2020-08-20T21:47:27Z" - }, - { - "modelId": "6c6bd1f5-4009-435f-b938-df50c1966733", - "status": "ready", - "createdDateTime": "2020-08-20T21:28:00Z", - "lastUpdatedDateTime": "2020-08-20T21:28:08Z" - }, - { - "modelId": "6fbe2ae1-fd8f-40c7-bf2e-c05e90931aac", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:45Z", - "lastUpdatedDateTime": "2020-08-20T23:28:45Z" - }, - { - "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:22Z", - "lastUpdatedDateTime": "2020-08-20T18:45:26Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "21dd4cbc2852d236a605c11c47b0aabb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b7238caa-5637-4575-a341-4d432286a3c1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "273" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:22Z", - "lastUpdatedDateTime": "2020-08-20T18:45:26Z" - }, - { - "modelId": "714cd9ba-6084-4966-bf98-079fc90562fe", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:10:07Z", - "lastUpdatedDateTime": "2020-08-14T19:10:09Z" - }, - { - "modelId": "7156bc3a-1e6b-4125-b89f-10d971d5ba14", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:27:48Z", - "lastUpdatedDateTime": "2020-08-20T22:27:50Z" - }, - { - "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", - "modelName": "My training", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:03Z", - "lastUpdatedDateTime": "2020-10-30T13:21:04Z" - }, - { - "modelId": "74ea7917-ea1e-4d62-8bd9-551fcac9d963", - "status": "ready", - "createdDateTime": "2020-08-14T19:50:11Z", - "lastUpdatedDateTime": "2020-08-14T19:50:19Z" - }, - { - "modelId": "765cd50a-d9bd-4bbe-9e77-8e496c234240", - "status": "ready", - "createdDateTime": "2020-08-20T18:46:18Z", - "lastUpdatedDateTime": "2020-08-20T18:46:27Z" - }, - { - "modelId": "76aed1f7-5a15-4754-925c-45d27d7fd0c5", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:34Z", - "lastUpdatedDateTime": "2020-08-20T21:22:34Z" - }, - { - "modelId": "76e1dc72-2be3-4c40-9f07-6b29a0bf327a", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:45Z", - "lastUpdatedDateTime": "2020-08-14T19:44:45Z" - }, - { - "modelId": "76e25188-e121-4fc3-a5f3-3cb861033259", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:07Z", - "lastUpdatedDateTime": "2020-08-20T21:25:07Z" - }, - { - "modelId": "795417b4-25af-4d41-aa61-3cef0084e589", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:03Z", - "lastUpdatedDateTime": "2020-08-20T21:50:07Z" - }, - { - "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", - "modelName": "My training", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:02Z", - "lastUpdatedDateTime": "2020-10-30T13:24:03Z" - }, - { - "modelId": "7c9a4c19-1761-40d2-8f2b-10f10510ca74", - "status": "ready", - "createdDateTime": "2020-08-14T19:10:57Z", - "lastUpdatedDateTime": "2020-08-14T19:11:00Z" - }, - { - "modelId": "7dd8a381-1484-4809-ad11-db27dc50841e", - "status": "ready", - "createdDateTime": "2020-08-20T21:49:31Z", - "lastUpdatedDateTime": "2020-08-20T21:49:39Z" - }, - { - "modelId": "7dfcb89d-abc6-43ca-bae6-cce241d06e4f", - "status": "ready", - "createdDateTime": "2020-08-20T21:30:14Z", - "lastUpdatedDateTime": "2020-08-20T21:30:22Z" - }, - { - "modelId": "7f2745e3-7f0d-46f7-919a-96b939030594", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:59Z", - "lastUpdatedDateTime": "2020-08-20T22:42:59Z" - }, - { - "modelId": "80601216-855c-4286-b532-34af33c229ae", - "status": "ready", - "createdDateTime": "2020-08-14T19:13:08Z", - "lastUpdatedDateTime": "2020-08-14T19:13:16Z" - }, - { - "modelId": "84fd2414-5018-4f5a-9805-b80467ce7593", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:27Z", - "lastUpdatedDateTime": "2020-08-20T21:47:31Z" - }, - { - "modelId": "8692493e-799d-48c3-b217-950e1471adba", - "status": "ready", - "createdDateTime": "2020-08-14T19:48:16Z", - "lastUpdatedDateTime": "2020-08-14T19:48:24Z" - }, - { - "modelId": "878a4cd7-39c2-46a0-a905-7cc1bd071837", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:46:09Z", - "lastUpdatedDateTime": "2020-08-14T19:46:12Z" - }, - { - "modelId": "87f0f103-08c9-4cae-91b8-f5a0a205bb35", - "status": "creating", - "createdDateTime": "2020-08-17T22:32:37Z", - "lastUpdatedDateTime": "2020-08-17T22:32:37Z" - }, - { - "modelId": "88d34ad1-0508-475c-9d75-2c15594876ac", - "status": "invalid", - "createdDateTime": "2020-08-14T19:47:12Z", - "lastUpdatedDateTime": "2020-08-14T19:47:12Z" - }, - { - "modelId": "8a2a6999-df6a-4b64-9633-87d097b2af06", - "status": "invalid", - "createdDateTime": "2020-08-20T22:45:53Z", - "lastUpdatedDateTime": "2020-08-20T22:45:53Z" - }, - { - "modelId": "91f0a68b-5890-4e2a-8856-4489113f9d54", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:11:01Z", - "lastUpdatedDateTime": "2020-08-14T19:11:08Z" - }, - { - "modelId": "91f917c8-c8ad-457e-8d62-00e3e1686aac", - "status": "invalid", - "createdDateTime": "2020-08-20T18:43:19Z", - "lastUpdatedDateTime": "2020-08-20T18:43:20Z" - }, - { - "modelId": "921d9d16-9a9d-4dab-a0c5-63deb0aed5a6", - "status": "ready", - "createdDateTime": "2020-08-20T22:42:48Z", - "lastUpdatedDateTime": "2020-08-20T22:42:56Z" - }, - { - "modelId": "9259c76f-7273-41a7-83e2-fd176eeef64e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:02Z", - "lastUpdatedDateTime": "2020-08-20T22:46:04Z" - }, - { - "modelId": "92829e8f-ef96-4b83-8d54-4e2064729e84", - "status": "invalid", - "createdDateTime": "2020-08-14T19:08:49Z", - "lastUpdatedDateTime": "2020-08-14T19:08:49Z" - }, - { - "modelId": "932ef024-3b06-4445-bc05-863f0b7365db", - "status": "ready", - "createdDateTime": "2020-08-14T19:10:25Z", - "lastUpdatedDateTime": "2020-08-14T19:10:32Z" - }, - { - "modelId": "94e1ae64-db16-4b11-b3ec-db684b3eb473", - "status": "ready", - "createdDateTime": "2020-08-20T21:46:57Z", - "lastUpdatedDateTime": "2020-08-20T21:47:05Z" - }, - { - "modelId": "959a6767-936a-4388-be50-47b1471173e2", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:33Z", - "lastUpdatedDateTime": "2020-08-20T22:43:42Z" - }, - { - "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:51Z", - "lastUpdatedDateTime": "2020-10-30T13:24:52Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "58031550260af9db3bd12ae03e83cd74", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9f6c7b5c-9e13-4b83-a698-38291febdeef", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "246" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:51Z", - "lastUpdatedDateTime": "2020-10-30T13:24:52Z" - }, - { - "modelId": "9794b06a-303c-4014-ac9c-d64ccd2d897d", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:33Z", - "lastUpdatedDateTime": "2020-08-20T21:22:33Z" - }, - { - "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:52Z", - "lastUpdatedDateTime": "2020-10-30T13:21:54Z" - }, - { - "modelId": "98fc2d15-8bb1-4eb8-85f8-dbde2d188615", - "status": "ready", - "createdDateTime": "2020-08-14T19:46:41Z", - "lastUpdatedDateTime": "2020-08-14T19:46:48Z" - }, - { - "modelId": "9947fcd1-42b4-4c38-930e-1b0403e6f761", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:42Z", - "lastUpdatedDateTime": "2020-08-14T19:45:53Z" - }, - { - "modelId": "99c2b562-6e31-4923-a25c-8d940951ed2f", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:23Z", - "lastUpdatedDateTime": "2020-08-14T19:47:32Z" - }, - { - "modelId": "9a0b42b4-09e2-4c90-8bd0-64395fb588e8", - "status": "ready", - "createdDateTime": "2020-08-20T23:28:36Z", - "lastUpdatedDateTime": "2020-08-20T23:28:44Z" - }, - { - "modelId": "9aa701a8-3822-4d5d-bc37-4891415c267f", - "status": "ready", - "createdDateTime": "2020-08-20T22:06:19Z", - "lastUpdatedDateTime": "2020-08-20T22:06:29Z" - }, - { - "modelId": "9d8aac28-0ab6-4b18-bb80-35341797a3ad", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:04Z", - "lastUpdatedDateTime": "2020-08-20T21:53:15Z" - }, - { - "modelId": "9e6eb7bc-d4b9-4887-a38a-58957d712769", - "status": "ready", - "createdDateTime": "2020-08-20T21:30:14Z", - "lastUpdatedDateTime": "2020-08-20T21:30:22Z" - }, - { - "modelId": "9f7271da-c7c1-4407-bd1a-92577c187995", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:21Z", - "lastUpdatedDateTime": "2020-08-20T18:45:22Z" - }, - { - "modelId": "a00e27ee-1358-468a-a95c-c80e5bff6343", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:45:08Z", - "lastUpdatedDateTime": "2020-08-20T22:45:15Z" - }, - { - "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "status": "ready", - "createdDateTime": "2020-10-30T13:30:57Z", - "lastUpdatedDateTime": "2020-10-30T13:31:09Z" - }, - { - "modelId": "a0a7e72a-d8ec-4293-8dee-7fbe726fc115", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:45:38Z", - "lastUpdatedDateTime": "2020-08-20T18:45:39Z" - }, - { - "modelId": "a1513cf9-13dd-4eb7-bac5-7ceee4658c13", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T18:53:36Z", - "lastUpdatedDateTime": "2020-08-14T18:53:43Z" - }, - { - "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", - "status": "ready", - "createdDateTime": "2020-10-30T13:20:55Z", - "lastUpdatedDateTime": "2020-10-30T13:21:01Z" - }, - { - "modelId": "a2a41673-e1b2-4319-8eef-44910ce4d9cf", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:33Z", - "lastUpdatedDateTime": "2020-08-20T18:43:41Z" - }, - { - "modelId": "a2b05934-353c-4eb9-ac8b-45d1d2e489f2", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:14Z", - "lastUpdatedDateTime": "2020-08-20T22:46:24Z" - }, - { - "modelId": "a3189094-17a1-4acf-a788-f8c05c6e6a19", - "status": "invalid", - "createdDateTime": "2020-08-20T22:45:54Z", - "lastUpdatedDateTime": "2020-08-20T22:45:55Z" - }, - { - "modelId": "a336ff42-7e03-4b7f-821a-1246209f29de", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:51Z", - "lastUpdatedDateTime": "2020-08-14T19:08:55Z" - }, - { - "modelId": "a38f391d-fad5-4ed5-be4c-5a3644803cf4", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:39Z", - "lastUpdatedDateTime": "2020-08-20T23:29:51Z" - }, - { - "modelId": "a3cb3ffe-ba7b-4a0d-838a-eced98e48e8c", - "status": "invalid", - "createdDateTime": "2020-08-20T22:43:18Z", - "lastUpdatedDateTime": "2020-08-20T22:43:18Z" - }, - { - "modelId": "a5f5ef27-523c-44a4-a06c-a56470180145", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:55Z", - "lastUpdatedDateTime": "2020-08-14T19:44:55Z" - }, - { - "modelId": "a67b821e-e8f2-419d-97f6-e28903abe6a0", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:25:31Z", - "lastUpdatedDateTime": "2020-08-20T21:25:32Z" - }, - { - "modelId": "a70a5d5b-3b72-486b-91f1-0b518e077a43", - "status": "ready", - "createdDateTime": "2020-08-20T22:48:57Z", - "lastUpdatedDateTime": "2020-08-20T22:49:06Z" - }, - { - "modelId": "a78b3a1c-9189-4901-9bc2-ccceec21bf20", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:56Z", - "lastUpdatedDateTime": "2020-08-20T18:44:56Z" - }, - { - "modelId": "a7d5f0a1-b604-4fd4-a1fb-5df92c6deaef", - "status": "ready", - "createdDateTime": "2020-08-20T18:26:04Z", - "lastUpdatedDateTime": "2020-08-20T18:26:12Z" - }, - { - "modelId": "a8b5afb6-f11a-4496-ad62-a70e3ecda523", - "status": "ready", - "createdDateTime": "2020-08-14T19:49:09Z", - "lastUpdatedDateTime": "2020-08-14T19:49:17Z" - }, - { - "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:21Z", - "lastUpdatedDateTime": "2020-08-20T21:50:32Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5NWFhMDdjLWEyN2ItNDMyMy04YmM2LTNhMDI0ODVmMjcwNy9hOTVhYTA3Yy1hMjdiLTQzMjMtOGJjNi0zYTAyNDg1ZjI3MDcuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5NWFhMDdjLWEyN2ItNDMyMy04YmM2LTNhMDI0ODVmMjcwNy9hOTVhYTA3Yy1hMjdiLTQzMjMtOGJjNi0zYTAyNDg1ZjI3MDcuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "37c11901c4269170d3c5758518d5267b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "db329643-68e4-4650-bd0c-61f7f2b8f69c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "275" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:21Z", - "lastUpdatedDateTime": "2020-08-20T21:50:32Z" - }, - { - "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:13Z", - "lastUpdatedDateTime": "2020-08-20T22:46:14Z" - }, - { - "modelId": "a9dbcb83-f15c-4b42-aaef-c2e78adb3169", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:14Z", - "lastUpdatedDateTime": "2020-08-14T19:47:20Z" - }, - { - "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:05Z", - "lastUpdatedDateTime": "2020-10-30T13:21:06Z" - }, - { - "modelId": "ac2a0641-62e3-43e4-ab21-2f0eb52b6e61", - "status": "ready", - "createdDateTime": "2020-08-20T21:24:53Z", - "lastUpdatedDateTime": "2020-08-20T21:25:02Z" - }, - { - "modelId": "ad2694f9-88d9-48b6-b85c-71b6000aa9df", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:39Z", - "lastUpdatedDateTime": "2020-08-14T19:47:49Z" - }, - { - "modelId": "af6d3536-b663-4856-9824-9e8872fc83ed", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:43:43Z", - "lastUpdatedDateTime": "2020-08-20T18:43:45Z" - }, - { - "modelId": "b01f6909-840f-4ca9-85a3-769538176fe5", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:50Z", - "lastUpdatedDateTime": "2020-08-20T22:44:01Z" - }, - { - "modelId": "b08b7db5-97ae-4459-9603-47d5994e9f4a", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:57Z", - "lastUpdatedDateTime": "2020-08-14T19:12:05Z" - }, - { - "modelId": "b0b6140c-fb6e-4c67-b7f1-420074909323", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:47Z", - "lastUpdatedDateTime": "2020-08-20T23:28:47Z" - }, - { - "modelId": "b102b022-de56-4e48-8c16-41dae496d899", - "status": "invalid", - "createdDateTime": "2020-08-20T21:47:25Z", - "lastUpdatedDateTime": "2020-08-20T21:47:25Z" - }, - { - "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", - "status": "invalid", - "createdDateTime": "2020-10-30T13:20:52Z", - "lastUpdatedDateTime": "2020-10-30T13:20:52Z" - }, - { - "modelId": "b3cc3815-9fc0-40bc-ad82-0533b038db9d", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:13Z", - "lastUpdatedDateTime": "2020-08-14T19:45:17Z" - }, - { - "modelId": "b404b97b-0e37-4eb5-8ad1-4ced5d0a34a5", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:29Z", - "lastUpdatedDateTime": "2020-08-20T18:45:37Z" - }, - { - "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:55Z", - "lastUpdatedDateTime": "2020-10-30T13:22:15Z" - }, - { - "modelId": "b6cf7b42-a0ea-4d17-9a2e-080f0370f562", - "status": "invalid", - "createdDateTime": "2020-08-20T21:22:55Z", - "lastUpdatedDateTime": "2020-08-20T21:22:55Z" - }, - { - "modelId": "b768df27-adda-4f47-8223-4f9b696b3591", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:08Z", - "lastUpdatedDateTime": "2020-08-20T21:47:08Z" - }, - { - "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", - "modelName": "My composed model", - "attributes": { - "isComposed": true - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:23:46Z", - "lastUpdatedDateTime": "2020-10-30T13:23:47Z" - }, - { - "modelId": "bacfa117-235d-43f0-b919-913a0e0ae686", - "status": "ready", - "createdDateTime": "2020-08-20T22:47:48Z", - "lastUpdatedDateTime": "2020-08-20T22:47:56Z" - }, - { - "modelId": "bc1133f6-33d3-4ac1-a848-0695866e1786", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:25:41Z", - "lastUpdatedDateTime": "2020-08-20T21:25:42Z" - }, - { - "modelId": "bc6ae2e0-2eb4-40bb-b8d0-0ca37f413c58", - "status": "invalid", - "createdDateTime": "2020-08-20T21:22:53Z", - "lastUpdatedDateTime": "2020-08-20T21:22:54Z" - }, - { - "modelId": "bd10694b-d9fd-402e-9f89-2e5994a7691f", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:27:08Z", - "lastUpdatedDateTime": "2020-08-20T18:27:10Z" - }, - { - "modelId": "be8593fc-3fab-4300-8b14-f77966b99c04", - "status": "invalid", - "createdDateTime": "2020-08-14T19:10:54Z", - "lastUpdatedDateTime": "2020-08-14T19:10:54Z" - }, - { - "modelId": "c1cf6bc1-0d0f-4a23-b453-9df1b937710a", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:27Z", - "lastUpdatedDateTime": "2020-08-20T18:47:35Z" - }, - { - "modelId": "c2401fd4-05c0-48d4-bd2f-7a30589b1306", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:09:15Z", - "lastUpdatedDateTime": "2020-08-14T19:09:27Z" - }, - { - "modelId": "c39ee6fa-e7a8-4ad9-990e-aa9049846fff", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:08Z", - "lastUpdatedDateTime": "2020-08-20T23:29:13Z" - }, - { - "modelId": "c5797a87-180d-4ec3-a23f-aa44848ad149", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:12Z", - "lastUpdatedDateTime": "2020-08-20T23:26:17Z" - }, - { - "modelId": "c690cad3-cb93-4b4b-9139-f542f08aefa2", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:26:23Z", - "lastUpdatedDateTime": "2020-08-20T23:26:24Z" - }, - { - "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:25:05Z", - "lastUpdatedDateTime": "2020-08-20T23:25:07Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M2YTMwNTI2LTRhNjAtNGFhYy05MGRiLWRlYTgzYmYwNDc5OS9jNmEzMDUyNi00YTYwLTRhYWMtOTBkYi1kZWE4M2JmMDQ3OTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M2YTMwNTI2LTRhNjAtNGFhYy05MGRiLWRlYTgzYmYwNDc5OS9jNmEzMDUyNi00YTYwLTRhYWMtOTBkYi1kZWE4M2JmMDQ3OTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1269ec96c972957e71e4e581fd569322", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5612256b-4d44-481d-a4d0-977ab9583e00", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "227" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:25:05Z", - "lastUpdatedDateTime": "2020-08-20T23:25:07Z" - }, - { - "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", - "status": "ready", - "createdDateTime": "2020-08-20T23:33:14Z", - "lastUpdatedDateTime": "2020-08-20T23:33:22Z" - }, - { - "modelId": "c89e3c61-0048-4ac6-93e6-4f28e4c290cc", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:29:28Z", - "lastUpdatedDateTime": "2020-08-14T19:29:35Z" - }, - { - "modelId": "c8b76997-38b0-444f-9646-40e930bd7b5c", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:50Z", - "lastUpdatedDateTime": "2020-08-20T21:48:01Z" - }, - { - "modelId": "cdb4705a-40e1-4ff4-8ad0-fec5734f4325", - "status": "ready", - "createdDateTime": "2020-08-20T23:10:08Z", - "lastUpdatedDateTime": "2020-08-20T23:10:17Z" - }, - { - "modelId": "cde04bf1-6d25-46f7-bdb5-2d056d9d0770", - "status": "ready", - "createdDateTime": "2020-08-14T19:09:28Z", - "lastUpdatedDateTime": "2020-08-14T19:09:39Z" - }, - { - "modelId": "cdfdd9de-9047-4c6b-9a87-eb8f561f73ff", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:47:21Z", - "lastUpdatedDateTime": "2020-08-14T19:47:23Z" - }, - { - "modelId": "cee73923-0fa2-40dd-8eda-8446c153ecbb", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:45:18Z", - "lastUpdatedDateTime": "2020-08-14T19:45:20Z" - }, - { - "modelId": "cf0a0084-92b5-4c82-aaee-b899a0645f91", - "status": "ready", - "createdDateTime": "2020-08-14T18:53:51Z", - "lastUpdatedDateTime": "2020-08-14T18:53:59Z" - }, - { - "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", - "status": "invalid", - "createdDateTime": "2020-10-30T13:23:52Z", - "lastUpdatedDateTime": "2020-10-30T13:23:52Z" - }, - { - "modelId": "d1ebd4b5-6e79-4a31-9ed2-0d492b409a6c", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:50Z", - "lastUpdatedDateTime": "2020-08-14T19:46:50Z" - }, - { - "modelId": "d234c2cd-e20d-407c-b023-2bb7e0065875", - "status": "ready", - "createdDateTime": "2020-08-20T21:06:49Z", - "lastUpdatedDateTime": "2020-08-20T21:06:57Z" - }, - { - "modelId": "d2bb2813-e890-4726-ad3a-5b2137840550", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:59Z", - "lastUpdatedDateTime": "2020-08-14T19:09:09Z" - }, - { - "modelId": "d35b3816-19e2-4263-840b-749342c5a9ae", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:48Z", - "lastUpdatedDateTime": "2020-08-20T23:25:48Z" - }, - { - "modelId": "d38c3724-ecc0-46ad-be24-9cfb55e88fdd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:29:19Z", - "lastUpdatedDateTime": "2020-08-20T23:29:21Z" - }, - { - "modelId": "d44ad36d-9b3f-4528-aeed-50111c87d0d8", - "status": "ready", - "createdDateTime": "2020-08-20T21:22:56Z", - "lastUpdatedDateTime": "2020-08-20T21:22:59Z" - }, - { - "modelId": "d71f1973-c8bc-4723-95f6-270faeb0d710", - "status": "ready", - "createdDateTime": "2020-08-05T20:02:42Z", - "lastUpdatedDateTime": "2020-08-05T20:02:53Z" - }, - { - "modelId": "d76bbb87-3665-4fcf-bd78-5af39fa70371", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:03Z", - "lastUpdatedDateTime": "2020-08-20T21:25:03Z" - }, - { - "modelId": "d7c60908-afae-4db7-97a4-7dfee044d9fb", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:44:20Z", - "lastUpdatedDateTime": "2020-08-14T19:44:27Z" - }, - { - "modelId": "d8bc8709-3324-4d86-a702-fb13d83bd3fd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:24:37Z", - "lastUpdatedDateTime": "2020-08-20T21:24:38Z" - }, - { - "modelId": "d9d6453d-555a-411b-8969-29023fc1d347", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:50:19Z", - "lastUpdatedDateTime": "2020-08-20T21:50:21Z" - }, - { - "modelId": "da9ff68e-3cb0-4066-8030-84fac4049adf", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:42Z", - "lastUpdatedDateTime": "2020-08-20T23:26:55Z" - }, - { - "modelId": "db37c79c-cb7c-4e82-b5a6-de8761e95791", - "status": "creating", - "createdDateTime": "2020-08-17T22:33:39Z", - "lastUpdatedDateTime": "2020-08-17T22:33:39Z" - }, - { - "modelId": "de0c3af0-ab73-4a50-88b9-0be008348ff3", - "status": "ready", - "createdDateTime": "2020-08-14T19:12:59Z", - "lastUpdatedDateTime": "2020-08-14T19:13:07Z" - }, - { - "modelId": "ded45364-1d15-4185-9ba1-349085488c79", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:31:28Z", - "lastUpdatedDateTime": "2020-08-20T21:31:30Z" - }, - { - "modelId": "df46a938-d337-4664-82f6-13fe40a3ccbd", - "status": "ready", - "createdDateTime": "2020-08-05T20:05:23Z", - "lastUpdatedDateTime": "2020-08-05T20:05:34Z" - }, - { - "modelId": "dfed1264-2f66-4fa1-83fd-adce189c3ae9", - "status": "creating", - "createdDateTime": "2020-08-17T22:30:35Z", - "lastUpdatedDateTime": "2020-08-17T22:30:35Z" - }, - { - "modelId": "e10d0994-db23-4546-9ea7-377e52f85c7e", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:40Z", - "lastUpdatedDateTime": "2020-08-20T21:47:48Z" - }, - { - "modelId": "e1fb3fc5-8672-4d3c-ad29-fa0c489f21fd", - "status": "invalid", - "createdDateTime": "2020-08-20T18:43:14Z", - "lastUpdatedDateTime": "2020-08-20T18:43:15Z" - }, - { - "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:17Z", - "lastUpdatedDateTime": "2020-08-20T18:47:25Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2d1a4c3772ee8c94a5728544b155e066", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "821985cf-2907-4ddf-9b7f-e4d3f103e72f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "204" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:17Z", - "lastUpdatedDateTime": "2020-08-20T18:47:25Z" - }, - { - "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:10Z", - "lastUpdatedDateTime": "2020-08-20T21:50:18Z" - }, - { - "modelId": "e2d2eecf-d810-4fd9-8b94-cc370a9d3dc5", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:40Z", - "lastUpdatedDateTime": "2020-08-20T21:49:40Z" - }, - { - "modelId": "e31e548b-1c1a-4345-907b-b77bec13260d", - "status": "creating", - "createdDateTime": "2020-08-17T17:11:47Z", - "lastUpdatedDateTime": "2020-08-17T17:11:47Z" - }, - { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:19:24Z", - "lastUpdatedDateTime": "2020-10-30T13:19:26Z" - }, - { - "modelId": "e4949cbb-05e0-4d1b-bab9-c4e444b25c9e", - "status": "invalid", - "createdDateTime": "2020-08-14T19:08:50Z", - "lastUpdatedDateTime": "2020-08-14T19:08:51Z" - }, - { - "modelId": "e8679f07-a7ae-43ff-af1c-417567ece17f", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:23Z", - "lastUpdatedDateTime": "2020-08-14T19:08:23Z" - }, - { - "modelId": "eb78387f-b93d-47c4-8ff2-5a75fa2848c2", - "status": "creating", - "createdDateTime": "2020-08-17T17:11:08Z", - "lastUpdatedDateTime": "2020-08-17T17:11:08Z" - }, - { - "modelId": "eccc2f1b-08fc-4bdf-af54-45bbb3a94dc8", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:16Z", - "lastUpdatedDateTime": "2020-08-20T21:47:16Z" - }, - { - "modelId": "f019ba8f-b377-4307-aed2-2e357d88faad", - "status": "invalid", - "createdDateTime": "2020-08-14T19:10:55Z", - "lastUpdatedDateTime": "2020-08-14T19:10:56Z" - }, - { - "modelId": "f0790982-b19e-4f0b-9f3d-0bd73c22d50b", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:40Z", - "lastUpdatedDateTime": "2020-08-20T18:45:50Z" - }, - { - "modelId": "f09bb379-e552-423b-a66e-11d4a47b4cad", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:45:30Z", - "lastUpdatedDateTime": "2020-08-14T19:45:41Z" - }, - { - "modelId": "f16a5995-6f9d-429c-a9ce-94b42e707f4e", - "status": "ready", - "createdDateTime": "2020-08-20T21:23:21Z", - "lastUpdatedDateTime": "2020-08-20T21:23:32Z" - }, - { - "modelId": "f2b17543-4827-4824-8f0a-297915305924", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:39Z", - "lastUpdatedDateTime": "2020-08-20T23:25:39Z" - }, - { - "modelId": "f313494f-2d7d-4c1b-baca-4f019e1bb372", - "status": "ready", - "createdDateTime": "2020-08-20T21:23:09Z", - "lastUpdatedDateTime": "2020-08-20T21:23:17Z" - }, - { - "modelId": "f4a51dde-7357-46f7-b160-1321e8cf6a8e", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:03Z", - "lastUpdatedDateTime": "2020-08-20T21:25:03Z" - }, - { - "modelId": "f5b14d6e-2c12-4a8b-a26b-6f919fb3fc22", - "status": "ready", - "createdDateTime": "2020-08-20T18:27:28Z", - "lastUpdatedDateTime": "2020-08-20T18:27:36Z" - }, - { - "modelId": "f630338a-704f-49e6-90df-3661cdb70919", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:47:48Z", - "lastUpdatedDateTime": "2020-08-20T21:47:49Z" - }, - { - "modelId": "f86960b5-529c-434d-900e-72383c3535bd", - "status": "ready", - "createdDateTime": "2020-08-20T21:27:51Z", - "lastUpdatedDateTime": "2020-08-20T21:27:59Z" - }, - { - "modelId": "f8ec4bc9-ae6d-4ff7-ae5e-5ce9155164cf", - "status": "ready", - "createdDateTime": "2020-08-20T23:32:06Z", - "lastUpdatedDateTime": "2020-08-20T23:32:14Z" - }, - { - "modelId": "f9ad28eb-5fdc-4844-8a72-04a115dd2029", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:49Z", - "lastUpdatedDateTime": "2020-08-20T18:42:49Z" - }, - { - "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:04Z", - "lastUpdatedDateTime": "2020-10-30T13:24:06Z" - }, - { - "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:47Z", - "lastUpdatedDateTime": "2020-10-30T13:19:47Z" - }, - { - "modelId": "fae7acb8-2ffc-40d1-9e07-a2f2af6f54f5", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:43Z", - "lastUpdatedDateTime": "2020-08-20T21:25:54Z" - }, - { - "modelId": "fbc59a11-f373-4f3d-b24c-3e32aa033d7e", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:56Z", - "lastUpdatedDateTime": "2020-08-20T18:42:56Z" - }, - { - "modelId": "fc0d549e-3a1f-4eda-bb96-fb6bf60c0f53", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:47:32Z", - "lastUpdatedDateTime": "2020-08-20T21:47:39Z" - }, - { - "modelId": "fca987e8-8ed2-4c00-8aa4-eeff583bb155", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:40Z", - "lastUpdatedDateTime": "2020-08-20T21:49:40Z" - } - ], - "nextLink": "" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3a48523dac92ed438995602dd0b82eb4-8768de1bdd6a204f-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5249aeaabb1a37029b2cc642deee937c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "535677e3-2978-4e09-b310-8ebac338d7ed", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "summary": { - "count": 267, - "limit": 5000, - "lastUpdatedDateTime": "2020-10-30T13:31:58Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-80126df31bd2674686b10b19bcbd18c0-c6b73f94d265f940-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cb4d5231f9ba248d57dd6d004339e31b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "apim-request-id": "61d6a38e-07c7-4f38-929d-bbb43bfce27e", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:31:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a65cadc89c934b49a3d809bf25ac2fc4-c856644be2ced64e-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4ed67f03410d7c084ae391c2ab52adb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "apim-request-id": "00d4d288-6e74-453d-84bd-bf0c06125ad3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "error": { - "code": "1022", - "message": "Model with \u0027id=a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad\u0027 not found." - } - } - } - ], - "Variables": { - "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", - "RandomSeed": "758005240" - } -} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False)Async.json deleted file mode 100644 index c153ef35f5ef0..0000000000000 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False)Async.json +++ /dev/null @@ -1,2836 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Content-Length": "43", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8bb4bac13077624eb47ce2eca2988ed4-0bc42b7b91b9c846-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3ce345527cb1a8021f5125e3a73ca90b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "source": "Sanitized", - "useLabelFile": false - }, - "StatusCode": 201, - "ResponseHeaders": { - "apim-request-id": "8e6f89b9-47fd-4d4d-8070-78aa325acc58", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:32:59 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f29be5b0b15554df7004cb36df2ce5f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cefe4f59-2ca6-4181-8e7a-2ddda2b6999e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a4c15e8ccb6eeb7b9a2f498cf6016ff8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "564c0976-f871-413b-8f28-b7c6e1c47650", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "38d845deef96a1f1658fcbadb0cbc8f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "17b6363e-cbff-44ba-bb90-a3fa75cf89f8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "49562c6c047ae59c69af582667535e6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "143d0a9f-bd4b-4496-9f50-e30c4e880863", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9958d295ac539d616d203edf00ce3acf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d08ef494-a893-43d3-8f1a-13fe07350877", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c920566626aad97ea8f3cfe797ca3a12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "27981655-bd1d-4aa2-b567-cb9563743c54", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "de175c302f72bfa0cbb9db59c5bde49b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6c258a0-08fd-44c0-a5a8-8f9a2f209ed8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "11c0887495326fc4537ef15fdd7a05a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "63547212-435c-4050-9d5d-08112af57e5e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a4ae2ce65cb6365cb561fef04a2513eb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "75ae5d2c-dca8-457b-9789-6321bf6e204c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "creating", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0f72330e280a9bdf97a88bf33e40e150", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3c337646-b4bf-4166-93dc-15f421f1e943", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "ready", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:11Z" - }, - "keys": { - "clusters": { - "0": [ - "Additional Notes:", - "Address:", - "Company Name:", - "Company Phone:", - "Dated As:", - "Details", - "Email:", - "Ft Lauderdale, FL Phone:", - "Hero Limited", - "Name:", - "Phone:", - "Purchase Order", - "Purchase Order #:", - "Quantity", - "SUBTOTAL", - "Seattle, WA 93849 Phone:", - "Shipped From", - "Shipped To", - "TAX", - "TOTAL", - "Total", - "Unit Price", - "Vendor Name:", - "Website:" - ] - } - }, - "trainResult": { - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a9d83362fc2b8441bb3667d62ad63b43-04adc551be15634c-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "997239b4400e18e42b895bd196d3242e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b862b5ac-8d9c-4cd9-8d0f-9691110b6f54", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "ready", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:11Z" - }, - "keys": { - "clusters": { - "0": [ - "Additional Notes:", - "Address:", - "Company Name:", - "Company Phone:", - "Dated As:", - "Details", - "Email:", - "Ft Lauderdale, FL Phone:", - "Hero Limited", - "Name:", - "Phone:", - "Purchase Order", - "Purchase Order #:", - "Quantity", - "SUBTOTAL", - "Seattle, WA 93849 Phone:", - "Shipped From", - "Shipped To", - "TAX", - "TOTAL", - "Total", - "Unit Price", - "Vendor Name:", - "Website:" - ] - } - }, - "trainResult": { - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "errors": [], - "status": "succeeded" - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a951056bf607bd984c120c0dd169f874", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ae4f14a3-f3d4-471e-ab5c-09b4aa46cf07", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "775" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "007c06a2-25ad-48f2-9d13-b104d0d8f1e0", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:43:30Z", - "lastUpdatedDateTime": "2020-08-20T18:43:32Z" - }, - { - "modelId": "01579645-6803-4345-8db9-659c6a1744a0", - "status": "ready", - "createdDateTime": "2020-10-30T13:23:55Z", - "lastUpdatedDateTime": "2020-10-30T13:24:00Z" - }, - { - "modelId": "01bc0ea9-d7e3-4515-b502-f2b57efb0aa2", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:54Z", - "lastUpdatedDateTime": "2020-08-20T18:44:54Z" - }, - { - "modelId": "01bd21ac-ce1b-4e9f-b1a3-92847479633e", - "status": "ready", - "createdDateTime": "2020-08-20T22:28:00Z", - "lastUpdatedDateTime": "2020-08-20T22:28:09Z" - }, - { - "modelId": "01ef6d0c-d5c1-4343-bbcd-6add5cda3741", - "status": "creating", - "createdDateTime": "2020-08-17T21:42:37Z", - "lastUpdatedDateTime": "2020-08-17T21:42:37Z" - }, - { - "modelId": "022a3ddc-a723-4df1-bbee-df16b2092efa", - "status": "ready", - "createdDateTime": "2020-08-14T18:52:29Z", - "lastUpdatedDateTime": "2020-08-14T18:52:37Z" - }, - { - "modelId": "02f68a79-b056-4f85-9e93-898f8261d55e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:44:14Z", - "lastUpdatedDateTime": "2020-08-20T18:44:16Z" - }, - { - "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", - "modelName": "My composed model", - "attributes": { - "isComposed": true - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:20:47Z", - "lastUpdatedDateTime": "2020-10-30T13:20:48Z" - }, - { - "modelId": "032312e5-3e29-4a17-8297-96ce181e9ff7", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:25Z", - "lastUpdatedDateTime": "2020-08-20T23:26:33Z" - }, - { - "modelId": "0613c81a-b6e2-41f4-94ba-b7d033e07848", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:45Z", - "lastUpdatedDateTime": "2020-08-14T19:44:45Z" - }, - { - "modelId": "08500349-8e12-4ecc-b22f-6378fd21a608", - "status": "invalid", - "createdDateTime": "2020-08-14T19:45:11Z", - "lastUpdatedDateTime": "2020-08-14T19:45:11Z" - }, - { - "modelId": "09c0ba1d-f88d-4670-ac36-9dc8dc979a1b", - "status": "invalid", - "createdDateTime": "2020-08-20T23:26:11Z", - "lastUpdatedDateTime": "2020-08-20T23:26:11Z" - }, - { - "modelId": "0b325cdc-5a78-4d79-85f2-f53abaf4f151", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:33Z", - "lastUpdatedDateTime": "2020-08-20T22:45:33Z" - }, - { - "modelId": "0b32e649-44b9-4842-803d-4ec855514aa7", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:16Z", - "lastUpdatedDateTime": "2020-08-20T21:53:25Z" - }, - { - "modelId": "0cad4cc0-ea89-497c-86f0-9b57d2f02517", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:46Z", - "lastUpdatedDateTime": "2020-08-20T18:44:00Z" - }, - { - "modelId": "0cfe37f7-87fa-4475-a105-1777ea41c6cd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:49:12Z", - "lastUpdatedDateTime": "2020-08-20T21:49:19Z" - }, - { - "modelId": "0d93d3a5-9024-479c-827b-859d0bd7c006", - "status": "creating", - "createdDateTime": "2020-08-17T17:15:56Z", - "lastUpdatedDateTime": "2020-08-17T17:15:56Z" - }, - { - "modelId": "0da54f9c-ef82-4d08-9011-ffe4d3c02447", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:50Z", - "lastUpdatedDateTime": "2020-08-14T19:46:50Z" - }, - { - "modelId": "0ea70033-e01f-4365-b890-839c2a628ea7", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:43:43Z", - "lastUpdatedDateTime": "2020-08-20T22:43:44Z" - }, - { - "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", - "status": "invalid", - "createdDateTime": "2020-10-30T13:23:53Z", - "lastUpdatedDateTime": "2020-10-30T13:23:54Z" - }, - { - "modelId": "0fd3cd6d-4782-4f5e-bb8f-319394c848dd", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:21Z", - "lastUpdatedDateTime": "2020-08-20T18:43:24Z" - }, - { - "modelId": "102e5b73-5b01-431e-bfce-ca83ebc47c05", - "status": "ready", - "createdDateTime": "2020-08-20T22:49:46Z", - "lastUpdatedDateTime": "2020-08-20T22:49:55Z" - }, - { - "modelId": "1034ef53-16b6-492b-a511-2a89e5326349", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:13:32Z", - "lastUpdatedDateTime": "2020-10-30T13:13:34Z" - }, - { - "modelId": "1127179b-ee78-46d0-a51a-ca8a088ec177", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:42:19Z", - "lastUpdatedDateTime": "2020-08-20T18:42:21Z" - }, - { - "modelId": "11eb2552-c707-43f3-a673-897433da9f66", - "status": "invalid", - "createdDateTime": "2020-08-20T21:25:24Z", - "lastUpdatedDateTime": "2020-08-20T21:25:24Z" - }, - { - "modelId": "1239ac73-a1ba-43a8-b725-6118c6c4cb7d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:08:03Z", - "lastUpdatedDateTime": "2020-08-20T21:08:10Z" - }, - { - "modelId": "12b12b23-10d3-4efa-927b-8b79c153099a", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:34Z", - "lastUpdatedDateTime": "2020-08-14T19:10:34Z" - }, - { - "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:45Z", - "lastUpdatedDateTime": "2020-10-30T13:22:45Z" - }, - { - "modelId": "17c078da-8f4e-4376-923a-7672a8a621ab", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:47:37Z", - "lastUpdatedDateTime": "2020-08-14T19:47:38Z" - }, - { - "modelId": "17e8374c-6cd4-40d7-8d33-8fa52286a883", - "status": "ready", - "createdDateTime": "2020-08-20T22:06:19Z", - "lastUpdatedDateTime": "2020-08-20T22:06:29Z" - }, - { - "modelId": "18cb6b55-f009-4df2-8d56-ab423d29d5c4", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:20Z", - "lastUpdatedDateTime": "2020-08-20T22:43:23Z" - }, - { - "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:32Z", - "lastUpdatedDateTime": "2020-08-20T21:25:40Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "113cad7f7ab2cedc4f5ae381cd0d04c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c058011a-ba50-4f7a-b09f-06fdf67b6b65", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1374" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:32Z", - "lastUpdatedDateTime": "2020-08-20T21:25:40Z" - }, - { - "modelId": "1bf14c97-93e2-44ee-9ac6-a11478fc33da", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:45Z", - "lastUpdatedDateTime": "2020-08-20T23:28:45Z" - }, - { - "modelId": "1cba0c75-0acd-4ff0-9a06-02fd708ebd0b", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:51Z", - "lastUpdatedDateTime": "2020-08-14T19:46:51Z" - }, - { - "modelId": "1cc4fde0-89ac-4b67-b537-1fcf6275fe8e", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:22Z", - "lastUpdatedDateTime": "2020-08-20T23:29:30Z" - }, - { - "modelId": "1f2bca7f-9bf8-4138-8a4c-53c03c3c8f55", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:46:19Z", - "lastUpdatedDateTime": "2020-08-20T21:46:26Z" - }, - { - "modelId": "1fd33a7f-9726-4d73-a737-5e4a3016d7ad", - "status": "invalid", - "createdDateTime": "2020-08-14T19:47:13Z", - "lastUpdatedDateTime": "2020-08-14T19:47:13Z" - }, - { - "modelId": "20cbcc4d-191f-4c74-aac5-ecc2e3d959e6", - "status": "ready", - "createdDateTime": "2020-08-20T23:25:30Z", - "lastUpdatedDateTime": "2020-08-20T23:25:38Z" - }, - { - "modelId": "24307288-59a3-4cf8-b5c3-cc981928dc5d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:23:00Z", - "lastUpdatedDateTime": "2020-08-20T21:23:08Z" - }, - { - "modelId": "25365575-b6ce-4351-add0-b3c5b6f68ad0", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:28Z", - "lastUpdatedDateTime": "2020-08-20T22:45:28Z" - }, - { - "modelId": "253f0935-8a68-4425-88ca-9804d7ef40a4", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:11:18Z", - "lastUpdatedDateTime": "2020-08-14T19:11:20Z" - }, - { - "modelId": "26e8eb28-909b-4a5e-b10d-c862e0dde861", - "status": "ready", - "createdDateTime": "2020-08-20T22:45:55Z", - "lastUpdatedDateTime": "2020-08-20T22:46:01Z" - }, - { - "modelId": "272021b8-def8-48d8-8b89-10b3664b4dd4", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:54Z", - "lastUpdatedDateTime": "2020-08-20T18:44:54Z" - }, - { - "modelId": "27bc87a8-6ef8-4e41-b023-22f3484a078b", - "status": "ready", - "createdDateTime": "2020-08-14T19:29:45Z", - "lastUpdatedDateTime": "2020-08-14T19:29:52Z" - }, - { - "modelId": "2800da27-3d69-4333-bd95-e9b217732660", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:42Z", - "lastUpdatedDateTime": "2020-10-30T13:22:42Z" - }, - { - "modelId": "284f716b-a8a0-4333-9ad5-6be8b981ce79", - "status": "creating", - "createdDateTime": "2020-08-17T21:43:17Z", - "lastUpdatedDateTime": "2020-08-17T21:43:17Z" - }, - { - "modelId": "28cd0f90-8143-48e9-85b2-baf4b2cc4a8f", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:36Z", - "lastUpdatedDateTime": "2020-08-20T21:22:36Z" - }, - { - "modelId": "2a023ee3-7a0c-42ee-9946-571124631d68", - "status": "ready", - "createdDateTime": "2020-08-20T21:51:49Z", - "lastUpdatedDateTime": "2020-08-20T21:51:58Z" - }, - { - "modelId": "2a3fb884-1ef3-462c-bd28-0684e728d55a", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:45:27Z", - "lastUpdatedDateTime": "2020-08-20T18:45:28Z" - }, - { - "modelId": "2d0d3ec2-c813-4840-837a-65e3f14a4fd7", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:26Z", - "lastUpdatedDateTime": "2020-08-20T21:25:30Z" - }, - { - "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:15Z", - "lastUpdatedDateTime": "2020-10-30T13:21:26Z" - }, - { - "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:13Z", - "lastUpdatedDateTime": "2020-10-30T13:24:25Z" - }, - { - "modelId": "2fb4524b-3239-45c6-a9c0-4667b16ab72e", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:49Z", - "lastUpdatedDateTime": "2020-08-20T18:42:49Z" - }, - { - "modelId": "32a70028-9497-4938-b27d-a46c07315800", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:50:08Z", - "lastUpdatedDateTime": "2020-08-20T21:50:10Z" - }, - { - "modelId": "33921c16-6dd2-4666-aaed-3863b28e0eeb", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:34Z", - "lastUpdatedDateTime": "2020-08-14T19:10:34Z" - }, - { - "modelId": "34c52af3-ce6c-465c-9fc0-797f8b6dcfdc", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:14Z", - "lastUpdatedDateTime": "2020-08-14T19:08:22Z" - }, - { - "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:43Z", - "lastUpdatedDateTime": "2020-10-30T13:19:43Z" - }, - { - "modelId": "35238cbc-5c0b-4ae6-b19d-779568d5c3af", - "status": "ready", - "createdDateTime": "2020-08-20T21:06:49Z", - "lastUpdatedDateTime": "2020-08-20T21:06:57Z" - }, - { - "modelId": "35a3d57f-d630-437e-85cf-14f0a6ed1f29", - "status": "ready", - "createdDateTime": "2020-08-14T19:44:36Z", - "lastUpdatedDateTime": "2020-08-14T19:44:44Z" - }, - { - "modelId": "361ba8b7-61d0-4051-ba20-2dac77a428ef", - "status": "ready", - "createdDateTime": "2020-08-14T18:52:29Z", - "lastUpdatedDateTime": "2020-08-14T18:52:37Z" - }, - { - "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:42Z", - "lastUpdatedDateTime": "2020-10-30T13:22:42Z" - }, - { - "modelId": "37cbc664-e1aa-4fc1-b73e-d241dec98dfe", - "status": "invalid", - "createdDateTime": "2020-08-20T21:25:25Z", - "lastUpdatedDateTime": "2020-08-20T21:25:26Z" - }, - { - "modelId": "38d1e2ad-b058-4dfe-bb00-797b4f6ef957", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:57Z", - "lastUpdatedDateTime": "2020-08-20T22:42:57Z" - }, - { - "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:04Z", - "lastUpdatedDateTime": "2020-08-20T22:46:12Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "38885c8337efbd49a1b54cfc34d747c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c293a0a9-f8c4-4f3b-a301-2279ec464535", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "695" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:04Z", - "lastUpdatedDateTime": "2020-08-20T22:46:12Z" - }, - { - "modelId": "3af295a0-785e-4567-bba5-54797c4aa61d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:23:19Z", - "lastUpdatedDateTime": "2020-08-20T21:23:20Z" - }, - { - "modelId": "3d445599-3e82-43bb-ad48-241788aec3b9", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:42:25Z", - "lastUpdatedDateTime": "2020-08-20T22:42:32Z" - }, - { - "modelId": "3d452732-d856-4579-bb92-817af8438a2f", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:38Z", - "lastUpdatedDateTime": "2020-10-30T13:21:50Z" - }, - { - "modelId": "3e5d1032-b968-458c-901f-7daa543210a7", - "status": "ready", - "createdDateTime": "2020-08-14T19:49:17Z", - "lastUpdatedDateTime": "2020-08-14T19:49:25Z" - }, - { - "modelId": "3efd32fe-763f-4cca-a58b-2fa57d13dc83", - "status": "creating", - "createdDateTime": "2020-08-17T17:15:30Z", - "lastUpdatedDateTime": "2020-08-17T17:15:30Z" - }, - { - "modelId": "40152914-610e-47f8-b6c6-8c155df7650e", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:46Z", - "lastUpdatedDateTime": "2020-08-20T22:45:46Z" - }, - { - "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:35Z", - "lastUpdatedDateTime": "2020-10-30T13:21:37Z" - }, - { - "modelId": "4120e08d-2693-4f80-a69f-53029d556457", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:29:31Z", - "lastUpdatedDateTime": "2020-08-20T23:29:38Z" - }, - { - "modelId": "412a541e-6015-4ba3-bc06-bda9dcfb4563", - "status": "ready", - "createdDateTime": "2020-08-20T21:28:50Z", - "lastUpdatedDateTime": "2020-08-20T21:28:58Z" - }, - { - "modelId": "41dcd3b4-7da4-4947-afc2-8267342bf8d3", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:08:56Z", - "lastUpdatedDateTime": "2020-08-14T19:08:58Z" - }, - { - "modelId": "42ca775f-ce05-4794-9afa-1206f9ec4e4b", - "status": "ready", - "createdDateTime": "2020-08-14T19:28:36Z", - "lastUpdatedDateTime": "2020-08-14T19:28:44Z" - }, - { - "modelId": "4363499c-72ab-45b2-8931-d8b1838bef70", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:26:34Z", - "lastUpdatedDateTime": "2020-08-20T23:26:41Z" - }, - { - "modelId": "438b68f8-bec6-4313-88d6-43f201f64e26", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:22:10Z", - "lastUpdatedDateTime": "2020-08-20T21:22:12Z" - }, - { - "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:37Z", - "lastUpdatedDateTime": "2020-10-30T13:24:49Z" - }, - { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:22:18Z", - "lastUpdatedDateTime": "2020-10-30T13:22:19Z" - }, - { - "modelId": "44cf7b0c-17d8-461b-8a14-972532fcf6d6", - "status": "creating", - "createdDateTime": "2020-08-17T22:30:19Z", - "lastUpdatedDateTime": "2020-08-17T22:30:19Z" - }, - { - "modelId": "44d3f221-a1ad-4726-a5f5-43bc37fe7222", - "status": "ready", - "createdDateTime": "2020-08-20T22:45:18Z", - "lastUpdatedDateTime": "2020-08-20T22:45:27Z" - }, - { - "modelId": "4559697f-580d-439c-a336-1272be0526f9", - "status": "invalid", - "createdDateTime": "2020-10-30T13:20:53Z", - "lastUpdatedDateTime": "2020-10-30T13:20:54Z" - }, - { - "modelId": "45c5498b-3755-44fd-95d5-8d5b5924e3a6", - "status": "invalid", - "createdDateTime": "2020-08-20T22:43:19Z", - "lastUpdatedDateTime": "2020-08-20T22:43:19Z" - }, - { - "modelId": "45f1adde-a451-4746-a675-f0ebb166151b", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:08Z", - "lastUpdatedDateTime": "2020-08-20T21:47:08Z" - }, - { - "modelId": "46201f03-7ffc-4e1e-bd07-a48bb6bccad4", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:23Z", - "lastUpdatedDateTime": "2020-08-14T19:08:23Z" - }, - { - "modelId": "46a86632-ff1f-4e80-bd06-6c8d48af3157", - "status": "ready", - "createdDateTime": "2020-08-20T18:44:45Z", - "lastUpdatedDateTime": "2020-08-20T18:44:53Z" - }, - { - "modelId": "47a7b4cd-d993-4d83-b6ca-ee18c547acfb", - "status": "ready", - "createdDateTime": "2020-08-20T22:49:07Z", - "lastUpdatedDateTime": "2020-08-20T22:49:16Z" - }, - { - "modelId": "488d74c6-25ae-4271-b7e5-cff85e10abc4", - "status": "ready", - "createdDateTime": "2020-08-20T18:26:04Z", - "lastUpdatedDateTime": "2020-08-20T18:26:12Z" - }, - { - "modelId": "49b0f1a2-e699-4f0d-a873-040df8e08e6c", - "status": "ready", - "createdDateTime": "2020-08-14T19:13:59Z", - "lastUpdatedDateTime": "2020-08-14T19:14:08Z" - }, - { - "modelId": "4acac1b2-4f07-46b2-9d21-c172d2a66330", - "status": "ready", - "createdDateTime": "2020-08-14T19:28:36Z", - "lastUpdatedDateTime": "2020-08-14T19:28:44Z" - }, - { - "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:33Z", - "lastUpdatedDateTime": "2020-10-30T13:24:35Z" - }, - { - "modelId": "4bfcc25d-0b2f-4fa2-a284-bcc98cf1f8fd", - "status": "ready", - "createdDateTime": "2020-08-20T21:31:42Z", - "lastUpdatedDateTime": "2020-08-20T21:31:51Z" - }, - { - "modelId": "4c92bc3c-f25c-4f02-84d9-f8ceae9b16b6", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:09Z", - "lastUpdatedDateTime": "2020-08-14T19:11:17Z" - }, - { - "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:20Z", - "lastUpdatedDateTime": "2020-08-20T18:45:20Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e952e6901396f17b29825aad1316f03e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "a61efd70-69f3-49a8-9601-edba52e19eb2", - "Content-Length": "358", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:33:15 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e952e6901396f17b29825aad1316f03e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e247c351-a996-435c-b90b-6f8b9ec33ec9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "329" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:20Z", - "lastUpdatedDateTime": "2020-08-20T18:45:20Z" - }, - { - "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:52Z", - "lastUpdatedDateTime": "2020-10-30T13:25:13Z" - }, - { - "modelId": "52db9454-9b6c-4514-a6f4-27d3d404a999", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:43:30Z", - "lastUpdatedDateTime": "2020-08-20T22:43:32Z" - }, - { - "modelId": "547f6f41-f70e-4cb5-aa8f-2129e33df2af", - "status": "ready", - "createdDateTime": "2020-07-30T00:55:04Z", - "lastUpdatedDateTime": "2020-07-30T00:55:12Z" - }, - { - "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:42Z", - "lastUpdatedDateTime": "2020-10-30T13:19:42Z" - }, - { - "modelId": "55c30a55-134a-4f9d-8b42-37caa8198471", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:21Z", - "lastUpdatedDateTime": "2020-08-14T19:11:31Z" - }, - { - "modelId": "56292da4-33e9-421f-ad9b-859234c5d111", - "status": "invalid", - "createdDateTime": "2020-08-20T23:29:05Z", - "lastUpdatedDateTime": "2020-08-20T23:29:05Z" - }, - { - "modelId": "566b7d84-318a-4acb-a928-d684e42b93b3", - "status": "invalid", - "createdDateTime": "2020-08-20T21:50:02Z", - "lastUpdatedDateTime": "2020-08-20T21:50:02Z" - }, - { - "modelId": "56ce1ece-256f-480d-8637-1005534971de", - "status": "ready", - "createdDateTime": "2020-08-20T21:27:11Z", - "lastUpdatedDateTime": "2020-08-20T21:27:19Z" - }, - { - "modelId": "5737eddb-d3c3-4e43-8658-b0f4322af5dc", - "status": "invalid", - "createdDateTime": "2020-08-20T23:29:06Z", - "lastUpdatedDateTime": "2020-08-20T23:29:07Z" - }, - { - "modelId": "578062d7-dbfb-4548-a54e-299c967f17be", - "status": "ready", - "createdDateTime": "2020-08-20T18:48:16Z", - "lastUpdatedDateTime": "2020-08-20T18:48:27Z" - }, - { - "modelId": "57c1049c-a148-461a-ad5d-fe7e953f7d09", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:36Z", - "lastUpdatedDateTime": "2020-08-14T19:10:36Z" - }, - { - "modelId": "57e0eb22-6bdb-4ef9-a597-11d96876ad1d", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:21Z", - "lastUpdatedDateTime": "2020-08-14T19:45:29Z" - }, - { - "modelId": "5802c9ef-6ce3-41ac-be05-b4afb5613cb2", - "status": "ready", - "createdDateTime": "2020-08-20T21:08:18Z", - "lastUpdatedDateTime": "2020-08-20T21:08:26Z" - }, - { - "modelId": "5837470d-2183-4c9a-b005-80ab6b76765b", - "status": "ready", - "createdDateTime": "2020-08-20T23:31:12Z", - "lastUpdatedDateTime": "2020-08-20T23:31:26Z" - }, - { - "modelId": "584c4432-36cf-4a0b-a2e1-5c651bfd4227", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:08:02Z", - "lastUpdatedDateTime": "2020-08-14T19:08:04Z" - }, - { - "modelId": "58871fae-0f09-4f14-bce7-769d4bd35354", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:30Z", - "lastUpdatedDateTime": "2020-08-14T19:08:30Z" - }, - { - "modelId": "5bde02de-1dcb-4ea8-b497-0427a16b26fb", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:39Z", - "lastUpdatedDateTime": "2020-08-20T23:25:39Z" - }, - { - "modelId": "5f0ca916-4ca0-4f2d-9447-caeac53bcf2e", - "status": "ready", - "createdDateTime": "2020-08-20T23:32:15Z", - "lastUpdatedDateTime": "2020-08-20T23:32:25Z" - }, - { - "modelId": "5faf34f8-8399-477b-ba82-48f1e2e7688f", - "status": "invalid", - "createdDateTime": "2020-08-14T19:45:12Z", - "lastUpdatedDateTime": "2020-08-14T19:45:12Z" - }, - { - "modelId": "5feddb70-fa11-450f-b34b-37a45b5c80d3", - "status": "invalid", - "createdDateTime": "2020-08-20T23:26:09Z", - "lastUpdatedDateTime": "2020-08-20T23:26:10Z" - }, - { - "modelId": "6035d354-53ef-4dcd-93de-5b9ad1c1ea77", - "status": "ready", - "createdDateTime": "2020-08-20T18:42:40Z", - "lastUpdatedDateTime": "2020-08-20T18:42:48Z" - }, - { - "modelId": "6216b1ae-970a-485b-a35e-070150082adb", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:57Z", - "lastUpdatedDateTime": "2020-08-20T22:42:57Z" - }, - { - "modelId": "63262869-1ff0-49d0-a26f-1d1552cad649", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:09:49Z", - "lastUpdatedDateTime": "2020-08-20T23:09:51Z" - }, - { - "modelId": "637426f9-5d46-4e4c-8bfb-86f2b60bd94b", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:44Z", - "lastUpdatedDateTime": "2020-08-20T21:49:44Z" - }, - { - "modelId": "66087b32-fce4-402d-9101-1bc4f627462d", - "status": "ready", - "createdDateTime": "2020-08-20T21:22:24Z", - "lastUpdatedDateTime": "2020-08-20T21:22:33Z" - }, - { - "modelId": "6645dde9-caf0-4beb-8758-501325f2e605", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:58Z", - "lastUpdatedDateTime": "2020-08-20T21:54:06Z" - }, - { - "modelId": "68f6c9f8-795d-43bc-97bd-619dad38c66d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:28:13Z", - "lastUpdatedDateTime": "2020-08-20T23:28:19Z" - }, - { - "modelId": "6bbda4de-97ee-4d62-a7ab-2a9a13f503f6", - "status": "invalid", - "createdDateTime": "2020-08-20T21:49:56Z", - "lastUpdatedDateTime": "2020-08-20T21:49:56Z" - }, - { - "modelId": "6c252bb0-d84a-47c8-82af-0dabf36c4c6f", - "status": "invalid", - "createdDateTime": "2020-08-20T21:47:26Z", - "lastUpdatedDateTime": "2020-08-20T21:47:27Z" - }, - { - "modelId": "6c6bd1f5-4009-435f-b938-df50c1966733", - "status": "ready", - "createdDateTime": "2020-08-20T21:28:00Z", - "lastUpdatedDateTime": "2020-08-20T21:28:08Z" - }, - { - "modelId": "6fbe2ae1-fd8f-40c7-bf2e-c05e90931aac", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:45Z", - "lastUpdatedDateTime": "2020-08-20T23:28:45Z" - }, - { - "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:22Z", - "lastUpdatedDateTime": "2020-08-20T18:45:26Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7489480dc0e04785647f70fd2de09a77", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f791722b-2ce2-4978-9eca-1cfa0660d4ca", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "328" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:22Z", - "lastUpdatedDateTime": "2020-08-20T18:45:26Z" - }, - { - "modelId": "714cd9ba-6084-4966-bf98-079fc90562fe", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:10:07Z", - "lastUpdatedDateTime": "2020-08-14T19:10:09Z" - }, - { - "modelId": "7156bc3a-1e6b-4125-b89f-10d971d5ba14", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:27:48Z", - "lastUpdatedDateTime": "2020-08-20T22:27:50Z" - }, - { - "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", - "modelName": "My training", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:03Z", - "lastUpdatedDateTime": "2020-10-30T13:21:04Z" - }, - { - "modelId": "74ea7917-ea1e-4d62-8bd9-551fcac9d963", - "status": "ready", - "createdDateTime": "2020-08-14T19:50:11Z", - "lastUpdatedDateTime": "2020-08-14T19:50:19Z" - }, - { - "modelId": "765cd50a-d9bd-4bbe-9e77-8e496c234240", - "status": "ready", - "createdDateTime": "2020-08-20T18:46:18Z", - "lastUpdatedDateTime": "2020-08-20T18:46:27Z" - }, - { - "modelId": "76aed1f7-5a15-4754-925c-45d27d7fd0c5", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:34Z", - "lastUpdatedDateTime": "2020-08-20T21:22:34Z" - }, - { - "modelId": "76e1dc72-2be3-4c40-9f07-6b29a0bf327a", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:45Z", - "lastUpdatedDateTime": "2020-08-14T19:44:45Z" - }, - { - "modelId": "76e25188-e121-4fc3-a5f3-3cb861033259", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:07Z", - "lastUpdatedDateTime": "2020-08-20T21:25:07Z" - }, - { - "modelId": "795417b4-25af-4d41-aa61-3cef0084e589", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:03Z", - "lastUpdatedDateTime": "2020-08-20T21:50:07Z" - }, - { - "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", - "modelName": "My training", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:02Z", - "lastUpdatedDateTime": "2020-10-30T13:24:03Z" - }, - { - "modelId": "7c9a4c19-1761-40d2-8f2b-10f10510ca74", - "status": "ready", - "createdDateTime": "2020-08-14T19:10:57Z", - "lastUpdatedDateTime": "2020-08-14T19:11:00Z" - }, - { - "modelId": "7dd8a381-1484-4809-ad11-db27dc50841e", - "status": "ready", - "createdDateTime": "2020-08-20T21:49:31Z", - "lastUpdatedDateTime": "2020-08-20T21:49:39Z" - }, - { - "modelId": "7dfcb89d-abc6-43ca-bae6-cce241d06e4f", - "status": "ready", - "createdDateTime": "2020-08-20T21:30:14Z", - "lastUpdatedDateTime": "2020-08-20T21:30:22Z" - }, - { - "modelId": "7f2745e3-7f0d-46f7-919a-96b939030594", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:59Z", - "lastUpdatedDateTime": "2020-08-20T22:42:59Z" - }, - { - "modelId": "80601216-855c-4286-b532-34af33c229ae", - "status": "ready", - "createdDateTime": "2020-08-14T19:13:08Z", - "lastUpdatedDateTime": "2020-08-14T19:13:16Z" - }, - { - "modelId": "84fd2414-5018-4f5a-9805-b80467ce7593", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:27Z", - "lastUpdatedDateTime": "2020-08-20T21:47:31Z" - }, - { - "modelId": "8692493e-799d-48c3-b217-950e1471adba", - "status": "ready", - "createdDateTime": "2020-08-14T19:48:16Z", - "lastUpdatedDateTime": "2020-08-14T19:48:24Z" - }, - { - "modelId": "878a4cd7-39c2-46a0-a905-7cc1bd071837", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:46:09Z", - "lastUpdatedDateTime": "2020-08-14T19:46:12Z" - }, - { - "modelId": "87f0f103-08c9-4cae-91b8-f5a0a205bb35", - "status": "creating", - "createdDateTime": "2020-08-17T22:32:37Z", - "lastUpdatedDateTime": "2020-08-17T22:32:37Z" - }, - { - "modelId": "88d34ad1-0508-475c-9d75-2c15594876ac", - "status": "invalid", - "createdDateTime": "2020-08-14T19:47:12Z", - "lastUpdatedDateTime": "2020-08-14T19:47:12Z" - }, - { - "modelId": "8a2a6999-df6a-4b64-9633-87d097b2af06", - "status": "invalid", - "createdDateTime": "2020-08-20T22:45:53Z", - "lastUpdatedDateTime": "2020-08-20T22:45:53Z" - }, - { - "modelId": "91f0a68b-5890-4e2a-8856-4489113f9d54", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:11:01Z", - "lastUpdatedDateTime": "2020-08-14T19:11:08Z" - }, - { - "modelId": "91f917c8-c8ad-457e-8d62-00e3e1686aac", - "status": "invalid", - "createdDateTime": "2020-08-20T18:43:19Z", - "lastUpdatedDateTime": "2020-08-20T18:43:20Z" - }, - { - "modelId": "921d9d16-9a9d-4dab-a0c5-63deb0aed5a6", - "status": "ready", - "createdDateTime": "2020-08-20T22:42:48Z", - "lastUpdatedDateTime": "2020-08-20T22:42:56Z" - }, - { - "modelId": "9259c76f-7273-41a7-83e2-fd176eeef64e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:02Z", - "lastUpdatedDateTime": "2020-08-20T22:46:04Z" - }, - { - "modelId": "92829e8f-ef96-4b83-8d54-4e2064729e84", - "status": "invalid", - "createdDateTime": "2020-08-14T19:08:49Z", - "lastUpdatedDateTime": "2020-08-14T19:08:49Z" - }, - { - "modelId": "932ef024-3b06-4445-bc05-863f0b7365db", - "status": "ready", - "createdDateTime": "2020-08-14T19:10:25Z", - "lastUpdatedDateTime": "2020-08-14T19:10:32Z" - }, - { - "modelId": "94e1ae64-db16-4b11-b3ec-db684b3eb473", - "status": "ready", - "createdDateTime": "2020-08-20T21:46:57Z", - "lastUpdatedDateTime": "2020-08-20T21:47:05Z" - }, - { - "modelId": "959a6767-936a-4388-be50-47b1471173e2", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:33Z", - "lastUpdatedDateTime": "2020-08-20T22:43:42Z" - }, - { - "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:51Z", - "lastUpdatedDateTime": "2020-10-30T13:24:52Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e6f021131bbb702de0970e6cdc9caa8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "f8655612-cbda-460d-85b4-d0d6200940b1", - "Content-Length": "356", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:33:55 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e6f021131bbb702de0970e6cdc9caa8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ded6fa1e-aa9b-46a7-8813-abdee2f352cb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "302" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:51Z", - "lastUpdatedDateTime": "2020-10-30T13:24:52Z" - }, - { - "modelId": "9794b06a-303c-4014-ac9c-d64ccd2d897d", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:33Z", - "lastUpdatedDateTime": "2020-08-20T21:22:33Z" - }, - { - "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:52Z", - "lastUpdatedDateTime": "2020-10-30T13:21:54Z" - }, - { - "modelId": "98fc2d15-8bb1-4eb8-85f8-dbde2d188615", - "status": "ready", - "createdDateTime": "2020-08-14T19:46:41Z", - "lastUpdatedDateTime": "2020-08-14T19:46:48Z" - }, - { - "modelId": "9947fcd1-42b4-4c38-930e-1b0403e6f761", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:42Z", - "lastUpdatedDateTime": "2020-08-14T19:45:53Z" - }, - { - "modelId": "99c2b562-6e31-4923-a25c-8d940951ed2f", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:23Z", - "lastUpdatedDateTime": "2020-08-14T19:47:32Z" - }, - { - "modelId": "9a0b42b4-09e2-4c90-8bd0-64395fb588e8", - "status": "ready", - "createdDateTime": "2020-08-20T23:28:36Z", - "lastUpdatedDateTime": "2020-08-20T23:28:44Z" - }, - { - "modelId": "9aa701a8-3822-4d5d-bc37-4891415c267f", - "status": "ready", - "createdDateTime": "2020-08-20T22:06:19Z", - "lastUpdatedDateTime": "2020-08-20T22:06:29Z" - }, - { - "modelId": "9d8aac28-0ab6-4b18-bb80-35341797a3ad", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:04Z", - "lastUpdatedDateTime": "2020-08-20T21:53:15Z" - }, - { - "modelId": "9e6eb7bc-d4b9-4887-a38a-58957d712769", - "status": "ready", - "createdDateTime": "2020-08-20T21:30:14Z", - "lastUpdatedDateTime": "2020-08-20T21:30:22Z" - }, - { - "modelId": "9f7271da-c7c1-4407-bd1a-92577c187995", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:21Z", - "lastUpdatedDateTime": "2020-08-20T18:45:22Z" - }, - { - "modelId": "a00e27ee-1358-468a-a95c-c80e5bff6343", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:45:08Z", - "lastUpdatedDateTime": "2020-08-20T22:45:15Z" - }, - { - "modelId": "a0a7e72a-d8ec-4293-8dee-7fbe726fc115", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:45:38Z", - "lastUpdatedDateTime": "2020-08-20T18:45:39Z" - }, - { - "modelId": "a1513cf9-13dd-4eb7-bac5-7ceee4658c13", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T18:53:36Z", - "lastUpdatedDateTime": "2020-08-14T18:53:43Z" - }, - { - "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", - "status": "ready", - "createdDateTime": "2020-10-30T13:20:55Z", - "lastUpdatedDateTime": "2020-10-30T13:21:01Z" - }, - { - "modelId": "a2a41673-e1b2-4319-8eef-44910ce4d9cf", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:33Z", - "lastUpdatedDateTime": "2020-08-20T18:43:41Z" - }, - { - "modelId": "a2b05934-353c-4eb9-ac8b-45d1d2e489f2", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:14Z", - "lastUpdatedDateTime": "2020-08-20T22:46:24Z" - }, - { - "modelId": "a3189094-17a1-4acf-a788-f8c05c6e6a19", - "status": "invalid", - "createdDateTime": "2020-08-20T22:45:54Z", - "lastUpdatedDateTime": "2020-08-20T22:45:55Z" - }, - { - "modelId": "a336ff42-7e03-4b7f-821a-1246209f29de", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:51Z", - "lastUpdatedDateTime": "2020-08-14T19:08:55Z" - }, - { - "modelId": "a38f391d-fad5-4ed5-be4c-5a3644803cf4", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:39Z", - "lastUpdatedDateTime": "2020-08-20T23:29:51Z" - }, - { - "modelId": "a3cb3ffe-ba7b-4a0d-838a-eced98e48e8c", - "status": "invalid", - "createdDateTime": "2020-08-20T22:43:18Z", - "lastUpdatedDateTime": "2020-08-20T22:43:18Z" - }, - { - "modelId": "a5f5ef27-523c-44a4-a06c-a56470180145", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:55Z", - "lastUpdatedDateTime": "2020-08-14T19:44:55Z" - }, - { - "modelId": "a67b821e-e8f2-419d-97f6-e28903abe6a0", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:25:31Z", - "lastUpdatedDateTime": "2020-08-20T21:25:32Z" - }, - { - "modelId": "a70a5d5b-3b72-486b-91f1-0b518e077a43", - "status": "ready", - "createdDateTime": "2020-08-20T22:48:57Z", - "lastUpdatedDateTime": "2020-08-20T22:49:06Z" - }, - { - "modelId": "a78b3a1c-9189-4901-9bc2-ccceec21bf20", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:56Z", - "lastUpdatedDateTime": "2020-08-20T18:44:56Z" - }, - { - "modelId": "a7d5f0a1-b604-4fd4-a1fb-5df92c6deaef", - "status": "ready", - "createdDateTime": "2020-08-20T18:26:04Z", - "lastUpdatedDateTime": "2020-08-20T18:26:12Z" - }, - { - "modelId": "a8b5afb6-f11a-4496-ad62-a70e3ecda523", - "status": "ready", - "createdDateTime": "2020-08-14T19:49:09Z", - "lastUpdatedDateTime": "2020-08-14T19:49:17Z" - }, - { - "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:21Z", - "lastUpdatedDateTime": "2020-08-20T21:50:32Z" - }, - { - "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:13Z", - "lastUpdatedDateTime": "2020-08-20T22:46:14Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ebee0ec4d24dd0e1610b8517a37ec449", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e9a5a03b-0fb4-4381-8d13-60e2f460e414", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "274" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:13Z", - "lastUpdatedDateTime": "2020-08-20T22:46:14Z" - }, - { - "modelId": "a9dbcb83-f15c-4b42-aaef-c2e78adb3169", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:14Z", - "lastUpdatedDateTime": "2020-08-14T19:47:20Z" - }, - { - "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:05Z", - "lastUpdatedDateTime": "2020-10-30T13:21:06Z" - }, - { - "modelId": "ac2a0641-62e3-43e4-ab21-2f0eb52b6e61", - "status": "ready", - "createdDateTime": "2020-08-20T21:24:53Z", - "lastUpdatedDateTime": "2020-08-20T21:25:02Z" - }, - { - "modelId": "ad2694f9-88d9-48b6-b85c-71b6000aa9df", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:39Z", - "lastUpdatedDateTime": "2020-08-14T19:47:49Z" - }, - { - "modelId": "af6d3536-b663-4856-9824-9e8872fc83ed", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:43:43Z", - "lastUpdatedDateTime": "2020-08-20T18:43:45Z" - }, - { - "modelId": "b01f6909-840f-4ca9-85a3-769538176fe5", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:50Z", - "lastUpdatedDateTime": "2020-08-20T22:44:01Z" - }, - { - "modelId": "b08b7db5-97ae-4459-9603-47d5994e9f4a", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:57Z", - "lastUpdatedDateTime": "2020-08-14T19:12:05Z" - }, - { - "modelId": "b0b6140c-fb6e-4c67-b7f1-420074909323", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:47Z", - "lastUpdatedDateTime": "2020-08-20T23:28:47Z" - }, - { - "modelId": "b102b022-de56-4e48-8c16-41dae496d899", - "status": "invalid", - "createdDateTime": "2020-08-20T21:47:25Z", - "lastUpdatedDateTime": "2020-08-20T21:47:25Z" - }, - { - "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", - "status": "invalid", - "createdDateTime": "2020-10-30T13:20:52Z", - "lastUpdatedDateTime": "2020-10-30T13:20:52Z" - }, - { - "modelId": "b3cc3815-9fc0-40bc-ad82-0533b038db9d", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:13Z", - "lastUpdatedDateTime": "2020-08-14T19:45:17Z" - }, - { - "modelId": "b404b97b-0e37-4eb5-8ad1-4ced5d0a34a5", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:29Z", - "lastUpdatedDateTime": "2020-08-20T18:45:37Z" - }, - { - "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:55Z", - "lastUpdatedDateTime": "2020-10-30T13:22:15Z" - }, - { - "modelId": "b6cf7b42-a0ea-4d17-9a2e-080f0370f562", - "status": "invalid", - "createdDateTime": "2020-08-20T21:22:55Z", - "lastUpdatedDateTime": "2020-08-20T21:22:55Z" - }, - { - "modelId": "b768df27-adda-4f47-8223-4f9b696b3591", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:08Z", - "lastUpdatedDateTime": "2020-08-20T21:47:08Z" - }, - { - "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", - "modelName": "My composed model", - "attributes": { - "isComposed": true - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:23:46Z", - "lastUpdatedDateTime": "2020-10-30T13:23:47Z" - }, - { - "modelId": "bacfa117-235d-43f0-b919-913a0e0ae686", - "status": "ready", - "createdDateTime": "2020-08-20T22:47:48Z", - "lastUpdatedDateTime": "2020-08-20T22:47:56Z" - }, - { - "modelId": "bc1133f6-33d3-4ac1-a848-0695866e1786", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:25:41Z", - "lastUpdatedDateTime": "2020-08-20T21:25:42Z" - }, - { - "modelId": "bc6ae2e0-2eb4-40bb-b8d0-0ca37f413c58", - "status": "invalid", - "createdDateTime": "2020-08-20T21:22:53Z", - "lastUpdatedDateTime": "2020-08-20T21:22:54Z" - }, - { - "modelId": "bd10694b-d9fd-402e-9f89-2e5994a7691f", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:27:08Z", - "lastUpdatedDateTime": "2020-08-20T18:27:10Z" - }, - { - "modelId": "be8593fc-3fab-4300-8b14-f77966b99c04", - "status": "invalid", - "createdDateTime": "2020-08-14T19:10:54Z", - "lastUpdatedDateTime": "2020-08-14T19:10:54Z" - }, - { - "modelId": "c1cf6bc1-0d0f-4a23-b453-9df1b937710a", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:27Z", - "lastUpdatedDateTime": "2020-08-20T18:47:35Z" - }, - { - "modelId": "c2401fd4-05c0-48d4-bd2f-7a30589b1306", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:09:15Z", - "lastUpdatedDateTime": "2020-08-14T19:09:27Z" - }, - { - "modelId": "c39ee6fa-e7a8-4ad9-990e-aa9049846fff", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:08Z", - "lastUpdatedDateTime": "2020-08-20T23:29:13Z" - }, - { - "modelId": "c5797a87-180d-4ec3-a23f-aa44848ad149", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:12Z", - "lastUpdatedDateTime": "2020-08-20T23:26:17Z" - }, - { - "modelId": "c690cad3-cb93-4b4b-9139-f542f08aefa2", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:26:23Z", - "lastUpdatedDateTime": "2020-08-20T23:26:24Z" - }, - { - "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:25:05Z", - "lastUpdatedDateTime": "2020-08-20T23:25:07Z" - }, - { - "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", - "status": "ready", - "createdDateTime": "2020-08-20T23:33:14Z", - "lastUpdatedDateTime": "2020-08-20T23:33:22Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f199e2e80926f2831b199349b1186ac8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "aa05f1d9-18d8-405a-bc6f-f577e1e7d7ab", - "Content-Length": "356", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:33:57 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f199e2e80926f2831b199349b1186ac8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "64a89332-f94d-485f-8057-4f6410cbd73f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "215" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", - "status": "ready", - "createdDateTime": "2020-08-20T23:33:14Z", - "lastUpdatedDateTime": "2020-08-20T23:33:22Z" - }, - { - "modelId": "c89e3c61-0048-4ac6-93e6-4f28e4c290cc", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:29:28Z", - "lastUpdatedDateTime": "2020-08-14T19:29:35Z" - }, - { - "modelId": "c8b76997-38b0-444f-9646-40e930bd7b5c", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:50Z", - "lastUpdatedDateTime": "2020-08-20T21:48:01Z" - }, - { - "modelId": "cdb4705a-40e1-4ff4-8ad0-fec5734f4325", - "status": "ready", - "createdDateTime": "2020-08-20T23:10:08Z", - "lastUpdatedDateTime": "2020-08-20T23:10:17Z" - }, - { - "modelId": "cde04bf1-6d25-46f7-bdb5-2d056d9d0770", - "status": "ready", - "createdDateTime": "2020-08-14T19:09:28Z", - "lastUpdatedDateTime": "2020-08-14T19:09:39Z" - }, - { - "modelId": "cdfdd9de-9047-4c6b-9a87-eb8f561f73ff", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:47:21Z", - "lastUpdatedDateTime": "2020-08-14T19:47:23Z" - }, - { - "modelId": "cee73923-0fa2-40dd-8eda-8446c153ecbb", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:45:18Z", - "lastUpdatedDateTime": "2020-08-14T19:45:20Z" - }, - { - "modelId": "cf0a0084-92b5-4c82-aaee-b899a0645f91", - "status": "ready", - "createdDateTime": "2020-08-14T18:53:51Z", - "lastUpdatedDateTime": "2020-08-14T18:53:59Z" - }, - { - "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", - "status": "invalid", - "createdDateTime": "2020-10-30T13:23:52Z", - "lastUpdatedDateTime": "2020-10-30T13:23:52Z" - }, - { - "modelId": "d1ebd4b5-6e79-4a31-9ed2-0d492b409a6c", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:50Z", - "lastUpdatedDateTime": "2020-08-14T19:46:50Z" - }, - { - "modelId": "d234c2cd-e20d-407c-b023-2bb7e0065875", - "status": "ready", - "createdDateTime": "2020-08-20T21:06:49Z", - "lastUpdatedDateTime": "2020-08-20T21:06:57Z" - }, - { - "modelId": "d2bb2813-e890-4726-ad3a-5b2137840550", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:59Z", - "lastUpdatedDateTime": "2020-08-14T19:09:09Z" - }, - { - "modelId": "d35b3816-19e2-4263-840b-749342c5a9ae", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:48Z", - "lastUpdatedDateTime": "2020-08-20T23:25:48Z" - }, - { - "modelId": "d38c3724-ecc0-46ad-be24-9cfb55e88fdd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:29:19Z", - "lastUpdatedDateTime": "2020-08-20T23:29:21Z" - }, - { - "modelId": "d44ad36d-9b3f-4528-aeed-50111c87d0d8", - "status": "ready", - "createdDateTime": "2020-08-20T21:22:56Z", - "lastUpdatedDateTime": "2020-08-20T21:22:59Z" - }, - { - "modelId": "d71f1973-c8bc-4723-95f6-270faeb0d710", - "status": "ready", - "createdDateTime": "2020-08-05T20:02:42Z", - "lastUpdatedDateTime": "2020-08-05T20:02:53Z" - }, - { - "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "status": "ready", - "createdDateTime": "2020-10-30T13:33:00Z", - "lastUpdatedDateTime": "2020-10-30T13:33:11Z" - }, - { - "modelId": "d76bbb87-3665-4fcf-bd78-5af39fa70371", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:03Z", - "lastUpdatedDateTime": "2020-08-20T21:25:03Z" - }, - { - "modelId": "d7c60908-afae-4db7-97a4-7dfee044d9fb", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:44:20Z", - "lastUpdatedDateTime": "2020-08-14T19:44:27Z" - }, - { - "modelId": "d8bc8709-3324-4d86-a702-fb13d83bd3fd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:24:37Z", - "lastUpdatedDateTime": "2020-08-20T21:24:38Z" - }, - { - "modelId": "d9d6453d-555a-411b-8969-29023fc1d347", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:50:19Z", - "lastUpdatedDateTime": "2020-08-20T21:50:21Z" - }, - { - "modelId": "da9ff68e-3cb0-4066-8030-84fac4049adf", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:42Z", - "lastUpdatedDateTime": "2020-08-20T23:26:55Z" - }, - { - "modelId": "db37c79c-cb7c-4e82-b5a6-de8761e95791", - "status": "creating", - "createdDateTime": "2020-08-17T22:33:39Z", - "lastUpdatedDateTime": "2020-08-17T22:33:39Z" - }, - { - "modelId": "de0c3af0-ab73-4a50-88b9-0be008348ff3", - "status": "ready", - "createdDateTime": "2020-08-14T19:12:59Z", - "lastUpdatedDateTime": "2020-08-14T19:13:07Z" - }, - { - "modelId": "ded45364-1d15-4185-9ba1-349085488c79", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:31:28Z", - "lastUpdatedDateTime": "2020-08-20T21:31:30Z" - }, - { - "modelId": "df46a938-d337-4664-82f6-13fe40a3ccbd", - "status": "ready", - "createdDateTime": "2020-08-05T20:05:23Z", - "lastUpdatedDateTime": "2020-08-05T20:05:34Z" - }, - { - "modelId": "dfed1264-2f66-4fa1-83fd-adce189c3ae9", - "status": "creating", - "createdDateTime": "2020-08-17T22:30:35Z", - "lastUpdatedDateTime": "2020-08-17T22:30:35Z" - }, - { - "modelId": "e10d0994-db23-4546-9ea7-377e52f85c7e", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:40Z", - "lastUpdatedDateTime": "2020-08-20T21:47:48Z" - }, - { - "modelId": "e1fb3fc5-8672-4d3c-ad29-fa0c489f21fd", - "status": "invalid", - "createdDateTime": "2020-08-20T18:43:14Z", - "lastUpdatedDateTime": "2020-08-20T18:43:15Z" - }, - { - "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:17Z", - "lastUpdatedDateTime": "2020-08-20T18:47:25Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1e39e6d4aef1402a3f2085b09615cd62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f28f14cc-aeb0-432a-bbeb-1d1dc85803fb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "243" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:17Z", - "lastUpdatedDateTime": "2020-08-20T18:47:25Z" - }, - { - "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:10Z", - "lastUpdatedDateTime": "2020-08-20T21:50:18Z" - }, - { - "modelId": "e2d2eecf-d810-4fd9-8b94-cc370a9d3dc5", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:40Z", - "lastUpdatedDateTime": "2020-08-20T21:49:40Z" - }, - { - "modelId": "e31e548b-1c1a-4345-907b-b77bec13260d", - "status": "creating", - "createdDateTime": "2020-08-17T17:11:47Z", - "lastUpdatedDateTime": "2020-08-17T17:11:47Z" - }, - { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:19:24Z", - "lastUpdatedDateTime": "2020-10-30T13:19:26Z" - }, - { - "modelId": "e4949cbb-05e0-4d1b-bab9-c4e444b25c9e", - "status": "invalid", - "createdDateTime": "2020-08-14T19:08:50Z", - "lastUpdatedDateTime": "2020-08-14T19:08:51Z" - }, - { - "modelId": "e8679f07-a7ae-43ff-af1c-417567ece17f", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:23Z", - "lastUpdatedDateTime": "2020-08-14T19:08:23Z" - }, - { - "modelId": "eb78387f-b93d-47c4-8ff2-5a75fa2848c2", - "status": "creating", - "createdDateTime": "2020-08-17T17:11:08Z", - "lastUpdatedDateTime": "2020-08-17T17:11:08Z" - }, - { - "modelId": "eccc2f1b-08fc-4bdf-af54-45bbb3a94dc8", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:16Z", - "lastUpdatedDateTime": "2020-08-20T21:47:16Z" - }, - { - "modelId": "f019ba8f-b377-4307-aed2-2e357d88faad", - "status": "invalid", - "createdDateTime": "2020-08-14T19:10:55Z", - "lastUpdatedDateTime": "2020-08-14T19:10:56Z" - }, - { - "modelId": "f0790982-b19e-4f0b-9f3d-0bd73c22d50b", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:40Z", - "lastUpdatedDateTime": "2020-08-20T18:45:50Z" - }, - { - "modelId": "f09bb379-e552-423b-a66e-11d4a47b4cad", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:45:30Z", - "lastUpdatedDateTime": "2020-08-14T19:45:41Z" - }, - { - "modelId": "f16a5995-6f9d-429c-a9ce-94b42e707f4e", - "status": "ready", - "createdDateTime": "2020-08-20T21:23:21Z", - "lastUpdatedDateTime": "2020-08-20T21:23:32Z" - }, - { - "modelId": "f2b17543-4827-4824-8f0a-297915305924", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:39Z", - "lastUpdatedDateTime": "2020-08-20T23:25:39Z" - }, - { - "modelId": "f313494f-2d7d-4c1b-baca-4f019e1bb372", - "status": "ready", - "createdDateTime": "2020-08-20T21:23:09Z", - "lastUpdatedDateTime": "2020-08-20T21:23:17Z" - }, - { - "modelId": "f4a51dde-7357-46f7-b160-1321e8cf6a8e", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:03Z", - "lastUpdatedDateTime": "2020-08-20T21:25:03Z" - }, - { - "modelId": "f5b14d6e-2c12-4a8b-a26b-6f919fb3fc22", - "status": "ready", - "createdDateTime": "2020-08-20T18:27:28Z", - "lastUpdatedDateTime": "2020-08-20T18:27:36Z" - }, - { - "modelId": "f630338a-704f-49e6-90df-3661cdb70919", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:47:48Z", - "lastUpdatedDateTime": "2020-08-20T21:47:49Z" - }, - { - "modelId": "f86960b5-529c-434d-900e-72383c3535bd", - "status": "ready", - "createdDateTime": "2020-08-20T21:27:51Z", - "lastUpdatedDateTime": "2020-08-20T21:27:59Z" - }, - { - "modelId": "f8ec4bc9-ae6d-4ff7-ae5e-5ce9155164cf", - "status": "ready", - "createdDateTime": "2020-08-20T23:32:06Z", - "lastUpdatedDateTime": "2020-08-20T23:32:14Z" - }, - { - "modelId": "f9ad28eb-5fdc-4844-8a72-04a115dd2029", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:49Z", - "lastUpdatedDateTime": "2020-08-20T18:42:49Z" - }, - { - "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:04Z", - "lastUpdatedDateTime": "2020-10-30T13:24:06Z" - }, - { - "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:47Z", - "lastUpdatedDateTime": "2020-10-30T13:19:47Z" - }, - { - "modelId": "fae7acb8-2ffc-40d1-9e07-a2f2af6f54f5", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:43Z", - "lastUpdatedDateTime": "2020-08-20T21:25:54Z" - }, - { - "modelId": "fbc59a11-f373-4f3d-b24c-3e32aa033d7e", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:56Z", - "lastUpdatedDateTime": "2020-08-20T18:42:56Z" - }, - { - "modelId": "fc0d549e-3a1f-4eda-bb96-fb6bf60c0f53", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:47:32Z", - "lastUpdatedDateTime": "2020-08-20T21:47:39Z" - }, - { - "modelId": "fca987e8-8ed2-4c00-8aa4-eeff583bb155", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:40Z", - "lastUpdatedDateTime": "2020-08-20T21:49:40Z" - } - ], - "nextLink": "" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ba92434bdd42a646a87966996e1980bc-ddab99945622b647-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fa83c4d3b802ba638afbd0333e981e48", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "30d5c152-1006-4343-81cf-0fb82a405ee2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:33:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "summary": { - "count": 267, - "limit": 5000, - "lastUpdatedDateTime": "2020-10-30T13:34:00Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b80730bcec2da4892e8c4f11cc93651-93915eee991fe64a-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bd42bda0a5453a57b859b20684d35c05", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "apim-request-id": "48935884-4998-4c9f-8194-194ba3d01761", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:34:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d1ab63453d70064c99a60480d6c7805b-3e38989e4bee824a-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ec76314c70941cc6827e94f6ddf601a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "apim-request-id": "d7c075b0-c9db-47b4-aa8d-964698369ef5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:34:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "error": { - "code": "1022", - "message": "Model with \u0027id=d736ffbe-2e74-4735-a8a7-461a4f5e23a4\u0027 not found." - } - } - } - ], - "Variables": { - "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", - "RandomSeed": "1971777199" - } -} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,False).json new file mode 100644 index 0000000000000..3cc68b8c3eba3 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,False).json @@ -0,0 +1,943 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "43", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-64a67b2707ae4342a3108116741dafa9-e349aa2fed88774a-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9186a50759402b5af3dcb6958a8f2579", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": false + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "62397bee-5026-47f5-8b62-bc7414e8b920", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:49 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f0fc9ec9fa7adb4c472cb926a4f57f5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8387178c-a380-4a21-b2e6-fdcc5c81bd20", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c8ab748ce64753c0565fcc60c0b51103", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fde851ac-b44a-4293-bca0-40ad053a8bee", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "966a31bd17b80c2258ab49139f3387fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "935f3902-d862-4bbc-b595-20330e023d57", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "16095a5d5ce4e231dda89a1b2eec1a91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "483a1012-6866-49de-85eb-5a0ca0b83107", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7368b51be88b74a3529e6f9c9cacb422", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "db646768-f8e8-405f-b51f-f8d58752cbca", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6603ced8fbac611fff87b90f7c06de6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7f85c29-7dce-4685-ad53-52d1082c221f", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "eaf8b89014cb7471b694c345ec954630", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22841601-78af-4ad0-8157-3d0ecc60d31c", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5f4278f4b3e91fe5950773042f94f84b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "79528892-36a7-4168-aae7-2a7594bdcd1b", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "99" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e30b03c0cab4c4565d8eb01737da746a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "84ec8565-c50c-43bb-94cb-b38f4ff8a8c6", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "031b88407ec4dd83d3d854c3a06d4422", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7fbadbb-a3e4-4ca6-8260-df6d7466dd6c", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e985789c638a2a7c217e025a02cde8bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b84370e-4570-4a6b-8747-571fa56fa4a4", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a7c40993f47941877f2d10dc759223f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "547f484f-9a82-4d65-a578-79b9693b5cee", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "ready", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:01:01Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-3e5fb1e103a7734b87417f8708283733-9d5c90c05406f54f-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bf7b8e4a8a54dddf0bf0e1457c29da06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f61e23f7-9590-4231-acc5-601a154559a7", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "ready", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:01:01Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "973098f09da8a7a9f1446a5c529fb48f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab4b0947-1729-42eb-bf91-6a93f21769aa", + "Content-Length": "4901", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "433" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "0ea8d066-c080-4a57-80ac-a8878781d56b", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", + "status": "ready", + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" + }, + { + "modelId": "42ea913c-f97d-4c03-8e20-7abcda96f6ba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:47:53Z", + "lastUpdatedDateTime": "2020-11-25T03:47:56Z" + }, + { + "modelId": "4cc8ead1-39d5-4e97-a3ec-cb09b606d842", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "4fded575-9b8c-48c9-afb3-f1f6886420da", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:46Z", + "lastUpdatedDateTime": "2020-11-25T03:35:47Z" + }, + { + "modelId": "5c7eef43-5375-40ed-bcb3-05d3b2171370", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "62415dfb-2e67-467a-8bff-023bbcc78d36", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:29Z", + "lastUpdatedDateTime": "2020-11-25T03:32:41Z" + }, + { + "modelId": "64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "status": "ready", + "createdDateTime": "2020-11-25T04:00:49Z", + "lastUpdatedDateTime": "2020-11-25T04:01:01Z" + }, + { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "7da543ab-7e70-4d5b-9c2d-0f03e1cb5d99", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" + }, + { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + { + "modelId": "b18b2597-3ed4-4a8b-bdf0-c838a7165a59", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "cc060070-75a7-4704-a7aa-38cfbead5a28", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:34Z", + "lastUpdatedDateTime": "2020-11-25T03:35:35Z" + }, + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + }, + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "e6131f21-38bc-40d1-ba38-0d4fae74f5a2", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ea242805-a42c-4829-a514-2f25cfaa2359", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:51:09Z", + "lastUpdatedDateTime": "2020-11-25T03:51:12Z" + }, + { + "modelId": "fc54c362-1fb4-43ef-81b7-478b0fbc079a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-aa7cd0589cee734ea894a5a6a473603b-45742c57b143ab48-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7410125b2951096629e69b881242c456", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fb712441-5151-4149-af4a-689200492a27", + "Content-Length": "82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "summary": { + "count": 24, + "limit": 5000, + "lastUpdatedDateTime": "2020-11-25T04:01:03Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-043d4cc5fe3b93429ab639320a86f5c9-ff7fa201bec2b041-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ddec0a538c62ac47e5d3ce1020838a6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "8cd24659-fe04-4dec-9804-825e658da132", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:01:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-66de30b803857b4bad56ba01b3e1c702-dbfb1e6152a84d4f-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6aea523b6519c7b431276dc1012095af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "8e73412a-06a4-4e97-95a1-73cb62c3a7b0", + "Content-Length": "101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:01:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "error": { + "code": "1022", + "message": "Model with \u0027id=64ff76d0-f34f-4fa6-9a8b-c4826b7d17ae\u0027 not found." + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "444358936" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,False)Async.json new file mode 100644 index 0000000000000..e559f139ddcdf --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,False)Async.json @@ -0,0 +1,1089 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "43", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-c7459f5f1a06be428903c839510db41c-6579efa31f494740-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fa6184c5f357a243a47ec6ab2ff477a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": false + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "8503fcac-d67a-41c8-81d6-e66ba2cc4139", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:46 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "74" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "63d10291a09f9552097ddb68d8a0535f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf218e9f-1627-406f-9808-910df75bc51f", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "74e62ac07ddfd7561a87f83c6ca56762", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5bbdcdf5-bce1-4125-b128-5f604ae910c3", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "39c2c95d7ee825a532cbf1da17daca03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "092bafeb-e61b-4d37-9e7a-d837ddb832cc", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "05eb672b020d13c3abf94817a7152964", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75bed78e-cfdc-493a-af79-de510ccaedba", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0f0b791519de417684c142138c7cc040", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a3b853ca-7631-4600-a40b-7c39bcdfcff1", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0411f5bd61ba5a5406ae8eee368d7e1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42043cc9-c4f3-40ed-9d91-f0390c50a349", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9dc58da2bbcf1225f0aa804cc0af872f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b05cff52-bc43-45b4-9b7a-869617d47a48", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b15a07392404b3a925b0082f8b880af7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0a7ab2b6-c740-49ed-b274-a161cfe502e2", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ff71254322b70271d0fe1410e1089956", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f51eb80c-e14b-4115-b9be-44a3b190922d", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2eb55e27cc337d18e311781eb2f58668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3164ae61-462c-4201-9e71-26d08f84cf8e", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9b09889f883e16789657e1050f99d21d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53006592-593e-4f6a-87ef-5199aa84ab92", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:46Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2d07b216dcd276c40df31ba5aa5250da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "413eb702-38c2-4cfe-b95e-262d69f82d3b", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "ready", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:58Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-2c9b4ec3c43e74449ccb66a24ccf754c-3e77df948c310842-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5870ac78feff9f17e59e98dbeb126d49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cd01caa0-0f4b-4fd2-b08b-906baa763064", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "ready", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:58Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "00075b3e59eec295c4928e4b6cd26c43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "281abc0c-d39a-417c-88bb-45c46ca21c0a", + "Content-Length": "5658", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "518" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "0ea8d066-c080-4a57-80ac-a8878781d56b", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "3926013a-fa9d-406f-a099-3dd90859a9bd", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + }, + { + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", + "status": "ready", + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" + }, + { + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + }, + { + "modelId": "42ea913c-f97d-4c03-8e20-7abcda96f6ba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:47:53Z", + "lastUpdatedDateTime": "2020-11-25T03:47:56Z" + }, + { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:39Z", + "lastUpdatedDateTime": "2020-11-25T04:02:41Z" + }, + { + "modelId": "4cc8ead1-39d5-4e97-a3ec-cb09b606d842", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "4fded575-9b8c-48c9-afb3-f1f6886420da", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:46Z", + "lastUpdatedDateTime": "2020-11-25T03:35:47Z" + }, + { + "modelId": "5340ce5d-c57e-4840-b02d-504e21e7ed43", + "status": "ready", + "createdDateTime": "2020-11-25T04:03:46Z", + "lastUpdatedDateTime": "2020-11-25T04:03:58Z" + }, + { + "modelId": "5b577d8d-4837-4344-9262-8cf22ad2551f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + { + "modelId": "5c7eef43-5375-40ed-bcb3-05d3b2171370", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "62415dfb-2e67-467a-8bff-023bbcc78d36", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:29Z", + "lastUpdatedDateTime": "2020-11-25T03:32:41Z" + }, + { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "7da543ab-7e70-4d5b-9c2d-0f03e1cb5d99", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:09Z", + "lastUpdatedDateTime": "2020-11-25T04:02:11Z" + }, + { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" + }, + { + "modelId": "af4b8eae-13e6-45a3-9743-dfeb4a042fe5", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:21Z", + "lastUpdatedDateTime": "2020-11-25T04:03:22Z" + }, + { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + { + "modelId": "b18b2597-3ed4-4a8b-bdf0-c838a7165a59", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", + "status": "ready", + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:16Z" + }, + { + "modelId": "cc060070-75a7-4704-a7aa-38cfbead5a28", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:34Z", + "lastUpdatedDateTime": "2020-11-25T03:35:35Z" + }, + { + "modelId": "d363aeec-be98-4524-b087-5c776cb5a91a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:15Z", + "lastUpdatedDateTime": "2020-11-25T04:03:15Z" + } + ], + "nextLink": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvYzU5MGEwYmM3NDRkNDVmYjk3NjVhZDZmZjczNDE0NjEvbW9kZWxzL2Q2NTBjZmYxLTNmM2MtNDY0My04ZDVjLWExYjYxZmZhMmExZC9kNjUwY2ZmMS0zZjNjLTQ2NDMtOGQ1Yy1hMWI2MWZmYTJhMWQuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvYzU5MGEwYmM3NDRkNDVmYjk3NjVhZDZmZjczNDE0NjEvbW9kZWxzL2Q2NTBjZmYxLTNmM2MtNDY0My04ZDVjLWExYjYxZmZhMmExZC9kNjUwY2ZmMS0zZjNjLTQ2NDMtOGQ1Yy1hMWI2MWZmYTJhMWQuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "638d06077a28181e9a67473443e88bfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd7bc7d9-1b56-4916-88f5-7073a94b0c72", + "Content-Length": "1466", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:04:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + }, + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "e6131f21-38bc-40d1-ba38-0d4fae74f5a2", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ea242805-a42c-4829-a514-2f25cfaa2359", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:51:09Z", + "lastUpdatedDateTime": "2020-11-25T03:51:12Z" + }, + { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + { + "modelId": "fc54c362-1fb4-43ef-81b7-478b0fbc079a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d572e80c0f5464459bb42115a5aed33e-5955167438155841-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4f67d286504b1eec17ae936c6fcc3312", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "2bbf1600-a0c9-4f34-b8e3-23174f171fd9", + "Content-Length": "358", + "Content-Type": "application/json", + "Date": "Wed, 25 Nov 2020 04:04:00 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d572e80c0f5464459bb42115a5aed33e-5955167438155841-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4f67d286504b1eec17ae936c6fcc3312", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e8f72d57-4b45-4fcb-8c85-63966c3bac3b", + "Content-Length": "82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:04:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" + }, + "ResponseBody": { + "summary": { + "count": 33, + "limit": 5000, + "lastUpdatedDateTime": "2020-11-25T04:04:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d8abc904494f9548a01dc2eb01238849-2e2a7ecd42642447-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e4d455320a85c3203dee658612617edb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "63813e29-7f57-4dcb-9a6b-83328cce4152", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:04:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "832" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/5340ce5d-c57e-4840-b02d-504e21e7ed43?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-1e618ce1ad6a2440949e9a763a10aa85-be758c3c148a5b43-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9ac493061d6bb7f81a6f4c7ae6b1a8cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "044a9fce-567c-4d45-8ebe-ea1a53b63025", + "Content-Length": "101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:04:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "error": { + "code": "1022", + "message": "Model with \u0027id=5340ce5d-c57e-4840-b02d-504e21e7ed43\u0027 not found." + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "1602787065" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,True).json new file mode 100644 index 0000000000000..7747dbd9c0d0a --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,True).json @@ -0,0 +1,942 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "43", + "Content-Type": "application/json", + "traceparent": "00-4230f39b40cd3e48ae91debdedf209c6-19bd48589fe0d54c-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8f9014ed5ebd6165ea3b032fa7f5c58f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": false + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "42e853fc-24ac-4696-8a07-2a58bd5332a8", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:31 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "10849d67f0fcf2dbe54858b2824a1ded", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5e01f052-be77-454d-8008-fcfa1d16b361", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "90105fa72bec1eeb330acb28328fae00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d08b922e-1dd8-4450-a5c4-5540a2c99722", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0c1f8e2db428fd79389eaa7406b2dfa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e533e585-585f-481d-a536-d1c2518fde67", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4888161d35e43ca2b265ddf124b2c056", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ffc779e6-0b35-42a6-aa0a-c1c3a51cf778", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f3845899112af3c4e513574e80761880", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7447766a-8cb6-4b9c-81a5-5aefba3c4432", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1b0b2b2b6607f81bece35ac3d688d986", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18e5f09a-af0d-4804-b4fb-31a69c3c35fe", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "addb53deeb2d0c75529463d1dd53bb3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d8332b0-6d2f-45c1-98de-79fc0d0c0f5f", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f9c55c4da5a7334f3c8c0747b6011c5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d511303b-8f25-4bef-a13f-476d616ad260", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2d70d13a6a9b4053b5fec872024a1b98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "954343c0-a243-4091-9c18-d297f58cd393", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "79751f27dfc239df04a870a1e32e5651", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7de4a895-ea29-4ade-b848-a2f396ae65e0", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0c9606778ee2e2a0098544a8dcdc30f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6315020c-eeda-4164-b7bf-cba317937fc1", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:31Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "961f6e71a28b5a9af23728f2fab15c87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "11ab8da7-a623-4dfd-9c7d-a27499ed2e3a", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "89" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "ready", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:43Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3726d31965db5843ad6ed44cd4f9a783-aadb7c9c70716e4a-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fcfa76a70eb399b57e93703c9b365c27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d2a42f74-52d0-405d-822a-b414d0f66ff8", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "ready", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:43Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "75307e78bf0ed4c66c3c1aab65aee858", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "11bfab08-1dd7-4095-941c-2737bf6a2972", + "Content-Length": "4901", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "580" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "0ea8d066-c080-4a57-80ac-a8878781d56b", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "status": "ready", + "createdDateTime": "2020-11-25T04:00:31Z", + "lastUpdatedDateTime": "2020-11-25T04:00:43Z" + }, + { + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", + "status": "ready", + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" + }, + { + "modelId": "42ea913c-f97d-4c03-8e20-7abcda96f6ba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:47:53Z", + "lastUpdatedDateTime": "2020-11-25T03:47:56Z" + }, + { + "modelId": "4cc8ead1-39d5-4e97-a3ec-cb09b606d842", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "4fded575-9b8c-48c9-afb3-f1f6886420da", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:46Z", + "lastUpdatedDateTime": "2020-11-25T03:35:47Z" + }, + { + "modelId": "5c7eef43-5375-40ed-bcb3-05d3b2171370", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "62415dfb-2e67-467a-8bff-023bbcc78d36", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:29Z", + "lastUpdatedDateTime": "2020-11-25T03:32:41Z" + }, + { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "7da543ab-7e70-4d5b-9c2d-0f03e1cb5d99", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" + }, + { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + { + "modelId": "b18b2597-3ed4-4a8b-bdf0-c838a7165a59", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "cc060070-75a7-4704-a7aa-38cfbead5a28", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:34Z", + "lastUpdatedDateTime": "2020-11-25T03:35:35Z" + }, + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + }, + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "e6131f21-38bc-40d1-ba38-0d4fae74f5a2", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ea242805-a42c-4829-a514-2f25cfaa2359", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:51:09Z", + "lastUpdatedDateTime": "2020-11-25T03:51:12Z" + }, + { + "modelId": "fc54c362-1fb4-43ef-81b7-478b0fbc079a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-dbee445899c56c4d988480e3262a1e27-2d05c5fb4481a44b-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6501bc2933e1623eb88618f7325dbebc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a9d32742-671c-4486-8103-dfd588b45803", + "Content-Length": "82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "summary": { + "count": 24, + "limit": 5000, + "lastUpdatedDateTime": "2020-11-25T04:00:45Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-55099f7223111948a8b668aba764265e-4e09dfa9ab7e3846-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7b7a00dbe681e878b0268f77f40a34d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "2dd27610-2479-4ab0-9951-d6e9e56a6a3a", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/309a6f09-7ff2-4c83-931a-9a6ee952e2cb?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e3daee6745230545a8e2069849df4660-757a65b21bb3f349-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "de1218abf634444640cebc88a7cfa20f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "159350a2-beb7-42b6-9f50-178a3ac37fc5", + "Content-Length": "101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "error": { + "code": "1022", + "message": "Model with \u0027id=309a6f09-7ff2-4c83-931a-9a6ee952e2cb\u0027 not found." + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "848424535" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,True)Async.json new file mode 100644 index 0000000000000..9bb4c3cdfb37f --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False,True)Async.json @@ -0,0 +1,1099 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "43", + "Content-Type": "application/json", + "traceparent": "00-07b4150a324c624eaf741c19da92811d-465b46ec22870a4d-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3ead5109aed698de005748b9c84745ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": false + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "52c6028c-ed08-46b0-8f51-7428f35025a2", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:27 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "107" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "cf3cd0c559926eb422b81a9c710fcc4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "29e4e782-9b59-4523-9966-64cc08cff234", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e325bd2db189b5919affd1f4b12b64c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d12fae08-f579-46e2-8723-eb182ba9f52c", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "90db63824aadafc39c3f1c1d934226f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4391267e-3389-4096-b025-29f79a2a59bc", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0a8bfd8a622213313f86349387c0bcf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "963edcd3-3069-4fb8-a333-ff695d783351", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0e1a54543b34e39dfa75464a95742158", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "04fb6000-da29-4114-a668-9cc564005b63", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b469e0d85aa01fa332c75126152f28dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "594fa480-9137-4219-b1ea-ae67b3f7a007", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3fc9258218274fbc5fa710ac1ce77ecb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c668504-c8dd-4c1e-b845-d65a5dd8c0ee", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a6badc640757fa56b0fadb6ce977ceca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41108a49-c12e-476d-a4e4-bdbcb3825d1a", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6fc7694de2abc030241a55f849f7034b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "df70e9ba-6356-40de-a157-3920abe49f31", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "38c1864981757b85cece8f2c3d4f65e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b098abf-4a85-4382-9477-f86ea9322c4c", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b25f46d90e1f821fabfa823cb15eb0b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9434222d-7e8a-4cec-a6b7-02859483fd02", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "63238ff795b5cb55e44ba1dc530482d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18fd30e2-82ae-400e-b25a-89dcc1e50a6d", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:28Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "031e6db450973a2b663f8d7afe48c96f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "675a8a9a-af08-4c33-bb90-e077239525e4", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "ready", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:41Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a4728229831d0b479d8034342c2e9d79-5eb4828526250c45-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ad35d51e022c4432f093ced36d432fa7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "464b24cc-157f-43a0-8337-16e536f40372", + "Content-Length": "939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "ready", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:41Z" + }, + "keys": { + "clusters": { + "0": [ + "Additional Notes:", + "Address:", + "Company Name:", + "Company Phone:", + "Dated As:", + "Details", + "Email:", + "Ft Lauderdale, FL Phone:", + "Hero Limited", + "Name:", + "Phone:", + "Purchase Order", + "Purchase Order #:", + "Quantity", + "SUBTOTAL", + "Seattle, WA 93849 Phone:", + "Shipped From", + "Shipped To", + "TAX", + "TOTAL", + "Total", + "Unit Price", + "Vendor Name:", + "Website:" + ] + } + }, + "trainResult": { + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "errors": [], + "status": "succeeded" + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4488ad77ac40a62163e9fc7508dacd9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "45e2f323-62b3-4a30-befc-ac75fdb0f776", + "Content-Length": "6003", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "307" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "0ea8d066-c080-4a57-80ac-a8878781d56b", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "3926013a-fa9d-406f-a099-3dd90859a9bd", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + }, + { + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", + "status": "ready", + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" + }, + { + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + }, + { + "modelId": "42ea913c-f97d-4c03-8e20-7abcda96f6ba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:47:53Z", + "lastUpdatedDateTime": "2020-11-25T03:47:56Z" + }, + { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:39Z", + "lastUpdatedDateTime": "2020-11-25T04:02:41Z" + }, + { + "modelId": "4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "status": "ready", + "createdDateTime": "2020-11-25T04:03:28Z", + "lastUpdatedDateTime": "2020-11-25T04:03:41Z" + }, + { + "modelId": "4cc8ead1-39d5-4e97-a3ec-cb09b606d842", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "4fded575-9b8c-48c9-afb3-f1f6886420da", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:46Z", + "lastUpdatedDateTime": "2020-11-25T03:35:47Z" + }, + { + "modelId": "5b577d8d-4837-4344-9262-8cf22ad2551f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + { + "modelId": "5c7eef43-5375-40ed-bcb3-05d3b2171370", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "62415dfb-2e67-467a-8bff-023bbcc78d36", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:29Z", + "lastUpdatedDateTime": "2020-11-25T03:32:41Z" + }, + { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "7da543ab-7e70-4d5b-9c2d-0f03e1cb5d99", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:09Z", + "lastUpdatedDateTime": "2020-11-25T04:02:11Z" + }, + { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" + }, + { + "modelId": "af4b8eae-13e6-45a3-9743-dfeb4a042fe5", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:21Z", + "lastUpdatedDateTime": "2020-11-25T04:03:22Z" + }, + { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + { + "modelId": "b18b2597-3ed4-4a8b-bdf0-c838a7165a59", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", + "status": "ready", + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:16Z" + }, + { + "modelId": "cc060070-75a7-4704-a7aa-38cfbead5a28", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:34Z", + "lastUpdatedDateTime": "2020-11-25T03:35:35Z" + }, + { + "modelId": "d363aeec-be98-4524-b087-5c776cb5a91a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:15Z", + "lastUpdatedDateTime": "2020-11-25T04:03:15Z" + }, + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + }, + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + } + ], + "nextLink": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYzU5MGEwYmM3NDRkNDVmYjk3NjVhZDZmZjczNDE0NjEvbW9kZWxzL2U1YzA3MWE2LWNlYTMtNDgyYS1hMDdkLTYzMWFkNTNjNTRkMC91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYzU5MGEwYmM3NDRkNDVmYjk3NjVhZDZmZjczNDE0NjEvbW9kZWxzL2U1YzA3MWE2LWNlYTMtNDgyYS1hMDdkLTYzMWFkNTNjNTRkMC91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7dbd3182d4ceb2a83ada12048257cc22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd55511c-b719-4665-ab53-1c53471a69cb", + "Content-Length": "1312", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "e6131f21-38bc-40d1-ba38-0d4fae74f5a2", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ea242805-a42c-4829-a514-2f25cfaa2359", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:51:09Z", + "lastUpdatedDateTime": "2020-11-25T03:51:12Z" + }, + { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + { + "modelId": "fc54c362-1fb4-43ef-81b7-478b0fbc079a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-dbb747c6065e5741aaca2ca589056bd0-e3597af9865f834e-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5102e51084bf712fb48e4a4206bd3b16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "684e6e82-af37-4825-bb78-5e8cf819895b", + "Content-Length": "82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "summary": { + "count": 33, + "limit": 5000, + "lastUpdatedDateTime": "2020-11-25T04:03:43Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-7039bf970c13954d82009654a07d123c-e0736408ef4bae45-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3c5132c6b186a2d804d609669a1c230b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "df2ea5e0-de6c-4f4b-bdbe-332dc52836f5", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b18e37a-bf4a-4697-a419-3f0f6a4857b8?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ce8e2b515e5c0b4b82351a01efede673-cd9a367a4d95914e-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2265d91c7bd7fddb024bc83f8a65ab7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "b8eaa1af-1db0-45a8-b9f4-1c8dd744b274", + "Content-Length": "101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "error": { + "code": "1022", + "message": "Model with \u0027id=4b18e37a-bf4a-4697-a419-3f0f6a4857b8\u0027 not found." + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "924169138" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True).json deleted file mode 100644 index c400a7bbc0d6f..0000000000000 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True).json +++ /dev/null @@ -1,2577 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Content-Length": "42", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9df7905613d544499e9113ddff9a434c-a9c9d46daeafd540-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ec01155c84d3ca9dab2d2e05a1969d22", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "source": "Sanitized", - "useLabelFile": true - }, - "StatusCode": 201, - "ResponseHeaders": { - "apim-request-id": "de2dd1f0-92b1-4f65-87a3-cc665d6cf72f", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:30:48 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "15634ae964069ff1a753c7c5dc91b1f1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b3ca6ec9-adc8-418c-abde-f01edaa4c09e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:48Z", - "lastUpdatedDateTime": "2020-10-30T13:30:48Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8c79cb3a15b561027ee17921f15843aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "66af4018-e759-441a-9435-f8c9c586e4e4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", - "status": "creating", - "createdDateTime": "2020-10-30T13:30:48Z", - "lastUpdatedDateTime": "2020-10-30T13:30:48Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f22fc3a1bc46f70323614580bdd8ee1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ef472590-05b3-4237-93e2-bc9a30bbf5db", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:30:48Z", - "lastUpdatedDateTime": "2020-10-30T13:30:50Z" - }, - "trainResult": { - "averageModelAccuracy": 0.96, - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "status": "succeeded" - } - ], - "fields": [ - { - "fieldName": "CompanyAddress", - "accuracy": 0.8 - }, - { - "fieldName": "CompanyName", - "accuracy": 1.0 - }, - { - "fieldName": "CompanyPhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "DatedAs", - "accuracy": 1.0 - }, - { - "fieldName": "Email", - "accuracy": 0.8 - }, - { - "fieldName": "Merchant", - "accuracy": 1.0 - }, - { - "fieldName": "PhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "PurchaseOrderNumber", - "accuracy": 1.0 - }, - { - "fieldName": "Quantity", - "accuracy": 1.0 - }, - { - "fieldName": "Signature", - "accuracy": 0.8 - }, - { - "fieldName": "Subtotal", - "accuracy": 1.0 - }, - { - "fieldName": "Tax", - "accuracy": 1.0 - }, - { - "fieldName": "Total", - "accuracy": 1.0 - }, - { - "fieldName": "VendorName", - "accuracy": 1.0 - }, - { - "fieldName": "Website", - "accuracy": 1.0 - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a078649aaa21fe4fac6cdb517142b1e0-1443d309d740c243-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d6cb3c7b111cd36c48029624eacfae4e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "543a0721-6388-42b7-9ac5-7d246a2d3ccc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:30:48Z", - "lastUpdatedDateTime": "2020-10-30T13:30:50Z" - }, - "trainResult": { - "averageModelAccuracy": 0.96, - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "status": "succeeded" - } - ], - "fields": [ - { - "fieldName": "CompanyAddress", - "accuracy": 0.8 - }, - { - "fieldName": "CompanyName", - "accuracy": 1.0 - }, - { - "fieldName": "CompanyPhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "DatedAs", - "accuracy": 1.0 - }, - { - "fieldName": "Email", - "accuracy": 0.8 - }, - { - "fieldName": "Merchant", - "accuracy": 1.0 - }, - { - "fieldName": "PhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "PurchaseOrderNumber", - "accuracy": 1.0 - }, - { - "fieldName": "Quantity", - "accuracy": 1.0 - }, - { - "fieldName": "Signature", - "accuracy": 0.8 - }, - { - "fieldName": "Subtotal", - "accuracy": 1.0 - }, - { - "fieldName": "Tax", - "accuracy": 1.0 - }, - { - "fieldName": "Total", - "accuracy": 1.0 - }, - { - "fieldName": "VendorName", - "accuracy": 1.0 - }, - { - "fieldName": "Website", - "accuracy": 1.0 - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "18241d0fbf627eaac8816954d081a4a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "98ed39f6-c950-41d4-ab6b-4b9b17a4e0d3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "294" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "007c06a2-25ad-48f2-9d13-b104d0d8f1e0", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:43:30Z", - "lastUpdatedDateTime": "2020-08-20T18:43:32Z" - }, - { - "modelId": "01579645-6803-4345-8db9-659c6a1744a0", - "status": "ready", - "createdDateTime": "2020-10-30T13:23:55Z", - "lastUpdatedDateTime": "2020-10-30T13:24:00Z" - }, - { - "modelId": "01bc0ea9-d7e3-4515-b502-f2b57efb0aa2", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:54Z", - "lastUpdatedDateTime": "2020-08-20T18:44:54Z" - }, - { - "modelId": "01bd21ac-ce1b-4e9f-b1a3-92847479633e", - "status": "ready", - "createdDateTime": "2020-08-20T22:28:00Z", - "lastUpdatedDateTime": "2020-08-20T22:28:09Z" - }, - { - "modelId": "01ef6d0c-d5c1-4343-bbcd-6add5cda3741", - "status": "creating", - "createdDateTime": "2020-08-17T21:42:37Z", - "lastUpdatedDateTime": "2020-08-17T21:42:37Z" - }, - { - "modelId": "022a3ddc-a723-4df1-bbee-df16b2092efa", - "status": "ready", - "createdDateTime": "2020-08-14T18:52:29Z", - "lastUpdatedDateTime": "2020-08-14T18:52:37Z" - }, - { - "modelId": "02f68a79-b056-4f85-9e93-898f8261d55e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:44:14Z", - "lastUpdatedDateTime": "2020-08-20T18:44:16Z" - }, - { - "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", - "modelName": "My composed model", - "attributes": { - "isComposed": true - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:20:47Z", - "lastUpdatedDateTime": "2020-10-30T13:20:48Z" - }, - { - "modelId": "032312e5-3e29-4a17-8297-96ce181e9ff7", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:25Z", - "lastUpdatedDateTime": "2020-08-20T23:26:33Z" - }, - { - "modelId": "0613c81a-b6e2-41f4-94ba-b7d033e07848", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:45Z", - "lastUpdatedDateTime": "2020-08-14T19:44:45Z" - }, - { - "modelId": "08500349-8e12-4ecc-b22f-6378fd21a608", - "status": "invalid", - "createdDateTime": "2020-08-14T19:45:11Z", - "lastUpdatedDateTime": "2020-08-14T19:45:11Z" - }, - { - "modelId": "09c0ba1d-f88d-4670-ac36-9dc8dc979a1b", - "status": "invalid", - "createdDateTime": "2020-08-20T23:26:11Z", - "lastUpdatedDateTime": "2020-08-20T23:26:11Z" - }, - { - "modelId": "0b325cdc-5a78-4d79-85f2-f53abaf4f151", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:33Z", - "lastUpdatedDateTime": "2020-08-20T22:45:33Z" - }, - { - "modelId": "0b32e649-44b9-4842-803d-4ec855514aa7", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:16Z", - "lastUpdatedDateTime": "2020-08-20T21:53:25Z" - }, - { - "modelId": "0cad4cc0-ea89-497c-86f0-9b57d2f02517", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:46Z", - "lastUpdatedDateTime": "2020-08-20T18:44:00Z" - }, - { - "modelId": "0cfe37f7-87fa-4475-a105-1777ea41c6cd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:49:12Z", - "lastUpdatedDateTime": "2020-08-20T21:49:19Z" - }, - { - "modelId": "0d93d3a5-9024-479c-827b-859d0bd7c006", - "status": "creating", - "createdDateTime": "2020-08-17T17:15:56Z", - "lastUpdatedDateTime": "2020-08-17T17:15:56Z" - }, - { - "modelId": "0da54f9c-ef82-4d08-9011-ffe4d3c02447", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:50Z", - "lastUpdatedDateTime": "2020-08-14T19:46:50Z" - }, - { - "modelId": "0ea70033-e01f-4365-b890-839c2a628ea7", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:43:43Z", - "lastUpdatedDateTime": "2020-08-20T22:43:44Z" - }, - { - "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", - "status": "invalid", - "createdDateTime": "2020-10-30T13:23:53Z", - "lastUpdatedDateTime": "2020-10-30T13:23:54Z" - }, - { - "modelId": "0fd3cd6d-4782-4f5e-bb8f-319394c848dd", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:21Z", - "lastUpdatedDateTime": "2020-08-20T18:43:24Z" - }, - { - "modelId": "102e5b73-5b01-431e-bfce-ca83ebc47c05", - "status": "ready", - "createdDateTime": "2020-08-20T22:49:46Z", - "lastUpdatedDateTime": "2020-08-20T22:49:55Z" - }, - { - "modelId": "1034ef53-16b6-492b-a511-2a89e5326349", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:13:32Z", - "lastUpdatedDateTime": "2020-10-30T13:13:34Z" - }, - { - "modelId": "1127179b-ee78-46d0-a51a-ca8a088ec177", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:42:19Z", - "lastUpdatedDateTime": "2020-08-20T18:42:21Z" - }, - { - "modelId": "11eb2552-c707-43f3-a673-897433da9f66", - "status": "invalid", - "createdDateTime": "2020-08-20T21:25:24Z", - "lastUpdatedDateTime": "2020-08-20T21:25:24Z" - }, - { - "modelId": "1239ac73-a1ba-43a8-b725-6118c6c4cb7d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:08:03Z", - "lastUpdatedDateTime": "2020-08-20T21:08:10Z" - }, - { - "modelId": "12b12b23-10d3-4efa-927b-8b79c153099a", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:34Z", - "lastUpdatedDateTime": "2020-08-14T19:10:34Z" - }, - { - "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:45Z", - "lastUpdatedDateTime": "2020-10-30T13:22:45Z" - }, - { - "modelId": "17c078da-8f4e-4376-923a-7672a8a621ab", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:47:37Z", - "lastUpdatedDateTime": "2020-08-14T19:47:38Z" - }, - { - "modelId": "17e8374c-6cd4-40d7-8d33-8fa52286a883", - "status": "ready", - "createdDateTime": "2020-08-20T22:06:19Z", - "lastUpdatedDateTime": "2020-08-20T22:06:29Z" - }, - { - "modelId": "18cb6b55-f009-4df2-8d56-ab423d29d5c4", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:20Z", - "lastUpdatedDateTime": "2020-08-20T22:43:23Z" - }, - { - "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:32Z", - "lastUpdatedDateTime": "2020-08-20T21:25:40Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b4a65ff36d8d908e575ba94426de0d53", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0f79deb2-4f11-465e-9e27-4a6fa64a0e46", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "313" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:32Z", - "lastUpdatedDateTime": "2020-08-20T21:25:40Z" - }, - { - "modelId": "1bf14c97-93e2-44ee-9ac6-a11478fc33da", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:45Z", - "lastUpdatedDateTime": "2020-08-20T23:28:45Z" - }, - { - "modelId": "1cba0c75-0acd-4ff0-9a06-02fd708ebd0b", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:51Z", - "lastUpdatedDateTime": "2020-08-14T19:46:51Z" - }, - { - "modelId": "1cc4fde0-89ac-4b67-b537-1fcf6275fe8e", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:22Z", - "lastUpdatedDateTime": "2020-08-20T23:29:30Z" - }, - { - "modelId": "1f2bca7f-9bf8-4138-8a4c-53c03c3c8f55", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:46:19Z", - "lastUpdatedDateTime": "2020-08-20T21:46:26Z" - }, - { - "modelId": "1fd33a7f-9726-4d73-a737-5e4a3016d7ad", - "status": "invalid", - "createdDateTime": "2020-08-14T19:47:13Z", - "lastUpdatedDateTime": "2020-08-14T19:47:13Z" - }, - { - "modelId": "20cbcc4d-191f-4c74-aac5-ecc2e3d959e6", - "status": "ready", - "createdDateTime": "2020-08-20T23:25:30Z", - "lastUpdatedDateTime": "2020-08-20T23:25:38Z" - }, - { - "modelId": "24307288-59a3-4cf8-b5c3-cc981928dc5d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:23:00Z", - "lastUpdatedDateTime": "2020-08-20T21:23:08Z" - }, - { - "modelId": "25365575-b6ce-4351-add0-b3c5b6f68ad0", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:28Z", - "lastUpdatedDateTime": "2020-08-20T22:45:28Z" - }, - { - "modelId": "253f0935-8a68-4425-88ca-9804d7ef40a4", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:11:18Z", - "lastUpdatedDateTime": "2020-08-14T19:11:20Z" - }, - { - "modelId": "26e8eb28-909b-4a5e-b10d-c862e0dde861", - "status": "ready", - "createdDateTime": "2020-08-20T22:45:55Z", - "lastUpdatedDateTime": "2020-08-20T22:46:01Z" - }, - { - "modelId": "272021b8-def8-48d8-8b89-10b3664b4dd4", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:54Z", - "lastUpdatedDateTime": "2020-08-20T18:44:54Z" - }, - { - "modelId": "27bc87a8-6ef8-4e41-b023-22f3484a078b", - "status": "ready", - "createdDateTime": "2020-08-14T19:29:45Z", - "lastUpdatedDateTime": "2020-08-14T19:29:52Z" - }, - { - "modelId": "2800da27-3d69-4333-bd95-e9b217732660", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:42Z", - "lastUpdatedDateTime": "2020-10-30T13:22:42Z" - }, - { - "modelId": "284f716b-a8a0-4333-9ad5-6be8b981ce79", - "status": "creating", - "createdDateTime": "2020-08-17T21:43:17Z", - "lastUpdatedDateTime": "2020-08-17T21:43:17Z" - }, - { - "modelId": "28cd0f90-8143-48e9-85b2-baf4b2cc4a8f", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:36Z", - "lastUpdatedDateTime": "2020-08-20T21:22:36Z" - }, - { - "modelId": "2a023ee3-7a0c-42ee-9946-571124631d68", - "status": "ready", - "createdDateTime": "2020-08-20T21:51:49Z", - "lastUpdatedDateTime": "2020-08-20T21:51:58Z" - }, - { - "modelId": "2a3fb884-1ef3-462c-bd28-0684e728d55a", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:45:27Z", - "lastUpdatedDateTime": "2020-08-20T18:45:28Z" - }, - { - "modelId": "2d0d3ec2-c813-4840-837a-65e3f14a4fd7", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:26Z", - "lastUpdatedDateTime": "2020-08-20T21:25:30Z" - }, - { - "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:15Z", - "lastUpdatedDateTime": "2020-10-30T13:21:26Z" - }, - { - "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:13Z", - "lastUpdatedDateTime": "2020-10-30T13:24:25Z" - }, - { - "modelId": "2fb4524b-3239-45c6-a9c0-4667b16ab72e", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:49Z", - "lastUpdatedDateTime": "2020-08-20T18:42:49Z" - }, - { - "modelId": "32a70028-9497-4938-b27d-a46c07315800", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:50:08Z", - "lastUpdatedDateTime": "2020-08-20T21:50:10Z" - }, - { - "modelId": "33921c16-6dd2-4666-aaed-3863b28e0eeb", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:34Z", - "lastUpdatedDateTime": "2020-08-14T19:10:34Z" - }, - { - "modelId": "34c52af3-ce6c-465c-9fc0-797f8b6dcfdc", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:14Z", - "lastUpdatedDateTime": "2020-08-14T19:08:22Z" - }, - { - "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:43Z", - "lastUpdatedDateTime": "2020-10-30T13:19:43Z" - }, - { - "modelId": "35238cbc-5c0b-4ae6-b19d-779568d5c3af", - "status": "ready", - "createdDateTime": "2020-08-20T21:06:49Z", - "lastUpdatedDateTime": "2020-08-20T21:06:57Z" - }, - { - "modelId": "35a3d57f-d630-437e-85cf-14f0a6ed1f29", - "status": "ready", - "createdDateTime": "2020-08-14T19:44:36Z", - "lastUpdatedDateTime": "2020-08-14T19:44:44Z" - }, - { - "modelId": "361ba8b7-61d0-4051-ba20-2dac77a428ef", - "status": "ready", - "createdDateTime": "2020-08-14T18:52:29Z", - "lastUpdatedDateTime": "2020-08-14T18:52:37Z" - }, - { - "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:42Z", - "lastUpdatedDateTime": "2020-10-30T13:22:42Z" - }, - { - "modelId": "37cbc664-e1aa-4fc1-b73e-d241dec98dfe", - "status": "invalid", - "createdDateTime": "2020-08-20T21:25:25Z", - "lastUpdatedDateTime": "2020-08-20T21:25:26Z" - }, - { - "modelId": "38d1e2ad-b058-4dfe-bb00-797b4f6ef957", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:57Z", - "lastUpdatedDateTime": "2020-08-20T22:42:57Z" - }, - { - "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:04Z", - "lastUpdatedDateTime": "2020-08-20T22:46:12Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9f70f7b3d5b4bbb8924d0d9aa71703c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b3a3e2b4-cf55-41fe-b4fd-3438d926bc32", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "335" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:04Z", - "lastUpdatedDateTime": "2020-08-20T22:46:12Z" - }, - { - "modelId": "3af295a0-785e-4567-bba5-54797c4aa61d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:23:19Z", - "lastUpdatedDateTime": "2020-08-20T21:23:20Z" - }, - { - "modelId": "3d445599-3e82-43bb-ad48-241788aec3b9", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:42:25Z", - "lastUpdatedDateTime": "2020-08-20T22:42:32Z" - }, - { - "modelId": "3d452732-d856-4579-bb92-817af8438a2f", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:38Z", - "lastUpdatedDateTime": "2020-10-30T13:21:50Z" - }, - { - "modelId": "3e5d1032-b968-458c-901f-7daa543210a7", - "status": "ready", - "createdDateTime": "2020-08-14T19:49:17Z", - "lastUpdatedDateTime": "2020-08-14T19:49:25Z" - }, - { - "modelId": "3efd32fe-763f-4cca-a58b-2fa57d13dc83", - "status": "creating", - "createdDateTime": "2020-08-17T17:15:30Z", - "lastUpdatedDateTime": "2020-08-17T17:15:30Z" - }, - { - "modelId": "40152914-610e-47f8-b6c6-8c155df7650e", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:46Z", - "lastUpdatedDateTime": "2020-08-20T22:45:46Z" - }, - { - "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:35Z", - "lastUpdatedDateTime": "2020-10-30T13:21:37Z" - }, - { - "modelId": "4120e08d-2693-4f80-a69f-53029d556457", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:29:31Z", - "lastUpdatedDateTime": "2020-08-20T23:29:38Z" - }, - { - "modelId": "412a541e-6015-4ba3-bc06-bda9dcfb4563", - "status": "ready", - "createdDateTime": "2020-08-20T21:28:50Z", - "lastUpdatedDateTime": "2020-08-20T21:28:58Z" - }, - { - "modelId": "41dcd3b4-7da4-4947-afc2-8267342bf8d3", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:08:56Z", - "lastUpdatedDateTime": "2020-08-14T19:08:58Z" - }, - { - "modelId": "42ca775f-ce05-4794-9afa-1206f9ec4e4b", - "status": "ready", - "createdDateTime": "2020-08-14T19:28:36Z", - "lastUpdatedDateTime": "2020-08-14T19:28:44Z" - }, - { - "modelId": "4363499c-72ab-45b2-8931-d8b1838bef70", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:26:34Z", - "lastUpdatedDateTime": "2020-08-20T23:26:41Z" - }, - { - "modelId": "438b68f8-bec6-4313-88d6-43f201f64e26", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:22:10Z", - "lastUpdatedDateTime": "2020-08-20T21:22:12Z" - }, - { - "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:37Z", - "lastUpdatedDateTime": "2020-10-30T13:24:49Z" - }, - { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:22:18Z", - "lastUpdatedDateTime": "2020-10-30T13:22:19Z" - }, - { - "modelId": "44cf7b0c-17d8-461b-8a14-972532fcf6d6", - "status": "creating", - "createdDateTime": "2020-08-17T22:30:19Z", - "lastUpdatedDateTime": "2020-08-17T22:30:19Z" - }, - { - "modelId": "44d3f221-a1ad-4726-a5f5-43bc37fe7222", - "status": "ready", - "createdDateTime": "2020-08-20T22:45:18Z", - "lastUpdatedDateTime": "2020-08-20T22:45:27Z" - }, - { - "modelId": "4559697f-580d-439c-a336-1272be0526f9", - "status": "invalid", - "createdDateTime": "2020-10-30T13:20:53Z", - "lastUpdatedDateTime": "2020-10-30T13:20:54Z" - }, - { - "modelId": "45c5498b-3755-44fd-95d5-8d5b5924e3a6", - "status": "invalid", - "createdDateTime": "2020-08-20T22:43:19Z", - "lastUpdatedDateTime": "2020-08-20T22:43:19Z" - }, - { - "modelId": "45f1adde-a451-4746-a675-f0ebb166151b", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:08Z", - "lastUpdatedDateTime": "2020-08-20T21:47:08Z" - }, - { - "modelId": "46201f03-7ffc-4e1e-bd07-a48bb6bccad4", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:23Z", - "lastUpdatedDateTime": "2020-08-14T19:08:23Z" - }, - { - "modelId": "46a86632-ff1f-4e80-bd06-6c8d48af3157", - "status": "ready", - "createdDateTime": "2020-08-20T18:44:45Z", - "lastUpdatedDateTime": "2020-08-20T18:44:53Z" - }, - { - "modelId": "47a7b4cd-d993-4d83-b6ca-ee18c547acfb", - "status": "ready", - "createdDateTime": "2020-08-20T22:49:07Z", - "lastUpdatedDateTime": "2020-08-20T22:49:16Z" - }, - { - "modelId": "488d74c6-25ae-4271-b7e5-cff85e10abc4", - "status": "ready", - "createdDateTime": "2020-08-20T18:26:04Z", - "lastUpdatedDateTime": "2020-08-20T18:26:12Z" - }, - { - "modelId": "49b0f1a2-e699-4f0d-a873-040df8e08e6c", - "status": "ready", - "createdDateTime": "2020-08-14T19:13:59Z", - "lastUpdatedDateTime": "2020-08-14T19:14:08Z" - }, - { - "modelId": "4acac1b2-4f07-46b2-9d21-c172d2a66330", - "status": "ready", - "createdDateTime": "2020-08-14T19:28:36Z", - "lastUpdatedDateTime": "2020-08-14T19:28:44Z" - }, - { - "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:33Z", - "lastUpdatedDateTime": "2020-10-30T13:24:35Z" - }, - { - "modelId": "4bfcc25d-0b2f-4fa2-a284-bcc98cf1f8fd", - "status": "ready", - "createdDateTime": "2020-08-20T21:31:42Z", - "lastUpdatedDateTime": "2020-08-20T21:31:51Z" - }, - { - "modelId": "4c92bc3c-f25c-4f02-84d9-f8ceae9b16b6", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:09Z", - "lastUpdatedDateTime": "2020-08-14T19:11:17Z" - }, - { - "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:20Z", - "lastUpdatedDateTime": "2020-08-20T18:45:20Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8a31ef5efa29a1c18f93c106156658ea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ba8209e6-d5ac-4afc-b365-8b8d2e18c443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "270" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:20Z", - "lastUpdatedDateTime": "2020-08-20T18:45:20Z" - }, - { - "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:52Z", - "lastUpdatedDateTime": "2020-10-30T13:25:13Z" - }, - { - "modelId": "52db9454-9b6c-4514-a6f4-27d3d404a999", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:43:30Z", - "lastUpdatedDateTime": "2020-08-20T22:43:32Z" - }, - { - "modelId": "547f6f41-f70e-4cb5-aa8f-2129e33df2af", - "status": "ready", - "createdDateTime": "2020-07-30T00:55:04Z", - "lastUpdatedDateTime": "2020-07-30T00:55:12Z" - }, - { - "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:42Z", - "lastUpdatedDateTime": "2020-10-30T13:19:42Z" - }, - { - "modelId": "55c30a55-134a-4f9d-8b42-37caa8198471", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:21Z", - "lastUpdatedDateTime": "2020-08-14T19:11:31Z" - }, - { - "modelId": "56292da4-33e9-421f-ad9b-859234c5d111", - "status": "invalid", - "createdDateTime": "2020-08-20T23:29:05Z", - "lastUpdatedDateTime": "2020-08-20T23:29:05Z" - }, - { - "modelId": "566b7d84-318a-4acb-a928-d684e42b93b3", - "status": "invalid", - "createdDateTime": "2020-08-20T21:50:02Z", - "lastUpdatedDateTime": "2020-08-20T21:50:02Z" - }, - { - "modelId": "56ce1ece-256f-480d-8637-1005534971de", - "status": "ready", - "createdDateTime": "2020-08-20T21:27:11Z", - "lastUpdatedDateTime": "2020-08-20T21:27:19Z" - }, - { - "modelId": "5737eddb-d3c3-4e43-8658-b0f4322af5dc", - "status": "invalid", - "createdDateTime": "2020-08-20T23:29:06Z", - "lastUpdatedDateTime": "2020-08-20T23:29:07Z" - }, - { - "modelId": "578062d7-dbfb-4548-a54e-299c967f17be", - "status": "ready", - "createdDateTime": "2020-08-20T18:48:16Z", - "lastUpdatedDateTime": "2020-08-20T18:48:27Z" - }, - { - "modelId": "57c1049c-a148-461a-ad5d-fe7e953f7d09", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:36Z", - "lastUpdatedDateTime": "2020-08-14T19:10:36Z" - }, - { - "modelId": "57e0eb22-6bdb-4ef9-a597-11d96876ad1d", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:21Z", - "lastUpdatedDateTime": "2020-08-14T19:45:29Z" - }, - { - "modelId": "5802c9ef-6ce3-41ac-be05-b4afb5613cb2", - "status": "ready", - "createdDateTime": "2020-08-20T21:08:18Z", - "lastUpdatedDateTime": "2020-08-20T21:08:26Z" - }, - { - "modelId": "5837470d-2183-4c9a-b005-80ab6b76765b", - "status": "ready", - "createdDateTime": "2020-08-20T23:31:12Z", - "lastUpdatedDateTime": "2020-08-20T23:31:26Z" - }, - { - "modelId": "584c4432-36cf-4a0b-a2e1-5c651bfd4227", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:08:02Z", - "lastUpdatedDateTime": "2020-08-14T19:08:04Z" - }, - { - "modelId": "58871fae-0f09-4f14-bce7-769d4bd35354", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:30Z", - "lastUpdatedDateTime": "2020-08-14T19:08:30Z" - }, - { - "modelId": "5bde02de-1dcb-4ea8-b497-0427a16b26fb", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:39Z", - "lastUpdatedDateTime": "2020-08-20T23:25:39Z" - }, - { - "modelId": "5f0ca916-4ca0-4f2d-9447-caeac53bcf2e", - "status": "ready", - "createdDateTime": "2020-08-20T23:32:15Z", - "lastUpdatedDateTime": "2020-08-20T23:32:25Z" - }, - { - "modelId": "5faf34f8-8399-477b-ba82-48f1e2e7688f", - "status": "invalid", - "createdDateTime": "2020-08-14T19:45:12Z", - "lastUpdatedDateTime": "2020-08-14T19:45:12Z" - }, - { - "modelId": "5feddb70-fa11-450f-b34b-37a45b5c80d3", - "status": "invalid", - "createdDateTime": "2020-08-20T23:26:09Z", - "lastUpdatedDateTime": "2020-08-20T23:26:10Z" - }, - { - "modelId": "6035d354-53ef-4dcd-93de-5b9ad1c1ea77", - "status": "ready", - "createdDateTime": "2020-08-20T18:42:40Z", - "lastUpdatedDateTime": "2020-08-20T18:42:48Z" - }, - { - "modelId": "6216b1ae-970a-485b-a35e-070150082adb", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:57Z", - "lastUpdatedDateTime": "2020-08-20T22:42:57Z" - }, - { - "modelId": "63262869-1ff0-49d0-a26f-1d1552cad649", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:09:49Z", - "lastUpdatedDateTime": "2020-08-20T23:09:51Z" - }, - { - "modelId": "637426f9-5d46-4e4c-8bfb-86f2b60bd94b", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:44Z", - "lastUpdatedDateTime": "2020-08-20T21:49:44Z" - }, - { - "modelId": "66087b32-fce4-402d-9101-1bc4f627462d", - "status": "ready", - "createdDateTime": "2020-08-20T21:22:24Z", - "lastUpdatedDateTime": "2020-08-20T21:22:33Z" - }, - { - "modelId": "6645dde9-caf0-4beb-8758-501325f2e605", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:58Z", - "lastUpdatedDateTime": "2020-08-20T21:54:06Z" - }, - { - "modelId": "68f6c9f8-795d-43bc-97bd-619dad38c66d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:28:13Z", - "lastUpdatedDateTime": "2020-08-20T23:28:19Z" - }, - { - "modelId": "6bbda4de-97ee-4d62-a7ab-2a9a13f503f6", - "status": "invalid", - "createdDateTime": "2020-08-20T21:49:56Z", - "lastUpdatedDateTime": "2020-08-20T21:49:56Z" - }, - { - "modelId": "6c252bb0-d84a-47c8-82af-0dabf36c4c6f", - "status": "invalid", - "createdDateTime": "2020-08-20T21:47:26Z", - "lastUpdatedDateTime": "2020-08-20T21:47:27Z" - }, - { - "modelId": "6c6bd1f5-4009-435f-b938-df50c1966733", - "status": "ready", - "createdDateTime": "2020-08-20T21:28:00Z", - "lastUpdatedDateTime": "2020-08-20T21:28:08Z" - }, - { - "modelId": "6fbe2ae1-fd8f-40c7-bf2e-c05e90931aac", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:45Z", - "lastUpdatedDateTime": "2020-08-20T23:28:45Z" - }, - { - "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:22Z", - "lastUpdatedDateTime": "2020-08-20T18:45:26Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d8a0157404111df2a7eb213f60f3e83f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a4caf13e-5b1b-4651-bbad-1735040ea2af", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "261" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:22Z", - "lastUpdatedDateTime": "2020-08-20T18:45:26Z" - }, - { - "modelId": "714cd9ba-6084-4966-bf98-079fc90562fe", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:10:07Z", - "lastUpdatedDateTime": "2020-08-14T19:10:09Z" - }, - { - "modelId": "7156bc3a-1e6b-4125-b89f-10d971d5ba14", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:27:48Z", - "lastUpdatedDateTime": "2020-08-20T22:27:50Z" - }, - { - "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", - "modelName": "My training", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:03Z", - "lastUpdatedDateTime": "2020-10-30T13:21:04Z" - }, - { - "modelId": "74ea7917-ea1e-4d62-8bd9-551fcac9d963", - "status": "ready", - "createdDateTime": "2020-08-14T19:50:11Z", - "lastUpdatedDateTime": "2020-08-14T19:50:19Z" - }, - { - "modelId": "765cd50a-d9bd-4bbe-9e77-8e496c234240", - "status": "ready", - "createdDateTime": "2020-08-20T18:46:18Z", - "lastUpdatedDateTime": "2020-08-20T18:46:27Z" - }, - { - "modelId": "76aed1f7-5a15-4754-925c-45d27d7fd0c5", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:34Z", - "lastUpdatedDateTime": "2020-08-20T21:22:34Z" - }, - { - "modelId": "76e1dc72-2be3-4c40-9f07-6b29a0bf327a", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:45Z", - "lastUpdatedDateTime": "2020-08-14T19:44:45Z" - }, - { - "modelId": "76e25188-e121-4fc3-a5f3-3cb861033259", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:07Z", - "lastUpdatedDateTime": "2020-08-20T21:25:07Z" - }, - { - "modelId": "795417b4-25af-4d41-aa61-3cef0084e589", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:03Z", - "lastUpdatedDateTime": "2020-08-20T21:50:07Z" - }, - { - "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", - "modelName": "My training", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:02Z", - "lastUpdatedDateTime": "2020-10-30T13:24:03Z" - }, - { - "modelId": "7c9a4c19-1761-40d2-8f2b-10f10510ca74", - "status": "ready", - "createdDateTime": "2020-08-14T19:10:57Z", - "lastUpdatedDateTime": "2020-08-14T19:11:00Z" - }, - { - "modelId": "7dd8a381-1484-4809-ad11-db27dc50841e", - "status": "ready", - "createdDateTime": "2020-08-20T21:49:31Z", - "lastUpdatedDateTime": "2020-08-20T21:49:39Z" - }, - { - "modelId": "7dfcb89d-abc6-43ca-bae6-cce241d06e4f", - "status": "ready", - "createdDateTime": "2020-08-20T21:30:14Z", - "lastUpdatedDateTime": "2020-08-20T21:30:22Z" - }, - { - "modelId": "7f2745e3-7f0d-46f7-919a-96b939030594", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:59Z", - "lastUpdatedDateTime": "2020-08-20T22:42:59Z" - }, - { - "modelId": "80601216-855c-4286-b532-34af33c229ae", - "status": "ready", - "createdDateTime": "2020-08-14T19:13:08Z", - "lastUpdatedDateTime": "2020-08-14T19:13:16Z" - }, - { - "modelId": "84fd2414-5018-4f5a-9805-b80467ce7593", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:27Z", - "lastUpdatedDateTime": "2020-08-20T21:47:31Z" - }, - { - "modelId": "8692493e-799d-48c3-b217-950e1471adba", - "status": "ready", - "createdDateTime": "2020-08-14T19:48:16Z", - "lastUpdatedDateTime": "2020-08-14T19:48:24Z" - }, - { - "modelId": "878a4cd7-39c2-46a0-a905-7cc1bd071837", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:46:09Z", - "lastUpdatedDateTime": "2020-08-14T19:46:12Z" - }, - { - "modelId": "87f0f103-08c9-4cae-91b8-f5a0a205bb35", - "status": "creating", - "createdDateTime": "2020-08-17T22:32:37Z", - "lastUpdatedDateTime": "2020-08-17T22:32:37Z" - }, - { - "modelId": "88d34ad1-0508-475c-9d75-2c15594876ac", - "status": "invalid", - "createdDateTime": "2020-08-14T19:47:12Z", - "lastUpdatedDateTime": "2020-08-14T19:47:12Z" - }, - { - "modelId": "8a2a6999-df6a-4b64-9633-87d097b2af06", - "status": "invalid", - "createdDateTime": "2020-08-20T22:45:53Z", - "lastUpdatedDateTime": "2020-08-20T22:45:53Z" - }, - { - "modelId": "91f0a68b-5890-4e2a-8856-4489113f9d54", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:11:01Z", - "lastUpdatedDateTime": "2020-08-14T19:11:08Z" - }, - { - "modelId": "91f917c8-c8ad-457e-8d62-00e3e1686aac", - "status": "invalid", - "createdDateTime": "2020-08-20T18:43:19Z", - "lastUpdatedDateTime": "2020-08-20T18:43:20Z" - }, - { - "modelId": "921d9d16-9a9d-4dab-a0c5-63deb0aed5a6", - "status": "ready", - "createdDateTime": "2020-08-20T22:42:48Z", - "lastUpdatedDateTime": "2020-08-20T22:42:56Z" - }, - { - "modelId": "9259c76f-7273-41a7-83e2-fd176eeef64e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:02Z", - "lastUpdatedDateTime": "2020-08-20T22:46:04Z" - }, - { - "modelId": "92829e8f-ef96-4b83-8d54-4e2064729e84", - "status": "invalid", - "createdDateTime": "2020-08-14T19:08:49Z", - "lastUpdatedDateTime": "2020-08-14T19:08:49Z" - }, - { - "modelId": "932ef024-3b06-4445-bc05-863f0b7365db", - "status": "ready", - "createdDateTime": "2020-08-14T19:10:25Z", - "lastUpdatedDateTime": "2020-08-14T19:10:32Z" - }, - { - "modelId": "94e1ae64-db16-4b11-b3ec-db684b3eb473", - "status": "ready", - "createdDateTime": "2020-08-20T21:46:57Z", - "lastUpdatedDateTime": "2020-08-20T21:47:05Z" - }, - { - "modelId": "959a6767-936a-4388-be50-47b1471173e2", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:33Z", - "lastUpdatedDateTime": "2020-08-20T22:43:42Z" - }, - { - "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:51Z", - "lastUpdatedDateTime": "2020-10-30T13:24:52Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "36e5e35882acb82a35cf102014b1a52b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bda29f2a-cc03-4589-b17a-30f9a13bdc43", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "245" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:51Z", - "lastUpdatedDateTime": "2020-10-30T13:24:52Z" - }, - { - "modelId": "9794b06a-303c-4014-ac9c-d64ccd2d897d", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:33Z", - "lastUpdatedDateTime": "2020-08-20T21:22:33Z" - }, - { - "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:52Z", - "lastUpdatedDateTime": "2020-10-30T13:21:54Z" - }, - { - "modelId": "98fc2d15-8bb1-4eb8-85f8-dbde2d188615", - "status": "ready", - "createdDateTime": "2020-08-14T19:46:41Z", - "lastUpdatedDateTime": "2020-08-14T19:46:48Z" - }, - { - "modelId": "9947fcd1-42b4-4c38-930e-1b0403e6f761", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:42Z", - "lastUpdatedDateTime": "2020-08-14T19:45:53Z" - }, - { - "modelId": "99c2b562-6e31-4923-a25c-8d940951ed2f", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:23Z", - "lastUpdatedDateTime": "2020-08-14T19:47:32Z" - }, - { - "modelId": "9a0b42b4-09e2-4c90-8bd0-64395fb588e8", - "status": "ready", - "createdDateTime": "2020-08-20T23:28:36Z", - "lastUpdatedDateTime": "2020-08-20T23:28:44Z" - }, - { - "modelId": "9aa701a8-3822-4d5d-bc37-4891415c267f", - "status": "ready", - "createdDateTime": "2020-08-20T22:06:19Z", - "lastUpdatedDateTime": "2020-08-20T22:06:29Z" - }, - { - "modelId": "9d8aac28-0ab6-4b18-bb80-35341797a3ad", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:04Z", - "lastUpdatedDateTime": "2020-08-20T21:53:15Z" - }, - { - "modelId": "9e6eb7bc-d4b9-4887-a38a-58957d712769", - "status": "ready", - "createdDateTime": "2020-08-20T21:30:14Z", - "lastUpdatedDateTime": "2020-08-20T21:30:22Z" - }, - { - "modelId": "9f7271da-c7c1-4407-bd1a-92577c187995", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:21Z", - "lastUpdatedDateTime": "2020-08-20T18:45:22Z" - }, - { - "modelId": "a00e27ee-1358-468a-a95c-c80e5bff6343", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:45:08Z", - "lastUpdatedDateTime": "2020-08-20T22:45:15Z" - }, - { - "modelId": "a0a7e72a-d8ec-4293-8dee-7fbe726fc115", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:45:38Z", - "lastUpdatedDateTime": "2020-08-20T18:45:39Z" - }, - { - "modelId": "a1513cf9-13dd-4eb7-bac5-7ceee4658c13", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T18:53:36Z", - "lastUpdatedDateTime": "2020-08-14T18:53:43Z" - }, - { - "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", - "status": "ready", - "createdDateTime": "2020-10-30T13:20:55Z", - "lastUpdatedDateTime": "2020-10-30T13:21:01Z" - }, - { - "modelId": "a2a41673-e1b2-4319-8eef-44910ce4d9cf", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:33Z", - "lastUpdatedDateTime": "2020-08-20T18:43:41Z" - }, - { - "modelId": "a2b05934-353c-4eb9-ac8b-45d1d2e489f2", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:14Z", - "lastUpdatedDateTime": "2020-08-20T22:46:24Z" - }, - { - "modelId": "a3189094-17a1-4acf-a788-f8c05c6e6a19", - "status": "invalid", - "createdDateTime": "2020-08-20T22:45:54Z", - "lastUpdatedDateTime": "2020-08-20T22:45:55Z" - }, - { - "modelId": "a336ff42-7e03-4b7f-821a-1246209f29de", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:51Z", - "lastUpdatedDateTime": "2020-08-14T19:08:55Z" - }, - { - "modelId": "a38f391d-fad5-4ed5-be4c-5a3644803cf4", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:39Z", - "lastUpdatedDateTime": "2020-08-20T23:29:51Z" - }, - { - "modelId": "a3cb3ffe-ba7b-4a0d-838a-eced98e48e8c", - "status": "invalid", - "createdDateTime": "2020-08-20T22:43:18Z", - "lastUpdatedDateTime": "2020-08-20T22:43:18Z" - }, - { - "modelId": "a5f5ef27-523c-44a4-a06c-a56470180145", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:55Z", - "lastUpdatedDateTime": "2020-08-14T19:44:55Z" - }, - { - "modelId": "a67b821e-e8f2-419d-97f6-e28903abe6a0", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:25:31Z", - "lastUpdatedDateTime": "2020-08-20T21:25:32Z" - }, - { - "modelId": "a70a5d5b-3b72-486b-91f1-0b518e077a43", - "status": "ready", - "createdDateTime": "2020-08-20T22:48:57Z", - "lastUpdatedDateTime": "2020-08-20T22:49:06Z" - }, - { - "modelId": "a78b3a1c-9189-4901-9bc2-ccceec21bf20", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:56Z", - "lastUpdatedDateTime": "2020-08-20T18:44:56Z" - }, - { - "modelId": "a7d5f0a1-b604-4fd4-a1fb-5df92c6deaef", - "status": "ready", - "createdDateTime": "2020-08-20T18:26:04Z", - "lastUpdatedDateTime": "2020-08-20T18:26:12Z" - }, - { - "modelId": "a8b5afb6-f11a-4496-ad62-a70e3ecda523", - "status": "ready", - "createdDateTime": "2020-08-14T19:49:09Z", - "lastUpdatedDateTime": "2020-08-14T19:49:17Z" - }, - { - "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:21Z", - "lastUpdatedDateTime": "2020-08-20T21:50:32Z" - }, - { - "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:13Z", - "lastUpdatedDateTime": "2020-08-20T22:46:14Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "922523f52a7759b5fd13e33dd881419b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5ab86e5a-8337-4536-b58e-ce352e6aaf16", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "247" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:13Z", - "lastUpdatedDateTime": "2020-08-20T22:46:14Z" - }, - { - "modelId": "a9dbcb83-f15c-4b42-aaef-c2e78adb3169", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:14Z", - "lastUpdatedDateTime": "2020-08-14T19:47:20Z" - }, - { - "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:05Z", - "lastUpdatedDateTime": "2020-10-30T13:21:06Z" - }, - { - "modelId": "ac2a0641-62e3-43e4-ab21-2f0eb52b6e61", - "status": "ready", - "createdDateTime": "2020-08-20T21:24:53Z", - "lastUpdatedDateTime": "2020-08-20T21:25:02Z" - }, - { - "modelId": "ad2694f9-88d9-48b6-b85c-71b6000aa9df", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:39Z", - "lastUpdatedDateTime": "2020-08-14T19:47:49Z" - }, - { - "modelId": "af6d3536-b663-4856-9824-9e8872fc83ed", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:43:43Z", - "lastUpdatedDateTime": "2020-08-20T18:43:45Z" - }, - { - "modelId": "b01f6909-840f-4ca9-85a3-769538176fe5", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:50Z", - "lastUpdatedDateTime": "2020-08-20T22:44:01Z" - }, - { - "modelId": "b08b7db5-97ae-4459-9603-47d5994e9f4a", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:57Z", - "lastUpdatedDateTime": "2020-08-14T19:12:05Z" - }, - { - "modelId": "b0b6140c-fb6e-4c67-b7f1-420074909323", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:47Z", - "lastUpdatedDateTime": "2020-08-20T23:28:47Z" - }, - { - "modelId": "b102b022-de56-4e48-8c16-41dae496d899", - "status": "invalid", - "createdDateTime": "2020-08-20T21:47:25Z", - "lastUpdatedDateTime": "2020-08-20T21:47:25Z" - }, - { - "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", - "status": "invalid", - "createdDateTime": "2020-10-30T13:20:52Z", - "lastUpdatedDateTime": "2020-10-30T13:20:52Z" - }, - { - "modelId": "b3cc3815-9fc0-40bc-ad82-0533b038db9d", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:13Z", - "lastUpdatedDateTime": "2020-08-14T19:45:17Z" - }, - { - "modelId": "b404b97b-0e37-4eb5-8ad1-4ced5d0a34a5", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:29Z", - "lastUpdatedDateTime": "2020-08-20T18:45:37Z" - }, - { - "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:55Z", - "lastUpdatedDateTime": "2020-10-30T13:22:15Z" - }, - { - "modelId": "b6cf7b42-a0ea-4d17-9a2e-080f0370f562", - "status": "invalid", - "createdDateTime": "2020-08-20T21:22:55Z", - "lastUpdatedDateTime": "2020-08-20T21:22:55Z" - }, - { - "modelId": "b768df27-adda-4f47-8223-4f9b696b3591", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:08Z", - "lastUpdatedDateTime": "2020-08-20T21:47:08Z" - }, - { - "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", - "modelName": "My composed model", - "attributes": { - "isComposed": true - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:23:46Z", - "lastUpdatedDateTime": "2020-10-30T13:23:47Z" - }, - { - "modelId": "bacfa117-235d-43f0-b919-913a0e0ae686", - "status": "ready", - "createdDateTime": "2020-08-20T22:47:48Z", - "lastUpdatedDateTime": "2020-08-20T22:47:56Z" - }, - { - "modelId": "bc1133f6-33d3-4ac1-a848-0695866e1786", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:25:41Z", - "lastUpdatedDateTime": "2020-08-20T21:25:42Z" - }, - { - "modelId": "bc6ae2e0-2eb4-40bb-b8d0-0ca37f413c58", - "status": "invalid", - "createdDateTime": "2020-08-20T21:22:53Z", - "lastUpdatedDateTime": "2020-08-20T21:22:54Z" - }, - { - "modelId": "bd10694b-d9fd-402e-9f89-2e5994a7691f", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:27:08Z", - "lastUpdatedDateTime": "2020-08-20T18:27:10Z" - }, - { - "modelId": "be8593fc-3fab-4300-8b14-f77966b99c04", - "status": "invalid", - "createdDateTime": "2020-08-14T19:10:54Z", - "lastUpdatedDateTime": "2020-08-14T19:10:54Z" - }, - { - "modelId": "c1cf6bc1-0d0f-4a23-b453-9df1b937710a", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:27Z", - "lastUpdatedDateTime": "2020-08-20T18:47:35Z" - }, - { - "modelId": "c2401fd4-05c0-48d4-bd2f-7a30589b1306", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:09:15Z", - "lastUpdatedDateTime": "2020-08-14T19:09:27Z" - }, - { - "modelId": "c39ee6fa-e7a8-4ad9-990e-aa9049846fff", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:08Z", - "lastUpdatedDateTime": "2020-08-20T23:29:13Z" - }, - { - "modelId": "c5797a87-180d-4ec3-a23f-aa44848ad149", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:12Z", - "lastUpdatedDateTime": "2020-08-20T23:26:17Z" - }, - { - "modelId": "c690cad3-cb93-4b4b-9139-f542f08aefa2", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:26:23Z", - "lastUpdatedDateTime": "2020-08-20T23:26:24Z" - }, - { - "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:25:05Z", - "lastUpdatedDateTime": "2020-08-20T23:25:07Z" - }, - { - "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", - "status": "ready", - "createdDateTime": "2020-08-20T23:33:14Z", - "lastUpdatedDateTime": "2020-08-20T23:33:22Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "32ad81ab2180f13debe7a341f4d209f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f0799062-3518-4cf1-8c64-5f9916326d3f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "219" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", - "status": "ready", - "createdDateTime": "2020-08-20T23:33:14Z", - "lastUpdatedDateTime": "2020-08-20T23:33:22Z" - }, - { - "modelId": "c89e3c61-0048-4ac6-93e6-4f28e4c290cc", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:29:28Z", - "lastUpdatedDateTime": "2020-08-14T19:29:35Z" - }, - { - "modelId": "c8b76997-38b0-444f-9646-40e930bd7b5c", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:50Z", - "lastUpdatedDateTime": "2020-08-20T21:48:01Z" - }, - { - "modelId": "cdb4705a-40e1-4ff4-8ad0-fec5734f4325", - "status": "ready", - "createdDateTime": "2020-08-20T23:10:08Z", - "lastUpdatedDateTime": "2020-08-20T23:10:17Z" - }, - { - "modelId": "cde04bf1-6d25-46f7-bdb5-2d056d9d0770", - "status": "ready", - "createdDateTime": "2020-08-14T19:09:28Z", - "lastUpdatedDateTime": "2020-08-14T19:09:39Z" - }, - { - "modelId": "cdfdd9de-9047-4c6b-9a87-eb8f561f73ff", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:47:21Z", - "lastUpdatedDateTime": "2020-08-14T19:47:23Z" - }, - { - "modelId": "cee73923-0fa2-40dd-8eda-8446c153ecbb", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:45:18Z", - "lastUpdatedDateTime": "2020-08-14T19:45:20Z" - }, - { - "modelId": "cf0a0084-92b5-4c82-aaee-b899a0645f91", - "status": "ready", - "createdDateTime": "2020-08-14T18:53:51Z", - "lastUpdatedDateTime": "2020-08-14T18:53:59Z" - }, - { - "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", - "status": "invalid", - "createdDateTime": "2020-10-30T13:23:52Z", - "lastUpdatedDateTime": "2020-10-30T13:23:52Z" - }, - { - "modelId": "d1ebd4b5-6e79-4a31-9ed2-0d492b409a6c", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:50Z", - "lastUpdatedDateTime": "2020-08-14T19:46:50Z" - }, - { - "modelId": "d234c2cd-e20d-407c-b023-2bb7e0065875", - "status": "ready", - "createdDateTime": "2020-08-20T21:06:49Z", - "lastUpdatedDateTime": "2020-08-20T21:06:57Z" - }, - { - "modelId": "d2bb2813-e890-4726-ad3a-5b2137840550", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:59Z", - "lastUpdatedDateTime": "2020-08-14T19:09:09Z" - }, - { - "modelId": "d35b3816-19e2-4263-840b-749342c5a9ae", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:48Z", - "lastUpdatedDateTime": "2020-08-20T23:25:48Z" - }, - { - "modelId": "d38c3724-ecc0-46ad-be24-9cfb55e88fdd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:29:19Z", - "lastUpdatedDateTime": "2020-08-20T23:29:21Z" - }, - { - "modelId": "d44ad36d-9b3f-4528-aeed-50111c87d0d8", - "status": "ready", - "createdDateTime": "2020-08-20T21:22:56Z", - "lastUpdatedDateTime": "2020-08-20T21:22:59Z" - }, - { - "modelId": "d71f1973-c8bc-4723-95f6-270faeb0d710", - "status": "ready", - "createdDateTime": "2020-08-05T20:02:42Z", - "lastUpdatedDateTime": "2020-08-05T20:02:53Z" - }, - { - "modelId": "d76bbb87-3665-4fcf-bd78-5af39fa70371", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:03Z", - "lastUpdatedDateTime": "2020-08-20T21:25:03Z" - }, - { - "modelId": "d7c60908-afae-4db7-97a4-7dfee044d9fb", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:44:20Z", - "lastUpdatedDateTime": "2020-08-14T19:44:27Z" - }, - { - "modelId": "d8bc8709-3324-4d86-a702-fb13d83bd3fd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:24:37Z", - "lastUpdatedDateTime": "2020-08-20T21:24:38Z" - }, - { - "modelId": "d9d6453d-555a-411b-8969-29023fc1d347", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:50:19Z", - "lastUpdatedDateTime": "2020-08-20T21:50:21Z" - }, - { - "modelId": "da9ff68e-3cb0-4066-8030-84fac4049adf", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:42Z", - "lastUpdatedDateTime": "2020-08-20T23:26:55Z" - }, - { - "modelId": "db37c79c-cb7c-4e82-b5a6-de8761e95791", - "status": "creating", - "createdDateTime": "2020-08-17T22:33:39Z", - "lastUpdatedDateTime": "2020-08-17T22:33:39Z" - }, - { - "modelId": "de0c3af0-ab73-4a50-88b9-0be008348ff3", - "status": "ready", - "createdDateTime": "2020-08-14T19:12:59Z", - "lastUpdatedDateTime": "2020-08-14T19:13:07Z" - }, - { - "modelId": "ded45364-1d15-4185-9ba1-349085488c79", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:31:28Z", - "lastUpdatedDateTime": "2020-08-20T21:31:30Z" - }, - { - "modelId": "df46a938-d337-4664-82f6-13fe40a3ccbd", - "status": "ready", - "createdDateTime": "2020-08-05T20:05:23Z", - "lastUpdatedDateTime": "2020-08-05T20:05:34Z" - }, - { - "modelId": "dfed1264-2f66-4fa1-83fd-adce189c3ae9", - "status": "creating", - "createdDateTime": "2020-08-17T22:30:35Z", - "lastUpdatedDateTime": "2020-08-17T22:30:35Z" - }, - { - "modelId": "e10d0994-db23-4546-9ea7-377e52f85c7e", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:40Z", - "lastUpdatedDateTime": "2020-08-20T21:47:48Z" - }, - { - "modelId": "e1fb3fc5-8672-4d3c-ad29-fa0c489f21fd", - "status": "invalid", - "createdDateTime": "2020-08-20T18:43:14Z", - "lastUpdatedDateTime": "2020-08-20T18:43:15Z" - }, - { - "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:17Z", - "lastUpdatedDateTime": "2020-08-20T18:47:25Z" - }, - { - "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:10Z", - "lastUpdatedDateTime": "2020-08-20T21:50:18Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyOWYxZDYwLTQ5ODctNDc4Yy1iMWM3LWFkNGRkNDY2YTcxOS9lMjlmMWQ2MC00OTg3LTQ3OGMtYjFjNy1hZDRkZDQ2NmE3MTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyOWYxZDYwLTQ5ODctNDc4Yy1iMWM3LWFkNGRkNDY2YTcxOS9lMjlmMWQ2MC00OTg3LTQ3OGMtYjFjNy1hZDRkZDQ2NmE3MTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3c4af54555cd2dc82d8b39999fece0b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c8cae8d7-9232-411f-b91b-8ad906e182d1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "192" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:10Z", - "lastUpdatedDateTime": "2020-08-20T21:50:18Z" - }, - { - "modelId": "e2d2eecf-d810-4fd9-8b94-cc370a9d3dc5", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:40Z", - "lastUpdatedDateTime": "2020-08-20T21:49:40Z" - }, - { - "modelId": "e31e548b-1c1a-4345-907b-b77bec13260d", - "status": "creating", - "createdDateTime": "2020-08-17T17:11:47Z", - "lastUpdatedDateTime": "2020-08-17T17:11:47Z" - }, - { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:19:24Z", - "lastUpdatedDateTime": "2020-10-30T13:19:26Z" - }, - { - "modelId": "e4949cbb-05e0-4d1b-bab9-c4e444b25c9e", - "status": "invalid", - "createdDateTime": "2020-08-14T19:08:50Z", - "lastUpdatedDateTime": "2020-08-14T19:08:51Z" - }, - { - "modelId": "e8679f07-a7ae-43ff-af1c-417567ece17f", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:23Z", - "lastUpdatedDateTime": "2020-08-14T19:08:23Z" - }, - { - "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:30:48Z", - "lastUpdatedDateTime": "2020-10-30T13:30:50Z" - }, - { - "modelId": "eb78387f-b93d-47c4-8ff2-5a75fa2848c2", - "status": "creating", - "createdDateTime": "2020-08-17T17:11:08Z", - "lastUpdatedDateTime": "2020-08-17T17:11:08Z" - }, - { - "modelId": "eccc2f1b-08fc-4bdf-af54-45bbb3a94dc8", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:16Z", - "lastUpdatedDateTime": "2020-08-20T21:47:16Z" - }, - { - "modelId": "f019ba8f-b377-4307-aed2-2e357d88faad", - "status": "invalid", - "createdDateTime": "2020-08-14T19:10:55Z", - "lastUpdatedDateTime": "2020-08-14T19:10:56Z" - }, - { - "modelId": "f0790982-b19e-4f0b-9f3d-0bd73c22d50b", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:40Z", - "lastUpdatedDateTime": "2020-08-20T18:45:50Z" - }, - { - "modelId": "f09bb379-e552-423b-a66e-11d4a47b4cad", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:45:30Z", - "lastUpdatedDateTime": "2020-08-14T19:45:41Z" - }, - { - "modelId": "f16a5995-6f9d-429c-a9ce-94b42e707f4e", - "status": "ready", - "createdDateTime": "2020-08-20T21:23:21Z", - "lastUpdatedDateTime": "2020-08-20T21:23:32Z" - }, - { - "modelId": "f2b17543-4827-4824-8f0a-297915305924", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:39Z", - "lastUpdatedDateTime": "2020-08-20T23:25:39Z" - }, - { - "modelId": "f313494f-2d7d-4c1b-baca-4f019e1bb372", - "status": "ready", - "createdDateTime": "2020-08-20T21:23:09Z", - "lastUpdatedDateTime": "2020-08-20T21:23:17Z" - }, - { - "modelId": "f4a51dde-7357-46f7-b160-1321e8cf6a8e", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:03Z", - "lastUpdatedDateTime": "2020-08-20T21:25:03Z" - }, - { - "modelId": "f5b14d6e-2c12-4a8b-a26b-6f919fb3fc22", - "status": "ready", - "createdDateTime": "2020-08-20T18:27:28Z", - "lastUpdatedDateTime": "2020-08-20T18:27:36Z" - }, - { - "modelId": "f630338a-704f-49e6-90df-3661cdb70919", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:47:48Z", - "lastUpdatedDateTime": "2020-08-20T21:47:49Z" - }, - { - "modelId": "f86960b5-529c-434d-900e-72383c3535bd", - "status": "ready", - "createdDateTime": "2020-08-20T21:27:51Z", - "lastUpdatedDateTime": "2020-08-20T21:27:59Z" - }, - { - "modelId": "f8ec4bc9-ae6d-4ff7-ae5e-5ce9155164cf", - "status": "ready", - "createdDateTime": "2020-08-20T23:32:06Z", - "lastUpdatedDateTime": "2020-08-20T23:32:14Z" - }, - { - "modelId": "f9ad28eb-5fdc-4844-8a72-04a115dd2029", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:49Z", - "lastUpdatedDateTime": "2020-08-20T18:42:49Z" - }, - { - "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:04Z", - "lastUpdatedDateTime": "2020-10-30T13:24:06Z" - }, - { - "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:47Z", - "lastUpdatedDateTime": "2020-10-30T13:19:47Z" - }, - { - "modelId": "fae7acb8-2ffc-40d1-9e07-a2f2af6f54f5", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:43Z", - "lastUpdatedDateTime": "2020-08-20T21:25:54Z" - }, - { - "modelId": "fbc59a11-f373-4f3d-b24c-3e32aa033d7e", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:56Z", - "lastUpdatedDateTime": "2020-08-20T18:42:56Z" - }, - { - "modelId": "fc0d549e-3a1f-4eda-bb96-fb6bf60c0f53", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:47:32Z", - "lastUpdatedDateTime": "2020-08-20T21:47:39Z" - }, - { - "modelId": "fca987e8-8ed2-4c00-8aa4-eeff583bb155", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:40Z", - "lastUpdatedDateTime": "2020-08-20T21:49:40Z" - } - ], - "nextLink": "" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf953e1db6ba3b46b16be465f732d16d-676be68fbf08e54f-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9274748d7304d3aae634a68f8773652a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1011d03c-32f4-412f-b3a9-d3304d9d504b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" - }, - "ResponseBody": { - "summary": { - "count": 267, - "limit": 5000, - "lastUpdatedDateTime": "2020-10-30T13:30:56Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-219e03f2b9fa3a419281e41e6dcbde16-411507b9677d5c46-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e2f8ed0a043655cdb97f05f5e8a452ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "apim-request-id": "401aec50-05c6-45b7-94c9-2625c4802bac", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:30:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8c056eb8d179bd4a85ad6b052a077151-c838c9bb85a8a744-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7fb4ee07765dd2f14b775699af38a6ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "apim-request-id": "83a21dbc-760d-4b02-9a1a-c6c4c9485b98", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:30:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" - }, - "ResponseBody": { - "error": { - "code": "1022", - "message": "Model with \u0027id=eb44883e-8d7f-45b3-ad73-e5bd93a96ca3\u0027 not found." - } - } - } - ], - "Variables": { - "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", - "RandomSeed": "1936916989" - } -} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True)Async.json deleted file mode 100644 index b61eaf3aecb3c..0000000000000 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True)Async.json +++ /dev/null @@ -1,2701 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Content-Length": "42", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2c0911aef583a849bb8b0cc2439fc027-e3b30d1f2ca6d84b-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8ca29afae52b4e5f632524e004d6597c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "source": "Sanitized", - "useLabelFile": true - }, - "StatusCode": 201, - "ResponseHeaders": { - "apim-request-id": "edd122c6-01ab-4647-9a7e-b1a5a2e7a994", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:31:58 GMT", - "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "195" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "000b9ab2fb68b1ff72f7844801daa02a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8432d249-bad3-47ed-b8ac-72efe42517f5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:31:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", - "status": "creating", - "createdDateTime": "2020-10-30T13:31:58Z", - "lastUpdatedDateTime": "2020-10-30T13:31:58Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "de97308b99350fe31089dbb411a7730b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "83cf5841-54e1-406a-b4f4-74198781fe47", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", - "status": "creating", - "createdDateTime": "2020-10-30T13:31:58Z", - "lastUpdatedDateTime": "2020-10-30T13:31:58Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8f641c49fc59fe2f9bf1193361174c88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "66b9f590-901f-4e68-8149-2b7c704c2b73", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:31:58Z", - "lastUpdatedDateTime": "2020-10-30T13:32:01Z" - }, - "trainResult": { - "averageModelAccuracy": 0.96, - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "status": "succeeded" - } - ], - "fields": [ - { - "fieldName": "CompanyAddress", - "accuracy": 0.8 - }, - { - "fieldName": "CompanyName", - "accuracy": 1.0 - }, - { - "fieldName": "CompanyPhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "DatedAs", - "accuracy": 1.0 - }, - { - "fieldName": "Email", - "accuracy": 0.8 - }, - { - "fieldName": "Merchant", - "accuracy": 1.0 - }, - { - "fieldName": "PhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "PurchaseOrderNumber", - "accuracy": 1.0 - }, - { - "fieldName": "Quantity", - "accuracy": 1.0 - }, - { - "fieldName": "Signature", - "accuracy": 0.8 - }, - { - "fieldName": "Subtotal", - "accuracy": 1.0 - }, - { - "fieldName": "Tax", - "accuracy": 1.0 - }, - { - "fieldName": "Total", - "accuracy": 1.0 - }, - { - "fieldName": "VendorName", - "accuracy": 1.0 - }, - { - "fieldName": "Website", - "accuracy": 1.0 - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf349843b2ecdb4691b30bc5dd014be7-99a0b8f0552ede4c-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d355f9847a3e1947b6fbefdf204a9fcb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1c0f3971-d8b6-40a5-b88e-6c2340848327", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:31:58Z", - "lastUpdatedDateTime": "2020-10-30T13:32:01Z" - }, - "trainResult": { - "averageModelAccuracy": 0.96, - "trainingDocuments": [ - { - "documentName": "Form_1.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_2.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_3.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_4.jpg", - "pages": 1, - "status": "succeeded" - }, - { - "documentName": "Form_5.jpg", - "pages": 1, - "status": "succeeded" - } - ], - "fields": [ - { - "fieldName": "CompanyAddress", - "accuracy": 0.8 - }, - { - "fieldName": "CompanyName", - "accuracy": 1.0 - }, - { - "fieldName": "CompanyPhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "DatedAs", - "accuracy": 1.0 - }, - { - "fieldName": "Email", - "accuracy": 0.8 - }, - { - "fieldName": "Merchant", - "accuracy": 1.0 - }, - { - "fieldName": "PhoneNumber", - "accuracy": 1.0 - }, - { - "fieldName": "PurchaseOrderNumber", - "accuracy": 1.0 - }, - { - "fieldName": "Quantity", - "accuracy": 1.0 - }, - { - "fieldName": "Signature", - "accuracy": 0.8 - }, - { - "fieldName": "Subtotal", - "accuracy": 1.0 - }, - { - "fieldName": "Tax", - "accuracy": 1.0 - }, - { - "fieldName": "Total", - "accuracy": 1.0 - }, - { - "fieldName": "VendorName", - "accuracy": 1.0 - }, - { - "fieldName": "Website", - "accuracy": 1.0 - } - ], - "errors": [] - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e5ff788410768fd00199434480b0aef9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0094fd8d-e11f-4bde-a9a0-6463b0daf73e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "307" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "007c06a2-25ad-48f2-9d13-b104d0d8f1e0", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:43:30Z", - "lastUpdatedDateTime": "2020-08-20T18:43:32Z" - }, - { - "modelId": "01579645-6803-4345-8db9-659c6a1744a0", - "status": "ready", - "createdDateTime": "2020-10-30T13:23:55Z", - "lastUpdatedDateTime": "2020-10-30T13:24:00Z" - }, - { - "modelId": "01bc0ea9-d7e3-4515-b502-f2b57efb0aa2", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:54Z", - "lastUpdatedDateTime": "2020-08-20T18:44:54Z" - }, - { - "modelId": "01bd21ac-ce1b-4e9f-b1a3-92847479633e", - "status": "ready", - "createdDateTime": "2020-08-20T22:28:00Z", - "lastUpdatedDateTime": "2020-08-20T22:28:09Z" - }, - { - "modelId": "01ef6d0c-d5c1-4343-bbcd-6add5cda3741", - "status": "creating", - "createdDateTime": "2020-08-17T21:42:37Z", - "lastUpdatedDateTime": "2020-08-17T21:42:37Z" - }, - { - "modelId": "022a3ddc-a723-4df1-bbee-df16b2092efa", - "status": "ready", - "createdDateTime": "2020-08-14T18:52:29Z", - "lastUpdatedDateTime": "2020-08-14T18:52:37Z" - }, - { - "modelId": "02f68a79-b056-4f85-9e93-898f8261d55e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:44:14Z", - "lastUpdatedDateTime": "2020-08-20T18:44:16Z" - }, - { - "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", - "modelName": "My composed model", - "attributes": { - "isComposed": true - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:20:47Z", - "lastUpdatedDateTime": "2020-10-30T13:20:48Z" - }, - { - "modelId": "032312e5-3e29-4a17-8297-96ce181e9ff7", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:25Z", - "lastUpdatedDateTime": "2020-08-20T23:26:33Z" - }, - { - "modelId": "0613c81a-b6e2-41f4-94ba-b7d033e07848", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:45Z", - "lastUpdatedDateTime": "2020-08-14T19:44:45Z" - }, - { - "modelId": "08500349-8e12-4ecc-b22f-6378fd21a608", - "status": "invalid", - "createdDateTime": "2020-08-14T19:45:11Z", - "lastUpdatedDateTime": "2020-08-14T19:45:11Z" - }, - { - "modelId": "09c0ba1d-f88d-4670-ac36-9dc8dc979a1b", - "status": "invalid", - "createdDateTime": "2020-08-20T23:26:11Z", - "lastUpdatedDateTime": "2020-08-20T23:26:11Z" - }, - { - "modelId": "0b325cdc-5a78-4d79-85f2-f53abaf4f151", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:33Z", - "lastUpdatedDateTime": "2020-08-20T22:45:33Z" - }, - { - "modelId": "0b32e649-44b9-4842-803d-4ec855514aa7", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:16Z", - "lastUpdatedDateTime": "2020-08-20T21:53:25Z" - }, - { - "modelId": "0cad4cc0-ea89-497c-86f0-9b57d2f02517", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:46Z", - "lastUpdatedDateTime": "2020-08-20T18:44:00Z" - }, - { - "modelId": "0cfe37f7-87fa-4475-a105-1777ea41c6cd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:49:12Z", - "lastUpdatedDateTime": "2020-08-20T21:49:19Z" - }, - { - "modelId": "0d93d3a5-9024-479c-827b-859d0bd7c006", - "status": "creating", - "createdDateTime": "2020-08-17T17:15:56Z", - "lastUpdatedDateTime": "2020-08-17T17:15:56Z" - }, - { - "modelId": "0da54f9c-ef82-4d08-9011-ffe4d3c02447", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:50Z", - "lastUpdatedDateTime": "2020-08-14T19:46:50Z" - }, - { - "modelId": "0ea70033-e01f-4365-b890-839c2a628ea7", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:43:43Z", - "lastUpdatedDateTime": "2020-08-20T22:43:44Z" - }, - { - "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", - "status": "invalid", - "createdDateTime": "2020-10-30T13:23:53Z", - "lastUpdatedDateTime": "2020-10-30T13:23:54Z" - }, - { - "modelId": "0fd3cd6d-4782-4f5e-bb8f-319394c848dd", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:21Z", - "lastUpdatedDateTime": "2020-08-20T18:43:24Z" - }, - { - "modelId": "102e5b73-5b01-431e-bfce-ca83ebc47c05", - "status": "ready", - "createdDateTime": "2020-08-20T22:49:46Z", - "lastUpdatedDateTime": "2020-08-20T22:49:55Z" - }, - { - "modelId": "1034ef53-16b6-492b-a511-2a89e5326349", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:13:32Z", - "lastUpdatedDateTime": "2020-10-30T13:13:34Z" - }, - { - "modelId": "1127179b-ee78-46d0-a51a-ca8a088ec177", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:42:19Z", - "lastUpdatedDateTime": "2020-08-20T18:42:21Z" - }, - { - "modelId": "11eb2552-c707-43f3-a673-897433da9f66", - "status": "invalid", - "createdDateTime": "2020-08-20T21:25:24Z", - "lastUpdatedDateTime": "2020-08-20T21:25:24Z" - }, - { - "modelId": "1239ac73-a1ba-43a8-b725-6118c6c4cb7d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:08:03Z", - "lastUpdatedDateTime": "2020-08-20T21:08:10Z" - }, - { - "modelId": "12b12b23-10d3-4efa-927b-8b79c153099a", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:34Z", - "lastUpdatedDateTime": "2020-08-14T19:10:34Z" - }, - { - "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:45Z", - "lastUpdatedDateTime": "2020-10-30T13:22:45Z" - }, - { - "modelId": "17c078da-8f4e-4376-923a-7672a8a621ab", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:47:37Z", - "lastUpdatedDateTime": "2020-08-14T19:47:38Z" - }, - { - "modelId": "17e8374c-6cd4-40d7-8d33-8fa52286a883", - "status": "ready", - "createdDateTime": "2020-08-20T22:06:19Z", - "lastUpdatedDateTime": "2020-08-20T22:06:29Z" - }, - { - "modelId": "18cb6b55-f009-4df2-8d56-ab423d29d5c4", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:20Z", - "lastUpdatedDateTime": "2020-08-20T22:43:23Z" - }, - { - "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:32Z", - "lastUpdatedDateTime": "2020-08-20T21:25:40Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "172f533c9f51cfccd44bd95e0c50de50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "dd31d042-b0bc-414c-9089-6815faeff7c3", - "Content-Length": "357", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:32:03 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "172f533c9f51cfccd44bd95e0c50de50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f93e09c5-8808-4a10-bf5b-160108a2f47a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "405" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:32Z", - "lastUpdatedDateTime": "2020-08-20T21:25:40Z" - }, - { - "modelId": "1bf14c97-93e2-44ee-9ac6-a11478fc33da", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:45Z", - "lastUpdatedDateTime": "2020-08-20T23:28:45Z" - }, - { - "modelId": "1cba0c75-0acd-4ff0-9a06-02fd708ebd0b", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:51Z", - "lastUpdatedDateTime": "2020-08-14T19:46:51Z" - }, - { - "modelId": "1cc4fde0-89ac-4b67-b537-1fcf6275fe8e", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:22Z", - "lastUpdatedDateTime": "2020-08-20T23:29:30Z" - }, - { - "modelId": "1f2bca7f-9bf8-4138-8a4c-53c03c3c8f55", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:46:19Z", - "lastUpdatedDateTime": "2020-08-20T21:46:26Z" - }, - { - "modelId": "1fd33a7f-9726-4d73-a737-5e4a3016d7ad", - "status": "invalid", - "createdDateTime": "2020-08-14T19:47:13Z", - "lastUpdatedDateTime": "2020-08-14T19:47:13Z" - }, - { - "modelId": "20cbcc4d-191f-4c74-aac5-ecc2e3d959e6", - "status": "ready", - "createdDateTime": "2020-08-20T23:25:30Z", - "lastUpdatedDateTime": "2020-08-20T23:25:38Z" - }, - { - "modelId": "24307288-59a3-4cf8-b5c3-cc981928dc5d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:23:00Z", - "lastUpdatedDateTime": "2020-08-20T21:23:08Z" - }, - { - "modelId": "25365575-b6ce-4351-add0-b3c5b6f68ad0", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:28Z", - "lastUpdatedDateTime": "2020-08-20T22:45:28Z" - }, - { - "modelId": "253f0935-8a68-4425-88ca-9804d7ef40a4", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:11:18Z", - "lastUpdatedDateTime": "2020-08-14T19:11:20Z" - }, - { - "modelId": "26e8eb28-909b-4a5e-b10d-c862e0dde861", - "status": "ready", - "createdDateTime": "2020-08-20T22:45:55Z", - "lastUpdatedDateTime": "2020-08-20T22:46:01Z" - }, - { - "modelId": "272021b8-def8-48d8-8b89-10b3664b4dd4", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:54Z", - "lastUpdatedDateTime": "2020-08-20T18:44:54Z" - }, - { - "modelId": "27bc87a8-6ef8-4e41-b023-22f3484a078b", - "status": "ready", - "createdDateTime": "2020-08-14T19:29:45Z", - "lastUpdatedDateTime": "2020-08-14T19:29:52Z" - }, - { - "modelId": "2800da27-3d69-4333-bd95-e9b217732660", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:42Z", - "lastUpdatedDateTime": "2020-10-30T13:22:42Z" - }, - { - "modelId": "284f716b-a8a0-4333-9ad5-6be8b981ce79", - "status": "creating", - "createdDateTime": "2020-08-17T21:43:17Z", - "lastUpdatedDateTime": "2020-08-17T21:43:17Z" - }, - { - "modelId": "28cd0f90-8143-48e9-85b2-baf4b2cc4a8f", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:36Z", - "lastUpdatedDateTime": "2020-08-20T21:22:36Z" - }, - { - "modelId": "2a023ee3-7a0c-42ee-9946-571124631d68", - "status": "ready", - "createdDateTime": "2020-08-20T21:51:49Z", - "lastUpdatedDateTime": "2020-08-20T21:51:58Z" - }, - { - "modelId": "2a3fb884-1ef3-462c-bd28-0684e728d55a", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:45:27Z", - "lastUpdatedDateTime": "2020-08-20T18:45:28Z" - }, - { - "modelId": "2d0d3ec2-c813-4840-837a-65e3f14a4fd7", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:26Z", - "lastUpdatedDateTime": "2020-08-20T21:25:30Z" - }, - { - "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:15Z", - "lastUpdatedDateTime": "2020-10-30T13:21:26Z" - }, - { - "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:13Z", - "lastUpdatedDateTime": "2020-10-30T13:24:25Z" - }, - { - "modelId": "2fb4524b-3239-45c6-a9c0-4667b16ab72e", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:49Z", - "lastUpdatedDateTime": "2020-08-20T18:42:49Z" - }, - { - "modelId": "32a70028-9497-4938-b27d-a46c07315800", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:50:08Z", - "lastUpdatedDateTime": "2020-08-20T21:50:10Z" - }, - { - "modelId": "33921c16-6dd2-4666-aaed-3863b28e0eeb", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:34Z", - "lastUpdatedDateTime": "2020-08-14T19:10:34Z" - }, - { - "modelId": "34c52af3-ce6c-465c-9fc0-797f8b6dcfdc", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:14Z", - "lastUpdatedDateTime": "2020-08-14T19:08:22Z" - }, - { - "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:43Z", - "lastUpdatedDateTime": "2020-10-30T13:19:43Z" - }, - { - "modelId": "35238cbc-5c0b-4ae6-b19d-779568d5c3af", - "status": "ready", - "createdDateTime": "2020-08-20T21:06:49Z", - "lastUpdatedDateTime": "2020-08-20T21:06:57Z" - }, - { - "modelId": "35a3d57f-d630-437e-85cf-14f0a6ed1f29", - "status": "ready", - "createdDateTime": "2020-08-14T19:44:36Z", - "lastUpdatedDateTime": "2020-08-14T19:44:44Z" - }, - { - "modelId": "361ba8b7-61d0-4051-ba20-2dac77a428ef", - "status": "ready", - "createdDateTime": "2020-08-14T18:52:29Z", - "lastUpdatedDateTime": "2020-08-14T18:52:37Z" - }, - { - "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", - "status": "creating", - "createdDateTime": "2020-10-30T13:22:42Z", - "lastUpdatedDateTime": "2020-10-30T13:22:42Z" - }, - { - "modelId": "37cbc664-e1aa-4fc1-b73e-d241dec98dfe", - "status": "invalid", - "createdDateTime": "2020-08-20T21:25:25Z", - "lastUpdatedDateTime": "2020-08-20T21:25:26Z" - }, - { - "modelId": "38d1e2ad-b058-4dfe-bb00-797b4f6ef957", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:57Z", - "lastUpdatedDateTime": "2020-08-20T22:42:57Z" - }, - { - "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:04Z", - "lastUpdatedDateTime": "2020-08-20T22:46:12Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e8ae4d516718741228c6d2a536039905", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "6b27d25c-6294-4ea1-a53f-32de726ad5b9", - "Content-Length": "358", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:32:12 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e8ae4d516718741228c6d2a536039905", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "73c0bc7c-4a78-411c-94ff-04dc248879aa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "464" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:04Z", - "lastUpdatedDateTime": "2020-08-20T22:46:12Z" - }, - { - "modelId": "3af295a0-785e-4567-bba5-54797c4aa61d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:23:19Z", - "lastUpdatedDateTime": "2020-08-20T21:23:20Z" - }, - { - "modelId": "3d445599-3e82-43bb-ad48-241788aec3b9", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:42:25Z", - "lastUpdatedDateTime": "2020-08-20T22:42:32Z" - }, - { - "modelId": "3d452732-d856-4579-bb92-817af8438a2f", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:38Z", - "lastUpdatedDateTime": "2020-10-30T13:21:50Z" - }, - { - "modelId": "3e5d1032-b968-458c-901f-7daa543210a7", - "status": "ready", - "createdDateTime": "2020-08-14T19:49:17Z", - "lastUpdatedDateTime": "2020-08-14T19:49:25Z" - }, - { - "modelId": "3efd32fe-763f-4cca-a58b-2fa57d13dc83", - "status": "creating", - "createdDateTime": "2020-08-17T17:15:30Z", - "lastUpdatedDateTime": "2020-08-17T17:15:30Z" - }, - { - "modelId": "40152914-610e-47f8-b6c6-8c155df7650e", - "status": "creating", - "createdDateTime": "2020-08-20T22:45:46Z", - "lastUpdatedDateTime": "2020-08-20T22:45:46Z" - }, - { - "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:35Z", - "lastUpdatedDateTime": "2020-10-30T13:21:37Z" - }, - { - "modelId": "4120e08d-2693-4f80-a69f-53029d556457", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:29:31Z", - "lastUpdatedDateTime": "2020-08-20T23:29:38Z" - }, - { - "modelId": "412a541e-6015-4ba3-bc06-bda9dcfb4563", - "status": "ready", - "createdDateTime": "2020-08-20T21:28:50Z", - "lastUpdatedDateTime": "2020-08-20T21:28:58Z" - }, - { - "modelId": "41dcd3b4-7da4-4947-afc2-8267342bf8d3", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:08:56Z", - "lastUpdatedDateTime": "2020-08-14T19:08:58Z" - }, - { - "modelId": "42ca775f-ce05-4794-9afa-1206f9ec4e4b", - "status": "ready", - "createdDateTime": "2020-08-14T19:28:36Z", - "lastUpdatedDateTime": "2020-08-14T19:28:44Z" - }, - { - "modelId": "4363499c-72ab-45b2-8931-d8b1838bef70", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:26:34Z", - "lastUpdatedDateTime": "2020-08-20T23:26:41Z" - }, - { - "modelId": "438b68f8-bec6-4313-88d6-43f201f64e26", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:22:10Z", - "lastUpdatedDateTime": "2020-08-20T21:22:12Z" - }, - { - "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:37Z", - "lastUpdatedDateTime": "2020-10-30T13:24:49Z" - }, - { - "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:22:18Z", - "lastUpdatedDateTime": "2020-10-30T13:22:19Z" - }, - { - "modelId": "44cf7b0c-17d8-461b-8a14-972532fcf6d6", - "status": "creating", - "createdDateTime": "2020-08-17T22:30:19Z", - "lastUpdatedDateTime": "2020-08-17T22:30:19Z" - }, - { - "modelId": "44d3f221-a1ad-4726-a5f5-43bc37fe7222", - "status": "ready", - "createdDateTime": "2020-08-20T22:45:18Z", - "lastUpdatedDateTime": "2020-08-20T22:45:27Z" - }, - { - "modelId": "4559697f-580d-439c-a336-1272be0526f9", - "status": "invalid", - "createdDateTime": "2020-10-30T13:20:53Z", - "lastUpdatedDateTime": "2020-10-30T13:20:54Z" - }, - { - "modelId": "45c5498b-3755-44fd-95d5-8d5b5924e3a6", - "status": "invalid", - "createdDateTime": "2020-08-20T22:43:19Z", - "lastUpdatedDateTime": "2020-08-20T22:43:19Z" - }, - { - "modelId": "45f1adde-a451-4746-a675-f0ebb166151b", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:08Z", - "lastUpdatedDateTime": "2020-08-20T21:47:08Z" - }, - { - "modelId": "46201f03-7ffc-4e1e-bd07-a48bb6bccad4", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:23Z", - "lastUpdatedDateTime": "2020-08-14T19:08:23Z" - }, - { - "modelId": "46a86632-ff1f-4e80-bd06-6c8d48af3157", - "status": "ready", - "createdDateTime": "2020-08-20T18:44:45Z", - "lastUpdatedDateTime": "2020-08-20T18:44:53Z" - }, - { - "modelId": "47a7b4cd-d993-4d83-b6ca-ee18c547acfb", - "status": "ready", - "createdDateTime": "2020-08-20T22:49:07Z", - "lastUpdatedDateTime": "2020-08-20T22:49:16Z" - }, - { - "modelId": "488d74c6-25ae-4271-b7e5-cff85e10abc4", - "status": "ready", - "createdDateTime": "2020-08-20T18:26:04Z", - "lastUpdatedDateTime": "2020-08-20T18:26:12Z" - }, - { - "modelId": "49b0f1a2-e699-4f0d-a873-040df8e08e6c", - "status": "ready", - "createdDateTime": "2020-08-14T19:13:59Z", - "lastUpdatedDateTime": "2020-08-14T19:14:08Z" - }, - { - "modelId": "4acac1b2-4f07-46b2-9d21-c172d2a66330", - "status": "ready", - "createdDateTime": "2020-08-14T19:28:36Z", - "lastUpdatedDateTime": "2020-08-14T19:28:44Z" - }, - { - "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:33Z", - "lastUpdatedDateTime": "2020-10-30T13:24:35Z" - }, - { - "modelId": "4bfcc25d-0b2f-4fa2-a284-bcc98cf1f8fd", - "status": "ready", - "createdDateTime": "2020-08-20T21:31:42Z", - "lastUpdatedDateTime": "2020-08-20T21:31:51Z" - }, - { - "modelId": "4c92bc3c-f25c-4f02-84d9-f8ceae9b16b6", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:09Z", - "lastUpdatedDateTime": "2020-08-14T19:11:17Z" - }, - { - "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:20Z", - "lastUpdatedDateTime": "2020-08-20T18:45:20Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cda2f64d871be57aab30102a367283b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7678c847-701c-4291-ae78-9d90bc2e0b57", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "304" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:20Z", - "lastUpdatedDateTime": "2020-08-20T18:45:20Z" - }, - { - "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", - "status": "ready", - "createdDateTime": "2020-10-30T13:24:52Z", - "lastUpdatedDateTime": "2020-10-30T13:25:13Z" - }, - { - "modelId": "52db9454-9b6c-4514-a6f4-27d3d404a999", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:43:30Z", - "lastUpdatedDateTime": "2020-08-20T22:43:32Z" - }, - { - "modelId": "547f6f41-f70e-4cb5-aa8f-2129e33df2af", - "status": "ready", - "createdDateTime": "2020-07-30T00:55:04Z", - "lastUpdatedDateTime": "2020-07-30T00:55:12Z" - }, - { - "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:42Z", - "lastUpdatedDateTime": "2020-10-30T13:19:42Z" - }, - { - "modelId": "55c30a55-134a-4f9d-8b42-37caa8198471", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:21Z", - "lastUpdatedDateTime": "2020-08-14T19:11:31Z" - }, - { - "modelId": "56292da4-33e9-421f-ad9b-859234c5d111", - "status": "invalid", - "createdDateTime": "2020-08-20T23:29:05Z", - "lastUpdatedDateTime": "2020-08-20T23:29:05Z" - }, - { - "modelId": "566b7d84-318a-4acb-a928-d684e42b93b3", - "status": "invalid", - "createdDateTime": "2020-08-20T21:50:02Z", - "lastUpdatedDateTime": "2020-08-20T21:50:02Z" - }, - { - "modelId": "56ce1ece-256f-480d-8637-1005534971de", - "status": "ready", - "createdDateTime": "2020-08-20T21:27:11Z", - "lastUpdatedDateTime": "2020-08-20T21:27:19Z" - }, - { - "modelId": "5737eddb-d3c3-4e43-8658-b0f4322af5dc", - "status": "invalid", - "createdDateTime": "2020-08-20T23:29:06Z", - "lastUpdatedDateTime": "2020-08-20T23:29:07Z" - }, - { - "modelId": "578062d7-dbfb-4548-a54e-299c967f17be", - "status": "ready", - "createdDateTime": "2020-08-20T18:48:16Z", - "lastUpdatedDateTime": "2020-08-20T18:48:27Z" - }, - { - "modelId": "57c1049c-a148-461a-ad5d-fe7e953f7d09", - "status": "creating", - "createdDateTime": "2020-08-14T19:10:36Z", - "lastUpdatedDateTime": "2020-08-14T19:10:36Z" - }, - { - "modelId": "57e0eb22-6bdb-4ef9-a597-11d96876ad1d", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:21Z", - "lastUpdatedDateTime": "2020-08-14T19:45:29Z" - }, - { - "modelId": "5802c9ef-6ce3-41ac-be05-b4afb5613cb2", - "status": "ready", - "createdDateTime": "2020-08-20T21:08:18Z", - "lastUpdatedDateTime": "2020-08-20T21:08:26Z" - }, - { - "modelId": "5837470d-2183-4c9a-b005-80ab6b76765b", - "status": "ready", - "createdDateTime": "2020-08-20T23:31:12Z", - "lastUpdatedDateTime": "2020-08-20T23:31:26Z" - }, - { - "modelId": "584c4432-36cf-4a0b-a2e1-5c651bfd4227", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:08:02Z", - "lastUpdatedDateTime": "2020-08-14T19:08:04Z" - }, - { - "modelId": "58871fae-0f09-4f14-bce7-769d4bd35354", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:30Z", - "lastUpdatedDateTime": "2020-08-14T19:08:30Z" - }, - { - "modelId": "5bde02de-1dcb-4ea8-b497-0427a16b26fb", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:39Z", - "lastUpdatedDateTime": "2020-08-20T23:25:39Z" - }, - { - "modelId": "5f0ca916-4ca0-4f2d-9447-caeac53bcf2e", - "status": "ready", - "createdDateTime": "2020-08-20T23:32:15Z", - "lastUpdatedDateTime": "2020-08-20T23:32:25Z" - }, - { - "modelId": "5faf34f8-8399-477b-ba82-48f1e2e7688f", - "status": "invalid", - "createdDateTime": "2020-08-14T19:45:12Z", - "lastUpdatedDateTime": "2020-08-14T19:45:12Z" - }, - { - "modelId": "5feddb70-fa11-450f-b34b-37a45b5c80d3", - "status": "invalid", - "createdDateTime": "2020-08-20T23:26:09Z", - "lastUpdatedDateTime": "2020-08-20T23:26:10Z" - }, - { - "modelId": "6035d354-53ef-4dcd-93de-5b9ad1c1ea77", - "status": "ready", - "createdDateTime": "2020-08-20T18:42:40Z", - "lastUpdatedDateTime": "2020-08-20T18:42:48Z" - }, - { - "modelId": "6216b1ae-970a-485b-a35e-070150082adb", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:57Z", - "lastUpdatedDateTime": "2020-08-20T22:42:57Z" - }, - { - "modelId": "63262869-1ff0-49d0-a26f-1d1552cad649", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:09:49Z", - "lastUpdatedDateTime": "2020-08-20T23:09:51Z" - }, - { - "modelId": "637426f9-5d46-4e4c-8bfb-86f2b60bd94b", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:44Z", - "lastUpdatedDateTime": "2020-08-20T21:49:44Z" - }, - { - "modelId": "66087b32-fce4-402d-9101-1bc4f627462d", - "status": "ready", - "createdDateTime": "2020-08-20T21:22:24Z", - "lastUpdatedDateTime": "2020-08-20T21:22:33Z" - }, - { - "modelId": "6645dde9-caf0-4beb-8758-501325f2e605", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:58Z", - "lastUpdatedDateTime": "2020-08-20T21:54:06Z" - }, - { - "modelId": "68f6c9f8-795d-43bc-97bd-619dad38c66d", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:28:13Z", - "lastUpdatedDateTime": "2020-08-20T23:28:19Z" - }, - { - "modelId": "6bbda4de-97ee-4d62-a7ab-2a9a13f503f6", - "status": "invalid", - "createdDateTime": "2020-08-20T21:49:56Z", - "lastUpdatedDateTime": "2020-08-20T21:49:56Z" - }, - { - "modelId": "6c252bb0-d84a-47c8-82af-0dabf36c4c6f", - "status": "invalid", - "createdDateTime": "2020-08-20T21:47:26Z", - "lastUpdatedDateTime": "2020-08-20T21:47:27Z" - }, - { - "modelId": "6c6bd1f5-4009-435f-b938-df50c1966733", - "status": "ready", - "createdDateTime": "2020-08-20T21:28:00Z", - "lastUpdatedDateTime": "2020-08-20T21:28:08Z" - }, - { - "modelId": "6fbe2ae1-fd8f-40c7-bf2e-c05e90931aac", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:45Z", - "lastUpdatedDateTime": "2020-08-20T23:28:45Z" - }, - { - "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:22Z", - "lastUpdatedDateTime": "2020-08-20T18:45:26Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "32f2f3bac601d5e140bbef8bcd2798d1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "907a8046-4f76-4c8d-8d9d-a35e419584fa", - "Content-Length": "356", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:32:54 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "32f2f3bac601d5e140bbef8bcd2798d1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ef420b01-9caa-4c16-9132-d688429aa188", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "269" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:22Z", - "lastUpdatedDateTime": "2020-08-20T18:45:26Z" - }, - { - "modelId": "714cd9ba-6084-4966-bf98-079fc90562fe", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:10:07Z", - "lastUpdatedDateTime": "2020-08-14T19:10:09Z" - }, - { - "modelId": "7156bc3a-1e6b-4125-b89f-10d971d5ba14", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:27:48Z", - "lastUpdatedDateTime": "2020-08-20T22:27:50Z" - }, - { - "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", - "modelName": "My training", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:03Z", - "lastUpdatedDateTime": "2020-10-30T13:21:04Z" - }, - { - "modelId": "74ea7917-ea1e-4d62-8bd9-551fcac9d963", - "status": "ready", - "createdDateTime": "2020-08-14T19:50:11Z", - "lastUpdatedDateTime": "2020-08-14T19:50:19Z" - }, - { - "modelId": "765cd50a-d9bd-4bbe-9e77-8e496c234240", - "status": "ready", - "createdDateTime": "2020-08-20T18:46:18Z", - "lastUpdatedDateTime": "2020-08-20T18:46:27Z" - }, - { - "modelId": "76aed1f7-5a15-4754-925c-45d27d7fd0c5", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:34Z", - "lastUpdatedDateTime": "2020-08-20T21:22:34Z" - }, - { - "modelId": "76e1dc72-2be3-4c40-9f07-6b29a0bf327a", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:45Z", - "lastUpdatedDateTime": "2020-08-14T19:44:45Z" - }, - { - "modelId": "76e25188-e121-4fc3-a5f3-3cb861033259", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:07Z", - "lastUpdatedDateTime": "2020-08-20T21:25:07Z" - }, - { - "modelId": "795417b4-25af-4d41-aa61-3cef0084e589", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:03Z", - "lastUpdatedDateTime": "2020-08-20T21:50:07Z" - }, - { - "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", - "modelName": "My training", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:02Z", - "lastUpdatedDateTime": "2020-10-30T13:24:03Z" - }, - { - "modelId": "7c9a4c19-1761-40d2-8f2b-10f10510ca74", - "status": "ready", - "createdDateTime": "2020-08-14T19:10:57Z", - "lastUpdatedDateTime": "2020-08-14T19:11:00Z" - }, - { - "modelId": "7dd8a381-1484-4809-ad11-db27dc50841e", - "status": "ready", - "createdDateTime": "2020-08-20T21:49:31Z", - "lastUpdatedDateTime": "2020-08-20T21:49:39Z" - }, - { - "modelId": "7dfcb89d-abc6-43ca-bae6-cce241d06e4f", - "status": "ready", - "createdDateTime": "2020-08-20T21:30:14Z", - "lastUpdatedDateTime": "2020-08-20T21:30:22Z" - }, - { - "modelId": "7f2745e3-7f0d-46f7-919a-96b939030594", - "status": "creating", - "createdDateTime": "2020-08-20T22:42:59Z", - "lastUpdatedDateTime": "2020-08-20T22:42:59Z" - }, - { - "modelId": "80601216-855c-4286-b532-34af33c229ae", - "status": "ready", - "createdDateTime": "2020-08-14T19:13:08Z", - "lastUpdatedDateTime": "2020-08-14T19:13:16Z" - }, - { - "modelId": "84fd2414-5018-4f5a-9805-b80467ce7593", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:27Z", - "lastUpdatedDateTime": "2020-08-20T21:47:31Z" - }, - { - "modelId": "8692493e-799d-48c3-b217-950e1471adba", - "status": "ready", - "createdDateTime": "2020-08-14T19:48:16Z", - "lastUpdatedDateTime": "2020-08-14T19:48:24Z" - }, - { - "modelId": "878a4cd7-39c2-46a0-a905-7cc1bd071837", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:46:09Z", - "lastUpdatedDateTime": "2020-08-14T19:46:12Z" - }, - { - "modelId": "87f0f103-08c9-4cae-91b8-f5a0a205bb35", - "status": "creating", - "createdDateTime": "2020-08-17T22:32:37Z", - "lastUpdatedDateTime": "2020-08-17T22:32:37Z" - }, - { - "modelId": "88d34ad1-0508-475c-9d75-2c15594876ac", - "status": "invalid", - "createdDateTime": "2020-08-14T19:47:12Z", - "lastUpdatedDateTime": "2020-08-14T19:47:12Z" - }, - { - "modelId": "8a2a6999-df6a-4b64-9633-87d097b2af06", - "status": "invalid", - "createdDateTime": "2020-08-20T22:45:53Z", - "lastUpdatedDateTime": "2020-08-20T22:45:53Z" - }, - { - "modelId": "91f0a68b-5890-4e2a-8856-4489113f9d54", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:11:01Z", - "lastUpdatedDateTime": "2020-08-14T19:11:08Z" - }, - { - "modelId": "91f917c8-c8ad-457e-8d62-00e3e1686aac", - "status": "invalid", - "createdDateTime": "2020-08-20T18:43:19Z", - "lastUpdatedDateTime": "2020-08-20T18:43:20Z" - }, - { - "modelId": "921d9d16-9a9d-4dab-a0c5-63deb0aed5a6", - "status": "ready", - "createdDateTime": "2020-08-20T22:42:48Z", - "lastUpdatedDateTime": "2020-08-20T22:42:56Z" - }, - { - "modelId": "9259c76f-7273-41a7-83e2-fd176eeef64e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:02Z", - "lastUpdatedDateTime": "2020-08-20T22:46:04Z" - }, - { - "modelId": "92829e8f-ef96-4b83-8d54-4e2064729e84", - "status": "invalid", - "createdDateTime": "2020-08-14T19:08:49Z", - "lastUpdatedDateTime": "2020-08-14T19:08:49Z" - }, - { - "modelId": "932ef024-3b06-4445-bc05-863f0b7365db", - "status": "ready", - "createdDateTime": "2020-08-14T19:10:25Z", - "lastUpdatedDateTime": "2020-08-14T19:10:32Z" - }, - { - "modelId": "94e1ae64-db16-4b11-b3ec-db684b3eb473", - "status": "ready", - "createdDateTime": "2020-08-20T21:46:57Z", - "lastUpdatedDateTime": "2020-08-20T21:47:05Z" - }, - { - "modelId": "959a6767-936a-4388-be50-47b1471173e2", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:33Z", - "lastUpdatedDateTime": "2020-08-20T22:43:42Z" - }, - { - "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:51Z", - "lastUpdatedDateTime": "2020-10-30T13:24:52Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1511d3b211adc934d3c93ce856e73db6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "320bae70-df5c-4038-bbd3-e0733ca50772", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "309" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:51Z", - "lastUpdatedDateTime": "2020-10-30T13:24:52Z" - }, - { - "modelId": "9794b06a-303c-4014-ac9c-d64ccd2d897d", - "status": "creating", - "createdDateTime": "2020-08-20T21:22:33Z", - "lastUpdatedDateTime": "2020-08-20T21:22:33Z" - }, - { - "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:52Z", - "lastUpdatedDateTime": "2020-10-30T13:21:54Z" - }, - { - "modelId": "98fc2d15-8bb1-4eb8-85f8-dbde2d188615", - "status": "ready", - "createdDateTime": "2020-08-14T19:46:41Z", - "lastUpdatedDateTime": "2020-08-14T19:46:48Z" - }, - { - "modelId": "9947fcd1-42b4-4c38-930e-1b0403e6f761", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:42Z", - "lastUpdatedDateTime": "2020-08-14T19:45:53Z" - }, - { - "modelId": "99c2b562-6e31-4923-a25c-8d940951ed2f", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:23Z", - "lastUpdatedDateTime": "2020-08-14T19:47:32Z" - }, - { - "modelId": "9a0b42b4-09e2-4c90-8bd0-64395fb588e8", - "status": "ready", - "createdDateTime": "2020-08-20T23:28:36Z", - "lastUpdatedDateTime": "2020-08-20T23:28:44Z" - }, - { - "modelId": "9aa701a8-3822-4d5d-bc37-4891415c267f", - "status": "ready", - "createdDateTime": "2020-08-20T22:06:19Z", - "lastUpdatedDateTime": "2020-08-20T22:06:29Z" - }, - { - "modelId": "9d8aac28-0ab6-4b18-bb80-35341797a3ad", - "status": "ready", - "createdDateTime": "2020-08-20T21:53:04Z", - "lastUpdatedDateTime": "2020-08-20T21:53:15Z" - }, - { - "modelId": "9e6eb7bc-d4b9-4887-a38a-58957d712769", - "status": "ready", - "createdDateTime": "2020-08-20T21:30:14Z", - "lastUpdatedDateTime": "2020-08-20T21:30:22Z" - }, - { - "modelId": "9f7271da-c7c1-4407-bd1a-92577c187995", - "status": "invalid", - "createdDateTime": "2020-08-20T18:45:21Z", - "lastUpdatedDateTime": "2020-08-20T18:45:22Z" - }, - { - "modelId": "a00e27ee-1358-468a-a95c-c80e5bff6343", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:45:08Z", - "lastUpdatedDateTime": "2020-08-20T22:45:15Z" - }, - { - "modelId": "a0a7e72a-d8ec-4293-8dee-7fbe726fc115", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:45:38Z", - "lastUpdatedDateTime": "2020-08-20T18:45:39Z" - }, - { - "modelId": "a1513cf9-13dd-4eb7-bac5-7ceee4658c13", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T18:53:36Z", - "lastUpdatedDateTime": "2020-08-14T18:53:43Z" - }, - { - "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", - "status": "ready", - "createdDateTime": "2020-10-30T13:20:55Z", - "lastUpdatedDateTime": "2020-10-30T13:21:01Z" - }, - { - "modelId": "a2a41673-e1b2-4319-8eef-44910ce4d9cf", - "status": "ready", - "createdDateTime": "2020-08-20T18:43:33Z", - "lastUpdatedDateTime": "2020-08-20T18:43:41Z" - }, - { - "modelId": "a2b05934-353c-4eb9-ac8b-45d1d2e489f2", - "status": "ready", - "createdDateTime": "2020-08-20T22:46:14Z", - "lastUpdatedDateTime": "2020-08-20T22:46:24Z" - }, - { - "modelId": "a3189094-17a1-4acf-a788-f8c05c6e6a19", - "status": "invalid", - "createdDateTime": "2020-08-20T22:45:54Z", - "lastUpdatedDateTime": "2020-08-20T22:45:55Z" - }, - { - "modelId": "a336ff42-7e03-4b7f-821a-1246209f29de", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:51Z", - "lastUpdatedDateTime": "2020-08-14T19:08:55Z" - }, - { - "modelId": "a38f391d-fad5-4ed5-be4c-5a3644803cf4", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:39Z", - "lastUpdatedDateTime": "2020-08-20T23:29:51Z" - }, - { - "modelId": "a3cb3ffe-ba7b-4a0d-838a-eced98e48e8c", - "status": "invalid", - "createdDateTime": "2020-08-20T22:43:18Z", - "lastUpdatedDateTime": "2020-08-20T22:43:18Z" - }, - { - "modelId": "a5f5ef27-523c-44a4-a06c-a56470180145", - "status": "creating", - "createdDateTime": "2020-08-14T19:44:55Z", - "lastUpdatedDateTime": "2020-08-14T19:44:55Z" - }, - { - "modelId": "a67b821e-e8f2-419d-97f6-e28903abe6a0", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:25:31Z", - "lastUpdatedDateTime": "2020-08-20T21:25:32Z" - }, - { - "modelId": "a70a5d5b-3b72-486b-91f1-0b518e077a43", - "status": "ready", - "createdDateTime": "2020-08-20T22:48:57Z", - "lastUpdatedDateTime": "2020-08-20T22:49:06Z" - }, - { - "modelId": "a78b3a1c-9189-4901-9bc2-ccceec21bf20", - "status": "creating", - "createdDateTime": "2020-08-20T18:44:56Z", - "lastUpdatedDateTime": "2020-08-20T18:44:56Z" - }, - { - "modelId": "a7d5f0a1-b604-4fd4-a1fb-5df92c6deaef", - "status": "ready", - "createdDateTime": "2020-08-20T18:26:04Z", - "lastUpdatedDateTime": "2020-08-20T18:26:12Z" - }, - { - "modelId": "a8b5afb6-f11a-4496-ad62-a70e3ecda523", - "status": "ready", - "createdDateTime": "2020-08-14T19:49:09Z", - "lastUpdatedDateTime": "2020-08-14T19:49:17Z" - }, - { - "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:21Z", - "lastUpdatedDateTime": "2020-08-20T21:50:32Z" - }, - { - "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:13Z", - "lastUpdatedDateTime": "2020-08-20T22:46:14Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "43eb21426610860415cd8c6098ee1784", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "65132cbb-0d17-4ffa-8f2d-9fff4c1f7c6b", - "Content-Length": "356", - "Content-Type": "application/json", - "Date": "Fri, 30 Oct 2020 13:32:56 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "43eb21426610860415cd8c6098ee1784", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f760bddc-e018-4403-9750-f0dba2647791", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "355" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T22:46:13Z", - "lastUpdatedDateTime": "2020-08-20T22:46:14Z" - }, - { - "modelId": "a9dbcb83-f15c-4b42-aaef-c2e78adb3169", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:14Z", - "lastUpdatedDateTime": "2020-08-14T19:47:20Z" - }, - { - "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:21:05Z", - "lastUpdatedDateTime": "2020-10-30T13:21:06Z" - }, - { - "modelId": "ac2a0641-62e3-43e4-ab21-2f0eb52b6e61", - "status": "ready", - "createdDateTime": "2020-08-20T21:24:53Z", - "lastUpdatedDateTime": "2020-08-20T21:25:02Z" - }, - { - "modelId": "ad2694f9-88d9-48b6-b85c-71b6000aa9df", - "status": "ready", - "createdDateTime": "2020-08-14T19:47:39Z", - "lastUpdatedDateTime": "2020-08-14T19:47:49Z" - }, - { - "modelId": "af6d3536-b663-4856-9824-9e8872fc83ed", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:43:43Z", - "lastUpdatedDateTime": "2020-08-20T18:43:45Z" - }, - { - "modelId": "b01f6909-840f-4ca9-85a3-769538176fe5", - "status": "ready", - "createdDateTime": "2020-08-20T22:43:50Z", - "lastUpdatedDateTime": "2020-08-20T22:44:01Z" - }, - { - "modelId": "b08b7db5-97ae-4459-9603-47d5994e9f4a", - "status": "ready", - "createdDateTime": "2020-08-14T19:11:57Z", - "lastUpdatedDateTime": "2020-08-14T19:12:05Z" - }, - { - "modelId": "b0b6140c-fb6e-4c67-b7f1-420074909323", - "status": "creating", - "createdDateTime": "2020-08-20T23:28:47Z", - "lastUpdatedDateTime": "2020-08-20T23:28:47Z" - }, - { - "modelId": "b102b022-de56-4e48-8c16-41dae496d899", - "status": "invalid", - "createdDateTime": "2020-08-20T21:47:25Z", - "lastUpdatedDateTime": "2020-08-20T21:47:25Z" - }, - { - "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", - "status": "invalid", - "createdDateTime": "2020-10-30T13:20:52Z", - "lastUpdatedDateTime": "2020-10-30T13:20:52Z" - }, - { - "modelId": "b3cc3815-9fc0-40bc-ad82-0533b038db9d", - "status": "ready", - "createdDateTime": "2020-08-14T19:45:13Z", - "lastUpdatedDateTime": "2020-08-14T19:45:17Z" - }, - { - "modelId": "b404b97b-0e37-4eb5-8ad1-4ced5d0a34a5", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:29Z", - "lastUpdatedDateTime": "2020-08-20T18:45:37Z" - }, - { - "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", - "status": "ready", - "createdDateTime": "2020-10-30T13:21:55Z", - "lastUpdatedDateTime": "2020-10-30T13:22:15Z" - }, - { - "modelId": "b6cf7b42-a0ea-4d17-9a2e-080f0370f562", - "status": "invalid", - "createdDateTime": "2020-08-20T21:22:55Z", - "lastUpdatedDateTime": "2020-08-20T21:22:55Z" - }, - { - "modelId": "b768df27-adda-4f47-8223-4f9b696b3591", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:08Z", - "lastUpdatedDateTime": "2020-08-20T21:47:08Z" - }, - { - "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", - "modelName": "My composed model", - "attributes": { - "isComposed": true - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:23:46Z", - "lastUpdatedDateTime": "2020-10-30T13:23:47Z" - }, - { - "modelId": "bacfa117-235d-43f0-b919-913a0e0ae686", - "status": "ready", - "createdDateTime": "2020-08-20T22:47:48Z", - "lastUpdatedDateTime": "2020-08-20T22:47:56Z" - }, - { - "modelId": "bc1133f6-33d3-4ac1-a848-0695866e1786", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:25:41Z", - "lastUpdatedDateTime": "2020-08-20T21:25:42Z" - }, - { - "modelId": "bc6ae2e0-2eb4-40bb-b8d0-0ca37f413c58", - "status": "invalid", - "createdDateTime": "2020-08-20T21:22:53Z", - "lastUpdatedDateTime": "2020-08-20T21:22:54Z" - }, - { - "modelId": "bd10694b-d9fd-402e-9f89-2e5994a7691f", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T18:27:08Z", - "lastUpdatedDateTime": "2020-08-20T18:27:10Z" - }, - { - "modelId": "be8593fc-3fab-4300-8b14-f77966b99c04", - "status": "invalid", - "createdDateTime": "2020-08-14T19:10:54Z", - "lastUpdatedDateTime": "2020-08-14T19:10:54Z" - }, - { - "modelId": "c1cf6bc1-0d0f-4a23-b453-9df1b937710a", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:27Z", - "lastUpdatedDateTime": "2020-08-20T18:47:35Z" - }, - { - "modelId": "c2401fd4-05c0-48d4-bd2f-7a30589b1306", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:09:15Z", - "lastUpdatedDateTime": "2020-08-14T19:09:27Z" - }, - { - "modelId": "c39ee6fa-e7a8-4ad9-990e-aa9049846fff", - "status": "ready", - "createdDateTime": "2020-08-20T23:29:08Z", - "lastUpdatedDateTime": "2020-08-20T23:29:13Z" - }, - { - "modelId": "c5797a87-180d-4ec3-a23f-aa44848ad149", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:12Z", - "lastUpdatedDateTime": "2020-08-20T23:26:17Z" - }, - { - "modelId": "c690cad3-cb93-4b4b-9139-f542f08aefa2", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:26:23Z", - "lastUpdatedDateTime": "2020-08-20T23:26:24Z" - }, - { - "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:25:05Z", - "lastUpdatedDateTime": "2020-08-20T23:25:07Z" - }, - { - "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", - "status": "ready", - "createdDateTime": "2020-08-20T23:33:14Z", - "lastUpdatedDateTime": "2020-08-20T23:33:22Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "62783f976d61a903be285e3789f87e58", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bb7748fe-7784-4ee8-866e-d3a5b8c5e566", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "265" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", - "status": "ready", - "createdDateTime": "2020-08-20T23:33:14Z", - "lastUpdatedDateTime": "2020-08-20T23:33:22Z" - }, - { - "modelId": "c89e3c61-0048-4ac6-93e6-4f28e4c290cc", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:29:28Z", - "lastUpdatedDateTime": "2020-08-14T19:29:35Z" - }, - { - "modelId": "c8b76997-38b0-444f-9646-40e930bd7b5c", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:50Z", - "lastUpdatedDateTime": "2020-08-20T21:48:01Z" - }, - { - "modelId": "cdb4705a-40e1-4ff4-8ad0-fec5734f4325", - "status": "ready", - "createdDateTime": "2020-08-20T23:10:08Z", - "lastUpdatedDateTime": "2020-08-20T23:10:17Z" - }, - { - "modelId": "cde04bf1-6d25-46f7-bdb5-2d056d9d0770", - "status": "ready", - "createdDateTime": "2020-08-14T19:09:28Z", - "lastUpdatedDateTime": "2020-08-14T19:09:39Z" - }, - { - "modelId": "cdfdd9de-9047-4c6b-9a87-eb8f561f73ff", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:47:21Z", - "lastUpdatedDateTime": "2020-08-14T19:47:23Z" - }, - { - "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:31:58Z", - "lastUpdatedDateTime": "2020-10-30T13:32:01Z" - }, - { - "modelId": "cee73923-0fa2-40dd-8eda-8446c153ecbb", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:45:18Z", - "lastUpdatedDateTime": "2020-08-14T19:45:20Z" - }, - { - "modelId": "cf0a0084-92b5-4c82-aaee-b899a0645f91", - "status": "ready", - "createdDateTime": "2020-08-14T18:53:51Z", - "lastUpdatedDateTime": "2020-08-14T18:53:59Z" - }, - { - "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", - "status": "invalid", - "createdDateTime": "2020-10-30T13:23:52Z", - "lastUpdatedDateTime": "2020-10-30T13:23:52Z" - }, - { - "modelId": "d1ebd4b5-6e79-4a31-9ed2-0d492b409a6c", - "status": "creating", - "createdDateTime": "2020-08-14T19:46:50Z", - "lastUpdatedDateTime": "2020-08-14T19:46:50Z" - }, - { - "modelId": "d234c2cd-e20d-407c-b023-2bb7e0065875", - "status": "ready", - "createdDateTime": "2020-08-20T21:06:49Z", - "lastUpdatedDateTime": "2020-08-20T21:06:57Z" - }, - { - "modelId": "d2bb2813-e890-4726-ad3a-5b2137840550", - "status": "ready", - "createdDateTime": "2020-08-14T19:08:59Z", - "lastUpdatedDateTime": "2020-08-14T19:09:09Z" - }, - { - "modelId": "d35b3816-19e2-4263-840b-749342c5a9ae", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:48Z", - "lastUpdatedDateTime": "2020-08-20T23:25:48Z" - }, - { - "modelId": "d38c3724-ecc0-46ad-be24-9cfb55e88fdd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T23:29:19Z", - "lastUpdatedDateTime": "2020-08-20T23:29:21Z" - }, - { - "modelId": "d44ad36d-9b3f-4528-aeed-50111c87d0d8", - "status": "ready", - "createdDateTime": "2020-08-20T21:22:56Z", - "lastUpdatedDateTime": "2020-08-20T21:22:59Z" - }, - { - "modelId": "d71f1973-c8bc-4723-95f6-270faeb0d710", - "status": "ready", - "createdDateTime": "2020-08-05T20:02:42Z", - "lastUpdatedDateTime": "2020-08-05T20:02:53Z" - }, - { - "modelId": "d76bbb87-3665-4fcf-bd78-5af39fa70371", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:03Z", - "lastUpdatedDateTime": "2020-08-20T21:25:03Z" - }, - { - "modelId": "d7c60908-afae-4db7-97a4-7dfee044d9fb", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:44:20Z", - "lastUpdatedDateTime": "2020-08-14T19:44:27Z" - }, - { - "modelId": "d8bc8709-3324-4d86-a702-fb13d83bd3fd", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:24:37Z", - "lastUpdatedDateTime": "2020-08-20T21:24:38Z" - }, - { - "modelId": "d9d6453d-555a-411b-8969-29023fc1d347", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:50:19Z", - "lastUpdatedDateTime": "2020-08-20T21:50:21Z" - }, - { - "modelId": "da9ff68e-3cb0-4066-8030-84fac4049adf", - "status": "ready", - "createdDateTime": "2020-08-20T23:26:42Z", - "lastUpdatedDateTime": "2020-08-20T23:26:55Z" - }, - { - "modelId": "db37c79c-cb7c-4e82-b5a6-de8761e95791", - "status": "creating", - "createdDateTime": "2020-08-17T22:33:39Z", - "lastUpdatedDateTime": "2020-08-17T22:33:39Z" - }, - { - "modelId": "de0c3af0-ab73-4a50-88b9-0be008348ff3", - "status": "ready", - "createdDateTime": "2020-08-14T19:12:59Z", - "lastUpdatedDateTime": "2020-08-14T19:13:07Z" - }, - { - "modelId": "ded45364-1d15-4185-9ba1-349085488c79", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:31:28Z", - "lastUpdatedDateTime": "2020-08-20T21:31:30Z" - }, - { - "modelId": "df46a938-d337-4664-82f6-13fe40a3ccbd", - "status": "ready", - "createdDateTime": "2020-08-05T20:05:23Z", - "lastUpdatedDateTime": "2020-08-05T20:05:34Z" - }, - { - "modelId": "dfed1264-2f66-4fa1-83fd-adce189c3ae9", - "status": "creating", - "createdDateTime": "2020-08-17T22:30:35Z", - "lastUpdatedDateTime": "2020-08-17T22:30:35Z" - }, - { - "modelId": "e10d0994-db23-4546-9ea7-377e52f85c7e", - "status": "ready", - "createdDateTime": "2020-08-20T21:47:40Z", - "lastUpdatedDateTime": "2020-08-20T21:47:48Z" - }, - { - "modelId": "e1fb3fc5-8672-4d3c-ad29-fa0c489f21fd", - "status": "invalid", - "createdDateTime": "2020-08-20T18:43:14Z", - "lastUpdatedDateTime": "2020-08-20T18:43:15Z" - }, - { - "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:17Z", - "lastUpdatedDateTime": "2020-08-20T18:47:25Z" - } - ], - "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ab48397e543b4bc0cf8affdf85d431e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f36e499a-cf38-46ef-881d-d81b50f66ed0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "275" - }, - "ResponseBody": { - "modelList": [ - { - "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", - "status": "ready", - "createdDateTime": "2020-08-20T18:47:17Z", - "lastUpdatedDateTime": "2020-08-20T18:47:25Z" - }, - { - "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", - "status": "ready", - "createdDateTime": "2020-08-20T21:50:10Z", - "lastUpdatedDateTime": "2020-08-20T21:50:18Z" - }, - { - "modelId": "e2d2eecf-d810-4fd9-8b94-cc370a9d3dc5", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:40Z", - "lastUpdatedDateTime": "2020-08-20T21:49:40Z" - }, - { - "modelId": "e31e548b-1c1a-4345-907b-b77bec13260d", - "status": "creating", - "createdDateTime": "2020-08-17T17:11:47Z", - "lastUpdatedDateTime": "2020-08-17T17:11:47Z" - }, - { - "modelId": "e4100004-e84e-4795-b220-983fafee5a10", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:19:24Z", - "lastUpdatedDateTime": "2020-10-30T13:19:26Z" - }, - { - "modelId": "e4949cbb-05e0-4d1b-bab9-c4e444b25c9e", - "status": "invalid", - "createdDateTime": "2020-08-14T19:08:50Z", - "lastUpdatedDateTime": "2020-08-14T19:08:51Z" - }, - { - "modelId": "e8679f07-a7ae-43ff-af1c-417567ece17f", - "status": "creating", - "createdDateTime": "2020-08-14T19:08:23Z", - "lastUpdatedDateTime": "2020-08-14T19:08:23Z" - }, - { - "modelId": "eb78387f-b93d-47c4-8ff2-5a75fa2848c2", - "status": "creating", - "createdDateTime": "2020-08-17T17:11:08Z", - "lastUpdatedDateTime": "2020-08-17T17:11:08Z" - }, - { - "modelId": "eccc2f1b-08fc-4bdf-af54-45bbb3a94dc8", - "status": "creating", - "createdDateTime": "2020-08-20T21:47:16Z", - "lastUpdatedDateTime": "2020-08-20T21:47:16Z" - }, - { - "modelId": "f019ba8f-b377-4307-aed2-2e357d88faad", - "status": "invalid", - "createdDateTime": "2020-08-14T19:10:55Z", - "lastUpdatedDateTime": "2020-08-14T19:10:56Z" - }, - { - "modelId": "f0790982-b19e-4f0b-9f3d-0bd73c22d50b", - "status": "ready", - "createdDateTime": "2020-08-20T18:45:40Z", - "lastUpdatedDateTime": "2020-08-20T18:45:50Z" - }, - { - "modelId": "f09bb379-e552-423b-a66e-11d4a47b4cad", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-14T19:45:30Z", - "lastUpdatedDateTime": "2020-08-14T19:45:41Z" - }, - { - "modelId": "f16a5995-6f9d-429c-a9ce-94b42e707f4e", - "status": "ready", - "createdDateTime": "2020-08-20T21:23:21Z", - "lastUpdatedDateTime": "2020-08-20T21:23:32Z" - }, - { - "modelId": "f2b17543-4827-4824-8f0a-297915305924", - "status": "creating", - "createdDateTime": "2020-08-20T23:25:39Z", - "lastUpdatedDateTime": "2020-08-20T23:25:39Z" - }, - { - "modelId": "f313494f-2d7d-4c1b-baca-4f019e1bb372", - "status": "ready", - "createdDateTime": "2020-08-20T21:23:09Z", - "lastUpdatedDateTime": "2020-08-20T21:23:17Z" - }, - { - "modelId": "f4a51dde-7357-46f7-b160-1321e8cf6a8e", - "status": "creating", - "createdDateTime": "2020-08-20T21:25:03Z", - "lastUpdatedDateTime": "2020-08-20T21:25:03Z" - }, - { - "modelId": "f5b14d6e-2c12-4a8b-a26b-6f919fb3fc22", - "status": "ready", - "createdDateTime": "2020-08-20T18:27:28Z", - "lastUpdatedDateTime": "2020-08-20T18:27:36Z" - }, - { - "modelId": "f630338a-704f-49e6-90df-3661cdb70919", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:47:48Z", - "lastUpdatedDateTime": "2020-08-20T21:47:49Z" - }, - { - "modelId": "f86960b5-529c-434d-900e-72383c3535bd", - "status": "ready", - "createdDateTime": "2020-08-20T21:27:51Z", - "lastUpdatedDateTime": "2020-08-20T21:27:59Z" - }, - { - "modelId": "f8ec4bc9-ae6d-4ff7-ae5e-5ce9155164cf", - "status": "ready", - "createdDateTime": "2020-08-20T23:32:06Z", - "lastUpdatedDateTime": "2020-08-20T23:32:14Z" - }, - { - "modelId": "f9ad28eb-5fdc-4844-8a72-04a115dd2029", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:49Z", - "lastUpdatedDateTime": "2020-08-20T18:42:49Z" - }, - { - "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-10-30T13:24:04Z", - "lastUpdatedDateTime": "2020-10-30T13:24:06Z" - }, - { - "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", - "status": "creating", - "createdDateTime": "2020-10-30T13:19:47Z", - "lastUpdatedDateTime": "2020-10-30T13:19:47Z" - }, - { - "modelId": "fae7acb8-2ffc-40d1-9e07-a2f2af6f54f5", - "status": "ready", - "createdDateTime": "2020-08-20T21:25:43Z", - "lastUpdatedDateTime": "2020-08-20T21:25:54Z" - }, - { - "modelId": "fbc59a11-f373-4f3d-b24c-3e32aa033d7e", - "status": "creating", - "createdDateTime": "2020-08-20T18:42:56Z", - "lastUpdatedDateTime": "2020-08-20T18:42:56Z" - }, - { - "modelId": "fc0d549e-3a1f-4eda-bb96-fb6bf60c0f53", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-20T21:47:32Z", - "lastUpdatedDateTime": "2020-08-20T21:47:39Z" - }, - { - "modelId": "fca987e8-8ed2-4c00-8aa4-eeff583bb155", - "status": "creating", - "createdDateTime": "2020-08-20T21:49:40Z", - "lastUpdatedDateTime": "2020-08-20T21:49:40Z" - } - ], - "nextLink": "" - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5b02458d73a2aa41985b232f1de1a554-9be5164ef85a4444-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1750b7b1da6fd4541e4185e808ccfd1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23cefc14-6a76-4432-855b-ec6da32c3348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" - }, - "ResponseBody": { - "summary": { - "count": 267, - "limit": 5000, - "lastUpdatedDateTime": "2020-10-30T13:32:59Z" - } - } - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4dfc4c34fb0f9640865d924093bc82c8-bfd6e5bc27a7684a-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5fe2334f6ca543487f2c93d76e2324e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "apim-request-id": "074318f7-6626-4746-b4b0-95bb45f4dea0", - "Content-Length": "0", - "Date": "Fri, 30 Oct 2020 13:32:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-432096f2ef10a64d9526fff5b9fc107d-354c4d663631f443-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d18579f767a8a3e9e4738dfacfd84303", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "apim-request-id": "d9f24b1d-5449-4ff6-a358-4a054d7ca100", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Oct 2020 13:32:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" - }, - "ResponseBody": { - "error": { - "code": "1022", - "message": "Model with \u0027id=cee40303-8aaa-418a-b5b4-9055cb5bb4d8\u0027 not found." - } - } - } - ], - "Variables": { - "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", - "RandomSeed": "1785494243" - } -} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,False).json new file mode 100644 index 0000000000000..53e9ab829d958 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,False).json @@ -0,0 +1,711 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-d03c8e91a9c91a49b2d624a7de68de94-bc3b211d96807444-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "643dff931bc489fea1fd5b2c46685076", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "d1758f34-3206-47b6-aecf-4496ac632329", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:45 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8fa6609-5171-4c64-a1c6-aeb39730f262", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8fa6609-5171-4c64-a1c6-aeb39730f262?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e5b25aec91bc9d430be25956ba174855", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f4eeb173-071e-479d-9248-3301496be0fb", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "a8fa6609-5171-4c64-a1c6-aeb39730f262", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:45Z", + "lastUpdatedDateTime": "2020-11-25T04:00:45Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8fa6609-5171-4c64-a1c6-aeb39730f262?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "39cdf21ef77927d3762d7d5f9e49b807", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff50e4ed-0e1b-4847-8c92-4901cd2238a4", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "a8fa6609-5171-4c64-a1c6-aeb39730f262", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:45Z", + "lastUpdatedDateTime": "2020-11-25T04:00:45Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8fa6609-5171-4c64-a1c6-aeb39730f262?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a9416a18875c02c1bba058e2c2a8cf8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "777c15b8-c172-4a11-acb7-6813fa10e45d", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "a8fa6609-5171-4c64-a1c6-aeb39730f262", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:45Z", + "lastUpdatedDateTime": "2020-11-25T04:00:47Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8fa6609-5171-4c64-a1c6-aeb39730f262?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-284b43495eb06b4d8acca979267b2123-9b8d978431329e4a-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "540e05b5179bf5fc878b6f8e14e4ffc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d13cbd5c-60bb-4351-8b11-d8b135f0ef45", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "a8fa6609-5171-4c64-a1c6-aeb39730f262", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:45Z", + "lastUpdatedDateTime": "2020-11-25T04:00:47Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4f3d51299fd696f930ca7dd99ff065cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc76e193-8762-4ff5-91f9-d70012541818", + "Content-Length": "4935", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "309" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "0ea8d066-c080-4a57-80ac-a8878781d56b", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", + "status": "ready", + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" + }, + { + "modelId": "42ea913c-f97d-4c03-8e20-7abcda96f6ba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:47:53Z", + "lastUpdatedDateTime": "2020-11-25T03:47:56Z" + }, + { + "modelId": "4cc8ead1-39d5-4e97-a3ec-cb09b606d842", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "4fded575-9b8c-48c9-afb3-f1f6886420da", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:46Z", + "lastUpdatedDateTime": "2020-11-25T03:35:47Z" + }, + { + "modelId": "5c7eef43-5375-40ed-bcb3-05d3b2171370", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "62415dfb-2e67-467a-8bff-023bbcc78d36", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:29Z", + "lastUpdatedDateTime": "2020-11-25T03:32:41Z" + }, + { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "7da543ab-7e70-4d5b-9c2d-0f03e1cb5d99", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "a8fa6609-5171-4c64-a1c6-aeb39730f262", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:45Z", + "lastUpdatedDateTime": "2020-11-25T04:00:47Z" + }, + { + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" + }, + { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + { + "modelId": "b18b2597-3ed4-4a8b-bdf0-c838a7165a59", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "cc060070-75a7-4704-a7aa-38cfbead5a28", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:34Z", + "lastUpdatedDateTime": "2020-11-25T03:35:35Z" + }, + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + }, + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "e6131f21-38bc-40d1-ba38-0d4fae74f5a2", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ea242805-a42c-4829-a514-2f25cfaa2359", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:51:09Z", + "lastUpdatedDateTime": "2020-11-25T03:51:12Z" + }, + { + "modelId": "fc54c362-1fb4-43ef-81b7-478b0fbc079a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-c769033e5b5d484f839813c48eb376c1-3f2183382f244342-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "99aaf35e643b016b6e4b22d11833edd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c79fab8-693a-436b-b358-75727e0013c1", + "Content-Length": "82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "summary": { + "count": 25, + "limit": 5000, + "lastUpdatedDateTime": "2020-11-25T04:00:49Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8fa6609-5171-4c64-a1c6-aeb39730f262", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-7e0db6325766874e85df468b1681b2da-b1164e6e39f2c148-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "70b895a07f6a15b30b7723d09a235696", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "cc57cd73-b3d8-43a2-aa6c-adcdc12be34e", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8fa6609-5171-4c64-a1c6-aeb39730f262?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-e0a83e4a5685f248aca35f2ee48f8ca8-f7585bf03cf6eb40-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2030a125663ac587e63ce18a7c277efc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "2af7700d-87a1-47ad-a6f0-563d54d80b69", + "Content-Length": "101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "error": { + "code": "1022", + "message": "Model with \u0027id=a8fa6609-5171-4c64-a1c6-aeb39730f262\u0027 not found." + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "961743259" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,False)Async.json new file mode 100644 index 0000000000000..a36014b3d2f22 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,False)Async.json @@ -0,0 +1,798 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "42", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-1c28943abab3b84a8019b953d004e011-95c211764f464b49-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f92a2541bba2851356ffe33c72f59782", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "81a44e7a-5daa-404d-8289-717b1033b512", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:42 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/34b03a69-5baf-4aa6-9d94-bef8caa84689", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/34b03a69-5baf-4aa6-9d94-bef8caa84689?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "62157245ac0d55ccebadc73978821514", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01ea3add-bc14-40db-bc8e-7011a5f54c25", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "34b03a69-5baf-4aa6-9d94-bef8caa84689", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:43Z", + "lastUpdatedDateTime": "2020-11-25T04:03:43Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/34b03a69-5baf-4aa6-9d94-bef8caa84689?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "135649c5b6c0999935a4631bde000119", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dfb2c71f-3d7e-4d4d-a22b-9e371330c3ad", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "34b03a69-5baf-4aa6-9d94-bef8caa84689", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:43Z", + "lastUpdatedDateTime": "2020-11-25T04:03:44Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/34b03a69-5baf-4aa6-9d94-bef8caa84689?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-fe82642737f8304586abcbc012acb7a9-53f3ab65597b2846-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e2f472741be394c358d40df4f3da0dd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "330bd162-8f59-4587-89bb-a0a7d759e41e", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "34b03a69-5baf-4aa6-9d94-bef8caa84689", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:43Z", + "lastUpdatedDateTime": "2020-11-25T04:03:44Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2977cfe9849e8fc2d87b2c6849b177eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0eebc09e-0244-4e28-9bb8-f35d1a3fd24c", + "Content-Length": "5826", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "362" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "0ea8d066-c080-4a57-80ac-a8878781d56b", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "34b03a69-5baf-4aa6-9d94-bef8caa84689", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:43Z", + "lastUpdatedDateTime": "2020-11-25T04:03:44Z" + }, + { + "modelId": "3926013a-fa9d-406f-a099-3dd90859a9bd", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + }, + { + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", + "status": "ready", + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" + }, + { + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + }, + { + "modelId": "42ea913c-f97d-4c03-8e20-7abcda96f6ba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:47:53Z", + "lastUpdatedDateTime": "2020-11-25T03:47:56Z" + }, + { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:39Z", + "lastUpdatedDateTime": "2020-11-25T04:02:41Z" + }, + { + "modelId": "4cc8ead1-39d5-4e97-a3ec-cb09b606d842", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "4fded575-9b8c-48c9-afb3-f1f6886420da", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:46Z", + "lastUpdatedDateTime": "2020-11-25T03:35:47Z" + }, + { + "modelId": "5b577d8d-4837-4344-9262-8cf22ad2551f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + { + "modelId": "5c7eef43-5375-40ed-bcb3-05d3b2171370", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "62415dfb-2e67-467a-8bff-023bbcc78d36", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:29Z", + "lastUpdatedDateTime": "2020-11-25T03:32:41Z" + }, + { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "7da543ab-7e70-4d5b-9c2d-0f03e1cb5d99", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:09Z", + "lastUpdatedDateTime": "2020-11-25T04:02:11Z" + }, + { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" + }, + { + "modelId": "af4b8eae-13e6-45a3-9743-dfeb4a042fe5", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:21Z", + "lastUpdatedDateTime": "2020-11-25T04:03:22Z" + }, + { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + { + "modelId": "b18b2597-3ed4-4a8b-bdf0-c838a7165a59", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", + "status": "ready", + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:16Z" + }, + { + "modelId": "cc060070-75a7-4704-a7aa-38cfbead5a28", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:34Z", + "lastUpdatedDateTime": "2020-11-25T03:35:35Z" + }, + { + "modelId": "d363aeec-be98-4524-b087-5c776cb5a91a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:15Z", + "lastUpdatedDateTime": "2020-11-25T04:03:15Z" + }, + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + } + ], + "nextLink": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!212!MDAwMTEzIXN1YnNjcmlwdGlvbnMvYzU5MGEwYmM3NDRkNDVmYjk3NjVhZDZmZjczNDE0NjEvbW9kZWxzL2Q2NTBjZmYxLTNmM2MtNDY0My04ZDVjLWExYjYxZmZhMmExZC92ZXJzaW9uLXYyLjEtcHJldmlldy4yITAwMDAyOCE5OTk5LTEyLTMxVDIzOjU5OjU5Ljk5OTk5OTlaIQ--" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!212!MDAwMTEzIXN1YnNjcmlwdGlvbnMvYzU5MGEwYmM3NDRkNDVmYjk3NjVhZDZmZjczNDE0NjEvbW9kZWxzL2Q2NTBjZmYxLTNmM2MtNDY0My04ZDVjLWExYjYxZmZhMmExZC92ZXJzaW9uLXYyLjEtcHJldmlldy4yITAwMDAyOCE5OTk5LTEyLTMxVDIzOjU5OjU5Ljk5OTk5OTlaIQ--", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "06c4aeac328daa3085c1baeba8a4a65b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "08c50089-2704-4bc1-93a9-c1f3be61630c", + "Content-Length": "1466", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "133" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + }, + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "e6131f21-38bc-40d1-ba38-0d4fae74f5a2", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ea242805-a42c-4829-a514-2f25cfaa2359", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:51:09Z", + "lastUpdatedDateTime": "2020-11-25T03:51:12Z" + }, + { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + { + "modelId": "fc54c362-1fb4-43ef-81b7-478b0fbc079a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-c89e1b91340f634ea11edb883ca4de66-ed2e3f19dab73540-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0f318e97d788f07aaf650967ee5a4aa7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "59fb098b-5221-4070-82cc-82ce0c0a8782", + "Content-Length": "82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "summary": { + "count": 34, + "limit": 5000, + "lastUpdatedDateTime": "2020-11-25T04:03:45Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/34b03a69-5baf-4aa6-9d94-bef8caa84689", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-8dc0602492ab564ba13ad3b537d1cd7b-bcb59777be2a4746-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4448225d0616b6479ecca3ddc9d7e733", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "8ae53fca-fdb4-46dc-b012-d50d038efaf1", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/34b03a69-5baf-4aa6-9d94-bef8caa84689?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-3c1cf3eb67f89840ac1154904e573361-caf73e5528bc644c-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bbd0d1d5677fd46234d4572829c9bb2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "dbaaca87-dcc6-4a89-ac4d-6107105b0b54", + "Content-Length": "101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" + }, + "ResponseBody": { + "error": { + "code": "1022", + "message": "Model with \u0027id=34b03a69-5baf-4aa6-9d94-bef8caa84689\u0027 not found." + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_API_KEY": "Sanitized", + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "1161212288" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,True).json new file mode 100644 index 0000000000000..8e4241a5b913e --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,True).json @@ -0,0 +1,710 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "42", + "Content-Type": "application/json", + "traceparent": "00-f503d09f09564547967ae5830b1fd830-2762bd2e154a9845-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d206445a8ccd2c3482c5992aef2e4c6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "f8be093e-1bad-432e-93cf-5dadabeb850f", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:25 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bab515ff-9017-4734-b6e9-6bebbfb8d480", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "77" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bab515ff-9017-4734-b6e9-6bebbfb8d480?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "64012f1caa1c6070473dbb336222fab0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1b14d1ba-dfa8-477a-8673-e715eab33a31", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bab515ff-9017-4734-b6e9-6bebbfb8d480", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:25Z", + "lastUpdatedDateTime": "2020-11-25T04:00:25Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bab515ff-9017-4734-b6e9-6bebbfb8d480?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d962351fde4ce538fb85967ec2812cbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc2d2b29-94a8-4803-bc58-5b77047ae5e8", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bab515ff-9017-4734-b6e9-6bebbfb8d480", + "status": "creating", + "createdDateTime": "2020-11-25T04:00:25Z", + "lastUpdatedDateTime": "2020-11-25T04:00:25Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bab515ff-9017-4734-b6e9-6bebbfb8d480?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "08deb9ee46a5b0d0d4a58b90d100c95f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f22a414d-8094-42ec-a141-e2af62dcf4b8", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bab515ff-9017-4734-b6e9-6bebbfb8d480", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:25Z", + "lastUpdatedDateTime": "2020-11-25T04:00:27Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bab515ff-9017-4734-b6e9-6bebbfb8d480?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3813ca8b2746b7498a016980b9659054-c90b6cb8fb0e5d42-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b90be8cb72cb3d1ff61c699614f19dc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "147a0cf3-8573-4811-b9ac-00fa988bdc32", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "bab515ff-9017-4734-b6e9-6bebbfb8d480", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:25Z", + "lastUpdatedDateTime": "2020-11-25T04:00:27Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a944fd10f143d90a64b205a652a814fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2fa91494-1f25-4b6c-8a46-8bec1962adc4", + "Content-Length": "4935", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1065" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "0ea8d066-c080-4a57-80ac-a8878781d56b", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", + "status": "ready", + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" + }, + { + "modelId": "42ea913c-f97d-4c03-8e20-7abcda96f6ba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:47:53Z", + "lastUpdatedDateTime": "2020-11-25T03:47:56Z" + }, + { + "modelId": "4cc8ead1-39d5-4e97-a3ec-cb09b606d842", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "4fded575-9b8c-48c9-afb3-f1f6886420da", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:46Z", + "lastUpdatedDateTime": "2020-11-25T03:35:47Z" + }, + { + "modelId": "5c7eef43-5375-40ed-bcb3-05d3b2171370", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "62415dfb-2e67-467a-8bff-023bbcc78d36", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:29Z", + "lastUpdatedDateTime": "2020-11-25T03:32:41Z" + }, + { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "7da543ab-7e70-4d5b-9c2d-0f03e1cb5d99", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" + }, + { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + { + "modelId": "b18b2597-3ed4-4a8b-bdf0-c838a7165a59", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "bab515ff-9017-4734-b6e9-6bebbfb8d480", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:25Z", + "lastUpdatedDateTime": "2020-11-25T04:00:27Z" + }, + { + "modelId": "cc060070-75a7-4704-a7aa-38cfbead5a28", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:34Z", + "lastUpdatedDateTime": "2020-11-25T03:35:35Z" + }, + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + }, + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "e6131f21-38bc-40d1-ba38-0d4fae74f5a2", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ea242805-a42c-4829-a514-2f25cfaa2359", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:51:09Z", + "lastUpdatedDateTime": "2020-11-25T03:51:12Z" + }, + { + "modelId": "fc54c362-1fb4-43ef-81b7-478b0fbc079a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ecd924f72a0d4441b84b5f1911a6dd16-f035c5a62f33ea49-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dab236bb72757bf299a01289dc3a9be2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9bcef524-280a-43c0-98d4-722911cfc0a0", + "Content-Length": "82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "summary": { + "count": 24, + "limit": 5000, + "lastUpdatedDateTime": "2020-11-25T04:00:30Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bab515ff-9017-4734-b6e9-6bebbfb8d480", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-15acf6c4a4dc4d4e8c015e62c94edf34-ba47eaba4e62fb4f-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d37fc50820bbda1bdd3255196d79eb4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "2b8937b1-6a65-4245-8144-9d1dae8b46fa", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:00:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bab515ff-9017-4734-b6e9-6bebbfb8d480?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-f5affd970637ad4d9288710d083d3774-06aa1322b1a83044-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "deda6e08c33f9e4f0bc910a3de81fc29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "4b2a7c59-8c00-468b-8e6c-efb0d3b81986", + "Content-Length": "101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:00:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "error": { + "code": "1022", + "message": "Model with \u0027id=bab515ff-9017-4734-b6e9-6bebbfb8d480\u0027 not found." + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "266385015" + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,True)Async.json new file mode 100644 index 0000000000000..01e49495ea121 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True,True)Async.json @@ -0,0 +1,824 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "42", + "Content-Type": "application/json", + "traceparent": "00-f5fb3448f5c919458147d1b5d2c0ba3f-91dbfc6e98e81b43-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "263d6d90931c508da7dda48d1d1b7a1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "source": "Sanitized", + "useLabelFile": true + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "e3357ebe-2fb6-4ff8-875e-d3a7e8153c5f", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:24 GMT", + "Location": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91dfa74a-a616-4f2f-92bc-1d40e23012e6", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91dfa74a-a616-4f2f-92bc-1d40e23012e6?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1273cf3e0b879a89cf0c2fb1f15c798e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a339d6df-eb7c-4951-b6d3-10f055b077b3", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "91dfa74a-a616-4f2f-92bc-1d40e23012e6", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:24Z", + "lastUpdatedDateTime": "2020-11-25T04:03:24Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91dfa74a-a616-4f2f-92bc-1d40e23012e6?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1136eb9f17c7c533e82f11349607daeb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2503836d-9c2f-48ba-8627-4eba1455db26", + "Content-Length": "170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "91dfa74a-a616-4f2f-92bc-1d40e23012e6", + "status": "creating", + "createdDateTime": "2020-11-25T04:03:24Z", + "lastUpdatedDateTime": "2020-11-25T04:03:24Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91dfa74a-a616-4f2f-92bc-1d40e23012e6?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "df022bef2fb8849ce3a2561064dc5e4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89948705-cd5c-4bde-a476-568c3107d0b5", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "91dfa74a-a616-4f2f-92bc-1d40e23012e6", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:24Z", + "lastUpdatedDateTime": "2020-11-25T04:03:25Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91dfa74a-a616-4f2f-92bc-1d40e23012e6?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-fcfadd9b8dad0f4489ace2c0b5601616-9d77ab375ab97e40-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "32ee166369e427569bad2957fa5504c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6044f1b5-a29a-45a4-bdfe-ce9fd84a6c84", + "Content-Length": "1218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "91dfa74a-a616-4f2f-92bc-1d40e23012e6", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:24Z", + "lastUpdatedDateTime": "2020-11-25T04:03:25Z" + }, + "trainResult": { + "averageModelAccuracy": 0.96, + "trainingDocuments": [ + { + "documentName": "Form_1.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_2.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_3.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_4.jpg", + "pages": 1, + "status": "succeeded" + }, + { + "documentName": "Form_5.jpg", + "pages": 1, + "status": "succeeded" + } + ], + "fields": [ + { + "fieldName": "CompanyAddress", + "accuracy": 0.8 + }, + { + "fieldName": "CompanyName", + "accuracy": 1.0 + }, + { + "fieldName": "CompanyPhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "DatedAs", + "accuracy": 1.0 + }, + { + "fieldName": "Email", + "accuracy": 0.8 + }, + { + "fieldName": "Merchant", + "accuracy": 1.0 + }, + { + "fieldName": "PhoneNumber", + "accuracy": 1.0 + }, + { + "fieldName": "PurchaseOrderNumber", + "accuracy": 1.0 + }, + { + "fieldName": "Quantity", + "accuracy": 1.0 + }, + { + "fieldName": "Signature", + "accuracy": 0.8 + }, + { + "fieldName": "Subtotal", + "accuracy": 1.0 + }, + { + "fieldName": "Tax", + "accuracy": 1.0 + }, + { + "fieldName": "Total", + "accuracy": 1.0 + }, + { + "fieldName": "VendorName", + "accuracy": 1.0 + }, + { + "fieldName": "Website", + "accuracy": 1.0 + } + ], + "errors": [] + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c6c143329a596fd64eb12e25c023610c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "befd16f0-3a5f-4991-8c2d-66ede93b1a0b", + "Content-Length": "5692", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "528" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "0ea8d066-c080-4a57-80ac-a8878781d56b", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "3926013a-fa9d-406f-a099-3dd90859a9bd", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + }, + { + "modelId": "3ca9f1aa-9c25-4bc7-b122-b9ef97039cad", + "status": "ready", + "createdDateTime": "2020-11-25T03:57:52Z", + "lastUpdatedDateTime": "2020-11-25T03:58:04Z" + }, + { + "modelId": "42b8f7e1-b823-4055-aa7b-5ab326bd08c1", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:22Z", + "lastUpdatedDateTime": "2020-11-25T04:01:22Z" + }, + { + "modelId": "42ea913c-f97d-4c03-8e20-7abcda96f6ba", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:47:53Z", + "lastUpdatedDateTime": "2020-11-25T03:47:56Z" + }, + { + "modelId": "462caf6e-2c79-486d-a9de-1be3d3c1924d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:39Z", + "lastUpdatedDateTime": "2020-11-25T04:02:41Z" + }, + { + "modelId": "4cc8ead1-39d5-4e97-a3ec-cb09b606d842", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "4fded575-9b8c-48c9-afb3-f1f6886420da", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:46Z", + "lastUpdatedDateTime": "2020-11-25T03:35:47Z" + }, + { + "modelId": "5b577d8d-4837-4344-9262-8cf22ad2551f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + { + "modelId": "5c7eef43-5375-40ed-bcb3-05d3b2171370", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "62415dfb-2e67-467a-8bff-023bbcc78d36", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:29Z", + "lastUpdatedDateTime": "2020-11-25T03:32:41Z" + }, + { + "modelId": "6d476a9d-95c9-4a25-8461-8877e922c45d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "7da543ab-7e70-4d5b-9c2d-0f03e1cb5d99", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:00Z", + "lastUpdatedDateTime": "2020-11-25T03:41:00Z" + }, + { + "modelId": "8c7462c7-15e4-4760-87e6-42e2953b6f96", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:02:09Z", + "lastUpdatedDateTime": "2020-11-25T04:02:11Z" + }, + { + "modelId": "91dfa74a-a616-4f2f-92bc-1d40e23012e6", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:24Z", + "lastUpdatedDateTime": "2020-11-25T04:03:25Z" + }, + { + "modelId": "979aa077-25d5-4ed5-b538-6456a7d1088d", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "9ddc7158-3bad-478a-8b5e-94b5deedced3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:39Z", + "lastUpdatedDateTime": "2020-11-25T03:59:40Z" + }, + { + "modelId": "9e4adc92-dc5c-41ca-b1c9-5d841fc8b9f4", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:11Z", + "lastUpdatedDateTime": "2020-11-25T03:58:12Z" + }, + { + "modelId": "a716231a-6f7c-4004-a873-4748b39b00fc", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:58:44Z", + "lastUpdatedDateTime": "2020-11-25T03:58:44Z" + }, + { + "modelId": "ac7585bb-d975-4499-a1bc-43aa18004c7f", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:15Z", + "lastUpdatedDateTime": "2020-11-25T04:00:15Z" + }, + { + "modelId": "af4b8eae-13e6-45a3-9743-dfeb4a042fe5", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:21Z", + "lastUpdatedDateTime": "2020-11-25T04:03:22Z" + }, + { + "modelId": "b13d4cef-61a9-4c2b-a0e4-a2ba0d1bf43d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:59:09Z", + "lastUpdatedDateTime": "2020-11-25T03:59:11Z" + }, + { + "modelId": "b18b2597-3ed4-4a8b-bdf0-c838a7165a59", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:45Z", + "lastUpdatedDateTime": "2020-11-25T03:41:45Z" + }, + { + "modelId": "bc4dda28-3aba-4782-9004-92b3c0cbaccc", + "status": "ready", + "createdDateTime": "2020-11-25T04:01:03Z", + "lastUpdatedDateTime": "2020-11-25T04:01:16Z" + }, + { + "modelId": "cc060070-75a7-4704-a7aa-38cfbead5a28", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:35:34Z", + "lastUpdatedDateTime": "2020-11-25T03:35:35Z" + }, + { + "modelId": "d363aeec-be98-4524-b087-5c776cb5a91a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:03:15Z", + "lastUpdatedDateTime": "2020-11-25T04:03:15Z" + } + ], + "nextLink": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvYzU5MGEwYmM3NDRkNDVmYjk3NjVhZDZmZjczNDE0NjEvbW9kZWxzL2Q2NTBjZmYxLTNmM2MtNDY0My04ZDVjLWExYjYxZmZhMmExZC9kNjUwY2ZmMS0zZjNjLTQ2NDMtOGQ1Yy1hMWI2MWZmYTJhMWQuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvYzU5MGEwYmM3NDRkNDVmYjk3NjVhZDZmZjczNDE0NjEvbW9kZWxzL2Q2NTBjZmYxLTNmM2MtNDY0My04ZDVjLWExYjYxZmZhMmExZC9kNjUwY2ZmMS0zZjNjLTQ2NDMtOGQ1Yy1hMWI2MWZmYTJhMWQuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "80d1c6d0a7198606d4db430a0644898e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03d9f4a2-1a0a-4a36-b369-7defc7636ae2", + "Content-Length": "1466", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "134" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "d650cff1-3f3c-4643-8d5c-a1b61ffa2a1d", + "status": "ready", + "createdDateTime": "2020-11-25T03:32:13Z", + "lastUpdatedDateTime": "2020-11-25T03:32:25Z" + }, + { + "modelId": "e5c071a6-cea3-482a-a07d-631ad53c54d0", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:42:13Z", + "lastUpdatedDateTime": "2020-11-25T03:42:14Z" + }, + { + "modelId": "e6131f21-38bc-40d1-ba38-0d4fae74f5a2", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ea242805-a42c-4829-a514-2f25cfaa2359", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:51:09Z", + "lastUpdatedDateTime": "2020-11-25T03:51:12Z" + }, + { + "modelId": "ea28130e-938b-4629-b878-4b20b4946dc6", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:01:45Z", + "lastUpdatedDateTime": "2020-11-25T04:01:45Z" + }, + { + "modelId": "fc54c362-1fb4-43ef-81b7-478b0fbc079a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T03:41:16Z", + "lastUpdatedDateTime": "2020-11-25T03:41:16Z" + }, + { + "modelId": "ff35c346-0f2d-4486-bd70-1cb92e00933a", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-11-25T04:00:23Z", + "lastUpdatedDateTime": "2020-11-25T04:00:24Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4581f93839954446abb9cf99d7a22a20-53ca0904e2079f46-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "20de8e9d981bc9f13f7fe3333b316677", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a63d00da-4873-405d-a714-3b0569048054", + "Content-Length": "82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "summary": { + "count": 35, + "limit": 5000, + "lastUpdatedDateTime": "2020-11-25T04:03:27Z" + } + } + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91dfa74a-a616-4f2f-92bc-1d40e23012e6", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3e8b15fe509f0b47b7349eb2aa39f4c2-61f7500b61bdef4e-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "34871d4b84838aae3c3af17e56cb690a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "b94268f1-cc10-470e-adde-96946d3c39f2", + "Content-Length": "0", + "Date": "Wed, 25 Nov 2020 04:03:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-canada-central.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/91dfa74a-a616-4f2f-92bc-1d40e23012e6?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b0f44d54c5f22446a169c2cb57832121-10c579414c496e49-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201124.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "31879f27404538f1d408409ac3d34ba3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "6d9190c3-2abb-4a53-bf6a-3a3164ac121f", + "Content-Length": "101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Nov 2020 04:03:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "error": { + "code": "1022", + "message": "Model with \u0027id=91dfa74a-a616-4f2f-92bc-1d40e23012e6\u0027 not found." + } + } + } + ], + "Variables": { + "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", + "FORM_RECOGNIZER_ENDPOINT": "https://mariari-canada-central.cognitiveservices.azure.com/", + "RandomSeed": "273791527" + } +} \ No newline at end of file