@alicloud/ecd20200930 4.0.0 → 4.0.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
@@ -4612,6 +4612,7 @@ export declare class DescribeOfficeSitesRequest extends $tea.Model {
4612
4612
  officeSiteId?: string[];
4613
4613
  officeSiteType?: string;
4614
4614
  regionId?: string;
4615
+ securityProtection?: string;
4615
4616
  status?: string;
4616
4617
  static names(): {
4617
4618
  [key: string]: string;
@@ -4627,6 +4628,7 @@ export declare class DescribeOfficeSitesResponseBody extends $tea.Model {
4627
4628
  nextToken?: string;
4628
4629
  officeSites?: DescribeOfficeSitesResponseBodyOfficeSites[];
4629
4630
  requestId?: string;
4631
+ totalCount?: number;
4630
4632
  static names(): {
4631
4633
  [key: string]: string;
4632
4634
  };
@@ -11274,6 +11276,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Mod
11274
11276
  rdsLicenseAddress?: string;
11275
11277
  rdsLicenseDomainName?: string;
11276
11278
  rdsLicenseStatus?: string;
11279
+ securityProtection?: string;
11277
11280
  ssoEnabled?: boolean;
11278
11281
  ssoType?: string;
11279
11282
  status?: string;
package/dist/client.js CHANGED
@@ -6599,6 +6599,7 @@ class DescribeOfficeSitesRequest extends $tea.Model {
6599
6599
  officeSiteId: 'OfficeSiteId',
6600
6600
  officeSiteType: 'OfficeSiteType',
6601
6601
  regionId: 'RegionId',
6602
+ securityProtection: 'SecurityProtection',
6602
6603
  status: 'Status',
6603
6604
  };
6604
6605
  }
@@ -6609,6 +6610,7 @@ class DescribeOfficeSitesRequest extends $tea.Model {
6609
6610
  officeSiteId: { 'type': 'array', 'itemType': 'string' },
6610
6611
  officeSiteType: 'string',
6611
6612
  regionId: 'string',
6613
+ securityProtection: 'string',
6612
6614
  status: 'string',
6613
6615
  };
6614
6616
  }
@@ -6623,6 +6625,7 @@ class DescribeOfficeSitesResponseBody extends $tea.Model {
6623
6625
  nextToken: 'NextToken',
6624
6626
  officeSites: 'OfficeSites',
6625
6627
  requestId: 'RequestId',
6628
+ totalCount: 'TotalCount',
6626
6629
  };
6627
6630
  }
6628
6631
  static types() {
@@ -6630,6 +6633,7 @@ class DescribeOfficeSitesResponseBody extends $tea.Model {
6630
6633
  nextToken: 'string',
6631
6634
  officeSites: { 'type': 'array', 'itemType': DescribeOfficeSitesResponseBodyOfficeSites },
6632
6635
  requestId: 'string',
6636
+ totalCount: 'number',
6633
6637
  };
6634
6638
  }
6635
6639
  constructor(map) {
@@ -16147,6 +16151,7 @@ class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Model {
16147
16151
  rdsLicenseAddress: 'RdsLicenseAddress',
16148
16152
  rdsLicenseDomainName: 'RdsLicenseDomainName',
16149
16153
  rdsLicenseStatus: 'RdsLicenseStatus',
16154
+ securityProtection: 'SecurityProtection',
16150
16155
  ssoEnabled: 'SsoEnabled',
16151
16156
  ssoType: 'SsoType',
16152
16157
  status: 'Status',
@@ -16200,6 +16205,7 @@ class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Model {
16200
16205
  rdsLicenseAddress: 'string',
16201
16206
  rdsLicenseDomainName: 'string',
16202
16207
  rdsLicenseStatus: 'string',
16208
+ securityProtection: 'string',
16203
16209
  ssoEnabled: 'boolean',
16204
16210
  ssoType: 'string',
16205
16211
  status: 'string',
@@ -23749,6 +23755,9 @@ class Client extends openapi_client_1.default {
23749
23755
  if (!tea_util_1.default.isUnset(request.regionId)) {
23750
23756
  query["RegionId"] = request.regionId;
23751
23757
  }
23758
+ if (!tea_util_1.default.isUnset(request.securityProtection)) {
23759
+ query["SecurityProtection"] = request.securityProtection;
23760
+ }
23752
23761
  if (!tea_util_1.default.isUnset(request.status)) {
23753
23762
  query["Status"] = request.status;
23754
23763
  }