Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
fix swagger of build service (#43)
* fix swagger of build service

* fix
  • Loading branch information
smile37773 authored Nov 26, 2021
commit e9d6a0f019a970c071e6be4792fe69fc1d78b129
Original file line number Diff line number Diff line change
Expand Up @@ -1741,7 +1741,7 @@
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/buildServices/{buildServiceName}/builds/{buildName}/results/{buildResultName}/getLog": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/buildServices/{buildServiceName}/builds/{buildName}/results/{buildResultName}/getLogFileUrl": {
"post": {
"tags": [
"AppPlatform"
Expand Down Expand Up @@ -6403,7 +6403,7 @@
"modelAsString": true
}
},
"runtimeState": {
"resourceRequests": {
"description": "The runtime resource configuration of this build service.",
"type": "object",
"properties": {
Expand Down Expand Up @@ -6464,7 +6464,7 @@
"type": "string"
},
"builder": {
"description": "The name of builder to build the source code",
"description": "The resource id of builder to build the source code",
"type": "string"
},
"provisioningState": {
Expand Down Expand Up @@ -6499,6 +6499,7 @@
"TriggeredBuildResult": {
"description": "The build result triggered by a build",
"type": "object",
"readOnly": true,
"properties": {
"id": {
"description": "The unique build id of this build result",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"buildName": "mybuild",
"build": {
"properties": {
"builder": "default-builder",
"builder": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default",
"relativePath": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777",
"env": {
"environmentVariable": "test"
Expand All @@ -20,7 +20,7 @@
"200": {
"body": {
"properties": {
"builder": "default-builder",
"builder": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default",
"provisioningState": "Succeeded",
"relativePath": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777",
"env": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"properties": {
"kPackVersion": "0.3.1",
"provisioningState": "Succeeded",
"runtimeState": {
"resourceRequests": {
"cpu": "200m",
"memory": "4Gi"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"properties": {
"kPackVersion": "0.3.1",
"provisioningState": "Succeeded",
"runtimeState": {
"resourceRequests": {
"cpu": "200m",
"memory": "4Gi"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"value": [
{
"properties": {
"builder": "default-builder",
"builder": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default",
"provisioningState": "Succeeded",
"relativePath": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777",
"env": {
Expand Down