@alicloud/sae20190506 2.9.1 → 2.9.2

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.
Files changed (40) hide show
  1. package/dist/client.d.ts +10 -2
  2. package/dist/client.js +16 -2
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/BatchRestartApplicationsRequest.d.ts +4 -0
  5. package/dist/models/BatchRestartApplicationsRequest.js.map +1 -1
  6. package/dist/models/BatchRestartApplicationsResponseBody.d.ts +37 -0
  7. package/dist/models/BatchRestartApplicationsResponseBody.js.map +1 -1
  8. package/dist/models/CreateIngressRequest.d.ts +70 -0
  9. package/dist/models/CreateIngressRequest.js.map +1 -1
  10. package/dist/models/DescribeApplicationMseServiceRequest.d.ts +4 -0
  11. package/dist/models/DescribeApplicationMseServiceRequest.js.map +1 -1
  12. package/dist/models/DescribeApplicationMseServiceResponseBody.d.ts +69 -0
  13. package/dist/models/DescribeApplicationMseServiceResponseBody.js.map +1 -1
  14. package/dist/models/QueryArmsEnableRequest.d.ts +2 -0
  15. package/dist/models/QueryArmsEnableRequest.js.map +1 -1
  16. package/dist/models/QueryArmsEnableResponseBody.d.ts +38 -0
  17. package/dist/models/QueryArmsEnableResponseBody.js.map +1 -1
  18. package/dist/models/RescaleApplicationVerticallyRequest.d.ts +1 -0
  19. package/dist/models/RescaleApplicationVerticallyRequest.js +2 -0
  20. package/dist/models/RescaleApplicationVerticallyRequest.js.map +1 -1
  21. package/dist/models/UpdateApplicationVswitchesRequest.d.ts +1 -0
  22. package/dist/models/UpdateApplicationVswitchesRequest.js +2 -0
  23. package/dist/models/UpdateApplicationVswitchesRequest.js.map +1 -1
  24. package/dist/models/UpdateNamespaceSlsConfigsRequest.d.ts +24 -0
  25. package/dist/models/UpdateNamespaceSlsConfigsRequest.js.map +1 -1
  26. package/dist/models/UpdateNamespaceSlsConfigsResponseBody.d.ts +23 -1
  27. package/dist/models/UpdateNamespaceSlsConfigsResponseBody.js.map +1 -1
  28. package/package.json +1 -1
  29. package/src/client.ts +18 -2
  30. package/src/models/BatchRestartApplicationsRequest.ts +4 -0
  31. package/src/models/BatchRestartApplicationsResponseBody.ts +37 -0
  32. package/src/models/CreateIngressRequest.ts +70 -0
  33. package/src/models/DescribeApplicationMseServiceRequest.ts +4 -0
  34. package/src/models/DescribeApplicationMseServiceResponseBody.ts +69 -0
  35. package/src/models/QueryArmsEnableRequest.ts +2 -0
  36. package/src/models/QueryArmsEnableResponseBody.ts +38 -0
  37. package/src/models/RescaleApplicationVerticallyRequest.ts +3 -0
  38. package/src/models/UpdateApplicationVswitchesRequest.ts +3 -0
  39. package/src/models/UpdateNamespaceSlsConfigsRequest.ts +24 -0
  40. package/src/models/UpdateNamespaceSlsConfigsResponseBody.ts +23 -1
