@alicloud/oos20190601 3.6.0 → 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +15 -0
- package/dist/client.js +54 -0
- package/dist/client.js.map +1 -1
- package/dist/models/ListGitAccountsRequest.d.ts +1 -0
- package/dist/models/ListGitAccountsRequest.js +2 -0
- package/dist/models/ListGitAccountsRequest.js.map +1 -1
- package/dist/models/ListGitOrganizationsRequest.d.ts +1 -0
- package/dist/models/ListGitOrganizationsRequest.js +2 -0
- package/dist/models/ListGitOrganizationsRequest.js.map +1 -1
- package/dist/models/StartDebugExecutionRequest.d.ts +33 -0
- package/dist/models/StartDebugExecutionRequest.js +64 -0
- package/dist/models/StartDebugExecutionRequest.js.map +1 -0
- package/dist/models/StartDebugExecutionResponse.d.ts +19 -0
- package/dist/models/StartDebugExecutionResponse.js +69 -0
- package/dist/models/StartDebugExecutionResponse.js.map +1 -0
- package/dist/models/StartDebugExecutionResponseBody.d.ts +23 -0
- package/dist/models/StartDebugExecutionResponseBody.js +60 -0
- package/dist/models/StartDebugExecutionResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +8 -2
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +62 -0
- package/src/models/ListGitAccountsRequest.ts +3 -0
- package/src/models/ListGitOrganizationsRequest.ts +3 -0
- package/src/models/StartDebugExecutionRequest.ts +52 -0
- package/src/models/StartDebugExecutionResponse.ts +40 -0
- package/src/models/StartDebugExecutionResponseBody.ts +38 -0
- package/src/models/model.ts +3 -0
package/dist/client.d.ts
CHANGED
|
@@ -1232,6 +1232,21 @@ export default class Client extends OpenApi {
|
|
|
1232
1232
|
* @returns SetServiceSettingsResponse
|
|
1233
1233
|
*/
|
|
1234
1234
|
setServiceSettings(request: $_model.SetServiceSettingsRequest): Promise<$_model.SetServiceSettingsResponse>;
|
|
1235
|
+
/**
|
|
1236
|
+
* 启动一个调试执行
|
|
1237
|
+
*
|
|
1238
|
+
* @param request - StartDebugExecutionRequest
|
|
1239
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1240
|
+
* @returns StartDebugExecutionResponse
|
|
1241
|
+
*/
|
|
1242
|
+
startDebugExecutionWithOptions(request: $_model.StartDebugExecutionRequest, runtime: $dara.RuntimeOptions): Promise<$_model.StartDebugExecutionResponse>;
|
|
1243
|
+
/**
|
|
1244
|
+
* 启动一个调试执行
|
|
1245
|
+
*
|
|
1246
|
+
* @param request - StartDebugExecutionRequest
|
|
1247
|
+
* @returns StartDebugExecutionResponse
|
|
1248
|
+
*/
|
|
1249
|
+
startDebugExecution(request: $_model.StartDebugExecutionRequest): Promise<$_model.StartDebugExecutionResponse>;
|
|
1235
1250
|
/**
|
|
1236
1251
|
* Starts an execution.
|
|
1237
1252
|
*
|
package/dist/client.js
CHANGED
|
@@ -2921,6 +2921,9 @@ class Client extends openapi_core_1.default {
|
|
|
2921
2921
|
async listGitAccountsWithOptions(request, runtime) {
|
|
2922
2922
|
request.validate();
|
|
2923
2923
|
let query = {};
|
|
2924
|
+
if (!$dara.isNull(request.bindType)) {
|
|
2925
|
+
query["BindType"] = request.bindType;
|
|
2926
|
+
}
|
|
2924
2927
|
if (!$dara.isNull(request.clientToken)) {
|
|
2925
2928
|
query["ClientToken"] = request.clientToken;
|
|
2926
2929
|
}
|
|
@@ -3026,6 +3029,9 @@ class Client extends openapi_core_1.default {
|
|
|
3026
3029
|
async listGitOrganizationsWithOptions(request, runtime) {
|
|
3027
3030
|
request.validate();
|
|
3028
3031
|
let query = {};
|
|
3032
|
+
if (!$dara.isNull(request.bindType)) {
|
|
3033
|
+
query["BindType"] = request.bindType;
|
|
3034
|
+
}
|
|
3029
3035
|
if (!$dara.isNull(request.clientToken)) {
|
|
3030
3036
|
query["ClientToken"] = request.clientToken;
|
|
3031
3037
|
}
|
|
@@ -4524,6 +4530,54 @@ class Client extends openapi_core_1.default {
|
|
|
4524
4530
|
let runtime = new $dara.RuntimeOptions({});
|
|
4525
4531
|
return await this.setServiceSettingsWithOptions(request, runtime);
|
|
4526
4532
|
}
|
|
4533
|
+
/**
|
|
4534
|
+
* 启动一个调试执行
|
|
4535
|
+
*
|
|
4536
|
+
* @param request - StartDebugExecutionRequest
|
|
4537
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4538
|
+
* @returns StartDebugExecutionResponse
|
|
4539
|
+
*/
|
|
4540
|
+
async startDebugExecutionWithOptions(request, runtime) {
|
|
4541
|
+
request.validate();
|
|
4542
|
+
let query = {};
|
|
4543
|
+
if (!$dara.isNull(request.clientToken)) {
|
|
4544
|
+
query["ClientToken"] = request.clientToken;
|
|
4545
|
+
}
|
|
4546
|
+
if (!$dara.isNull(request.properties)) {
|
|
4547
|
+
query["Properties"] = request.properties;
|
|
4548
|
+
}
|
|
4549
|
+
if (!$dara.isNull(request.regionId)) {
|
|
4550
|
+
query["RegionId"] = request.regionId;
|
|
4551
|
+
}
|
|
4552
|
+
if (!$dara.isNull(request.taskType)) {
|
|
4553
|
+
query["TaskType"] = request.taskType;
|
|
4554
|
+
}
|
|
4555
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
4556
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
4557
|
+
});
|
|
4558
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
4559
|
+
action: "StartDebugExecution",
|
|
4560
|
+
version: "2019-06-01",
|
|
4561
|
+
protocol: "HTTPS",
|
|
4562
|
+
pathname: "/",
|
|
4563
|
+
method: "POST",
|
|
4564
|
+
authType: "AK",
|
|
4565
|
+
style: "RPC",
|
|
4566
|
+
reqBodyType: "formData",
|
|
4567
|
+
bodyType: "json",
|
|
4568
|
+
});
|
|
4569
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.StartDebugExecutionResponse({}));
|
|
4570
|
+
}
|
|
4571
|
+
/**
|
|
4572
|
+
* 启动一个调试执行
|
|
4573
|
+
*
|
|
4574
|
+
* @param request - StartDebugExecutionRequest
|
|
4575
|
+
* @returns StartDebugExecutionResponse
|
|
4576
|
+
*/
|
|
4577
|
+
async startDebugExecution(request) {
|
|
4578
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
4579
|
+
return await this.startDebugExecutionWithOptions(request, runtime);
|
|
4580
|
+
}
|
|
4527
4581
|
/**
|
|
4528
4582
|
* Starts an execution.
|
|
4529
4583
|
*
|