@alicloud/sae20190506 2.12.3 → 2.12.4
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 +8 -8
- package/dist/client.js +23 -8
- package/dist/client.js.map +1 -1
- package/dist/models/CreateApplicationRequest.d.ts +232 -333
- package/dist/models/CreateApplicationRequest.js +29 -1
- package/dist/models/CreateApplicationRequest.js.map +1 -1
- package/dist/models/CreateApplicationResponseBody.d.ts +14 -21
- package/dist/models/CreateApplicationResponseBody.js.map +1 -1
- package/dist/models/CreateApplicationShrinkRequest.d.ts +217 -333
- package/dist/models/CreateApplicationShrinkRequest.js +2 -0
- package/dist/models/CreateApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DeployApplicationRequest.d.ts +261 -382
- package/dist/models/DeployApplicationRequest.js +29 -1
- package/dist/models/DeployApplicationRequest.js.map +1 -1
- package/dist/models/DeployApplicationResponseBody.d.ts +20 -27
- package/dist/models/DeployApplicationResponseBody.js.map +1 -1
- package/dist/models/DeployApplicationShrinkRequest.d.ts +246 -382
- package/dist/models/DeployApplicationShrinkRequest.js +2 -0
- package/dist/models/DeployApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DescribeApplicationConfigResponseBody.d.ts +299 -404
- package/dist/models/DescribeApplicationConfigResponseBody.js +29 -1
- package/dist/models/DescribeApplicationConfigResponseBody.js.map +1 -1
- package/dist/models/ListApplicationsRequest.d.ts +42 -61
- package/dist/models/ListApplicationsRequest.js +2 -0
- package/dist/models/ListApplicationsRequest.js.map +1 -1
- package/dist/models/ListApplicationsResponseBody.d.ts +77 -101
- package/dist/models/ListApplicationsResponseBody.js +2 -0
- package/dist/models/ListApplicationsResponseBody.js.map +1 -1
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +37 -31
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +28 -8
- package/src/models/CreateApplicationRequest.ts +252 -334
- package/src/models/CreateApplicationResponseBody.ts +14 -21
- package/src/models/CreateApplicationShrinkRequest.ts +220 -334
- package/src/models/DeployApplicationRequest.ts +281 -383
- package/src/models/DeployApplicationResponseBody.ts +20 -27
- package/src/models/DeployApplicationShrinkRequest.ts +249 -383
- package/src/models/DescribeApplicationConfigResponseBody.ts +319 -405
- package/src/models/ListApplicationsRequest.ts +44 -61
- package/src/models/ListApplicationsResponseBody.ts +79 -101
- package/src/models/model.ts +3 -0
package/dist/client.d.ts
CHANGED
|
@@ -153,7 +153,7 @@ export default class Client extends OpenApi {
|
|
|
153
153
|
*/
|
|
154
154
|
confirmPipelineBatch(request: $_model.ConfirmPipelineBatchRequest): Promise<$_model.ConfirmPipelineBatchResponse>;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* Creates an application.
|
|
157
157
|
*
|
|
158
158
|
* @param tmpReq - CreateApplicationRequest
|
|
159
159
|
* @param headers - map
|
|
@@ -164,7 +164,7 @@ export default class Client extends OpenApi {
|
|
|
164
164
|
[key: string]: string;
|
|
165
165
|
}, runtime: $dara.RuntimeOptions): Promise<$_model.CreateApplicationResponse>;
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* Creates an application.
|
|
168
168
|
*
|
|
169
169
|
* @param request - CreateApplicationRequest
|
|
170
170
|
* @returns CreateApplicationResponse
|
|
@@ -673,7 +673,7 @@ export default class Client extends OpenApi {
|
|
|
673
673
|
*/
|
|
674
674
|
deleteWebCustomDomain(DomainName: string, request: $_model.DeleteWebCustomDomainRequest): Promise<$_model.DeleteWebCustomDomainResponse>;
|
|
675
675
|
/**
|
|
676
|
-
*
|
|
676
|
+
* Deploys an application.
|
|
677
677
|
*
|
|
678
678
|
* @param tmpReq - DeployApplicationRequest
|
|
679
679
|
* @param headers - map
|
|
@@ -684,7 +684,7 @@ export default class Client extends OpenApi {
|
|
|
684
684
|
[key: string]: string;
|
|
685
685
|
}, runtime: $dara.RuntimeOptions): Promise<$_model.DeployApplicationResponse>;
|
|
686
686
|
/**
|
|
687
|
-
*
|
|
687
|
+
* Deploys an application.
|
|
688
688
|
*
|
|
689
689
|
* @param request - DeployApplicationRequest
|
|
690
690
|
* @returns DeployApplicationResponse
|
|
@@ -709,7 +709,7 @@ export default class Client extends OpenApi {
|
|
|
709
709
|
*/
|
|
710
710
|
describeAppServiceDetail(request: $_model.DescribeAppServiceDetailRequest): Promise<$_model.DescribeAppServiceDetailResponse>;
|
|
711
711
|
/**
|
|
712
|
-
* Retrieves the configuration of an application.
|
|
712
|
+
* Retrieves the configuration information of an application.
|
|
713
713
|
*
|
|
714
714
|
* @param request - DescribeApplicationConfigRequest
|
|
715
715
|
* @param headers - map
|
|
@@ -720,7 +720,7 @@ export default class Client extends OpenApi {
|
|
|
720
720
|
[key: string]: string;
|
|
721
721
|
}, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeApplicationConfigResponse>;
|
|
722
722
|
/**
|
|
723
|
-
* Retrieves the configuration of an application.
|
|
723
|
+
* Retrieves the configuration information of an application.
|
|
724
724
|
*
|
|
725
725
|
* @param request - DescribeApplicationConfigRequest
|
|
726
726
|
* @returns DescribeApplicationConfigResponse
|
|
@@ -1764,7 +1764,7 @@ export default class Client extends OpenApi {
|
|
|
1764
1764
|
*/
|
|
1765
1765
|
listApplicationCenterServiceInstances(request: $_model.ListApplicationCenterServiceInstancesRequest): Promise<$_model.ListApplicationCenterServiceInstancesResponse>;
|
|
1766
1766
|
/**
|
|
1767
|
-
*
|
|
1767
|
+
* Retrieves a list of applications.
|
|
1768
1768
|
*
|
|
1769
1769
|
* @param request - ListApplicationsRequest
|
|
1770
1770
|
* @param headers - map
|
|
@@ -1775,7 +1775,7 @@ export default class Client extends OpenApi {
|
|
|
1775
1775
|
[key: string]: string;
|
|
1776
1776
|
}, runtime: $dara.RuntimeOptions): Promise<$_model.ListApplicationsResponse>;
|
|
1777
1777
|
/**
|
|
1778
|
-
*
|
|
1778
|
+
* Retrieves a list of applications.
|
|
1779
1779
|
*
|
|
1780
1780
|
* @param request - ListApplicationsRequest
|
|
1781
1781
|
* @returns ListApplicationsResponse
|
package/dist/client.js
CHANGED
|
@@ -466,7 +466,7 @@ class Client extends openapi_core_1.default {
|
|
|
466
466
|
return await this.confirmPipelineBatchWithOptions(request, headers, runtime);
|
|
467
467
|
}
|
|
468
468
|
/**
|
|
469
|
-
*
|
|
469
|
+
* Creates an application.
|
|
470
470
|
*
|
|
471
471
|
* @param tmpReq - CreateApplicationRequest
|
|
472
472
|
* @param headers - map
|
|
@@ -483,6 +483,9 @@ class Client extends openapi_core_1.default {
|
|
|
483
483
|
if (!$dara.isNull(tmpReq.labels)) {
|
|
484
484
|
request.labelsShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.labels, "Labels", "json");
|
|
485
485
|
}
|
|
486
|
+
if (!$dara.isNull(tmpReq.raspConfig)) {
|
|
487
|
+
request.raspConfigShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.raspConfig, "RaspConfig", "json");
|
|
488
|
+
}
|
|
486
489
|
if (!$dara.isNull(tmpReq.sidecarContainersConfig)) {
|
|
487
490
|
request.sidecarContainersConfigShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.sidecarContainersConfig, "SidecarContainersConfig", "json");
|
|
488
491
|
}
|
|
@@ -655,6 +658,9 @@ class Client extends openapi_core_1.default {
|
|
|
655
658
|
if (!$dara.isNull(request.pythonModules)) {
|
|
656
659
|
query["PythonModules"] = request.pythonModules;
|
|
657
660
|
}
|
|
661
|
+
if (!$dara.isNull(request.raspConfigShrink)) {
|
|
662
|
+
query["RaspConfig"] = request.raspConfigShrink;
|
|
663
|
+
}
|
|
658
664
|
if (!$dara.isNull(request.readiness)) {
|
|
659
665
|
query["Readiness"] = request.readiness;
|
|
660
666
|
}
|
|
@@ -768,7 +774,7 @@ class Client extends openapi_core_1.default {
|
|
|
768
774
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.CreateApplicationResponse({}));
|
|
769
775
|
}
|
|
770
776
|
/**
|
|
771
|
-
*
|
|
777
|
+
* Creates an application.
|
|
772
778
|
*
|
|
773
779
|
* @param request - CreateApplicationRequest
|
|
774
780
|
* @returns CreateApplicationResponse
|
|
@@ -2267,7 +2273,7 @@ class Client extends openapi_core_1.default {
|
|
|
2267
2273
|
return await this.deleteWebCustomDomainWithOptions(DomainName, request, headers, runtime);
|
|
2268
2274
|
}
|
|
2269
2275
|
/**
|
|
2270
|
-
*
|
|
2276
|
+
* Deploys an application.
|
|
2271
2277
|
*
|
|
2272
2278
|
* @param tmpReq - DeployApplicationRequest
|
|
2273
2279
|
* @param headers - map
|
|
@@ -2284,6 +2290,9 @@ class Client extends openapi_core_1.default {
|
|
|
2284
2290
|
if (!$dara.isNull(tmpReq.labels)) {
|
|
2285
2291
|
request.labelsShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.labels, "Labels", "json");
|
|
2286
2292
|
}
|
|
2293
|
+
if (!$dara.isNull(tmpReq.raspConfig)) {
|
|
2294
|
+
request.raspConfigShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.raspConfig, "RaspConfig", "json");
|
|
2295
|
+
}
|
|
2287
2296
|
if (!$dara.isNull(tmpReq.sidecarContainersConfig)) {
|
|
2288
2297
|
request.sidecarContainersConfigShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.sidecarContainersConfig, "SidecarContainersConfig", "json");
|
|
2289
2298
|
}
|
|
@@ -2456,6 +2465,9 @@ class Client extends openapi_core_1.default {
|
|
|
2456
2465
|
if (!$dara.isNull(request.pythonModules)) {
|
|
2457
2466
|
query["PythonModules"] = request.pythonModules;
|
|
2458
2467
|
}
|
|
2468
|
+
if (!$dara.isNull(request.raspConfigShrink)) {
|
|
2469
|
+
query["RaspConfig"] = request.raspConfigShrink;
|
|
2470
|
+
}
|
|
2459
2471
|
if (!$dara.isNull(request.readiness)) {
|
|
2460
2472
|
query["Readiness"] = request.readiness;
|
|
2461
2473
|
}
|
|
@@ -2563,7 +2575,7 @@ class Client extends openapi_core_1.default {
|
|
|
2563
2575
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DeployApplicationResponse({}));
|
|
2564
2576
|
}
|
|
2565
2577
|
/**
|
|
2566
|
-
*
|
|
2578
|
+
* Deploys an application.
|
|
2567
2579
|
*
|
|
2568
2580
|
* @param request - DeployApplicationRequest
|
|
2569
2581
|
* @returns DeployApplicationResponse
|
|
@@ -2634,7 +2646,7 @@ class Client extends openapi_core_1.default {
|
|
|
2634
2646
|
return await this.describeAppServiceDetailWithOptions(request, headers, runtime);
|
|
2635
2647
|
}
|
|
2636
2648
|
/**
|
|
2637
|
-
* Retrieves the configuration of an application.
|
|
2649
|
+
* Retrieves the configuration information of an application.
|
|
2638
2650
|
*
|
|
2639
2651
|
* @param request - DescribeApplicationConfigRequest
|
|
2640
2652
|
* @param headers - map
|
|
@@ -2668,7 +2680,7 @@ class Client extends openapi_core_1.default {
|
|
|
2668
2680
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeApplicationConfigResponse({}));
|
|
2669
2681
|
}
|
|
2670
2682
|
/**
|
|
2671
|
-
* Retrieves the configuration of an application.
|
|
2683
|
+
* Retrieves the configuration information of an application.
|
|
2672
2684
|
*
|
|
2673
2685
|
* @param request - DescribeApplicationConfigRequest
|
|
2674
2686
|
* @returns DescribeApplicationConfigResponse
|
|
@@ -5333,7 +5345,7 @@ class Client extends openapi_core_1.default {
|
|
|
5333
5345
|
return await this.listApplicationCenterServiceInstancesWithOptions(request, headers, runtime);
|
|
5334
5346
|
}
|
|
5335
5347
|
/**
|
|
5336
|
-
*
|
|
5348
|
+
* Retrieves a list of applications.
|
|
5337
5349
|
*
|
|
5338
5350
|
* @param request - ListApplicationsRequest
|
|
5339
5351
|
* @param headers - map
|
|
@@ -5373,6 +5385,9 @@ class Client extends openapi_core_1.default {
|
|
|
5373
5385
|
if (!$dara.isNull(request.pageSize)) {
|
|
5374
5386
|
query["PageSize"] = request.pageSize;
|
|
5375
5387
|
}
|
|
5388
|
+
if (!$dara.isNull(request.programmingLanguage)) {
|
|
5389
|
+
query["ProgrammingLanguage"] = request.programmingLanguage;
|
|
5390
|
+
}
|
|
5376
5391
|
if (!$dara.isNull(request.reverse)) {
|
|
5377
5392
|
query["Reverse"] = request.reverse;
|
|
5378
5393
|
}
|
|
@@ -5397,7 +5412,7 @@ class Client extends openapi_core_1.default {
|
|
|
5397
5412
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListApplicationsResponse({}));
|
|
5398
5413
|
}
|
|
5399
5414
|
/**
|
|
5400
|
-
*
|
|
5415
|
+
* Retrieves a list of applications.
|
|
5401
5416
|
*
|
|
5402
5417
|
* @param request - ListApplicationsRequest
|
|
5403
5418
|
* @returns ListApplicationsResponse
|