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 @@ -5012,6 +5012,14 @@
"hostName": {
"description": "GitHub Enterprise host name. For example: https://github.mydomain.com",
"type": "string"
},
"clientId": {
"description": "GitHub bring your own app client id.",
"type": "string"
},
"clientSecret": {
"$ref": "#/definitions/GitHubClientSecret",
"description": "GitHub bring your own app client secret information."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1050,6 +1050,20 @@
}
}
},
"GitHubClientSecret": {
"description": "Client secret information for factory's bring your own app repository configuration",
"type": "object",
"properties": {
"byoaSecretAkvUrl": {
"description": "Bring your own app client secret AKV URL",
"type": "string"
},
"byoaSecretName": {
"description": "Bring your own app client secret name in AKV",
"type": "string"
}
}
},
"WorkspaceRepositoryConfiguration": {
"description": "Git integration settings",
"type": "object",
Expand Down Expand Up @@ -1090,6 +1104,14 @@
"description": "The VSTS tenant ID",
"type": "string",
"format": "uuid"
},
"clientId": {
"description": "GitHub bring your own app client id",
"type": "string"
},
"clientSecret": {
"$ref": "#/definitions/GitHubClientSecret",
"description": "GitHub bring your own app client secret information."
}
}
},
Expand Down