@alicloud/esa20240910 2.32.0 → 2.32.1

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 (55) hide show
  1. package/dist/client.d.ts +10 -10
  2. package/dist/client.js +16 -10
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateTransportLayerApplicationRequest.d.ts +73 -1
  5. package/dist/models/CreateTransportLayerApplicationRequest.js +2 -0
  6. package/dist/models/CreateTransportLayerApplicationRequest.js.map +1 -1
  7. package/dist/models/CreateTransportLayerApplicationResponseBody.d.ts +6 -0
  8. package/dist/models/CreateTransportLayerApplicationResponseBody.js.map +1 -1
  9. package/dist/models/CreateTransportLayerApplicationShrinkRequest.d.ts +33 -0
  10. package/dist/models/CreateTransportLayerApplicationShrinkRequest.js +2 -0
  11. package/dist/models/CreateTransportLayerApplicationShrinkRequest.js.map +1 -1
  12. package/dist/models/DeleteTransportLayerApplicationRequest.d.ts +4 -0
  13. package/dist/models/DeleteTransportLayerApplicationRequest.js.map +1 -1
  14. package/dist/models/DeleteTransportLayerApplicationResponseBody.d.ts +3 -0
  15. package/dist/models/DeleteTransportLayerApplicationResponseBody.js.map +1 -1
  16. package/dist/models/GetRoutineResponseBody.d.ts +0 -21
  17. package/dist/models/GetRoutineResponseBody.js +0 -9
  18. package/dist/models/GetRoutineResponseBody.js.map +1 -1
  19. package/dist/models/GetTransportLayerApplicationRequest.d.ts +4 -0
  20. package/dist/models/GetTransportLayerApplicationRequest.js.map +1 -1
  21. package/dist/models/GetTransportLayerApplicationResponseBody.d.ts +117 -0
  22. package/dist/models/GetTransportLayerApplicationResponseBody.js +29 -1
  23. package/dist/models/GetTransportLayerApplicationResponseBody.js.map +1 -1
  24. package/dist/models/ListTransportLayerApplicationsRequest.d.ts +19 -0
  25. package/dist/models/ListTransportLayerApplicationsRequest.js.map +1 -1
  26. package/dist/models/ListTransportLayerApplicationsResponseBody.d.ts +138 -0
  27. package/dist/models/ListTransportLayerApplicationsResponseBody.js +29 -1
  28. package/dist/models/ListTransportLayerApplicationsResponseBody.js.map +1 -1
  29. package/dist/models/UpdateTransportLayerApplicationRequest.d.ts +77 -1
  30. package/dist/models/UpdateTransportLayerApplicationRequest.js +2 -0
  31. package/dist/models/UpdateTransportLayerApplicationRequest.js.map +1 -1
  32. package/dist/models/UpdateTransportLayerApplicationResponseBody.d.ts +3 -0
  33. package/dist/models/UpdateTransportLayerApplicationResponseBody.js.map +1 -1
  34. package/dist/models/UpdateTransportLayerApplicationShrinkRequest.d.ts +36 -0
  35. package/dist/models/UpdateTransportLayerApplicationShrinkRequest.js +2 -0
  36. package/dist/models/UpdateTransportLayerApplicationShrinkRequest.js.map +1 -1
  37. package/dist/models/model.d.ts +2 -0
  38. package/dist/models/model.js +35 -31
  39. package/dist/models/model.js.map +1 -1
  40. package/package.json +1 -1
  41. package/src/client.ts +18 -10
  42. package/src/models/CreateTransportLayerApplicationRequest.ts +75 -1
  43. package/src/models/CreateTransportLayerApplicationResponseBody.ts +6 -0
  44. package/src/models/CreateTransportLayerApplicationShrinkRequest.ts +35 -0
  45. package/src/models/DeleteTransportLayerApplicationRequest.ts +4 -0
  46. package/src/models/DeleteTransportLayerApplicationResponseBody.ts +3 -0
  47. package/src/models/GetRoutineResponseBody.ts +0 -30
  48. package/src/models/GetTransportLayerApplicationRequest.ts +4 -0
  49. package/src/models/GetTransportLayerApplicationResponseBody.ts +136 -0
  50. package/src/models/ListTransportLayerApplicationsRequest.ts +19 -0
  51. package/src/models/ListTransportLayerApplicationsResponseBody.ts +157 -0
  52. package/src/models/UpdateTransportLayerApplicationRequest.ts +79 -1
  53. package/src/models/UpdateTransportLayerApplicationResponseBody.ts +3 -0
  54. package/src/models/UpdateTransportLayerApplicationShrinkRequest.ts +38 -0
  55. package/src/models/model.ts +2 -0
