Class ImageProcessingBaseClient

java.lang.Object
com.azure.verticals.agrifood.farming.ImageProcessingBaseClient

public final class ImageProcessingBaseClient extends Object
Initializes a new instance of the ImageProcessingBaseClient type.
  • Method Details

    • createRasterizeJob

      public DynamicRequest createRasterizeJob(String jobId)
      Create a ImageProcessing Rasterize job.

      Request Body Schema

      
       {
           farmerId: String
           shapefileAttachmentId: String
           shapefileColumnNames: [
               String
           ]
           id: String
           status: String
           durationInSeconds: Double
           message: String
           createdDateTime: OffsetDateTime
           lastActionDateTime: OffsetDateTime
           startTime: OffsetDateTime
           endTime: OffsetDateTime
           name: String
           description: String
           properties: {
               String: Object
           }
       }
       

      Response Body Schema

      
       (recursive schema, see above)
       
      Parameters:
      jobId - JobId provided by user.
      Returns:
      a DynamicRequest where customizations can be made before sent to the service.
    • getRasterizeJob

      public DynamicRequest getRasterizeJob(String jobId)
      Get ImageProcessing Rasterize job's details.

      Response Body Schema

      
       {
           farmerId: String
           shapefileAttachmentId: String
           shapefileColumnNames: [
               String
           ]
           id: String
           status: String
           durationInSeconds: Double
           message: String
           createdDateTime: OffsetDateTime
           lastActionDateTime: OffsetDateTime
           startTime: OffsetDateTime
           endTime: OffsetDateTime
           name: String
           description: String
           properties: {
               String: Object
           }
       }
       
      Parameters:
      jobId - ID of the job.
      Returns:
      a DynamicRequest where customizations can be made before sent to the service.
    • invoke

      public DynamicRequest invoke()
      Create an empty DynamicRequest with the serializer and pipeline initialized for this client.
      Returns:
      a DynamicRequest where customizations can be made before sent to the service.