openapi: 3.2.0 info: title: Microsoft Azure Image Processing API version: '1.0' description: 'Operations tagged ImageProcessing across 2 of this provider''s published API definitions: azure-agfoodplatform-data-plane-service-openapi-original.yml, microsoft-azure-data-manager-for-agriculture-data-plane-service-openapi-original.yml. Each path carries the servers of the definition it was published in.' security: - Bearer: [] tags: - name: Image Processing paths: /image-processing/rasterize/{jobId}: put: tags: - Image Processing description: Create a ImageProcessing Rasterize job. operationId: microsoftAzureImageprocessingCreaterasterizejob parameters: - in: path name: jobId description: JobId provided by user. required: true schema: type: string - in: query name: api-version description: The requested API version required: true schema: type: string responses: '202': description: Accepted content: application/json: schema: $ref: '#/components/schemas/ImageProcessingRasterizeJob' default: description: Error headers: x-ms-error-code: x-ms-client-name: ErrorCode schema: type: string x-ms-error-response: true content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' x-ms-long-running-operation: true x-ms-long-running-operation-options: final-state-via: location x-ms-examples: ImageProcessing_CreateRasterizeJob: $ref: ./examples/ImageProcessing_CreateRasterizeJob.json summary: Microsoft Azure Put Image Processing Rasterize Jobid requestBody: content: application/json: schema: $ref: '#/components/schemas/ImageProcessingRasterizeJob' description: Job parameters supplied by user. required: true get: tags: - Image Processing description: Get ImageProcessing Rasterize job's details. operationId: microsoftAzureImageprocessingGetrasterizejob parameters: - in: path name: jobId description: Id of the job. required: true schema: type: string - in: query name: api-version description: The requested API version required: true schema: type: string responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ImageProcessingRasterizeJob' default: description: Error headers: x-ms-error-code: x-ms-client-name: ErrorCode schema: type: string x-ms-error-response: true content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' x-ms-examples: ImageProcessing_GetRasterizeJob: $ref: ./examples/ImageProcessing_GetRasterizeJob.json summary: Microsoft Azure Get Image Processing Rasterize Jobid components: schemas: ImageProcessingRasterizeJob: description: Image Processing Rasterize Job to convert shapefile into tiff file. required: - partyId - shapefileAttachmentId - shapefileColumnNames type: object properties: partyId: description: Party Id. minLength: 1 type: string shapefileAttachmentId: description: Shapefile attachment Id. minLength: 1 type: string shapefileColumnNames: description: List of shapefile column names to create raster attachments. type: array items: type: string id: description: Unique job id. type: string readOnly: true status: description: 'Status of the job. Possible values: ''Waiting'', ''Running'', ''Succeeded'', ''Failed'', ''Cancelled''.' type: string readOnly: true durationInSeconds: format: double description: Duration of the job in seconds. type: number readOnly: true message: description: Status message to capture more details of the job. type: string readOnly: true errorCode: description: Error Code when job failed. type: string readOnly: true createdDateTime: format: date-time description: 'Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.' type: string readOnly: true lastActionDateTime: format: date-time description: 'Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.' type: string readOnly: true startTime: format: date-time description: 'Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.' type: string readOnly: true endTime: format: date-time description: 'Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.' type: string readOnly: true name: description: Name to identify resource. maxLength: 100 minLength: 0 type: string description: description: Textual description of the resource. maxLength: 500 minLength: 0 type: string createdBy: description: Created by user/tenant id. type: string readOnly: true modifiedBy: description: Modified by user/tenant id. type: string readOnly: true properties: description: 'A collection of key value pairs that belongs to the resource. Each pair must not have a key greater than 50 characters and must not have a value greater than 150 characters. Note: A maximum of 25 key value pairs can be provided for a resource and only string, numeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.' type: object additionalProperties: {} example: key1: value1 key2: 123.45 ErrorResponse: description: An error response from the Azure AgPlatform service. See https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses for ErrorResponse reference document. type: object properties: error: $ref: '#/components/schemas/Error' traceId: description: Unique trace Id. type: string Error: description: An error from the Azure AgPlatform service. required: - code - message type: object properties: code: description: Server-defined set of error codes. minLength: 1 type: string message: description: Human-readable representation of the error. minLength: 1 type: string target: description: Target of the error. type: string details: description: Array of details about specific errors that led to this reported error. type: array items: $ref: '#/components/schemas/Error' innererror: $ref: '#/components/schemas/InnerError' InnerError: description: Inner error containing list of errors.See https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#innererror--object for InnerError reference document. type: object properties: code: description: Specific error code than was provided by the containing error. type: string innererror: $ref: '#/components/schemas/InnerError' securitySchemes: Bearer: type: apiKey name: Authorization in: header description: Please provide a valid bearer token for authorized API calls. Note that you might need to clear your browser cache if you tried un-authenticated calls before. x-refined-from: - azure-agfoodplatform-data-plane-service-openapi-original.yml - microsoft-azure-data-manager-for-agriculture-data-plane-service-openapi-original.yml x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/components/parameters/Endpoint'