Branches
Create a new project branch
projects.branches.create(BranchCreateParams**kwargs) -> ProjectBranch
POST/v0/projects/{project}/branches
Retrieve a project branch
projects.branches.retrieve(strbranch, BranchRetrieveParams**kwargs) -> ProjectBranch
GET/v0/projects/{project}/branches/{branch}
List project branches
projects.branches.list(BranchListParams**kwargs) -> SyncPage[BranchListResponse]
GET/v0/projects/{project}/branches
Delete a project branch
projects.branches.delete(strbranch, BranchDeleteParams**kwargs) -> object
DELETE/v0/projects/{project}/branches/{branch}
Rebase a project branch
projects.branches.rebase(strbranch, BranchRebaseParams**kwargs) -> ProjectBranch
PUT/v0/projects/{project}/branches/{branch}/rebase
Reset
projects.branches.reset(strbranch, BranchResetParams**kwargs) -> ProjectBranch
PUT/v0/projects/{project}/branches/{branch}/reset
ModelsExpand Collapse
class ProjectBranch: …
class ProjectBranch: …
A project branch names a line of development for a project. Like a Git branch, it points to a Git commit with a set of config files. In addition, a project branch also points to a set of custom code changes, corresponding to Git branches in the staging repos.
latest_build: Optional[Build]
latest_build: Optional[Build]
targets: Targets
targets: Targets
cli: Optional[BuildTarget]
cli: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
csharp: Optional[BuildTarget]
csharp: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
go: Optional[BuildTarget]
go: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
java: Optional[BuildTarget]
java: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
kotlin: Optional[BuildTarget]
kotlin: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
node: Optional[BuildTarget]
node: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
openapi: Optional[BuildTarget]
openapi: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
php: Optional[BuildTarget]
php: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
python: Optional[BuildTarget]
python: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
ruby: Optional[BuildTarget]
ruby: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
sql: Optional[BuildTarget]
sql: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
terraform: Optional[BuildTarget]
terraform: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
typescript: Optional[BuildTarget]
typescript: Optional[BuildTarget]
commit: Commit
commit: Commit
One of the following:
build: Optional[CheckStep]
build: Optional[CheckStep]
lint: Optional[CheckStep]
lint: Optional[CheckStep]
class BranchListResponse: …
class BranchListResponse: …