Documentation ¶
Index ¶
- func GetSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- func ListSources(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- func PostSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- func PutSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- func TestConnection(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- type JenkinsResponse
- type JenkinsSource
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetSource ¶
func GetSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
GET /plugins/jenkins/sources/:sourceId
func ListSources ¶
func ListSources(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
GET /plugins/jenkins/sources
func PostSource ¶
func PostSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
POST /plugins/jenkins/sources
{ "Endpoint": "your-endpoint", "Username": "your-username", "Password": "your-password", }
func PutSource ¶
func PutSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
PUT /plugins/jenkins/sources/:sourceId
{ "Endpoint": "your-endpoint", "Username": "your-username", "Password": "your-password", }
func TestConnection ¶ added in v0.6.0
func TestConnection(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
Types ¶
type JenkinsResponse ¶ added in v0.9.0
type JenkinsResponse struct { ID int Name string JenkinsSource }
func GetSourceFromEnv ¶
func GetSourceFromEnv() (*JenkinsResponse, error)
type JenkinsSource ¶
type JenkinsSource struct { Endpoint string `mapstructure:"JENKINS_ENDPOINT" validate:"required"` Username string `mapstructure:"JENKINS_USERNAME" validate:"required"` Password string `mapstructure:"JENKINS_PASSWORD" validate:"required"` Proxy string `mapstructure:"JENKINS_PROXY"` }
This object conforms to what the frontend currently sends.
Click to show internal directories.
Click to hide internal directories.