package/dist/client.d.ts CHANGED
@@ -1009,7 +1009,7 @@ export default class Client extends OpenApi {
1009
1009
  */
1010
1010
  createSlrRoleForRealtimeLog(): Promise<$_model.CreateSlrRoleForRealtimeLogResponse>;
1011
1011
  /**
1012
- * 创建四层应用
1012
+ * Create Transport Layer Application
1013
1013
  *
1014
1014
  * @param tmpReq - CreateTransportLayerApplicationRequest
1015
1015
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1017,7 +1017,7 @@ export default class Client extends OpenApi {
1017
1017
  */
1018
1018
  createTransportLayerApplicationWithOptions(tmpReq: $_model.CreateTransportLayerApplicationRequest, runtime: $dara.RuntimeOptions): Promise<$_model.CreateTransportLayerApplicationResponse>;
1019
1019
  /**
1020
- * 创建四层应用
1020
+ * Create Transport Layer Application
1021
1021
  *
1022
1022
  * @param request - CreateTransportLayerApplicationRequest
1023
1023
  * @returns CreateTransportLayerApplicationResponse
@@ -1778,7 +1778,7 @@ export default class Client extends OpenApi {
1778
1778
  */
1779
1779
  deleteSiteOriginClientCertificate(request: $_model.DeleteSiteOriginClientCertificateRequest): Promise<$_model.DeleteSiteOriginClientCertificateResponse>;
1780
1780
  /**
1781
- * 删除四层应用
1781
+ * Delete Transport Layer Application
1782
1782
  *
1783
1783
  * @param request - DeleteTransportLayerApplicationRequest
1784
1784
  * @param runtime - runtime options for this request RuntimeOptions
@@ -1786,7 +1786,7 @@ export default class Client extends OpenApi {
1786
1786
  */
1787
1787
  deleteTransportLayerApplicationWithOptions(request: $_model.DeleteTransportLayerApplicationRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteTransportLayerApplicationResponse>;
1788
1788
  /**
1789
- * 删除四层应用
1789
+ * Delete Transport Layer Application
1790
1790
  *
1791
1791
  * @param request - DeleteTransportLayerApplicationRequest
1792
1792
  * @returns DeleteTransportLayerApplicationResponse
@@ -3253,7 +3253,7 @@ export default class Client extends OpenApi {
3253
3253
  */
3254
3254
  getTieredCache(request: $_model.GetTieredCacheRequest): Promise<$_model.GetTieredCacheResponse>;
3255
3255
  /**
3256
- * 查询四层应用详情
3256
+ * Query details of the transport layer application
3257
3257
  *
3258
3258
  * @param request - GetTransportLayerApplicationRequest
3259
3259
  * @param runtime - runtime options for this request RuntimeOptions
@@ -3261,7 +3261,7 @@ export default class Client extends OpenApi {
3261
3261
  */
3262
3262
  getTransportLayerApplicationWithOptions(request: $_model.GetTransportLayerApplicationRequest, runtime: $dara.RuntimeOptions): Promise<$_model.GetTransportLayerApplicationResponse>;
3263
3263
  /**
3264
- * 查询四层应用详情
3264
+ * Query details of the transport layer application
3265
3265
  *
3266
3266
  * @param request - GetTransportLayerApplicationRequest
3267
3267
  * @returns GetTransportLayerApplicationResponse
@@ -4180,7 +4180,7 @@ export default class Client extends OpenApi {
4180
4180
  */
4181
4181
  listTagResources(request: $_model.ListTagResourcesRequest): Promise<$_model.ListTagResourcesResponse>;
4182
4182
  /**
4183
- * 查询四层应用列表
4183
+ * List of Transport Layer Applications
4184
4184
  *
4185
4185
  * @param request - ListTransportLayerApplicationsRequest
4186
4186
  * @param runtime - runtime options for this request RuntimeOptions
@@ -4188,7 +4188,7 @@ export default class Client extends OpenApi {
4188
4188
  */
4189
4189
  listTransportLayerApplicationsWithOptions(request: $_model.ListTransportLayerApplicationsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ListTransportLayerApplicationsResponse>;
4190
4190
  /**
4191
- * 查询四层应用列表
4191
+ * List of Transport Layer Applications
4192
4192
  *
4193
4193
  * @param request - ListTransportLayerApplicationsRequest
4194
4194
  * @returns ListTransportLayerApplicationsResponse
@@ -5532,7 +5532,7 @@ export default class Client extends OpenApi {
5532
5532
  */
5533
5533
  updateTieredCache(request: $_model.UpdateTieredCacheRequest): Promise<$_model.UpdateTieredCacheResponse>;
5534
5534
  /**
5535
- * 修改四层应用
5535
+ * Modify Transport Layer Application
5536
5536
  *
5537
5537
  * @param tmpReq - UpdateTransportLayerApplicationRequest
5538
5538
  * @param runtime - runtime options for this request RuntimeOptions
@@ -5540,7 +5540,7 @@ export default class Client extends OpenApi {
5540
5540
  */
5541
5541
  updateTransportLayerApplicationWithOptions(tmpReq: $_model.UpdateTransportLayerApplicationRequest, runtime: $dara.RuntimeOptions): Promise<$_model.UpdateTransportLayerApplicationResponse>;
5542
5542
  /**
5543
- * 修改四层应用
5543
+ * Modify Transport Layer Application
5544
5544
  *
5545
5545
  * @param request - UpdateTransportLayerApplicationRequest
5546
5546
  * @returns UpdateTransportLayerApplicationResponse
package/dist/client.js CHANGED
@@ -3454,7 +3454,7 @@ class Client extends openapi_core_1.default {
3454
3454
  return await this.createSlrRoleForRealtimeLogWithOptions(runtime);
3455
3455
  }
3456
3456
  /**
3457
- * 创建四层应用
3457
+ * Create Transport Layer Application
3458
3458
  *
3459
3459
  * @param tmpReq - CreateTransportLayerApplicationRequest
3460
3460
  * @param runtime - runtime options for this request RuntimeOptions
@@ -3486,6 +3486,9 @@ class Client extends openapi_core_1.default {
3486
3486
  if (!$dara.isNull(request.siteId)) {
3487
3487
  query["SiteId"] = request.siteId;
3488
3488
  }
3489
+ if (!$dara.isNull(request.staticIp)) {
3490
+ query["StaticIp"] = request.staticIp;
3491
+ }
3489
3492
  let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
3490
3493
  query: openapi_core_2.OpenApiUtil.query(query),
3491
3494
  });
@@ -3503,7 +3506,7 @@ class Client extends openapi_core_1.default {
3503
3506
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.CreateTransportLayerApplicationResponse({}));
3504
3507
  }
3505
3508
  /**
3506
- * 创建四层应用
3509
+ * Create Transport Layer Application
3507
3510
  *
3508
3511
  * @param request - CreateTransportLayerApplicationRequest
3509
3512
  * @returns CreateTransportLayerApplicationResponse
@@ -5725,7 +5728,7 @@ class Client extends openapi_core_1.default {
5725
5728
  return await this.deleteSiteOriginClientCertificateWithOptions(request, runtime);
5726
5729
  }
5727
5730
  /**
5728
- * 删除四层应用
5731
+ * Delete Transport Layer Application
5729
5732
  *
5730
5733
  * @param request - DeleteTransportLayerApplicationRequest
5731
5734
  * @param runtime - runtime options for this request RuntimeOptions
@@ -5757,7 +5760,7 @@ class Client extends openapi_core_1.default {
5757
5760
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.DeleteTransportLayerApplicationResponse({}));
5758
5761
  }
5759
5762
  /**
5760
- * 删除四层应用
5763
+ * Delete Transport Layer Application
5761
5764
  *
5762
5765
  * @param request - DeleteTransportLayerApplicationRequest
5763
5766
  * @returns DeleteTransportLayerApplicationResponse
@@ -9433,7 +9436,7 @@ class Client extends openapi_core_1.default {
9433
9436
  return await this.getTieredCacheWithOptions(request, runtime);
9434
9437
  }
9435
9438
  /**
9436
- * 查询四层应用详情
9439
+ * Query details of the transport layer application
9437
9440
  *
9438
9441
  * @param request - GetTransportLayerApplicationRequest
9439
9442
  * @param runtime - runtime options for this request RuntimeOptions
@@ -9459,7 +9462,7 @@ class Client extends openapi_core_1.default {
9459
9462
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.GetTransportLayerApplicationResponse({}));
9460
9463
  }
9461
9464
  /**
9462
- * 查询四层应用详情
9465
+ * Query details of the transport layer application
9463
9466
  *
9464
9467
  * @param request - GetTransportLayerApplicationRequest
9465
9468
  * @returns GetTransportLayerApplicationResponse
@@ -11755,7 +11758,7 @@ class Client extends openapi_core_1.default {
11755
11758
  return await this.listTagResourcesWithOptions(request, runtime);
11756
11759
  }
11757
11760
  /**
11758
- * 查询四层应用列表
11761
+ * List of Transport Layer Applications
11759
11762
  *
11760
11763
  * @param request - ListTransportLayerApplicationsRequest
11761
11764
  * @param runtime - runtime options for this request RuntimeOptions
@@ -11781,7 +11784,7 @@ class Client extends openapi_core_1.default {
11781
11784
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListTransportLayerApplicationsResponse({}));
11782
11785
  }
11783
11786
  /**
11784
- * 查询四层应用列表
11787
+ * List of Transport Layer Applications
11785
11788
  *
11786
11789
  * @param request - ListTransportLayerApplicationsRequest
11787
11790
  * @returns ListTransportLayerApplicationsResponse
@@ -16255,7 +16258,7 @@ class Client extends openapi_core_1.default {
16255
16258
  return await this.updateTieredCacheWithOptions(request, runtime);
16256
16259
  }
16257
16260
  /**
16258
- * 修改四层应用
16261
+ * Modify Transport Layer Application
16259
16262
  *
16260
16263
  * @param tmpReq - UpdateTransportLayerApplicationRequest
16261
16264
  * @param runtime - runtime options for this request RuntimeOptions
@@ -16287,6 +16290,9 @@ class Client extends openapi_core_1.default {
16287
16290
  if (!$dara.isNull(request.siteId)) {
16288
16291
  query["SiteId"] = request.siteId;
16289
16292
  }
16293
+ if (!$dara.isNull(request.staticIp)) {
16294
+ query["StaticIp"] = request.staticIp;
16295
+ }
16290
16296
  let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
16291
16297
  query: openapi_core_2.OpenApiUtil.query(query),
16292
16298
  });
@@ -16304,7 +16310,7 @@ class Client extends openapi_core_1.default {
16304
16310
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.UpdateTransportLayerApplicationResponse({}));
16305
16311
  }
16306
16312
  /**
16307
- * 修改四层应用
16313
+ * Modify Transport Layer Application
16308
16314
  *
16309
16315
  * @param request - UpdateTransportLayerApplicationRequest
16310
16316
  * @returns UpdateTransportLayerApplicationResponse