@Path(value="/users")
@Generated(value="org.openapitools.codegen.languages.JavaJAXRSSpecServerCodegen",
date="2019-06-07T11:22:17.425+02:00[Europe/Stockholm]")
public interface UsersApi
| Modifier and Type | Method and Description |
|---|---|
PipelineVariable |
createPipelineVariableForUser(java.lang.String username,
@Valid PipelineVariable pipelineVariable) |
void |
deletePipelineVariableForUser(java.lang.String username,
java.lang.String variableUuid) |
void |
deleteUserHostedPropertyValue(java.lang.String username,
java.lang.String appKey,
java.lang.String propertyName) |
PipelineVariable |
getPipelineVariableForUser(java.lang.String username,
java.lang.String variableUuid) |
PaginatedPipelineVariables |
getPipelineVariablesForUser(java.lang.String username) |
void |
retrieveUserHostedPropertyValue(java.lang.String username,
java.lang.String appKey,
java.lang.String propertyName) |
SearchResultPage |
searchAccount(java.lang.String username,
@NotNull java.lang.String searchQuery,
java.lang.Integer page,
java.lang.Integer pagelen) |
PipelineVariable |
updatePipelineVariableForUser(java.lang.String username,
java.lang.String variableUuid,
@Valid PipelineVariable pipelineVariable) |
void |
updateUserHostedPropertyValue(java.lang.String username,
java.lang.String appKey,
java.lang.String propertyName) |
PaginatedUsers |
usersUsernameFollowersGet(java.lang.String username) |
PaginatedUsers |
usersUsernameFollowingGet(java.lang.String username) |
User |
usersUsernameGet(java.lang.String username) |
PaginatedWebhookSubscriptions |
usersUsernameHooksGet(java.lang.String username) |
WebhookSubscription |
usersUsernameHooksPost(java.lang.String username) |
void |
usersUsernameHooksUidDelete(java.lang.String username,
java.lang.String uid) |
WebhookSubscription |
usersUsernameHooksUidGet(java.lang.String username,
java.lang.String uid) |
WebhookSubscription |
usersUsernameHooksUidPut(java.lang.String username,
java.lang.String uid) |
User |
usersUsernameMembersGet(java.lang.String username) |
Error |
usersUsernameRepositoriesGet(java.lang.String username) |
void |
usersUsernameSshKeysDelete(java.lang.String username,
java.lang.String keyId) |
PaginatedSshUserKeys |
usersUsernameSshKeysGet_1(java.lang.String username) |
SshAccountKey |
usersUsernameSshKeysGet(java.lang.String username,
java.lang.String keyId) |
SshAccountKey |
usersUsernameSshKeysPost(java.lang.String username,
@Valid SshAccountKey sshAccountKey) |
SshAccountKey |
usersUsernameSshKeysPut(java.lang.String username,
java.lang.String keyId,
@Valid SshAccountKey sshAccountKey) |
@POST
@Path(value="/{username}/pipelines_config/variables/")
@Consumes(value="application/json")
@Produces(value="application/json")
PipelineVariable createPipelineVariableForUser(@PathParam(value="username")
java.lang.String username,
@Valid
@Valid PipelineVariable pipelineVariable)
@DELETE
@Path(value="/{username}/pipelines_config/variables/{variable_uuid}")
@Produces(value="application/json")
void deletePipelineVariableForUser(@PathParam(value="username")
java.lang.String username,
@PathParam(value="variable_uuid")
java.lang.String variableUuid)
@DELETE
@Path(value="/{username}/properties/{app_key}/{property_name}")
void deleteUserHostedPropertyValue(@PathParam(value="username")
java.lang.String username,
@PathParam(value="app_key")
java.lang.String appKey,
@PathParam(value="property_name")
java.lang.String propertyName)
@GET
@Path(value="/{username}/pipelines_config/variables/{variable_uuid}")
@Produces(value="application/json")
PipelineVariable getPipelineVariableForUser(@PathParam(value="username")
java.lang.String username,
@PathParam(value="variable_uuid")
java.lang.String variableUuid)
@GET
@Path(value="/{username}/pipelines_config/variables/")
@Produces(value="application/json")
PaginatedPipelineVariables getPipelineVariablesForUser(@PathParam(value="username")
java.lang.String username)
@GET
@Path(value="/{username}/properties/{app_key}/{property_name}")
void retrieveUserHostedPropertyValue(@PathParam(value="username")
java.lang.String username,
@PathParam(value="app_key")
java.lang.String appKey,
@PathParam(value="property_name")
java.lang.String propertyName)
@GET
@Path(value="/{username}/search/code")
@Produces(value="application/json")
SearchResultPage searchAccount(@PathParam(value="username")
java.lang.String username,
@QueryParam(value="search_query") @NotNull
@NotNull java.lang.String searchQuery,
@QueryParam(value="page") @DefaultValue(value="1")
java.lang.Integer page,
@QueryParam(value="pagelen") @DefaultValue(value="10")
java.lang.Integer pagelen)
@PUT
@Path(value="/{username}/pipelines_config/variables/{variable_uuid}")
@Consumes(value="application/json")
@Produces(value="application/json")
PipelineVariable updatePipelineVariableForUser(@PathParam(value="username")
java.lang.String username,
@PathParam(value="variable_uuid")
java.lang.String variableUuid,
@Valid
@Valid PipelineVariable pipelineVariable)
@PUT
@Path(value="/{username}/properties/{app_key}/{property_name}")
void updateUserHostedPropertyValue(@PathParam(value="username")
java.lang.String username,
@PathParam(value="app_key")
java.lang.String appKey,
@PathParam(value="property_name")
java.lang.String propertyName)
@GET
@Path(value="/{username}/followers")
@Produces(value="application/json")
PaginatedUsers usersUsernameFollowersGet(@PathParam(value="username")
java.lang.String username)
@GET
@Path(value="/{username}/following")
@Produces(value="application/json")
PaginatedUsers usersUsernameFollowingGet(@PathParam(value="username")
java.lang.String username)
@GET
@Path(value="/{username}")
@Produces(value="application/json")
User usersUsernameGet(@PathParam(value="username")
java.lang.String username)
@GET
@Path(value="/{username}/hooks")
@Produces(value="application/json")
PaginatedWebhookSubscriptions usersUsernameHooksGet(@PathParam(value="username")
java.lang.String username)
@POST
@Path(value="/{username}/hooks")
@Produces(value="application/json")
WebhookSubscription usersUsernameHooksPost(@PathParam(value="username")
java.lang.String username)
@DELETE
@Path(value="/{username}/hooks/{uid}")
@Produces(value="application/json")
void usersUsernameHooksUidDelete(@PathParam(value="username")
java.lang.String username,
@PathParam(value="uid")
java.lang.String uid)
@GET
@Path(value="/{username}/hooks/{uid}")
@Produces(value="application/json")
WebhookSubscription usersUsernameHooksUidGet(@PathParam(value="username")
java.lang.String username,
@PathParam(value="uid")
java.lang.String uid)
@PUT
@Path(value="/{username}/hooks/{uid}")
@Produces(value="application/json")
WebhookSubscription usersUsernameHooksUidPut(@PathParam(value="username")
java.lang.String username,
@PathParam(value="uid")
java.lang.String uid)
@GET
@Path(value="/{username}/members")
@Produces(value="application/json")
User usersUsernameMembersGet(@PathParam(value="username")
java.lang.String username)
@GET
@Path(value="/{username}/repositories")
@Produces(value="application/json")
Error usersUsernameRepositoriesGet(@PathParam(value="username")
java.lang.String username)
@DELETE
@Path(value="/{username}/ssh-keys/")
@Produces(value="application/json")
void usersUsernameSshKeysDelete(@PathParam(value="username")
java.lang.String username,
@PathParam(value="key_id")
java.lang.String keyId)
@GET
@Path(value="/{username}/ssh-keys/")
@Produces(value="application/json")
SshAccountKey usersUsernameSshKeysGet(@PathParam(value="username")
java.lang.String username,
@PathParam(value="key_id")
java.lang.String keyId)
@GET
@Path(value="/{username}/ssh-keys")
@Produces(value="application/json")
PaginatedSshUserKeys usersUsernameSshKeysGet_1(@PathParam(value="username")
java.lang.String username)
@POST
@Path(value="/{username}/ssh-keys")
@Consumes(value="application/json")
@Produces(value="application/json")
SshAccountKey usersUsernameSshKeysPost(@PathParam(value="username")
java.lang.String username,
@Valid
@Valid SshAccountKey sshAccountKey)
@PUT
@Path(value="/{username}/ssh-keys/")
@Consumes(value="application/json")
@Produces(value="application/json")
SshAccountKey usersUsernameSshKeysPut(@PathParam(value="username")
java.lang.String username,
@PathParam(value="key_id")
java.lang.String keyId,
@Valid
@Valid SshAccountKey sshAccountKey)