Skip to content

Commit

Permalink
Seeing if readonly error code is breaking
Browse files Browse the repository at this point in the history
  • Loading branch information
jastenze committed Apr 5, 2021
1 parent f432345 commit c0b16f0
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 758 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"body": {
"clientErrorDetails": "string",
"serverErrorDetails": "string",
"errorCode": "NO_ERROR",
"jobId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"outputModelUri": "string",
"jobStatus": "NotStarted",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,29 @@
}
},
"definitions": {
"ConversionErrorCode": {
"enum": [
"UNKNOWN",
"NO_ERROR",
"SERVICE_ERROR",
"INVALID_ASSET_URI",
"INVALID_JOB_ID",
"INVALID_GRAVITY",
"INVALID_SCALE",
"ASSET_SIZE_TOO_LARGE",
"ASSET_DIMENSIONS_OUT_OF_BOUNDS",
"ZERO_FACES",
"INVALID_FACE_VERTICES",
"ZERO_TRAJECTORIES_GENERATED",
"TOO_MANY_RIG_POSES",
"ASSET_CANNOT_BE_CONVERTED"
],
"type": "string",
"x-ms-enum": {
"name": "ConversionErrorCode",
"modelAsString": false
}
},
"JobStatus": {
"enum": [
"NotStarted",
Expand Down Expand Up @@ -334,7 +357,7 @@
}
},
"IngestionProperties": {
"description": "Represents the status of an AOA ingestion job.",
"description": "Represents the status of an AOA asset conversion job.",
"type": "object",
"properties": {
"clientErrorDetails": {
Expand All @@ -347,9 +370,13 @@
"type": "string",
"readOnly": true
},
"errorCode": {
"$ref": "#/definitions/ConversionErrorCode",
"readOnly": true
},
"jobId": {
"format": "uuid",
"description": "Identifier for the AOA Ingestion Job.",
"description": "Identifier for the AOA asset conversion job.",
"type": "string",
"readOnly": true
},
Expand All @@ -368,12 +395,12 @@
},
"inputAssetUri": {
"format": "uri",
"description": "The Uri to the Asset to be ingested by the AOA Ingestion Service. This asset needs to have been uploaded to the service using an endpoint provided from a call to the GetUploadUri API.",
"description": "The Uri to the Asset to be ingested by the AOA asset conversion service. This asset needs to have been uploaded to the service using an endpoint provided from a call to the GetUploadUri API.",
"type": "string"
},
"accountId": {
"format": "uuid",
"description": "Identifier for the Account owning the AOA Ingestion Job.",
"description": "Identifier for the Account owning the asset conversion job.",
"type": "string",
"readOnly": true
},
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit c0b16f0

Please sign in to comment.