@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/ecd20200930",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -8394,6 +8394,7 @@ export class DescribeOfficeSitesRequest extends $tea.Model {
8394
8394
  officeSiteId?: string[];
8395
8395
  officeSiteType?: string;
8396
8396
  regionId?: string;
8397
+ securityProtection?: string;
8397
8398
  status?: string;
8398
8399
  static names(): { [key: string]: string } {
8399
8400
  return {
@@ -8402,6 +8403,7 @@ export class DescribeOfficeSitesRequest extends $tea.Model {
8402
8403
  officeSiteId: 'OfficeSiteId',
8403
8404
  officeSiteType: 'OfficeSiteType',
8404
8405
  regionId: 'RegionId',
8406
+ securityProtection: 'SecurityProtection',
8405
8407
  status: 'Status',
8406
8408
  };
8407
8409
  }
@@ -8413,6 +8415,7 @@ export class DescribeOfficeSitesRequest extends $tea.Model {
8413
8415
  officeSiteId: { 'type': 'array', 'itemType': 'string' },
8414
8416
  officeSiteType: 'string',
8415
8417
  regionId: 'string',
8418
+ securityProtection: 'string',
8416
8419
  status: 'string',
8417
8420
  };
8418
8421
  }
@@ -8426,11 +8429,13 @@ export class DescribeOfficeSitesResponseBody extends $tea.Model {
8426
8429
  nextToken?: string;
8427
8430
  officeSites?: DescribeOfficeSitesResponseBodyOfficeSites[];
8428
8431
  requestId?: string;
8432
+ totalCount?: number;
8429
8433
  static names(): { [key: string]: string } {
8430
8434
  return {
8431
8435
  nextToken: 'NextToken',
8432
8436
  officeSites: 'OfficeSites',
8433
8437
  requestId: 'RequestId',
8438
+ totalCount: 'TotalCount',
8434
8439
  };
8435
8440
  }
8436
8441
 
@@ -8439,6 +8444,7 @@ export class DescribeOfficeSitesResponseBody extends $tea.Model {
8439
8444
  nextToken: 'string',
8440
8445
  officeSites: { 'type': 'array', 'itemType': DescribeOfficeSitesResponseBodyOfficeSites },
8441
8446
  requestId: 'string',
8447
+ totalCount: 'number',
8442
8448
  };
8443
8449
  }
8444
8450
 
@@ -20635,6 +20641,7 @@ export class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Model {
20635
20641
  rdsLicenseAddress?: string;
20636
20642
  rdsLicenseDomainName?: string;
20637
20643
  rdsLicenseStatus?: string;
20644
+ securityProtection?: string;
20638
20645
  ssoEnabled?: boolean;
20639
20646
  ssoType?: string;
20640
20647
  status?: string;
@@ -20686,6 +20693,7 @@ export class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Model {
20686
20693
  rdsLicenseAddress: 'RdsLicenseAddress',
20687
20694
  rdsLicenseDomainName: 'RdsLicenseDomainName',
20688
20695
  rdsLicenseStatus: 'RdsLicenseStatus',
20696
+ securityProtection: 'SecurityProtection',
20689
20697
  ssoEnabled: 'SsoEnabled',
20690
20698
  ssoType: 'SsoType',
20691
20699
  status: 'Status',
@@ -20740,6 +20748,7 @@ export class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Model {
20740
20748
  rdsLicenseAddress: 'string',
20741
20749
  rdsLicenseDomainName: 'string',
20742
20750
  rdsLicenseStatus: 'string',
20751
+ securityProtection: 'string',
20743
20752
  ssoEnabled: 'boolean',
20744
20753
  ssoType: 'string',
20745
20754
  status: 'string',
@@ -29756,6 +29765,10 @@ export default class Client extends OpenApi {
29756
29765
  query["RegionId"] = request.regionId;
29757
29766
  }
29758
29767
 
29768
+ if (!Util.isUnset(request.securityProtection)) {
29769
+ query["SecurityProtection"] = request.securityProtection;
29770
+ }
29771
+
29759
29772
  if (!Util.isUnset(request.status)) {
29760
29773
  query["Status"] = request.status;
29761
29774
  }