@alicloud/sas20181203 2.28.0 → 2.28.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
@@ -32555,6 +32555,7 @@ export declare class DescribeCommonOverallConfigResponseBodyOverallConfig extend
32555
32555
  });
32556
32556
  }
32557
32557
  export declare class DescribeCommonOverallConfigListResponseBodyOverallList extends $tea.Model {
32558
+ authVersionList?: string[];
32558
32559
  config?: string;
32559
32560
  totalCount?: number;
32560
32561
  type?: string;
package/dist/client.js CHANGED
@@ -45390,6 +45390,7 @@ exports.DescribeCommonOverallConfigResponseBodyOverallConfig = DescribeCommonOve
45390
45390
  class DescribeCommonOverallConfigListResponseBodyOverallList extends $tea.Model {
45391
45391
  static names() {
45392
45392
  return {
45393
+ authVersionList: 'AuthVersionList',
45393
45394
  config: 'Config',
45394
45395
  totalCount: 'TotalCount',
45395
45396
  type: 'Type',
@@ -45397,6 +45398,7 @@ class DescribeCommonOverallConfigListResponseBodyOverallList extends $tea.Model
45397
45398
  }
45398
45399
  static types() {
45399
45400
  return {
45401
+ authVersionList: { 'type': 'array', 'itemType': 'string' },
45400
45402
  config: 'string',
45401
45403
  totalCount: 'number',
45402
45404
  type: 'string',
@@ -85618,7 +85620,25 @@ class Client extends openapi_client_1.default {
85618
85620
  */
85619
85621
  async listHoneypotEventFlowsWithOptions(request, runtime) {
85620
85622
  tea_util_1.default.validateModel(request);
85621
- let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
85623
+ let query = {};
85624
+ if (!tea_util_1.default.isUnset(request.currentPage)) {
85625
+ query["CurrentPage"] = request.currentPage;
85626
+ }
85627
+ if (!tea_util_1.default.isUnset(request.dealed)) {
85628
+ query["Dealed"] = request.dealed;
85629
+ }
85630
+ if (!tea_util_1.default.isUnset(request.lang)) {
85631
+ query["Lang"] = request.lang;
85632
+ }
85633
+ if (!tea_util_1.default.isUnset(request.pageSize)) {
85634
+ query["PageSize"] = request.pageSize;
85635
+ }
85636
+ if (!tea_util_1.default.isUnset(request.requestId)) {
85637
+ query["RequestId"] = request.requestId;
85638
+ }
85639
+ if (!tea_util_1.default.isUnset(request.securityEventId)) {
85640
+ query["SecurityEventId"] = request.securityEventId;
85641
+ }
85622
85642
  let req = new $OpenApi.OpenApiRequest({
85623
85643
  query: openapi_util_1.default.query(query),
85624
85644
  });
@@ -85627,7 +85647,7 @@ class Client extends openapi_client_1.default {
85627
85647
  version: "2018-12-03",
85628
85648
  protocol: "HTTPS",
85629
85649
  pathname: "/",
85630
- method: "GET",
85650
+ method: "POST",
85631
85651
  authType: "AK",
85632
85652
  style: "RPC",
85633
85653
  reqBodyType: "formData",