Given a Jenkins build using the
Remote Access API, is it possible to create Secret Text values?
Also, is it possible to specify that a Build should use a particular Binding, as well as its corresponding environment variable?
Example (of what I'm looking for):
PUT JENKINS_URL/build/1234/plugins w/ body { "key": FOO, "binding_name_to_use": FOO_BINDING }
I'd expect for that POST to set a Binding of "FOO" with a value of "FOO_BINDING" (I'm assuming that FOO_BINDING was already created) to the build "1234."
Does such an API call exist?