Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9330,6 +9330,39 @@
"id": {
"description": "The unique build id of this build result",
"type": "string"
},
"provisioningState": {
"description": "The provisioning state of this build result",
"enum": [
"Queuing",
"Building",
"Succeeded",
"Failed",
"Deleting"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "BuildResultProvisioningState",
"modelAsString": true
}
},
"image": {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shall we use imageTag or containerImage, looks a little confusing.

"description": "The container image of this build result",
"type": "string"
},
"lastTransitionTime": {
"format": "date-time",
"description": "The last transition time of this build result",
"type": "string"
},
"lastTransitionReason": {
"description": "The last transition reason of this build result",
"type": "string"
},
"lastTransitionStatus": {
"description": "The last transition status of this build result",
"type": "string"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@
"environmentVariable": "test"
},
"triggeredBuildResult": {
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builds/mybuild/results/123"
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builds/mybuild/results/123",
"provisioningState": "Queuing",
"image": "acr123.azurec.io/result-123",
"lastTransitionTime": "2021-08-11T03:17:03.944Z",
"lastTransitionReason": "CONFIG",
"lastTransitionStatus": "False"
},
"resourceRequests": {
"cpu": "1",
Expand Down