@alicloud/sae20190506 2.0.5 → 2.1.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 +18 -0
- package/dist/client.js +48 -0
- package/dist/client.js.map +1 -1
- package/dist/models/ListApplicationsForSwimmingLaneRequest.d.ts +31 -0
- package/dist/models/ListApplicationsForSwimmingLaneRequest.js +62 -0
- package/dist/models/ListApplicationsForSwimmingLaneRequest.js.map +1 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponse.d.ts +19 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponse.js +69 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponse.js.map +1 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBody.d.ts +36 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBody.js +72 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBody.js.map +1 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBodyData.d.ts +51 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBodyData.js +75 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBodyData.js.map +1 -0
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +21 -13
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +53 -0
- package/src/models/ListApplicationsForSwimmingLaneRequest.ts +48 -0
- package/src/models/ListApplicationsForSwimmingLaneResponse.ts +40 -0
- package/src/models/ListApplicationsForSwimmingLaneResponseBody.ts +62 -0
- package/src/models/ListApplicationsForSwimmingLaneResponseBodyData.ts +79 -0
- package/src/models/model.ts +4 -0
package/dist/client.d.ts
CHANGED
|
@@ -1499,6 +1499,24 @@ export default class Client extends OpenApi {
|
|
|
1499
1499
|
* @returns ListApplicationsResponse
|
|
1500
1500
|
*/
|
|
1501
1501
|
listApplications(request: $_model.ListApplicationsRequest): Promise<$_model.ListApplicationsResponse>;
|
|
1502
|
+
/**
|
|
1503
|
+
* 获取应用列表,供全链路灰度拉取应用列表
|
|
1504
|
+
*
|
|
1505
|
+
* @param request - ListApplicationsForSwimmingLaneRequest
|
|
1506
|
+
* @param headers - map
|
|
1507
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1508
|
+
* @returns ListApplicationsForSwimmingLaneResponse
|
|
1509
|
+
*/
|
|
1510
|
+
listApplicationsForSwimmingLaneWithOptions(request: $_model.ListApplicationsForSwimmingLaneRequest, headers: {
|
|
1511
|
+
[key: string]: string;
|
|
1512
|
+
}, runtime: $dara.RuntimeOptions): Promise<$_model.ListApplicationsForSwimmingLaneResponse>;
|
|
1513
|
+
/**
|
|
1514
|
+
* 获取应用列表,供全链路灰度拉取应用列表
|
|
1515
|
+
*
|
|
1516
|
+
* @param request - ListApplicationsForSwimmingLaneRequest
|
|
1517
|
+
* @returns ListApplicationsForSwimmingLaneResponse
|
|
1518
|
+
*/
|
|
1519
|
+
listApplicationsForSwimmingLane(request: $_model.ListApplicationsForSwimmingLaneRequest): Promise<$_model.ListApplicationsForSwimmingLaneResponse>;
|
|
1502
1520
|
/**
|
|
1503
1521
|
* Query a list of change orders.
|
|
1504
1522
|
*
|
package/dist/client.js
CHANGED
|
@@ -4561,6 +4561,54 @@ class Client extends openapi_core_1.default {
|
|
|
4561
4561
|
let headers = {};
|
|
4562
4562
|
return await this.listApplicationsWithOptions(request, headers, runtime);
|
|
4563
4563
|
}
|
|
4564
|
+
/**
|
|
4565
|
+
* 获取应用列表,供全链路灰度拉取应用列表
|
|
4566
|
+
*
|
|
4567
|
+
* @param request - ListApplicationsForSwimmingLaneRequest
|
|
4568
|
+
* @param headers - map
|
|
4569
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4570
|
+
* @returns ListApplicationsForSwimmingLaneResponse
|
|
4571
|
+
*/
|
|
4572
|
+
async listApplicationsForSwimmingLaneWithOptions(request, headers, runtime) {
|
|
4573
|
+
request.validate();
|
|
4574
|
+
let query = {};
|
|
4575
|
+
if (!$dara.isNull(request.groupId)) {
|
|
4576
|
+
query["GroupId"] = request.groupId;
|
|
4577
|
+
}
|
|
4578
|
+
if (!$dara.isNull(request.namespaceId)) {
|
|
4579
|
+
query["NamespaceId"] = request.namespaceId;
|
|
4580
|
+
}
|
|
4581
|
+
if (!$dara.isNull(request.tag)) {
|
|
4582
|
+
query["Tag"] = request.tag;
|
|
4583
|
+
}
|
|
4584
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
4585
|
+
headers: headers,
|
|
4586
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
4587
|
+
});
|
|
4588
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
4589
|
+
action: "ListApplicationsForSwimmingLane",
|
|
4590
|
+
version: "2019-05-06",
|
|
4591
|
+
protocol: "HTTPS",
|
|
4592
|
+
pathname: `/pop/v1/cas/gray/listApplicationsForSwimmingLane`,
|
|
4593
|
+
method: "GET",
|
|
4594
|
+
authType: "AK",
|
|
4595
|
+
style: "ROA",
|
|
4596
|
+
reqBodyType: "json",
|
|
4597
|
+
bodyType: "json",
|
|
4598
|
+
});
|
|
4599
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListApplicationsForSwimmingLaneResponse({}));
|
|
4600
|
+
}
|
|
4601
|
+
/**
|
|
4602
|
+
* 获取应用列表,供全链路灰度拉取应用列表
|
|
4603
|
+
*
|
|
4604
|
+
* @param request - ListApplicationsForSwimmingLaneRequest
|
|
4605
|
+
* @returns ListApplicationsForSwimmingLaneResponse
|
|
4606
|
+
*/
|
|
4607
|
+
async listApplicationsForSwimmingLane(request) {
|
|
4608
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
4609
|
+
let headers = {};
|
|
4610
|
+
return await this.listApplicationsForSwimmingLaneWithOptions(request, headers, runtime);
|
|
4611
|
+
}
|
|
4564
4612
|
/**
|
|
4565
4613
|
* Query a list of change orders.
|
|
4566
4614
|
*
|