]> source.dussan.org Git - sonarqube.git/blob
340c16744499133c5cb3425ed3302be18ecc3c96
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.v2.api.projects.request;
21
22 import io.swagger.v3.oas.annotations.media.Schema;
23 import javax.annotation.Nullable;
24 import javax.validation.constraints.NotEmpty;
25 import javax.validation.constraints.NotNull;
26
27 public record BoundProjectCreateRestRequest(
28
29   @NotEmpty
30   @Schema(description = "Key of the project to create")
31   String projectKey,
32
33   @NotEmpty
34   @Schema(description = "Name of the project to create")
35   String projectName,
36
37   @NotEmpty
38   @Schema(description = "Identifier of DevOps platform configuration to use.")
39   String devOpsPlatformSettingId,
40
41   @NotEmpty
42   @Schema(
43     description = """
44       Identifier of the DevOps platform repository to import:
45       - repository slug for GitHub and Bitbucket Cloud
46       - repository id for GitLab
47       """)
48   String repositoryIdentifier,
49
50   @Nullable
51   @Schema(description = """
52     Project New Code Definition Type
53     New code definitions of the following types are allowed:
54       - PREVIOUS_VERSION
55       - NUMBER_OF_DAYS
56       - REFERENCE_BRANCH - will default to the main branch.
57   """)
58   String newCodeDefinitionType,
59
60   @Nullable
61   @Schema(description = """
62     Project New Code Definition Value
63     For each new code definition type, a different value is expected:
64     - no value, when the new code definition type is PREVIOUS_VERSION and REFERENCE_BRANCH
65     - a number between 1 and 90, when the new code definition type is NUMBER_OF_DAYS
66   """)
67   String newCodeDefinitionValue,
68
69   @NotNull
70   @Schema(description = "True if project is part of a mono repo.")
71   Boolean monorepo
72 ) {
73 }