@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2025-06-19T14:15:27.528Z[Etc/UTC]") @Validated public interface DataSetListControllerApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<LabelDto> |
addLabel(UUID dataSetListId,
String name,
Long modifiedWhen)
PUT /dsl/{dataSetListId}/label : addLabel
|
org.springframework.http.ResponseEntity<List<CopyDataSetListsResponseDto>> |
copy(CopyDataSetListsRequestDto copyDataSetListsRequestDto)
POST /dsl/copy : Copy DSL with name provided.
|
org.springframework.http.ResponseEntity<Map<String,PairDto>> |
copyBulk(String name,
Map<String,Set<UUID>> requestBody)
POST /dsl/ds/clone/bulk : Copy DSLs and DSs.
|
org.springframework.http.ResponseEntity<UUID> |
copyByVaIdDataSetListId(UUID dataSetListId,
UUID vaId,
String name,
Boolean type,
UUID testPlan)
PUT /dsl/va/{vaId}/dsl/{dataSetListId}/copy : Copy DSL with name provided.
|
org.springframework.http.ResponseEntity<UUID> |
create(UUID vaId,
String name,
UUID testPlan)
PUT /dsl/va/{vaId} : Creates new DSL with name provided.
|
org.springframework.http.ResponseEntity<Void> |
delete(UUID dataSetListId)
DELETE /dsl/{dataSetListId} : Deletes selected DSL.
|
org.springframework.http.ResponseEntity<Boolean> |
deleteLabel(UUID dataSetListId,
UUID labelId,
Long modifiedWhen)
DELETE /dsl/{dataSetListId}/label/{labelId} : deleteLabel
|
org.springframework.http.ResponseEntity<Void> |
existsById(UUID dataSetListId)
GET /dsl/{dataSetListId}/exists : Check if dsl exists.
|
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> |
exportDataSetList(UUID dataSetListId)
POST /dsl/{dataSetListId}/export/excel : Export dsl to file.
|
org.springframework.http.ResponseEntity<List<TableResponseDto>> |
getAffectedAttributes(UUID dataSetListId)
GET /dsl/{dataSetListId}/getAffected : Get affected attribute by deleting dsl( data set storage).
|
org.springframework.http.ResponseEntity<BigDecimal> |
getAffectedAttributesCount(UUID dataSetListId)
GET /dsl/{dataSetListId}/getAffectedCount : Get affected attribute count by dsl.
|
org.springframework.http.ResponseEntity<Void> |
getAffectedDataSetLists(UUID dataSetListId,
Integer limit,
Integer offset)
GET /dsl/{dataSetListId}/getAffectedDSL : Get affected dsl by deleting dsl( data set storage).
|
org.springframework.http.ResponseEntity<CyclesCheckResultDto> |
getCyclesCheck()
GET /dsl/cyclesCheck : Get affected attribute by deleting dsl( data set storage).
|
org.springframework.http.ResponseEntity<Object> |
getDataSetInfoByDataSetListIdAndId(UUID dataSetListId,
UUID ds)
GET /dsl/{dataSetListId}/ds/{ds} : Returns information about the selected DS under DSL.
|
org.springframework.http.ResponseEntity<List<DataSetDto>> |
getDataSetListFullInfo(UUID dataSetListId)
GET /dsl/{dataSetListId}/full : Returns datasets full information of the selected DSL.
|
org.springframework.http.ResponseEntity<Object> |
getDataSetListInfo(UUID dataSetListId,
String filterDs,
String filterAttr,
String flat,
String _new,
String evaluate)
GET /dsl/{dataSetListId} : Returns information about the selected DSL.
|
org.springframework.http.ResponseEntity<Object> |
getDataSetListInfoById(UUID dataSetListId,
String evaluate,
Integer startIndex,
Integer endIndex,
String sort,
DataSetsAndAttributesFilterPairDto dataSetsAndAttributesFilterPairDto)
POST /dsl/{dataSetListId}/filters : Returns information about the selected DSL.
|
org.springframework.http.ResponseEntity<List<DataSetListCreatedModifiedViewDto>> |
getDataSetLists()
GET /dsl : Returns all dataSetLists.
|
org.springframework.http.ResponseEntity<List<DataSetListCreatedModifiedViewDto>> |
getDataSetListsByVaId(UUID vaId,
String label)
GET /dsl/va/{vaId} : Returns all dataSetLists for selected visibility area.
|
org.springframework.http.ResponseEntity<List<DataSetDto>> |
getDataSets(UUID dataSetListId,
String skipEvaluate,
String label)
GET /dsl/{dataSetListId}/ds : Returns datasets id/name information of the selected DSL.
|
org.springframework.http.ResponseEntity<List<DatasetResponseDto>> |
getDataSetsWithNameAndDataSetList(List<UUID> UUID)
POST /dsl/ds/all : getDataSetsWithNameAndDataSetList
|
org.springframework.http.ResponseEntity<List<DataSetListDependencyNodeDto>> |
getDependencies(List<UUID> UUID)
POST /dsl/dependencies : Get dataset lists dependencies trees
|
org.springframework.http.ResponseEntity<List<DataSetListDependencyNodeDto>> |
getDependenciesRecursive(List<UUID> UUID)
POST /dsl/dependenciesRecursive : Get dataset lists dependencies trees
|
org.springframework.http.ResponseEntity<List<LabelDto>> |
getLabels(UUID dataSetListId)
GET /dsl/{dataSetListId}/label : getLabels
|
org.springframework.http.ResponseEntity<OffsetDateTime> |
getModifiedWhen(UUID dataSetListId)
GET /dsl/{dataSetListId}/modifiedWhen : Get dsl modifiedWhen.
|
org.springframework.http.ResponseEntity<DatasetListImportResponseDto> |
importDataSetList(UUID dataSetListId,
UUID projectId,
Boolean versioning)
POST /dsl/{dataSetListId}/import/excel : Import dsl from excel file.
|
org.springframework.http.ResponseEntity<Boolean> |
rename(UUID dataSetListId,
String name,
UUID testPlan,
String clearTestPlan,
Long modifiedWhen)
POST /dsl/{dataSetListId} : Renames selected DSL.
|
@RequestMapping(method=PUT,
value="/dsl/{dataSetListId}/label",
produces="application/json")
org.springframework.http.ResponseEntity<LabelDto> addLabel(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@NotNull @RequestParam(value="name",required=true)
String name,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
dataSetListId - dataSetListId (required)name - name (required)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=POST,
value="/dsl/copy",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<CopyDataSetListsResponseDto>> copy(@RequestBody(required=false)
CopyDataSetListsRequestDto copyDataSetListsRequestDto)
copyDataSetListsRequestDto - (optional)@RequestMapping(method=POST,
value="/dsl/ds/clone/bulk",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<Map<String,PairDto>> copyBulk(@NotNull @RequestParam(value="name",required=true)
String name,
@RequestBody(required=false)
Map<String,Set<UUID>> requestBody)
name - name (required)requestBody - (optional)@RequestMapping(method=PUT,
value="/dsl/va/{vaId}/dsl/{dataSetListId}/copy",
produces="application/json")
org.springframework.http.ResponseEntity<UUID> copyByVaIdDataSetListId(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@PathVariable(value="vaId")
UUID vaId,
@NotNull @RequestParam(value="name",required=true)
String name,
@RequestParam(value="type",required=false)
Boolean type,
@RequestParam(value="testPlan",required=false)
UUID testPlan)
dataSetListId - dataSetListId (required)vaId - vaId (required)name - name (required)type - type (optional)testPlan - testPlan (optional)@RequestMapping(method=PUT,
value="/dsl/va/{vaId}",
produces="application/json")
org.springframework.http.ResponseEntity<UUID> create(@PathVariable(value="vaId")
UUID vaId,
@NotNull @RequestParam(value="name",required=true)
String name,
@RequestParam(value="testPlan",required=false)
UUID testPlan)
vaId - vaId (required)name - name (required)testPlan - testPlan (optional)@RequestMapping(method=DELETE,
value="/dsl/{dataSetListId}")
org.springframework.http.ResponseEntity<Void> delete(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=DELETE,
value="/dsl/{dataSetListId}/label/{labelId}",
produces="application/json")
org.springframework.http.ResponseEntity<Boolean> deleteLabel(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@PathVariable(value="labelId")
UUID labelId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
dataSetListId - dataSetListId (required)labelId - labelId (required)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/exists")
org.springframework.http.ResponseEntity<Void> existsById(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=POST,
value="/dsl/{dataSetListId}/export/excel",
produces="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> exportDataSetList(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/getAffected",
produces="application/json")
org.springframework.http.ResponseEntity<List<TableResponseDto>> getAffectedAttributes(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/getAffectedCount",
produces="application/json")
org.springframework.http.ResponseEntity<BigDecimal> getAffectedAttributesCount(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/getAffectedDSL",
produces="application/json")
org.springframework.http.ResponseEntity<Void> getAffectedDataSetLists(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@RequestParam(value="limit",required=false)
Integer limit,
@RequestParam(value="offset",required=false)
Integer offset)
dataSetListId - dataSetListId (required)limit - limit (optional)offset - offset (optional)@RequestMapping(method=GET,
value="/dsl/cyclesCheck",
produces="application/json")
org.springframework.http.ResponseEntity<CyclesCheckResultDto> getCyclesCheck()
@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/ds/{ds}",
produces="application/json")
org.springframework.http.ResponseEntity<Object> getDataSetInfoByDataSetListIdAndId(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@PathVariable(value="ds")
UUID ds)
dataSetListId - dataSetListId (required)ds - ds (required)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/full",
produces="application/json")
org.springframework.http.ResponseEntity<List<DataSetDto>> getDataSetListFullInfo(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}",
produces="application/json")
org.springframework.http.ResponseEntity<Object> getDataSetListInfo(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@RequestParam(value="filterDs",required=false)
String filterDs,
@RequestParam(value="filterAttr",required=false)
String filterAttr,
@RequestParam(value="flat",required=false)
String flat,
@RequestParam(value="new",required=false)
String _new,
@RequestParam(value="evaluate",required=false)
String evaluate)
dataSetListId - dataSetListId (required)filterDs - filterDs (optional)filterAttr - filterAttr (optional)flat - flat (optional)_new - new (optional)evaluate - evaluate (optional)@RequestMapping(method=POST,
value="/dsl/{dataSetListId}/filters",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<Object> getDataSetListInfoById(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@RequestParam(value="evaluate",required=false)
String evaluate,
@RequestParam(value="startIndex",required=false)
Integer startIndex,
@RequestParam(value="endIndex",required=false)
Integer endIndex,
@RequestParam(value="sort",required=false)
String sort,
@RequestBody(required=false)
DataSetsAndAttributesFilterPairDto dataSetsAndAttributesFilterPairDto)
dataSetListId - dataSetListId (required)evaluate - evaluate (optional)startIndex - startIndex (optional)endIndex - endIndex (optional)sort - sort (optional)dataSetsAndAttributesFilterPairDto - (optional)@RequestMapping(method=GET,
value="/dsl",
produces="application/json")
org.springframework.http.ResponseEntity<List<DataSetListCreatedModifiedViewDto>> getDataSetLists()
@RequestMapping(method=GET,
value="/dsl/va/{vaId}",
produces="application/json")
org.springframework.http.ResponseEntity<List<DataSetListCreatedModifiedViewDto>> getDataSetListsByVaId(@PathVariable(value="vaId")
UUID vaId,
@RequestParam(value="label",required=false)
String label)
vaId - vaId (required)label - label (optional)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/ds",
produces="application/json")
org.springframework.http.ResponseEntity<List<DataSetDto>> getDataSets(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@RequestParam(value="skipEvaluate",required=false)
String skipEvaluate,
@RequestParam(value="label",required=false)
String label)
dataSetListId - dataSetListId (required)skipEvaluate - skipEvaluate (optional)label - label (optional)@RequestMapping(method=POST,
value="/dsl/ds/all",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<DatasetResponseDto>> getDataSetsWithNameAndDataSetList(@RequestBody(required=false)
List<UUID> UUID)
UUID - (optional)@RequestMapping(method=POST,
value="/dsl/dependencies",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<DataSetListDependencyNodeDto>> getDependencies(@RequestBody(required=false)
List<UUID> UUID)
UUID - (optional)@RequestMapping(method=POST,
value="/dsl/dependenciesRecursive",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<DataSetListDependencyNodeDto>> getDependenciesRecursive(@RequestBody(required=false)
List<UUID> UUID)
UUID - (optional)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/label",
produces="application/json")
org.springframework.http.ResponseEntity<List<LabelDto>> getLabels(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=GET,
value="/dsl/{dataSetListId}/modifiedWhen",
produces="application/json")
org.springframework.http.ResponseEntity<OffsetDateTime> getModifiedWhen(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=POST,
value="/dsl/{dataSetListId}/import/excel",
produces="application/json")
org.springframework.http.ResponseEntity<DatasetListImportResponseDto> importDataSetList(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@NotNull @RequestParam(value="projectId",required=true)
UUID projectId,
@RequestParam(value="versioning",required=false)
Boolean versioning)
dataSetListId - dataSetListId (required)projectId - projectId (required)versioning - versioning (optional)@RequestMapping(method=POST,
value="/dsl/{dataSetListId}",
produces="application/json")
org.springframework.http.ResponseEntity<Boolean> rename(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@RequestParam(value="name",required=false)
String name,
@RequestParam(value="testPlan",required=false)
UUID testPlan,
@RequestParam(value="clearTestPlan",required=false)
String clearTestPlan,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
dataSetListId - dataSetListId (required)name - name (optional)testPlan - testPlan (optional)clearTestPlan - clearTestPlan (optional)modifiedWhen - modifiedWhen (optional)Copyright © 2025. All rights reserved.