Add pipeline definition variables and variable group management tools #1044
ryangurn
started this conversation in
Backlog of Suggestions
Replies: 1 comment
-
|
I am more than willing to submit a PR for this. I have already created this via my fork. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
Add 7 new tools to the existing Pipelines domain for managing pipeline definition variables and variable groups.
Tools
Develop the following tools with full parameter support, including optional ones:
pipelines_get_definition_variables: Get variables defined on a pipeline/build definition.Endpoint: SDK
getBuildApi().getDefinition()— returnsdefinition.variablespipelines_update_definition_variables: Update variables on a pipeline/build definition.Endpoint: SDK
getBuildApi().getDefinition()+getBuildApi().updateDefinition()— merges with existing variablespipelines_list_variable_groups: List variable groups for a project.Endpoint: SDK
getTaskAgentApi().getVariableGroups()pipelines_get_variable_group: Get a variable group by ID.Endpoint: SDK
getTaskAgentApi().getVariableGroup()pipelines_create_variable_group: Create a new variable group with variables.Endpoint: SDK
getTaskAgentApi().addVariableGroup()pipelines_update_variable_group: Update a variable group's name, description, or variables.Endpoint: SDK
getTaskAgentApi().getVariableGroup()+getTaskAgentApi().updateVariableGroup()— merges with existing variablespipelines_delete_variable_group: Delete a variable group.Endpoint: SDK
getTaskAgentApi().deleteVariableGroup()Rules
Beta Was this translation helpful? Give feedback.
All reactions