You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Version of Bamboo is 6.4.0 rc1.
When we are using REST API request to get child plans of the parent plan, we are recieving the entire list of existing plans.
Example of request:
http: // localhost: 8085 / bamboo / rest / api / latest / dependency / search / ESBDLV9-TEST / child? searchTerm =
But in our case we would like to get only child plans. What would be the correct REST API call in our case?
For information here is the plan with dependencies from the Java specs view.
@BambooSpec
public class PlanSpec {
public Plan plan () {
Final Plan Plan = new Plan (new Project ()
.oid (new BambooOid ("1113k510uyv42")))
.key (new BambooKey ("ESBDLV9"))
.name ("ESB deliveries 9.0")
.description ("ESB deliveries 9.0"),
"Test",
new BambooKey ("TEST"))
.......
.triggers (new RepositoryPollingTrigger ())
.planBranchManagement (new PlanBranchManagement ()
.delete (new BranchCleanup ())
.notificationForCommitters ())
.dependencies (new Dependencies ()
.childPlans (new PlanIdentifier ("ESB9", "IBPORTAL9"),
new PlanIdentifier ("ESB9", "BSCASHDESK")))
.forceStopHungBuilds ();
return plan;
}
public PlanPermissions planPermission () {
final PlanPermissions planPermission = new PlanPermissions (new PlanIdentifier ("ESBDLV9", "TEST"))
.permissions (new Permissions ()
........
return planPermission;
}
public static void main (String ... argv) {
// By default credentials are read from the '.credentials' file.
BambooServer bambooServer = new BambooServer ("http: // localhost: 8080 / bamboo");
final PlanSpec planSpec = new PlanSpec ();
final Plan plan = planSpec.plan ();
bambooServer.publish (plan);
final PlanPermissions planPermission = planSpec.planPermission ();
bambooServer.publish (planPermission);
}
}
Hi Timoschenko,
Thanks for your question!
The reason you are getting the entire list of the plans is that the API response is expected to give all plans that would be available to use as a child dependency.
So if we don't specify a search term, then all plans that are available to use as a child dependency will be returned.
For your specific requirement, there is already an open feature request which you can access here - https://jira.atlassian.com/browse/BAM-18429
Thanks,
Robhit
Hi Robhit,
I have child build that is called "ESBDLV9-ATEST".
How can I compose the API call in order to get the last parent build name as the screenshot below.
How to use searchTerm correctly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.