Class DocumentModelAdministrationClient

java.lang.Object
com.azure.ai.formrecognizer.documentanalysis.administration.DocumentModelAdministrationClient

public final class DocumentModelAdministrationClient extends Object
This class provides a synchronous client that contains model management the operations that apply to Azure Form Recognizer. Operations allowed by the client are creating, building of custom document analysis models, deleting models, listing models, copying a custom-built model to another Form Recognizer account, composing models from component models, getting operation information and getting resource details.

Instantiating a synchronous Document Model Administration Client

 DocumentModelAdministrationClient documentModelAdministrationClient =
     new DocumentModelAdministrationClientBuilder().buildClient();
 
See Also:
  • Method Details

    • getDocumentAnalysisClient

      public DocumentAnalysisClient getDocumentAnalysisClient()
      Creates a new DocumentAnalysisClient object. The new DocumentAnalysisClient uses the same request policy pipeline as the DocumentAnalysisClient.
      Returns:
      A new DocumentAnalysisClient object.
    • beginBuildDocumentModel

      public com.azure.core.util.polling.SyncPoller<OperationResult,DocumentModelDetails> beginBuildDocumentModel(String blobContainerUrl, DocumentModelBuildMode buildMode)
      Builds a custom document analysis model.

      Models are built using documents that are of the following content type - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff', image/bmp. Other type of content is ignored.

      The service does not support cancellation of the long running operation and returns with an error message indicating absence of cancellation support.

      Code sample

       String blobContainerUrl = "{SAS-URL-of-your-container-in-blob-storage}";
       DocumentModelDetails documentModelDetails
           = documentModelAdministrationClient.beginBuildDocumentModel(blobContainerUrl,
               DocumentModelBuildMode.TEMPLATE)
           .getFinalResult();
      
       System.out.printf("Model ID: %s%n", documentModelDetails.getModelId());
       System.out.printf("Model Created on: %s%n", documentModelDetails.getCreatedOn());
       documentModelDetails.getDocumentTypes().forEach((key, documentTypeDetails) -> {
           documentTypeDetails.getFieldSchema().forEach((field, documentFieldSchema) -> {
               System.out.printf("Field: %s", field);
               System.out.printf("Field type: %s", documentFieldSchema.getType());
               System.out.printf("Field confidence: %.2f", documentTypeDetails.getFieldConfidence().get(field));
           });
       });
       
      Parameters:
      blobContainerUrl - an Azure Storage blob container's SAS URI. A container URI (without SAS) can be used if the container is public or has a managed identity configured. For more information on setting up a training data set, see: here.
      buildMode - the preferred technique for creating models. For faster training of models use DocumentModelBuildMode.TEMPLATE. See here for more information on building mode for custom documents.
      Returns:
      A SyncPoller that polls the building model operation until it has completed, has failed, or has been cancelled. The completed operation returns the trained custom document analysis model.
      Throws:
      com.azure.core.exception.HttpResponseException - If building model fails with OperationStatus.FAILED is created.
      NullPointerException - If blobContainerUrl is null.
    • beginBuildDocumentModel

      public com.azure.core.util.polling.SyncPoller<OperationResult,DocumentModelDetails> beginBuildDocumentModel(String blobContainerUrl, DocumentModelBuildMode buildMode, String prefix, BuildDocumentModelOptions buildDocumentModelOptions, com.azure.core.util.Context context)
      Builds a custom document analysis model.

      Models are built using documents that are of the following content type - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff', image/bmp. Other type of content is ignored.

      The service does not support cancellation of the long running operation and returns with an error message indicating absence of cancellation support.

      Code sample

       String blobContainerUrl = "{SAS-URL-of-your-container-in-blob-storage}";
       String modelId = "custom-model-id";
       String prefix = "Invoice";
       Map<String, String> attrs = new HashMap<String, String>();
       attrs.put("createdBy", "sample");
      
       DocumentModelDetails documentModelDetails
           = documentModelAdministrationClient.beginBuildDocumentModel(blobContainerUrl,
               DocumentModelBuildMode.TEMPLATE,
               prefix,
               new BuildDocumentModelOptions()
                   .setModelId(modelId)
                   .setDescription("model desc")
                   .setTags(attrs),
               Context.NONE)
           .getFinalResult();
      
       System.out.printf("Model ID: %s%n", documentModelDetails.getModelId());
       System.out.printf("Model Description: %s%n", documentModelDetails.getDescription());
       System.out.printf("Model Created on: %s%n", documentModelDetails.getCreatedOn());
       System.out.printf("Model assigned tags: %s%n", documentModelDetails.getTags());
       documentModelDetails.getDocumentTypes().forEach((key, documentTypeDetails) -> {
           documentTypeDetails.getFieldSchema().forEach((field, documentFieldSchema) -> {
               System.out.printf("Field: %s", field);
               System.out.printf("Field type: %s", documentFieldSchema.getType());
               System.out.printf("Field confidence: %.2f", documentTypeDetails.getFieldConfidence().get(field));
           });
       });
       
      Parameters:
      blobContainerUrl - an Azure Storage blob container's SAS URI. A container URI (without SAS) can be used if the container is public or has a managed identity configured. For more information on setting up a training data set, see: here.
      buildMode - the preferred technique for creating models. For faster training of models use DocumentModelBuildMode.TEMPLATE. See here for more information on building mode for custom documents.
      prefix - case-sensitive prefix blob name prefix to filter documents for training.
      buildDocumentModelOptions - The configurable options to pass when building a custom document analysis model.
      context - Additional context that is passed through the Http pipeline during the service call.
      Returns:
      A SyncPoller that polls the building model operation until it has completed, has failed, or has been cancelled. The completed operation returns the built custom document analysis model.
      Throws:
      com.azure.core.exception.HttpResponseException - If building the model fails with OperationStatus.FAILED is created.
      NullPointerException - If blobContainerUrl is null.
    • getResourceDetails

      public ResourceDetails getResourceDetails()
      Get information about the current Form Recognizer resource.

      Code sample

       ResourceDetails resourceDetails = documentModelAdministrationClient.getResourceDetails();
       System.out.printf("Max number of models that can be build for this account: %d%n",
           resourceDetails.getCustomDocumentModelLimit());
       System.out.printf("Current count of built document analysis models: %d%n",
           resourceDetails.getCustomDocumentModelCount());
       
      Returns:
      The requested resource information details.
    • getResourceDetailsWithResponse

      public com.azure.core.http.rest.Response<ResourceDetails> getResourceDetailsWithResponse(com.azure.core.util.Context context)
      Get information about the current Form recognizer resource with a Http response and a specified Context.

      Code sample

       Response<ResourceDetails> response =
           documentModelAdministrationClient.getResourceDetailsWithResponse(Context.NONE);
       System.out.printf("Response Status Code: %d.", response.getStatusCode());
       ResourceDetails resourceDetails = response.getValue();
       System.out.printf("Max number of models that can be build for this account: %d%n",
           resourceDetails.getCustomDocumentModelLimit());
       System.out.printf("Current count of built document analysis models: %d%n",
           resourceDetails.getCustomDocumentModelCount());
       
      Parameters:
      context - Additional context that is passed through the Http pipeline during the service call.
      Returns:
      The requested resource information details.
    • deleteDocumentModel

      public void deleteDocumentModel(String modelId)
      Deletes the specified custom document analysis model.

      Code sample

       String modelId = "{custom-model-id}";
       documentModelAdministrationClient.deleteDocumentModel(modelId);
       System.out.printf("Model ID: %s is deleted.%n", modelId);
       
      Parameters:
      modelId - The unique model identifier.
      Throws:
      IllegalArgumentException - If modelId is null or empty.
    • deleteDocumentModelWithResponse

      public com.azure.core.http.rest.Response<Void> deleteDocumentModelWithResponse(String modelId, com.azure.core.util.Context context)
      Deletes the specified custom document analysis model.

      Code sample

       String modelId = "{custom-model-id}";
       Response<Void> response
           = documentModelAdministrationClient.deleteDocumentModelWithResponse(modelId, Context.NONE);
       System.out.printf("Response Status Code: %d.", response.getStatusCode());
       System.out.printf("Model ID: %s is deleted.%n", modelId);
       
      Parameters:
      modelId - The unique model identifier.
      context - Additional context that is passed through the Http pipeline during the service call.
      Returns:
      A Response containing containing status code and HTTP headers.
      Throws:
      IllegalArgumentException - If modelId is null or empty.
    • getCopyAuthorization

      public DocumentModelCopyAuthorization getCopyAuthorization()
      Generate authorization for copying a custom model into the target Form Recognizer resource.

      This should be called by the target resource (where the model will be copied to) and the output can be passed as the target parameter into beginCopyDocumentModelTo(String, DocumentModelCopyAuthorization).

      Code sample

       DocumentModelCopyAuthorization documentModelCopyAuthorization
           = documentModelAdministrationClient.getCopyAuthorization();
       System.out.printf("Copy Authorization for model id: %s, access token: %s, expiration time: %s, "
               + "target resource ID; %s, target resource region: %s%n",
           documentModelCopyAuthorization.getTargetModelId(),
           documentModelCopyAuthorization.getAccessToken(),
           documentModelCopyAuthorization.getExpiresOn(),
           documentModelCopyAuthorization.getTargetResourceId(),
           documentModelCopyAuthorization.getTargetResourceRegion()
       );
       
      Returns:
      The DocumentModelCopyAuthorization
    • getCopyAuthorizationWithResponse

      public com.azure.core.http.rest.Response<DocumentModelCopyAuthorization> getCopyAuthorizationWithResponse(CopyAuthorizationOptions copyAuthorizationOptions, com.azure.core.util.Context context)
      Generate authorization for copying a custom model into the target Form Recognizer resource.

      This should be called by the target resource (where the model will be copied to) and the output can be passed as the target parameter into beginCopyDocumentModelTo(String, DocumentModelCopyAuthorization).

      Parameters:
      copyAuthorizationOptions - The configurable options to pass when copying a model.
      context - Additional context that is passed through the Http pipeline during the service call.

      Code sample

       String modelId = "my-copied-model";
       Map<String, String> attrs = new HashMap<String, String>();
       attrs.put("createdBy", "sample");
      
       Response<DocumentModelCopyAuthorization> copyAuthorizationResponse =
           documentModelAdministrationClient.getCopyAuthorizationWithResponse(
               new CopyAuthorizationOptions()
                   .setModelId(modelId)
                   .setDescription("model-desc")
                   .setTags(attrs),
               Context.NONE);
      
       System.out.printf("Copy Authorization operation returned with status: %s",
           copyAuthorizationResponse.getStatusCode());
       DocumentModelCopyAuthorization documentModelCopyAuthorization = copyAuthorizationResponse.getValue();
       System.out.printf("Copy Authorization for model id: %s, access token: %s, "
               + "expiration time: %s, target resource ID; %s, target resource region: %s%n",
           documentModelCopyAuthorization.getTargetModelId(),
           documentModelCopyAuthorization.getAccessToken(),
           documentModelCopyAuthorization.getExpiresOn(),
           documentModelCopyAuthorization.getTargetResourceId(),
           documentModelCopyAuthorization.getTargetResourceRegion()
       );
       
      Returns:
      A Response containing the DocumentModelCopyAuthorization
    • beginComposeDocumentModel

      public com.azure.core.util.polling.SyncPoller<OperationResult,DocumentModelDetails> beginComposeDocumentModel(List<String> componentModelIds)
      Create a composed model from the provided list of existing models in the account.

      This operations fails if the list consists of an invalid, non-existing model Id or duplicate IDs.

      The service does not support cancellation of the long running operation and returns with an error message indicating absence of cancellation support.

      Code sample

       String modelId1 = "{custom-model-id_1}";
       String modelId2 = "{custom-model-id_2}";
       final DocumentModelDetails documentModelDetails
           = documentModelAdministrationClient.beginComposeDocumentModel(Arrays.asList(modelId1, modelId2))
           .getFinalResult();
      
       System.out.printf("Model ID: %s%n", documentModelDetails.getModelId());
       System.out.printf("Model Description: %s%n", documentModelDetails.getDescription());
       System.out.printf("Model Created on: %s%n", documentModelDetails.getCreatedOn());
       documentModelDetails.getDocumentTypes().forEach((key, documentTypeDetails) -> {
           documentTypeDetails.getFieldSchema().forEach((field, documentFieldSchema) -> {
               System.out.printf("Field: %s", field);
               System.out.printf("Field type: %s", documentFieldSchema.getType());
               System.out.printf("Field confidence: %.2f", documentTypeDetails.getFieldConfidence().get(field));
           });
       });
       
      Parameters:
      componentModelIds - The list of models IDs to form the composed model.
      Returns:
      A SyncPoller that polls the create composed model operation until it has completed, has failed, or has been cancelled. The completed operation returns the composed model.
      Throws:
      com.azure.core.exception.HttpResponseException - If create composed model operation fails and model with OperationStatus.FAILED is created.
      NullPointerException - If the list of componentModelIds is null or empty.
    • beginComposeDocumentModel

      public com.azure.core.util.polling.SyncPoller<OperationResult,DocumentModelDetails> beginComposeDocumentModel(List<String> componentModelIds, ComposeDocumentModelOptions composeDocumentModelOptions, com.azure.core.util.Context context)
      Create a composed model from the provided list of existing models in the account.

      This operations fails if the list consists of an invalid, non-existing model Id or duplicate IDs.

      The service does not support cancellation of the long running operation and returns with an error message indicating absence of cancellation support.

      Code sample

       String modelId1 = "{custom-model-id_1}";
       String modelId2 = "{custom-model-id_2}";
       String modelId = "my-composed-model";
       Map<String, String> attrs = new HashMap<String, String>();
       attrs.put("createdBy", "sample");
      
       final DocumentModelDetails documentModelDetails =
           documentModelAdministrationClient.beginComposeDocumentModel(Arrays.asList(modelId1, modelId2),
                   new ComposeDocumentModelOptions()
                       .setModelId(modelId)
                       .setDescription("my composed model desc")
                       .setTags(attrs),
                   Context.NONE)
               .setPollInterval(Duration.ofSeconds(5))
               .getFinalResult();
      
       System.out.printf("Model ID: %s%n", documentModelDetails.getModelId());
       System.out.printf("Model Description: %s%n", documentModelDetails.getDescription());
       System.out.printf("Model Created on: %s%n", documentModelDetails.getCreatedOn());
       System.out.printf("Model assigned tags: %s%n", documentModelDetails.getTags());
       documentModelDetails.getDocumentTypes().forEach((key, documentTypeDetails) -> {
           documentTypeDetails.getFieldSchema().forEach((field, documentFieldSchema) -> {
               System.out.printf("Field: %s", field);
               System.out.printf("Field type: %s", documentFieldSchema.getType());
               System.out.printf("Field confidence: %.2f", documentTypeDetails.getFieldConfidence().get(field));
           });
       });
       
      Parameters:
      componentModelIds - The list of models IDs to form the composed model.
      composeDocumentModelOptions - The configurable options to pass when creating a composed model.
      context - Additional context that is passed through the HTTP pipeline during the service call.
      Returns:
      A SyncPoller that polls the create composed model operation until it has completed, has failed, or has been cancelled. The completed operation returns the composed model.
      Throws:
      com.azure.core.exception.HttpResponseException - If create composed model operation fails and model with OperationStatus.FAILED is created.
      NullPointerException - If the list of componentModelIds is null or empty.
    • beginCopyDocumentModelTo

      public com.azure.core.util.polling.SyncPoller<OperationResult,DocumentModelDetails> beginCopyDocumentModelTo(String sourceModelId, DocumentModelCopyAuthorization target)
      Copy a custom model stored in this resource (the source) to the user specified target Form Recognizer resource.

      This should be called with the source Form Recognizer resource (with the model that is intended to be copied). The target parameter should be supplied from the target resource's output from getCopyAuthorization() method.

      The service does not support cancellation of the long running operation and returns with an error message indicating absence of cancellation support.

      Code sample

       String copyModelId = "copy-model";
       // Get authorization to copy the model to target resource
       DocumentModelCopyAuthorization documentModelCopyAuthorization
           = documentModelAdministrationClient.getCopyAuthorization();
       // Start copy operation from the source client
       DocumentModelDetails documentModelDetails
           = documentModelAdministrationClient.beginCopyDocumentModelTo(copyModelId, documentModelCopyAuthorization)
               .getFinalResult();
       System.out.printf("Copied model has model ID: %s, was created on: %s.%n,",
           documentModelDetails.getModelId(),
           documentModelDetails.getCreatedOn());
       
      Parameters:
      sourceModelId - Model identifier of the source model to copy to target resource.
      target - the copy authorization to the target Form Recognizer resource. The copy authorization can be generated from the target resource's call to getCopyAuthorization()
      Returns:
      A SyncPoller that polls the copy model operation until it has completed, has failed, or has been cancelled.
    • beginCopyDocumentModelTo

      public com.azure.core.util.polling.SyncPoller<OperationResult,DocumentModelDetails> beginCopyDocumentModelTo(String sourceModelId, DocumentModelCopyAuthorization target, com.azure.core.util.Context context)
      Copy a custom model stored in this resource (the source) to the user specified target Form Recognizer resource.

      This should be called with the source Form Recognizer resource (with the model that is intended to be copied). The target parameter should be supplied from the target resource's output from getCopyAuthorization() method.

      The service does not support cancellation of the long running operation and returns with an error message indicating absence of cancellation support.

      Code sample

       String copyModelId = "copy-model";
       // Get authorization to copy the model to target resource
       DocumentModelCopyAuthorization documentModelCopyAuthorization
           = documentModelAdministrationClient.getCopyAuthorization();
       // Start copy operation from the source client
       DocumentModelDetails documentModelDetails =
           documentModelAdministrationClient.beginCopyDocumentModelTo(copyModelId,
                   documentModelCopyAuthorization,
                   Context.NONE)
               .getFinalResult();
       System.out.printf("Copied model has model ID: %s, was created on: %s.%n,",
           documentModelDetails.getModelId(),
           documentModelDetails.getCreatedOn());
       
      Parameters:
      sourceModelId - Model identifier of the model to copy to target resource.
      target - the copy authorization to the target Form Recognizer resource. The copy authorization can be generated from the target resource's call to getCopyAuthorization().
      context - Additional context that is passed through the HTTP pipeline during the service call.
      Returns:
      A SyncPoller that polls the copy model operation until it has completed, has failed, or has been cancelled.
    • listDocumentModels

      public com.azure.core.http.rest.PagedIterable<DocumentModelSummary> listDocumentModels()
      List information for each model on the Form Recognizer account that were built successfully.

      Code sample

       documentModelAdministrationClient.listDocumentModels()
           .forEach(documentModel ->
               System.out.printf("Model ID: %s, Model description: %s, Created on: %s.%n",
                   documentModel.getModelId(),
                   documentModel.getDescription(),
                   documentModel.getCreatedOn())
           );
       
      Returns:
      PagedIterable of DocumentModelSummary custom form model information.
    • listDocumentModels

      public com.azure.core.http.rest.PagedIterable<DocumentModelSummary> listDocumentModels(com.azure.core.util.Context context)
      List information for each model on the Form Recognizer account that were built successfully with a Http response and a specified Context.

      Code sample

       documentModelAdministrationClient.listDocumentModels(Context.NONE)
           .forEach(documentModel ->
               System.out.printf("Model ID: %s, Model description: %s, Created on: %s.%n",
                   documentModel.getModelId(),
                   documentModel.getDescription(),
                   documentModel.getCreatedOn())
           );
       
      Parameters:
      context - Additional context that is passed through the Http pipeline during the service call.
      Returns:
      PagedIterable of DocumentModelSummary custom form model information.
    • getDocumentModel

      public DocumentModelDetails getDocumentModel(String modelId)
      Get detailed information for a specified model ID.

      Code sample

       String modelId = "{custom-model-id}";
       DocumentModelDetails documentModelDetails = documentModelAdministrationClient.getDocumentModel(modelId);
       System.out.printf("Model ID: %s%n", documentModelDetails.getModelId());
       System.out.printf("Model Description: %s%n", documentModelDetails.getDescription());
       System.out.printf("Model Created on: %s%n", documentModelDetails.getCreatedOn());
       documentModelDetails.getDocumentTypes().forEach((key, documentTypeDetails) -> {
           documentTypeDetails.getFieldSchema().forEach((field, documentFieldSchema) -> {
               System.out.printf("Field: %s", field);
               System.out.printf("Field type: %s", documentFieldSchema.getType());
               System.out.printf("Field confidence: %.2f", documentTypeDetails.getFieldConfidence().get(field));
           });
       });
       
      Parameters:
      modelId - The unique model identifier.
      Returns:
      The detailed information for the specified model.
      Throws:
      IllegalArgumentException - If modelId is null or empty.
    • getDocumentModelWithResponse

      public com.azure.core.http.rest.Response<DocumentModelDetails> getDocumentModelWithResponse(String modelId, com.azure.core.util.Context context)
      Get detailed information for a specified model ID.

      Code sample

       String modelId = "{custom-model-id}";
       Response<DocumentModelDetails> response
           = documentModelAdministrationClient.getDocumentModelWithResponse(modelId, Context.NONE);
       System.out.printf("Response Status Code: %d.", response.getStatusCode());
       DocumentModelDetails documentModelDetails = response.getValue();
       System.out.printf("Model ID: %s%n", documentModelDetails.getModelId());
       System.out.printf("Model Description: %s%n", documentModelDetails.getDescription());
       System.out.printf("Model Created on: %s%n", documentModelDetails.getCreatedOn());
       documentModelDetails.getDocumentTypes().forEach((key, documentTypeDetails) -> {
           documentTypeDetails.getFieldSchema().forEach((field, documentFieldSchema) -> {
               System.out.printf("Field: %s", field);
               System.out.printf("Field type: %s", documentFieldSchema.getType());
               System.out.printf("Field confidence: %.2f", documentTypeDetails.getFieldConfidence().get(field));
           });
       });
       
      Parameters:
      modelId - The unique model identifier.
      context - Additional context that is passed through the Http pipeline during the service call.
      Returns:
      The detailed information for the specified model.
      Throws:
      IllegalArgumentException - If modelId is null or empty.
    • getOperation

      public OperationDetails getOperation(String operationId)
      Get detailed operation information for the specified ID with Http response.

      This operations fails if the operation ID used is past 24 hours.

      Code sample

       String operationId = "{operation-id}";
       OperationDetails operationDetails
           = documentModelAdministrationClient.getOperation(operationId);
       System.out.printf("Operation ID: %s%n", operationDetails.getOperationId());
       System.out.printf("Operation Kind: %s%n", operationDetails.getKind());
       System.out.printf("Operation Status: %s%n", operationDetails.getStatus());
       System.out.printf("Model ID created with this operation: %s%n",
           ((DocumentModelBuildOperationDetails) operationDetails).getResult().getModelId());
       if (OperationStatus.FAILED.equals(operationDetails.getStatus())) {
           System.out.printf("Operation fail error: %s%n", operationDetails.getError().getMessage());
       }
       
      Parameters:
      operationId - Unique operation ID.
      Returns:
      The detailed information for the specified operation.
      Throws:
      IllegalArgumentException - If operationId is null or empty.
    • getOperationWithResponse

      public com.azure.core.http.rest.Response<OperationDetails> getOperationWithResponse(String operationId, com.azure.core.util.Context context)
      Get detailed operation information for the specified ID with Http response.

      This operations fails if the operation ID used is past 24 hours.

      Code sample

       String operationId = "{operation-id}";
       Response<OperationDetails> response =
           documentModelAdministrationClient.getOperationWithResponse(operationId, Context.NONE);
       System.out.printf("Response Status Code: %d.", response.getStatusCode());
       OperationDetails operationDetails = response.getValue();
       System.out.printf("Operation ID: %s%n", operationDetails.getOperationId());
       System.out.printf("Operation Kind: %s%n", operationDetails.getKind());
       System.out.printf("Operation Status: %s%n", operationDetails.getStatus());
       System.out.printf("Model ID created with this operation: %s%n",
           ((DocumentModelBuildOperationDetails) operationDetails).getResult().getModelId());
       if (OperationStatus.FAILED.equals(operationDetails.getStatus())) {
           System.out.printf("Operation fail error: %s%n", operationDetails.getError().getMessage());
       }
       
      Parameters:
      operationId - Unique operation ID.
      context - Additional context that is passed through the Http pipeline during the service call.
      Returns:
      The detailed information for the specified operation.
      Throws:
      IllegalArgumentException - If operationId is null or empty.
    • listOperations

      public com.azure.core.http.rest.PagedIterable<OperationSummary> listOperations()
      List information for each model operation on the Form Recognizer account in the past 24 hours.

      Code sample

       PagedIterable<OperationSummary>
           modelOperationInfo = documentModelAdministrationClient.listOperations();
       modelOperationInfo.forEach(modelOperationSummary -> {
           System.out.printf("Operation ID: %s%n", modelOperationSummary.getOperationId());
           System.out.printf("Operation Status: %s%n", modelOperationSummary.getStatus());
           System.out.printf("Operation Created on: %s%n", modelOperationSummary.getCreatedOn());
           System.out.printf("Operation Percent completed: %d%n", modelOperationSummary.getPercentCompleted());
           System.out.printf("Operation Kind: %s%n", modelOperationSummary.getKind());
           System.out.printf("Operation Last updated on: %s%n", modelOperationSummary.getLastUpdatedOn());
           System.out.printf("Operation resource location: %s%n", modelOperationSummary.getResourceLocation());
       });
       
      Returns:
      PagedIterable of OperationSummary custom form model information.
    • listOperations

      public com.azure.core.http.rest.PagedIterable<OperationSummary> listOperations(com.azure.core.util.Context context)
      List information for each operation on the Form Recognizer account in the past 24 hours with an HTTP response and a specified Context.

      Code sample

       PagedIterable<OperationSummary>
           modelOperationInfo = documentModelAdministrationClient.listOperations(Context.NONE);
       modelOperationInfo.forEach(modelOperationSummary -> {
           System.out.printf("Operation ID: %s%n", modelOperationSummary.getOperationId());
           System.out.printf("Operation Status: %s%n", modelOperationSummary.getStatus());
           System.out.printf("Operation Created on: %s%n", modelOperationSummary.getCreatedOn());
           System.out.printf("Operation Percent completed: %d%n", modelOperationSummary.getPercentCompleted());
           System.out.printf("Operation Kind: %s%n", modelOperationSummary.getKind());
           System.out.printf("Operation Last updated on: %s%n", modelOperationSummary.getLastUpdatedOn());
           System.out.printf("Operation resource location: %s%n", modelOperationSummary.getResourceLocation());
       });
       
      Parameters:
      context - Additional context that is passed through the Http pipeline during the service call.
      Returns:
      PagedIterable of OperationSummary custom form model information.