forked from TencentBlueKing/bk-job
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 脚本开放管理类API TencentBlueKing#2318
- Loading branch information
1 parent
1b7d36f
commit e7bedd4
Showing
31 changed files
with
1,461 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...api/src/test/java/com/tencent/bk/job/api/v3/model/request/EsbCreatePublicScriptV3Req.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package com.tencent.bk.job.api.v3.model.request; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import lombok.Data; | ||
|
||
/** | ||
* 创建公共脚本请求 | ||
*/ | ||
@Data | ||
public class EsbCreatePublicScriptV3Req{ | ||
/** | ||
* 脚本名称 | ||
*/ | ||
private String name; | ||
|
||
/** | ||
* 脚本描述 | ||
*/ | ||
private String description; | ||
|
||
@JsonProperty("script_language") | ||
private Integer type; | ||
|
||
/** | ||
* 脚本内容,需Base64编码 | ||
*/ | ||
private String content; | ||
|
||
/** | ||
* 脚本版本 | ||
*/ | ||
private String version; | ||
|
||
/** | ||
* 版本描述 | ||
*/ | ||
@JsonProperty("version_desc") | ||
private String versionDesc; | ||
} |
32 changes: 32 additions & 0 deletions
32
.../test/java/com/tencent/bk/job/api/v3/model/request/EsbCreatePublicScriptVersionV3Req.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package com.tencent.bk.job.api.v3.model.request; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import lombok.Data; | ||
|
||
/** | ||
* 创建公共脚本版本请求 | ||
*/ | ||
@Data | ||
public class EsbCreatePublicScriptVersionV3Req { | ||
/** | ||
* 脚本ID | ||
*/ | ||
@JsonProperty("script_id") | ||
private String scriptId; | ||
|
||
/** | ||
* 脚本内容,需Base64编码 | ||
*/ | ||
private String content; | ||
|
||
/** | ||
* 脚本版本 | ||
*/ | ||
private String version; | ||
|
||
/** | ||
* 版本描述 | ||
*/ | ||
@JsonProperty("version_desc") | ||
private String versionDesc; | ||
} |
60 changes: 60 additions & 0 deletions
60
...pi/src/test/java/com/tencent/bk/job/api/v3/model/request/EsbCreateScriptVersionV3Req.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Tencent is pleased to support the open source community by making BK-JOB蓝鲸智云作业平台 available. | ||
* | ||
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved. | ||
* | ||
* BK-JOB蓝鲸智云作业平台 is licensed under the MIT License. | ||
* | ||
* License for BK-JOB蓝鲸智云作业平台: | ||
* -------------------------------------------------------------------- | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
* to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
* the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
* THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF | ||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
* IN THE SOFTWARE. | ||
*/ | ||
|
||
package com.tencent.bk.job.api.v3.model.request; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.tencent.bk.job.api.model.EsbAppScopeReq; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
/** | ||
* 创建脚本版本请求 | ||
*/ | ||
@EqualsAndHashCode(callSuper = true) | ||
@Data | ||
public class EsbCreateScriptVersionV3Req extends EsbAppScopeReq { | ||
|
||
/** | ||
* 脚本ID | ||
*/ | ||
@JsonProperty("script_id") | ||
private String scriptId; | ||
|
||
/** | ||
* 脚本内容,需Base64编码 | ||
*/ | ||
private String content; | ||
|
||
/** | ||
* 脚本版本 | ||
*/ | ||
private String version; | ||
|
||
/** | ||
* 版本描述 | ||
*/ | ||
@JsonProperty("version_desc") | ||
private String versionDesc; | ||
} |
Oops, something went wrong.