Uses of Class
org.gitlab4j.api.models.Variable
-
Packages that use Variable Package Description org.gitlab4j.api -
-
Uses of Variable in org.gitlab4j.api
Methods in org.gitlab4j.api that return Variable Modifier and Type Method Description VariablePipelineApi. createPipelineScheduleVariable(Object projectIdOrPath, Integer pipelineScheduleId, String key, String value)Create a pipeline schedule variable.VariableGroupApi. createVariable(Object groupIdOrPath, String key, String value, Boolean isProtected)Create a new group variable.VariableProjectApi. createVariable(Object projectIdOrPath, String key, String value, Boolean isProtected)Create a new project variable.VariableProjectApi. createVariable(Object projectIdOrPath, String key, String value, Boolean isProtected, String environmentScope)Create a new project variable.VariableGroupApi. getVariable(Object groupIdOrPath, String key)Get the details of a group variable.VariableProjectApi. getVariable(Object projectIdOrPath, String key)Get the details of a project variable.VariablePipelineApi. updatePipelineScheduleVariable(Object projectIdOrPath, Integer pipelineScheduleId, String key, String value)Update a pipeline schedule variable.VariableGroupApi. updateVariable(Object groupIdOrPath, String key, String value, Boolean isProtected)Update a group variable.VariableProjectApi. updateVariable(Object projectIdOrPath, String key, String value, Boolean isProtected)Update a project variable.VariableProjectApi. updateVariable(Object projectIdOrPath, String key, String value, Boolean isProtected, String environmentScope)Update a project variable.Methods in org.gitlab4j.api that return types with arguments of type Variable Modifier and Type Method Description Optional<Variable>GroupApi. getOptionalVariable(Object groupIdOrPath, String key)Get the details of a group variable as an Optional instance.Optional<Variable>ProjectApi. getOptionalVariable(Object projectIdOrPath, String key)Get the details of a variable as an Optional instance.List<Variable>GroupApi. getVariables(Object groupIdOrPath)Get list of a group’s variables.Pager<Variable>GroupApi. getVariables(Object groupIdOrPath, int itemsPerPage)Get a Pager of variables belonging to the specified group.List<Variable>GroupApi. getVariables(Object groupIdOrPath, int page, int perPage)Get a list of variables for the specified group in the specified page range.List<Variable>ProjectApi. getVariables(Object projectIdOrPath)Get list of a project's variables.Pager<Variable>ProjectApi. getVariables(Object projectIdOrPath, int itemsPerPage)Get a Pager of variables belonging to the specified project.List<Variable>ProjectApi. getVariables(Object projectIdOrPath, int page, int perPage)Get a list of variables for the specified project in the specified page range.Stream<Variable>GroupApi. getVariablesStream(Object groupIdOrPath)Get a Stream of variables belonging to the specified group.Stream<Variable>ProjectApi. getVariablesStream(Object projectIdOrPath)Get a Stream of variables belonging to the specified project.Method parameters in org.gitlab4j.api with type arguments of type Variable Modifier and Type Method Description PipelinePipelineApi. triggerPipeline(Object projectIdOrPath, String token, String ref, List<Variable> variables)Trigger a pipeline for a project.PipelinePipelineApi. triggerPipeline(Object projectIdOrPath, Trigger trigger, String ref, List<Variable> variables)Trigger a pipeline for a project.GitLabApiFormGitLabApiForm. withParam(List<Variable> variables)Fluent method for adding a List<Variable> type query and form parameters to a get(), post(), or put() call.
-