Commit 9dc6e9ee authored by Johan Brandhorst's avatar Johan Brandhorst Committed by Sander van Harmelen

Add ability to paginate build variables (#159)

parent 5cbbc607
...@@ -8,14 +8,14 @@ import ( ...@@ -8,14 +8,14 @@ import (
// BuildVariablesService handles communication with the project variables related methods // BuildVariablesService handles communication with the project variables related methods
// of the Gitlab API // of the Gitlab API
// //
// Gitlab API Docs : https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/build_variables.md // Gitlab API Docs : https://docs.gitlab.com/ce/api/build_variables.html
type BuildVariablesService struct { type BuildVariablesService struct {
client *Client client *Client
} }
// BuildVariable represents a variable available for each build of the given project // BuildVariable represents a variable available for each build of the given project
// //
// Gitlab API Docs : https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/build_variables.md // Gitlab API Docs : https://docs.gitlab.com/ce/api/build_variables.html
type BuildVariable struct { type BuildVariable struct {
Key string `json:"key"` Key string `json:"key"`
Value string `json:"value"` Value string `json:"value"`
...@@ -28,7 +28,7 @@ func (v BuildVariable) String() string { ...@@ -28,7 +28,7 @@ func (v BuildVariable) String() string {
// ListBuildVariablesOptions are the parameters to ListBuildVariables() // ListBuildVariablesOptions are the parameters to ListBuildVariables()
// //
// Gitlab API Docs: // Gitlab API Docs:
// https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/build_variables.md#list-project-variables // https://docs.gitlab.com/ce/api/build_variables.html#list-project-variables
type ListBuildVariablesOptions struct { type ListBuildVariablesOptions struct {
ListOptions ListOptions
} }
...@@ -36,7 +36,7 @@ type ListBuildVariablesOptions struct { ...@@ -36,7 +36,7 @@ type ListBuildVariablesOptions struct {
// ListBuildVariables gets the a list of project variables in a project // ListBuildVariables gets the a list of project variables in a project
// //
// Gitlab API Docs: // Gitlab API Docs:
// https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/build_variables.md#list-project-variables // https://docs.gitlab.com/ce/api/build_variables.html#list-project-variables
func (s *BuildVariablesService) ListBuildVariables(pid interface{}, opts *ListBuildVariablesOptions, options ...OptionFunc) ([]*BuildVariable, *Response, error) { func (s *BuildVariablesService) ListBuildVariables(pid interface{}, opts *ListBuildVariablesOptions, options ...OptionFunc) ([]*BuildVariable, *Response, error) {
project, err := parseID(pid) project, err := parseID(pid)
if err != nil { if err != nil {
...@@ -61,7 +61,7 @@ func (s *BuildVariablesService) ListBuildVariables(pid interface{}, opts *ListBu ...@@ -61,7 +61,7 @@ func (s *BuildVariablesService) ListBuildVariables(pid interface{}, opts *ListBu
// GetBuildVariable gets a single project variable of a project // GetBuildVariable gets a single project variable of a project
// //
// Gitlab API Docs: // Gitlab API Docs:
// https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/build_variables.md#show-variable-details // https://docs.gitlab.com/ce/api/build_variables.html#show-variable-details
func (s *BuildVariablesService) GetBuildVariable(pid interface{}, key string, options ...OptionFunc) (*BuildVariable, *Response, error) { func (s *BuildVariablesService) GetBuildVariable(pid interface{}, key string, options ...OptionFunc) (*BuildVariable, *Response, error) {
project, err := parseID(pid) project, err := parseID(pid)
if err != nil { if err != nil {
...@@ -86,7 +86,7 @@ func (s *BuildVariablesService) GetBuildVariable(pid interface{}, key string, op ...@@ -86,7 +86,7 @@ func (s *BuildVariablesService) GetBuildVariable(pid interface{}, key string, op
// CreateBuildVariable creates a variable for a given project // CreateBuildVariable creates a variable for a given project
// //
// Gitlab API Docs: // Gitlab API Docs:
// https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/build_variables.md#create-variable // https://docs.gitlab.com/ce/api/build_variables.html#create-variable
func (s *BuildVariablesService) CreateBuildVariable(pid interface{}, key, value string, options ...OptionFunc) (*BuildVariable, *Response, error) { func (s *BuildVariablesService) CreateBuildVariable(pid interface{}, key, value string, options ...OptionFunc) (*BuildVariable, *Response, error) {
project, err := parseID(pid) project, err := parseID(pid)
if err != nil { if err != nil {
...@@ -112,7 +112,7 @@ func (s *BuildVariablesService) CreateBuildVariable(pid interface{}, key, value ...@@ -112,7 +112,7 @@ func (s *BuildVariablesService) CreateBuildVariable(pid interface{}, key, value
// The variable key must exist // The variable key must exist
// //
// Gitlab API Docs: // Gitlab API Docs:
// https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/build_variables.md#update-variable // https://docs.gitlab.com/ce/api/build_variables.html#update-variable
func (s *BuildVariablesService) UpdateBuildVariable(pid interface{}, key, value string, options ...OptionFunc) (*BuildVariable, *Response, error) { func (s *BuildVariablesService) UpdateBuildVariable(pid interface{}, key, value string, options ...OptionFunc) (*BuildVariable, *Response, error) {
project, err := parseID(pid) project, err := parseID(pid)
if err != nil { if err != nil {
...@@ -137,7 +137,7 @@ func (s *BuildVariablesService) UpdateBuildVariable(pid interface{}, key, value ...@@ -137,7 +137,7 @@ func (s *BuildVariablesService) UpdateBuildVariable(pid interface{}, key, value
// RemoveBuildVariable removes a project variable of a given project identified by its key // RemoveBuildVariable removes a project variable of a given project identified by its key
// //
// Gitlab API Docs: // Gitlab API Docs:
// https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/build_variables.md#remove-variable // https://docs.gitlab.com/ce/api/build_variables.html#remove-variable
func (s *BuildVariablesService) RemoveBuildVariable(pid interface{}, key string, options ...OptionFunc) (*Response, error) { func (s *BuildVariablesService) RemoveBuildVariable(pid interface{}, key string, options ...OptionFunc) (*Response, error) {
project, err := parseID(pid) project, err := parseID(pid)
if err != nil { if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment