@alicloud/cloudapi20160714 3.1.0 → 3.1.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/cloudapi20160714",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -14545,12 +14545,14 @@ export class SetAccessControlListAttributeResponse extends $tea.Model {
14545
14545
  export class SetApiProductsAuthoritiesRequest extends $tea.Model {
14546
14546
  apiProductIds?: string[];
14547
14547
  appId?: number;
14548
+ authValidTime?: string;
14548
14549
  description?: string;
14549
14550
  securityToken?: string;
14550
14551
  static names(): { [key: string]: string } {
14551
14552
  return {
14552
14553
  apiProductIds: 'ApiProductIds',
14553
14554
  appId: 'AppId',
14555
+ authValidTime: 'AuthValidTime',
14554
14556
  description: 'Description',
14555
14557
  securityToken: 'SecurityToken',
14556
14558
  };
@@ -14560,6 +14562,7 @@ export class SetApiProductsAuthoritiesRequest extends $tea.Model {
14560
14562
  return {
14561
14563
  apiProductIds: { 'type': 'array', 'itemType': 'string' },
14562
14564
  appId: 'number',
14565
+ authValidTime: 'string',
14563
14566
  description: 'string',
14564
14567
  securityToken: 'string',
14565
14568
  };
@@ -14573,12 +14576,14 @@ export class SetApiProductsAuthoritiesRequest extends $tea.Model {
14573
14576
  export class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
14574
14577
  apiProductIdsShrink?: string;
14575
14578
  appId?: number;
14579
+ authValidTime?: string;
14576
14580
  description?: string;
14577
14581
  securityToken?: string;
14578
14582
  static names(): { [key: string]: string } {
14579
14583
  return {
14580
14584
  apiProductIdsShrink: 'ApiProductIds',
14581
14585
  appId: 'AppId',
14586
+ authValidTime: 'AuthValidTime',
14582
14587
  description: 'Description',
14583
14588
  securityToken: 'SecurityToken',
14584
14589
  };
@@ -14588,6 +14593,7 @@ export class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
14588
14593
  return {
14589
14594
  apiProductIdsShrink: 'string',
14590
14595
  appId: 'number',
14596
+ authValidTime: 'string',
14591
14597
  description: 'string',
14592
14598
  securityToken: 'string',
14593
14599
  };
@@ -33351,6 +33357,10 @@ export default class Client extends OpenApi {
33351
33357
  query["AppId"] = request.appId;
33352
33358
  }
33353
33359
 
33360
+ if (!Util.isUnset(request.authValidTime)) {
33361
+ query["AuthValidTime"] = request.authValidTime;
33362
+ }
33363
+
33354
33364
  if (!Util.isUnset(request.description)) {
33355
33365
  query["Description"] = request.description;
33356
33366
  }