Documentation ¶
Index ¶
- type Client
- func (c *Client) AddOrgMember(ctx context.Context, orgRef, userRef string, role gwapitypes.MemberRole) (*gwapitypes.AddOrgMemberResponse, *Response, error)
- func (c *Client) CreateOrg(ctx context.Context, req *gwapitypes.CreateOrgRequest) (*gwapitypes.OrgResponse, *Response, error)
- func (c *Client) CreateOrgInvitation(ctx context.Context, orgRef string, req *gwapitypes.CreateOrgInvitationRequest) (*gwapitypes.OrgInvitationResponse, *Response, error)
- func (c *Client) CreateProject(ctx context.Context, req *gwapitypes.CreateProjectRequest) (*gwapitypes.ProjectResponse, *Response, error)
- func (c *Client) CreateProjectGroup(ctx context.Context, req *gwapitypes.CreateProjectGroupRequest) (*gwapitypes.ProjectGroupResponse, *Response, error)
- func (c *Client) CreateProjectGroupSecret(ctx context.Context, projectGroupRef string, ...) (*gwapitypes.SecretResponse, *Response, error)
- func (c *Client) CreateProjectGroupVariable(ctx context.Context, projectGroupRef string, ...) (*gwapitypes.VariableResponse, *Response, error)
- func (c *Client) CreateProjectSecret(ctx context.Context, projectRef string, req *gwapitypes.CreateSecretRequest) (*gwapitypes.SecretResponse, *Response, error)
- func (c *Client) CreateProjectVariable(ctx context.Context, projectRef string, req *gwapitypes.CreateVariableRequest) (*gwapitypes.VariableResponse, *Response, error)
- func (c *Client) CreateRemoteSource(ctx context.Context, req *gwapitypes.CreateRemoteSourceRequest) (*gwapitypes.RemoteSourceResponse, *Response, error)
- func (c *Client) CreateUser(ctx context.Context, req *gwapitypes.CreateUserRequest) (*gwapitypes.UserResponse, *Response, error)
- func (c *Client) CreateUserLA(ctx context.Context, userRef string, req *gwapitypes.CreateUserLARequest) (*gwapitypes.CreateUserLAResponse, *Response, error)
- func (c *Client) CreateUserToken(ctx context.Context, userRef string, req *gwapitypes.CreateUserTokenRequest) (*gwapitypes.CreateUserTokenResponse, *Response, error)
- func (c *Client) DeleteOrg(ctx context.Context, orgRef string) (*Response, error)
- func (c *Client) DeleteOrgInvitation(ctx context.Context, orgRef string, userRef string) (*Response, error)
- func (c *Client) DeleteProject(ctx context.Context, projectRef string) (*Response, error)
- func (c *Client) DeleteProjectGroup(ctx context.Context, projectGroupRef string) (*Response, error)
- func (c *Client) DeleteProjectGroupSecret(ctx context.Context, projectGroupRef, secretName string) (*Response, error)
- func (c *Client) DeleteProjectGroupVariable(ctx context.Context, projectGroupRef, variableName string) (*Response, error)
- func (c *Client) DeleteProjectLogs(ctx context.Context, projectRef string, runNumber uint64, taskID string, ...) (*Response, error)
- func (c *Client) DeleteProjectSecret(ctx context.Context, projectRef, secretName string) (*Response, error)
- func (c *Client) DeleteProjectVariable(ctx context.Context, projectRef, variableName string) (*Response, error)
- func (c *Client) DeleteRemoteSource(ctx context.Context, rsRef string) (*Response, error)
- func (c *Client) DeleteUser(ctx context.Context, userRef string) (*Response, error)
- func (c *Client) DeleteUserLA(ctx context.Context, userRef, laID string) (*Response, error)
- func (c *Client) DeleteUserLogs(ctx context.Context, userRef string, runNumber uint64, taskID string, ...) (*Response, error)
- func (c *Client) DeleteUserToken(ctx context.Context, userRef, tokenName string) (*Response, error)
- func (c *Client) DisableMaintenance(ctx context.Context, serviceName string) (*Response, error)
- func (c *Client) EnableMaintenance(ctx context.Context, serviceName string) (*Response, error)
- func (c *Client) Export(ctx context.Context, serviceName string) (*Response, error)
- func (c *Client) GetCurrentUser(ctx context.Context) (*gwapitypes.PrivateUserResponse, *Response, error)
- func (c *Client) GetMaintenanceStatus(ctx context.Context, serviceName string) (*gwapitypes.MaintenanceStatusResponse, *Response, error)
- func (c *Client) GetOrg(ctx context.Context, orgRef string) (*gwapitypes.OrgResponse, *Response, error)
- func (c *Client) GetOrgInvitation(ctx context.Context, orgRef, userRef string) (*gwapitypes.OrgInvitationResponse, *Response, error)
- func (c *Client) GetOrgInvitations(ctx context.Context, orgRef string) ([]*gwapitypes.OrgInvitationResponse, *Response, error)
- func (c *Client) GetOrgMembers(ctx context.Context, orgRef string, opts *ListOptions) (*gwapitypes.OrgMembersResponse, *Response, error)
- func (c *Client) GetOrgs(ctx context.Context, opts *ListOptions) ([]*gwapitypes.OrgResponse, *Response, error)
- func (c *Client) GetProject(ctx context.Context, projectRef string) (*gwapitypes.ProjectResponse, *Response, error)
- func (c *Client) GetProjectCommitStatusDeliveries(ctx context.Context, projectRef string, opts *DeliveriesOptions) ([]*gwapitypes.CommitStatusDeliveryResponse, *Response, error)
- func (c *Client) GetProjectGroup(ctx context.Context, projectGroupRef string) (*gwapitypes.ProjectGroupResponse, *Response, error)
- func (c *Client) GetProjectGroupProjects(ctx context.Context, projectGroupRef string) ([]*gwapitypes.ProjectResponse, *Response, error)
- func (c *Client) GetProjectGroupSecrets(ctx context.Context, projectRef string, tree, removeoverridden bool) ([]*gwapitypes.SecretResponse, *Response, error)
- func (c *Client) GetProjectGroupSubgroups(ctx context.Context, projectGroupRef string) ([]*gwapitypes.ProjectGroupResponse, *Response, error)
- func (c *Client) GetProjectGroupVariables(ctx context.Context, projectRef string, tree, removeoverridden bool) ([]*gwapitypes.VariableResponse, *Response, error)
- func (c *Client) GetProjectLogs(ctx context.Context, projectRef string, runNumber uint64, taskID string, ...) (*Response, error)
- func (c *Client) GetProjectRun(ctx context.Context, projectRef string, runNumber uint64) (*gwapitypes.RunResponse, *Response, error)
- func (c *Client) GetProjectRunTask(ctx context.Context, projectRef string, runNumber uint64, taskID string) (*gwapitypes.RunTaskResponse, *Response, error)
- func (c *Client) GetProjectRunWebhookDeliveries(ctx context.Context, projectRef string, opts *DeliveriesOptions) ([]*gwapitypes.RunWebhookDeliveryResponse, *Response, error)
- func (c *Client) GetProjectRuns(ctx context.Context, projectRef string, opts *GetRunsOptions) ([]*gwapitypes.RunsResponse, *Response, error)
- func (c *Client) GetProjectSecrets(ctx context.Context, projectRef string, tree, removeoverridden bool) ([]*gwapitypes.SecretResponse, *Response, error)
- func (c *Client) GetProjectVariables(ctx context.Context, projectRef string, tree, removeoverridden bool) ([]*gwapitypes.VariableResponse, *Response, error)
- func (c *Client) GetRemoteSource(ctx context.Context, rsRef string) (*gwapitypes.RemoteSourceResponse, *Response, error)
- func (c *Client) GetRemoteSources(ctx context.Context, opts *ListOptions) ([]*gwapitypes.RemoteSourceResponse, *Response, error)
- func (c *Client) GetUser(ctx context.Context, userRef string) (*gwapitypes.UserResponse, *Response, error)
- func (c *Client) GetUserByLinkedAccountRemoteUserAndSource(ctx context.Context, remoteUserID, remoteSourceRef string) (*gwapitypes.PrivateUserResponse, *Response, error)
- func (c *Client) GetUserLogs(ctx context.Context, userRef string, runNumber uint64, taskID string, ...) (*Response, error)
- func (c *Client) GetUserOrgInvitations(ctx context.Context) ([]*gwapitypes.OrgInvitationResponse, *Response, error)
- func (c *Client) GetUserOrgs(ctx context.Context, opts *ListOptions) ([]*gwapitypes.UserOrgResponse, *Response, error)
- func (c *Client) GetUserRemoteRepos(ctx context.Context, rsRef string) ([]*gwapitypes.RemoteRepoResponse, *Response, error)
- func (c *Client) GetUserRun(ctx context.Context, userRef string, runNumber uint64) (*gwapitypes.RunResponse, *Response, error)
- func (c *Client) GetUserRunTask(ctx context.Context, userRef string, runNumber uint64, taskID string) (*gwapitypes.RunTaskResponse, *Response, error)
- func (c *Client) GetUserRuns(ctx context.Context, userRef string, opts *GetRunsOptions) ([]*gwapitypes.RunsResponse, *Response, error)
- func (c *Client) GetUsers(ctx context.Context, opts *ListOptions) ([]*gwapitypes.PrivateUserResponse, *Response, error)
- func (c *Client) GetVersion(ctx context.Context) (*gwapitypes.VersionResponse, *Response, error)
- func (c *Client) Import(ctx context.Context, serviceName string, r io.Reader) (*Response, error)
- func (c *Client) Login(ctx context.Context, req *gwapitypes.LoginUserRequest) (*gwapitypes.LoginUserResponse, *Response, error)
- func (c *Client) ProjectCommitStatusRedelivery(ctx context.Context, projectRef string, commitStatusDeliveryID string) (*Response, error)
- func (c *Client) ProjectCreateRun(ctx context.Context, projectRef string, ...) (*Response, error)
- func (c *Client) ProjectRunAction(ctx context.Context, projectRef string, runNumber uint64, ...) (*gwapitypes.RunResponse, *Response, error)
- func (c *Client) ProjectRunWebhookRedelivery(ctx context.Context, projectRef string, runWebhookDeliveryID string) (*Response, error)
- func (c *Client) ReconfigProject(ctx context.Context, projectRef string) (*Response, error)
- func (c *Client) RefreshRemoteRepo(ctx context.Context, projectRef string) (*gwapitypes.ProjectResponse, *Response, error)
- func (c *Client) RegisterUser(ctx context.Context, req *gwapitypes.RegisterUserRequest) (*gwapitypes.RegisterUserResponse, *Response, error)
- func (c *Client) RemoveOrgMember(ctx context.Context, orgRef, userRef string) (*Response, error)
- func (c *Client) SetHTTPClient(client *http.Client)
- func (c *Client) UpdateOrg(ctx context.Context, orgRef string, req *gwapitypes.UpdateOrgRequest) (*gwapitypes.OrgResponse, *Response, error)
- func (c *Client) UpdateProject(ctx context.Context, projectRef string, req *gwapitypes.UpdateProjectRequest) (*gwapitypes.ProjectResponse, *Response, error)
- func (c *Client) UpdateProjectGroup(ctx context.Context, projectGroupRef string, ...) (*gwapitypes.ProjectGroupResponse, *Response, error)
- func (c *Client) UpdateProjectGroupSecret(ctx context.Context, projectGroupRef, secretName string, ...) (*gwapitypes.SecretResponse, *Response, error)
- func (c *Client) UpdateProjectGroupVariable(ctx context.Context, projectGroupRef, variableName string, ...) (*gwapitypes.VariableResponse, *Response, error)
- func (c *Client) UpdateProjectSecret(ctx context.Context, projectRef, secretName string, ...) (*gwapitypes.SecretResponse, *Response, error)
- func (c *Client) UpdateProjectVariable(ctx context.Context, projectRef, variableName string, ...) (*gwapitypes.VariableResponse, *Response, error)
- func (c *Client) UpdateRemoteSource(ctx context.Context, rsRef string, req *gwapitypes.UpdateRemoteSourceRequest) (*gwapitypes.RemoteSourceResponse, *Response, error)
- func (c *Client) UserCreateRun(ctx context.Context, req *gwapitypes.UserCreateRunRequest) (*Response, error)
- func (c *Client) UserOrgInvitationAction(ctx context.Context, orgRef string, req *gwapitypes.OrgInvitationActionRequest) (*Response, error)
- type DeliveriesOptions
- type GetRunsOptions
- type ListOptions
- type Response
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) AddOrgMember ¶
func (c *Client) AddOrgMember(ctx context.Context, orgRef, userRef string, role gwapitypes.MemberRole) (*gwapitypes.AddOrgMemberResponse, *Response, error)
func (*Client) CreateOrg ¶
func (c *Client) CreateOrg(ctx context.Context, req *gwapitypes.CreateOrgRequest) (*gwapitypes.OrgResponse, *Response, error)
func (*Client) CreateOrgInvitation ¶ added in v0.8.0
func (c *Client) CreateOrgInvitation(ctx context.Context, orgRef string, req *gwapitypes.CreateOrgInvitationRequest) (*gwapitypes.OrgInvitationResponse, *Response, error)
func (*Client) CreateProject ¶
func (c *Client) CreateProject(ctx context.Context, req *gwapitypes.CreateProjectRequest) (*gwapitypes.ProjectResponse, *Response, error)
func (*Client) CreateProjectGroup ¶
func (c *Client) CreateProjectGroup(ctx context.Context, req *gwapitypes.CreateProjectGroupRequest) (*gwapitypes.ProjectGroupResponse, *Response, error)
func (*Client) CreateProjectGroupSecret ¶
func (c *Client) CreateProjectGroupSecret(ctx context.Context, projectGroupRef string, req *gwapitypes.CreateSecretRequest) (*gwapitypes.SecretResponse, *Response, error)
func (*Client) CreateProjectGroupVariable ¶
func (c *Client) CreateProjectGroupVariable(ctx context.Context, projectGroupRef string, req *gwapitypes.CreateVariableRequest) (*gwapitypes.VariableResponse, *Response, error)
func (*Client) CreateProjectSecret ¶
func (c *Client) CreateProjectSecret(ctx context.Context, projectRef string, req *gwapitypes.CreateSecretRequest) (*gwapitypes.SecretResponse, *Response, error)
func (*Client) CreateProjectVariable ¶
func (c *Client) CreateProjectVariable(ctx context.Context, projectRef string, req *gwapitypes.CreateVariableRequest) (*gwapitypes.VariableResponse, *Response, error)
func (*Client) CreateRemoteSource ¶
func (c *Client) CreateRemoteSource(ctx context.Context, req *gwapitypes.CreateRemoteSourceRequest) (*gwapitypes.RemoteSourceResponse, *Response, error)
func (*Client) CreateUser ¶
func (c *Client) CreateUser(ctx context.Context, req *gwapitypes.CreateUserRequest) (*gwapitypes.UserResponse, *Response, error)
func (*Client) CreateUserLA ¶
func (c *Client) CreateUserLA(ctx context.Context, userRef string, req *gwapitypes.CreateUserLARequest) (*gwapitypes.CreateUserLAResponse, *Response, error)
func (*Client) CreateUserToken ¶
func (c *Client) CreateUserToken(ctx context.Context, userRef string, req *gwapitypes.CreateUserTokenRequest) (*gwapitypes.CreateUserTokenResponse, *Response, error)
func (*Client) DeleteOrgInvitation ¶ added in v0.8.0
func (*Client) DeleteProject ¶
func (*Client) DeleteProjectGroup ¶
func (*Client) DeleteProjectGroupSecret ¶
func (*Client) DeleteProjectGroupVariable ¶
func (*Client) DeleteProjectLogs ¶ added in v0.7.0
func (*Client) DeleteProjectSecret ¶
func (*Client) DeleteProjectVariable ¶
func (*Client) DeleteRemoteSource ¶
func (*Client) DeleteUser ¶
func (*Client) DeleteUserLA ¶
func (*Client) DeleteUserLogs ¶ added in v0.7.0
func (*Client) DeleteUserToken ¶
func (*Client) DisableMaintenance ¶ added in v0.8.0
func (*Client) EnableMaintenance ¶ added in v0.8.0
func (*Client) GetCurrentUser ¶
func (c *Client) GetCurrentUser(ctx context.Context) (*gwapitypes.PrivateUserResponse, *Response, error)
func (*Client) GetMaintenanceStatus ¶ added in v0.8.0
func (c *Client) GetMaintenanceStatus(ctx context.Context, serviceName string) (*gwapitypes.MaintenanceStatusResponse, *Response, error)
func (*Client) GetOrg ¶ added in v0.8.0
func (c *Client) GetOrg(ctx context.Context, orgRef string) (*gwapitypes.OrgResponse, *Response, error)
func (*Client) GetOrgInvitation ¶ added in v0.8.0
func (c *Client) GetOrgInvitation(ctx context.Context, orgRef, userRef string) (*gwapitypes.OrgInvitationResponse, *Response, error)
func (*Client) GetOrgInvitations ¶ added in v0.8.0
func (c *Client) GetOrgInvitations(ctx context.Context, orgRef string) ([]*gwapitypes.OrgInvitationResponse, *Response, error)
func (*Client) GetOrgMembers ¶
func (c *Client) GetOrgMembers(ctx context.Context, orgRef string, opts *ListOptions) (*gwapitypes.OrgMembersResponse, *Response, error)
func (*Client) GetOrgs ¶ added in v0.8.0
func (c *Client) GetOrgs(ctx context.Context, opts *ListOptions) ([]*gwapitypes.OrgResponse, *Response, error)
func (*Client) GetProject ¶
func (c *Client) GetProject(ctx context.Context, projectRef string) (*gwapitypes.ProjectResponse, *Response, error)
func (*Client) GetProjectCommitStatusDeliveries ¶ added in v0.9.0
func (c *Client) GetProjectCommitStatusDeliveries(ctx context.Context, projectRef string, opts *DeliveriesOptions) ([]*gwapitypes.CommitStatusDeliveryResponse, *Response, error)
func (*Client) GetProjectGroup ¶
func (c *Client) GetProjectGroup(ctx context.Context, projectGroupRef string) (*gwapitypes.ProjectGroupResponse, *Response, error)
func (*Client) GetProjectGroupProjects ¶
func (c *Client) GetProjectGroupProjects(ctx context.Context, projectGroupRef string) ([]*gwapitypes.ProjectResponse, *Response, error)
func (*Client) GetProjectGroupSecrets ¶ added in v0.3.0
func (c *Client) GetProjectGroupSecrets(ctx context.Context, projectRef string, tree, removeoverridden bool) ([]*gwapitypes.SecretResponse, *Response, error)
func (*Client) GetProjectGroupSubgroups ¶
func (c *Client) GetProjectGroupSubgroups(ctx context.Context, projectGroupRef string) ([]*gwapitypes.ProjectGroupResponse, *Response, error)
func (*Client) GetProjectGroupVariables ¶ added in v0.3.0
func (c *Client) GetProjectGroupVariables(ctx context.Context, projectRef string, tree, removeoverridden bool) ([]*gwapitypes.VariableResponse, *Response, error)
func (*Client) GetProjectLogs ¶ added in v0.7.0
func (*Client) GetProjectRun ¶ added in v0.7.0
func (c *Client) GetProjectRun(ctx context.Context, projectRef string, runNumber uint64) (*gwapitypes.RunResponse, *Response, error)
func (*Client) GetProjectRunTask ¶ added in v0.7.0
func (c *Client) GetProjectRunTask(ctx context.Context, projectRef string, runNumber uint64, taskID string) (*gwapitypes.RunTaskResponse, *Response, error)
func (*Client) GetProjectRunWebhookDeliveries ¶ added in v0.9.0
func (c *Client) GetProjectRunWebhookDeliveries(ctx context.Context, projectRef string, opts *DeliveriesOptions) ([]*gwapitypes.RunWebhookDeliveryResponse, *Response, error)
func (*Client) GetProjectRuns ¶ added in v0.7.0
func (c *Client) GetProjectRuns(ctx context.Context, projectRef string, opts *GetRunsOptions) ([]*gwapitypes.RunsResponse, *Response, error)
func (*Client) GetProjectSecrets ¶ added in v0.3.0
func (c *Client) GetProjectSecrets(ctx context.Context, projectRef string, tree, removeoverridden bool) ([]*gwapitypes.SecretResponse, *Response, error)
func (*Client) GetProjectVariables ¶ added in v0.3.0
func (c *Client) GetProjectVariables(ctx context.Context, projectRef string, tree, removeoverridden bool) ([]*gwapitypes.VariableResponse, *Response, error)
func (*Client) GetRemoteSource ¶
func (c *Client) GetRemoteSource(ctx context.Context, rsRef string) (*gwapitypes.RemoteSourceResponse, *Response, error)
func (*Client) GetRemoteSources ¶
func (c *Client) GetRemoteSources(ctx context.Context, opts *ListOptions) ([]*gwapitypes.RemoteSourceResponse, *Response, error)
func (*Client) GetUser ¶
func (c *Client) GetUser(ctx context.Context, userRef string) (*gwapitypes.UserResponse, *Response, error)
func (*Client) GetUserByLinkedAccountRemoteUserAndSource ¶ added in v0.8.0
func (c *Client) GetUserByLinkedAccountRemoteUserAndSource(ctx context.Context, remoteUserID, remoteSourceRef string) (*gwapitypes.PrivateUserResponse, *Response, error)
func (*Client) GetUserLogs ¶ added in v0.7.0
func (*Client) GetUserOrgInvitations ¶ added in v0.8.0
func (c *Client) GetUserOrgInvitations(ctx context.Context) ([]*gwapitypes.OrgInvitationResponse, *Response, error)
func (*Client) GetUserOrgs ¶ added in v0.7.0
func (c *Client) GetUserOrgs(ctx context.Context, opts *ListOptions) ([]*gwapitypes.UserOrgResponse, *Response, error)
func (*Client) GetUserRemoteRepos ¶ added in v0.8.0
func (c *Client) GetUserRemoteRepos(ctx context.Context, rsRef string) ([]*gwapitypes.RemoteRepoResponse, *Response, error)
func (*Client) GetUserRun ¶ added in v0.7.0
func (c *Client) GetUserRun(ctx context.Context, userRef string, runNumber uint64) (*gwapitypes.RunResponse, *Response, error)
func (*Client) GetUserRunTask ¶ added in v0.7.0
func (c *Client) GetUserRunTask(ctx context.Context, userRef string, runNumber uint64, taskID string) (*gwapitypes.RunTaskResponse, *Response, error)
func (*Client) GetUserRuns ¶ added in v0.7.0
func (c *Client) GetUserRuns(ctx context.Context, userRef string, opts *GetRunsOptions) ([]*gwapitypes.RunsResponse, *Response, error)
func (*Client) GetUsers ¶
func (c *Client) GetUsers(ctx context.Context, opts *ListOptions) ([]*gwapitypes.PrivateUserResponse, *Response, error)
func (*Client) GetVersion ¶ added in v0.3.0
func (c *Client) GetVersion(ctx context.Context) (*gwapitypes.VersionResponse, *Response, error)
func (*Client) Login ¶ added in v0.8.0
func (c *Client) Login(ctx context.Context, req *gwapitypes.LoginUserRequest) (*gwapitypes.LoginUserResponse, *Response, error)
func (*Client) ProjectCommitStatusRedelivery ¶ added in v0.9.0
func (*Client) ProjectCreateRun ¶
func (c *Client) ProjectCreateRun(ctx context.Context, projectRef string, req *gwapitypes.ProjectCreateRunRequest) (*Response, error)
func (*Client) ProjectRunAction ¶ added in v0.9.0
func (c *Client) ProjectRunAction(ctx context.Context, projectRef string, runNumber uint64, req *gwapitypes.RunActionsRequest) (*gwapitypes.RunResponse, *Response, error)
func (*Client) ProjectRunWebhookRedelivery ¶ added in v0.9.0
func (*Client) ReconfigProject ¶
func (*Client) RefreshRemoteRepo ¶ added in v0.8.0
func (c *Client) RefreshRemoteRepo(ctx context.Context, projectRef string) (*gwapitypes.ProjectResponse, *Response, error)
func (*Client) RegisterUser ¶
func (c *Client) RegisterUser(ctx context.Context, req *gwapitypes.RegisterUserRequest) (*gwapitypes.RegisterUserResponse, *Response, error)
func (*Client) RemoveOrgMember ¶
func (*Client) SetHTTPClient ¶
SetHTTPClient replaces default http.Client with user given one.
func (*Client) UpdateOrg ¶ added in v0.8.0
func (c *Client) UpdateOrg(ctx context.Context, orgRef string, req *gwapitypes.UpdateOrgRequest) (*gwapitypes.OrgResponse, *Response, error)
func (*Client) UpdateProject ¶ added in v0.3.0
func (c *Client) UpdateProject(ctx context.Context, projectRef string, req *gwapitypes.UpdateProjectRequest) (*gwapitypes.ProjectResponse, *Response, error)
func (*Client) UpdateProjectGroup ¶ added in v0.3.0
func (c *Client) UpdateProjectGroup(ctx context.Context, projectGroupRef string, req *gwapitypes.UpdateProjectGroupRequest) (*gwapitypes.ProjectGroupResponse, *Response, error)
func (*Client) UpdateProjectGroupSecret ¶
func (c *Client) UpdateProjectGroupSecret(ctx context.Context, projectGroupRef, secretName string, req *gwapitypes.UpdateSecretRequest) (*gwapitypes.SecretResponse, *Response, error)
func (*Client) UpdateProjectGroupVariable ¶
func (c *Client) UpdateProjectGroupVariable(ctx context.Context, projectGroupRef, variableName string, req *gwapitypes.UpdateVariableRequest) (*gwapitypes.VariableResponse, *Response, error)
func (*Client) UpdateProjectSecret ¶
func (c *Client) UpdateProjectSecret(ctx context.Context, projectRef, secretName string, req *gwapitypes.UpdateSecretRequest) (*gwapitypes.SecretResponse, *Response, error)
func (*Client) UpdateProjectVariable ¶
func (c *Client) UpdateProjectVariable(ctx context.Context, projectRef, variableName string, req *gwapitypes.UpdateVariableRequest) (*gwapitypes.VariableResponse, *Response, error)
func (*Client) UpdateRemoteSource ¶
func (c *Client) UpdateRemoteSource(ctx context.Context, rsRef string, req *gwapitypes.UpdateRemoteSourceRequest) (*gwapitypes.RemoteSourceResponse, *Response, error)
func (*Client) UserCreateRun ¶
func (c *Client) UserCreateRun(ctx context.Context, req *gwapitypes.UserCreateRunRequest) (*Response, error)
func (*Client) UserOrgInvitationAction ¶ added in v0.8.0
func (c *Client) UserOrgInvitationAction(ctx context.Context, orgRef string, req *gwapitypes.OrgInvitationActionRequest) (*Response, error)
type DeliveriesOptions ¶ added in v0.9.0
type DeliveriesOptions struct { *ListOptions DeliveryStatusFilter []string }
func (*DeliveriesOptions) Add ¶ added in v0.9.0
func (o *DeliveriesOptions) Add(q url.Values)
type GetRunsOptions ¶ added in v0.9.0
type GetRunsOptions struct { *ListOptions StartRunCounter uint64 SubGroup string PhaseFilter []string ResultFilter []string }
func (*GetRunsOptions) Add ¶ added in v0.9.0
func (o *GetRunsOptions) Add(q url.Values)
type ListOptions ¶ added in v0.9.0
type ListOptions struct { Cursor string Limit int SortDirection gwapitypes.SortDirection }
func (*ListOptions) Add ¶ added in v0.9.0
func (o *ListOptions) Add(q url.Values)
Click to show internal directories.
Click to hide internal directories.