pullRequests
PullRequest
Bases: BitbucketCloudBase
Bitbucket Cloud pull request endpoint
See https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
|
author
property
User object of the author
close_source_branch
property
close source branch flag
comment_count
property
number of comments
commits
property
Returns generator object for the Commits in the PullRequest
created_on
property
time of creation
declined_reason
property
reason for declining
description
property
pull request description
destination_branch
property
destination branch
destination_commit
property
Destination commit.
has_conflict
property
Returns True if any of the changes in the PR cause conflicts.
id
property
unique pull request id
is_declined
property
True if the pull request was declined
is_merged
property
True if the pull request was merged
is_open
property
True if the pull request is open
is_superseded
property
True if the pull request was superseded
source_branch
property
source branch
source_commit
property
Source commit.
task_count
property
number of tasks
title
property
pull request title
updated_on
property
time of last update
add_task(raw_message)
Adding a task to the pull request in raw format.
This is feature currently undocumented. But confirmed by an Atlassian employee (BCLOUD-16682).
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 |
|
approve()
Approve a pull request if open
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/approve#post
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
349 350 351 352 353 354 355 356 357 |
|
builds()
Returns the latest Build objects for the pull request.
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
271 272 273 274 275 276 277 |
|
comment(raw_message)
Commenting the pull request in raw format
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/comments#post
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
|
comments(q=None, sort=None)
Returns generator object of the comments endpoint
:param q: string: Query string to narrow down the response. :param sort: string: Name of a response property to sort results. See https://developer.atlassian.com/bitbucket/api/2/reference/meta/filtering for details on filtering and sorting.
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/comments#get
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
|
decline()
Decline a pull request
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/decline
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
387 388 389 390 391 392 393 394 395 396 |
|
diff(encoding='utf-8')
Returns PR diff
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/diff
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
233 234 235 236 237 238 239 |
|
diffstat()
Returns a generator object of diffstats
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/diffstat
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
222 223 224 225 226 227 228 229 230 231 |
|
merge(merge_strategy=None, close_source_branch=None)
Merges the pull request if it's open :param merge_strategy: string: Merge strategy (one of PullRequest.MERGE_COMMIT, PullRequest.MERGE_SQUASH, PullRequest.MERGE_FF), if None default merge strategy will be used :param close_source_branch: boolean: Close the source branch after merge, default PR option
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/merge
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
|
participants()
Returns a generator object of participants
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
257 258 259 260 261 262 |
|
patch(encoding='utf-8')
Returns PR patch
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/patch
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
241 242 243 244 245 246 247 |
|
request_changes()
Request changes for the pull request if open
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/request-changes#post
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
368 369 370 371 372 373 374 375 376 |
|
reviewers()
Returns a generator object of reviewers
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
264 265 266 267 268 269 |
|
statuses()
Returns generator object of the statuses endpoint
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/statuses
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
249 250 251 252 253 254 255 |
|
tasks()
Returns generator object of the tasks endpoint
This is feature currently undocumented. But confirmed by an Atlassian employee (BCLOUD-16682).
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
321 322 323 324 325 326 327 328 329 |
|
unapprove()
Unapprove a pull request if open
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/approve#delete
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
359 360 361 362 363 364 365 366 |
|
unrequest_changes()
Unrequest changes for the pull request if open
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/request-changes#delete
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
378 379 380 381 382 383 384 385 |
|
PullRequests
Bases: BitbucketCloudBase
Bitbucket Cloud pull requests
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
create(title, source_branch, destination_branch=None, description=None, close_source_branch=None, reviewers=None)
Creates a new pull requests for a given source branch Be careful, adding this multiple times for the same source branch updates the pull request!
:param title: string: pull request title :param source_branch: string: name of the source branch :param destination_branch: string: name of the destination branch, if None the repository main branch is used :param description: string: pull request description :param close_source_branch: bool: specifies if the source branch should be closed upon merging :param reviewers: list: list of user uuids in curly brackets
:return: Pull Request Object
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests#post
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
|
each(q=None, sort=None)
Returns the list of pull requests in this repository.
:param q: string: Query string to narrow down the response. See https://developer.atlassian.com/bitbucket/api/2/reference/meta/filtering for details. :param sort: string: Name of a response property to sort results. See https://developer.atlassian.com/bitbucket/api/2/reference/meta/filtering for details.
:return: A generator for the PullRequest objects
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests#get
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
get(id)
Returns the pull requests with the requested id in this repository.
:param id: int: The requested pull request id
:return: The requested PullRequest object
API docs: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D#get
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
83 84 85 86 87 88 89 90 91 92 93 |
|
Task
Bases: BitbucketCloudBase
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
|
created_on
property
time of creation
creator
property
User object with user information of the task creator
description
property
The task description.
id
property
Task id.
is_resolved
property
True if the task was already resolved.
resolved_by
property
User object with user information of the task resolver
resolved_on
property
resolve timestamp
delete()
Delete the pullrequest task.
This is feature currently undocumented.
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
477 478 479 480 481 482 483 |
|
update(raw_message)
Update a task in raw format
This is feature currently undocumented.
Source code in server/vendor/atlassian/bitbucket/cloud/repositories/pullRequests.py
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
|