]> source.dussan.org Git - sonarqube.git/blob
74f8bdf2ef6725129786314282015b887217a55b
[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 and Server)
46       - repository id for GitLab
47       """)
48   String repositoryIdentifier,
49
50   @Nullable
51   @Schema(
52     description = """
53       Identifier of the DevOps platform project in which the repository is located.
54       This is only needed for Azure and BitBucket Server platforms
55       """)
56   String projectIdentifier,
57
58   @Nullable
59   @Schema(description = """
60     Project New Code Definition Type
61     New code definitions of the following types are allowed:
62       - PREVIOUS_VERSION
63       - NUMBER_OF_DAYS
64       - REFERENCE_BRANCH - will default to the main branch.
65   """)
66   String newCodeDefinitionType,
67
68   @Nullable
69   @Schema(description = """
70     Project New Code Definition Value
71     For each new code definition type, a different value is expected:
72     - no value, when the new code definition type is PREVIOUS_VERSION and REFERENCE_BRANCH
73     - a number between 1 and 90, when the new code definition type is NUMBER_OF_DAYS
74   """)
75   String newCodeDefinitionValue,
76
77   @NotNull
78   @Schema(description = "True if project is part of a mono repo.")
79   Boolean monorepo
80 ) {
81 }