@alicloud/eas20210701 7.3.0 → 7.3.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.
package/dist/client.d.ts CHANGED
@@ -1055,12 +1055,12 @@ export default class Client extends OpenApi {
1055
1055
  /**
1056
1056
  * Queries a list of private gateways.
1057
1057
  *
1058
- * @param request - ListGatewayRequest
1058
+ * @param tmpReq - ListGatewayRequest
1059
1059
  * @param headers - map
1060
1060
  * @param runtime - runtime options for this request RuntimeOptions
1061
1061
  * @returns ListGatewayResponse
1062
1062
  */
1063
- listGatewayWithOptions(request: $_model.ListGatewayRequest, headers: {
1063
+ listGatewayWithOptions(tmpReq: $_model.ListGatewayRequest, headers: {
1064
1064
  [key: string]: string;
1065
1065
  }, runtime: $dara.RuntimeOptions): Promise<$_model.ListGatewayResponse>;
1066
1066
  /**
package/dist/client.js CHANGED
@@ -2763,13 +2763,18 @@ class Client extends openapi_core_1.default {
2763
2763
  /**
2764
2764
  * Queries a list of private gateways.
2765
2765
  *
2766
- * @param request - ListGatewayRequest
2766
+ * @param tmpReq - ListGatewayRequest
2767
2767
  * @param headers - map
2768
2768
  * @param runtime - runtime options for this request RuntimeOptions
2769
2769
  * @returns ListGatewayResponse
2770
2770
  */
2771
- async listGatewayWithOptions(request, headers, runtime) {
2772
- request.validate();
2771
+ async listGatewayWithOptions(tmpReq, headers, runtime) {
2772
+ tmpReq.validate();
2773
+ let request = new $_model.ListGatewayShrinkRequest({});
2774
+ openapi_core_2.OpenApiUtil.convert(tmpReq, request);
2775
+ if (!$dara.isNull(tmpReq.label)) {
2776
+ request.labelShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.label, "Label", "json");
2777
+ }
2773
2778
  let query = {};
2774
2779
  if (!$dara.isNull(request.chargeType)) {
2775
2780
  query["ChargeType"] = request.chargeType;
@@ -2786,6 +2791,9 @@ class Client extends openapi_core_1.default {
2786
2791
  if (!$dara.isNull(request.internetEnabled)) {
2787
2792
  query["InternetEnabled"] = request.internetEnabled;
2788
2793
  }
2794
+ if (!$dara.isNull(request.labelShrink)) {
2795
+ query["Label"] = request.labelShrink;
2796
+ }
2789
2797
  if (!$dara.isNull(request.order)) {
2790
2798
  query["Order"] = request.order;
2791
2799
  }