package/dist/client.d.ts CHANGED
@@ -45,7 +45,7 @@ export default class Client extends OpenApi {
45
45
  */
46
46
  abortChangeOrder(request: $_model.AbortChangeOrderRequest): Promise<$_model.AbortChangeOrderResponse>;
47
47
  /**
48
- * 批量重启应用
48
+ * Restarts applications in batches.
49
49
  *
50
50
  * @param request - BatchRestartApplicationsRequest
51
51
  * @param headers - map
@@ -56,7 +56,7 @@ export default class Client extends OpenApi {
56
56
  [key: string]: string;
57
57
  }, runtime: $dara.RuntimeOptions): Promise<$_model.BatchRestartApplicationsResponse>;
58
58
  /**
59
- * 批量重启应用
59
+ * Restarts applications in batches.
60
60
  *
61
61
  * @param request - BatchRestartApplicationsRequest
62
62
  * @returns BatchRestartApplicationsResponse
@@ -777,6 +777,8 @@ export default class Client extends OpenApi {
777
777
  */
778
778
  describeApplicationInstances(request: $_model.DescribeApplicationInstancesRequest): Promise<$_model.DescribeApplicationInstancesResponse>;
779
779
  /**
780
+ * Queries the information of the associated MSE microservice governance application.
781
+ *
780
782
  * @param request - DescribeApplicationMseServiceRequest
781
783
  * @param headers - map
782
784
  * @param runtime - runtime options for this request RuntimeOptions
@@ -786,6 +788,8 @@ export default class Client extends OpenApi {
786
788
  [key: string]: string;
787
789
  }, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeApplicationMseServiceResponse>;
788
790
  /**
791
+ * Queries the information of the associated MSE microservice governance application.
792
+ *
789
793
  * @param request - DescribeApplicationMseServiceRequest
790
794
  * @returns DescribeApplicationMseServiceResponse
791
795
  */
@@ -2115,6 +2119,8 @@ export default class Client extends OpenApi {
2115
2119
  */
2116
2120
  publishWebApplicationRevision(ApplicationId: string, request: $_model.PublishWebApplicationRevisionRequest): Promise<$_model.PublishWebApplicationRevisionResponse>;
2117
2121
  /**
2122
+ * Queries whether ARMS monitoring is enabled for a specified application.
2123
+ *
2118
2124
  * @param request - QueryArmsEnableRequest
2119
2125
  * @param headers - map
2120
2126
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2124,6 +2130,8 @@ export default class Client extends OpenApi {
2124
2130
  [key: string]: string;
2125
2131
  }, runtime: $dara.RuntimeOptions): Promise<$_model.QueryArmsEnableResponse>;
2126
2132
  /**
2133
+ * Queries whether ARMS monitoring is enabled for a specified application.
2134
+ *
2127
2135
  * @param request - QueryArmsEnableRequest
2128
2136
  * @returns QueryArmsEnableResponse
2129
2137
  */
package/dist/client.js CHANGED
@@ -149,7 +149,7 @@ class Client extends openapi_core_1.default {
149
149
  return await this.abortChangeOrderWithOptions(request, headers, runtime);
150
150
  }
151
151
  /**
152
- * 批量重启应用
152
+ * Restarts applications in batches.
153
153
  *
154
154
  * @param request - BatchRestartApplicationsRequest
155
155
  * @param headers - map
@@ -183,7 +183,7 @@ class Client extends openapi_core_1.default {
183
183
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.BatchRestartApplicationsResponse({}));
184
184
  }
185
185
  /**
186
- * 批量重启应用
186
+ * Restarts applications in batches.
187
187
  *
188
188
  * @param request - BatchRestartApplicationsRequest
189
189
  * @returns BatchRestartApplicationsResponse
@@ -2787,6 +2787,8 @@ class Client extends openapi_core_1.default {
2787
2787
  return await this.describeApplicationInstancesWithOptions(request, headers, runtime);
2788
2788
  }
2789
2789
  /**
2790
+ * Queries the information of the associated MSE microservice governance application.
2791
+ *
2790
2792
  * @param request - DescribeApplicationMseServiceRequest
2791
2793
  * @param headers - map
2792
2794
  * @param runtime - runtime options for this request RuntimeOptions
@@ -2819,6 +2821,8 @@ class Client extends openapi_core_1.default {
2819
2821
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeApplicationMseServiceResponse({}));
2820
2822
  }
2821
2823
  /**
2824
+ * Queries the information of the associated MSE microservice governance application.
2825
+ *
2822
2826
  * @param request - DescribeApplicationMseServiceRequest
2823
2827
  * @returns DescribeApplicationMseServiceResponse
2824
2828
  */
@@ -6243,6 +6247,8 @@ class Client extends openapi_core_1.default {
6243
6247
  return await this.publishWebApplicationRevisionWithOptions(ApplicationId, request, headers, runtime);
6244
6248
  }
6245
6249
  /**
6250
+ * Queries whether ARMS monitoring is enabled for a specified application.
6251
+ *
6246
6252
  * @param request - QueryArmsEnableRequest
6247
6253
  * @param headers - map
6248
6254
  * @param runtime - runtime options for this request RuntimeOptions
@@ -6272,6 +6278,8 @@ class Client extends openapi_core_1.default {
6272
6278
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.QueryArmsEnableResponse({}));
6273
6279
  }
6274
6280
  /**
6281
+ * Queries whether ARMS monitoring is enabled for a specified application.
6282
+ *
6275
6283
  * @param request - QueryArmsEnableRequest
6276
6284
  * @returns QueryArmsEnableResponse
6277
6285
  */
@@ -6438,6 +6446,9 @@ class Client extends openapi_core_1.default {
6438
6446
  if (!$dara.isNull(request.cpu)) {
6439
6447
  query["Cpu"] = request.cpu;
6440
6448
  }
6449
+ if (!$dara.isNull(request.deploy)) {
6450
+ query["Deploy"] = request.deploy;
6451
+ }
6441
6452
  if (!$dara.isNull(request.diskSize)) {
6442
6453
  query["DiskSize"] = request.diskSize;
6443
6454
  }
@@ -7295,6 +7306,9 @@ class Client extends openapi_core_1.default {
7295
7306
  if (!$dara.isNull(request.appId)) {
7296
7307
  query["AppId"] = request.appId;
7297
7308
  }
7309
+ if (!$dara.isNull(request.deploy)) {
7310
+ query["Deploy"] = request.deploy;
7311
+ }
7298
7312
  if (!$dara.isNull(request.vSwitchId)) {
7299
7313
  query["VSwitchId"] = request.vSwitchId;
7300
7314
  }