@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/dist/client.d.ts +2 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/dist/client.d.ts
CHANGED
|
@@ -8192,6 +8192,7 @@ export declare class SetAccessControlListAttributeResponse extends $tea.Model {
|
|
|
8192
8192
|
export declare class SetApiProductsAuthoritiesRequest extends $tea.Model {
|
|
8193
8193
|
apiProductIds?: string[];
|
|
8194
8194
|
appId?: number;
|
|
8195
|
+
authValidTime?: string;
|
|
8195
8196
|
description?: string;
|
|
8196
8197
|
securityToken?: string;
|
|
8197
8198
|
static names(): {
|
|
@@ -8207,6 +8208,7 @@ export declare class SetApiProductsAuthoritiesRequest extends $tea.Model {
|
|
|
8207
8208
|
export declare class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
|
|
8208
8209
|
apiProductIdsShrink?: string;
|
|
8209
8210
|
appId?: number;
|
|
8211
|
+
authValidTime?: string;
|
|
8210
8212
|
description?: string;
|
|
8211
8213
|
securityToken?: string;
|
|
8212
8214
|
static names(): {
|
package/dist/client.js
CHANGED
|
@@ -11473,6 +11473,7 @@ class SetApiProductsAuthoritiesRequest extends $tea.Model {
|
|
|
11473
11473
|
return {
|
|
11474
11474
|
apiProductIds: 'ApiProductIds',
|
|
11475
11475
|
appId: 'AppId',
|
|
11476
|
+
authValidTime: 'AuthValidTime',
|
|
11476
11477
|
description: 'Description',
|
|
11477
11478
|
securityToken: 'SecurityToken',
|
|
11478
11479
|
};
|
|
@@ -11481,6 +11482,7 @@ class SetApiProductsAuthoritiesRequest extends $tea.Model {
|
|
|
11481
11482
|
return {
|
|
11482
11483
|
apiProductIds: { 'type': 'array', 'itemType': 'string' },
|
|
11483
11484
|
appId: 'number',
|
|
11485
|
+
authValidTime: 'string',
|
|
11484
11486
|
description: 'string',
|
|
11485
11487
|
securityToken: 'string',
|
|
11486
11488
|
};
|
|
@@ -11495,6 +11497,7 @@ class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
|
|
|
11495
11497
|
return {
|
|
11496
11498
|
apiProductIdsShrink: 'ApiProductIds',
|
|
11497
11499
|
appId: 'AppId',
|
|
11500
|
+
authValidTime: 'AuthValidTime',
|
|
11498
11501
|
description: 'Description',
|
|
11499
11502
|
securityToken: 'SecurityToken',
|
|
11500
11503
|
};
|
|
@@ -11503,6 +11506,7 @@ class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
|
|
|
11503
11506
|
return {
|
|
11504
11507
|
apiProductIdsShrink: 'string',
|
|
11505
11508
|
appId: 'number',
|
|
11509
|
+
authValidTime: 'string',
|
|
11506
11510
|
description: 'string',
|
|
11507
11511
|
securityToken: 'string',
|
|
11508
11512
|
};
|
|
@@ -27015,6 +27019,9 @@ class Client extends openapi_client_1.default {
|
|
|
27015
27019
|
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
27016
27020
|
query["AppId"] = request.appId;
|
|
27017
27021
|
}
|
|
27022
|
+
if (!tea_util_1.default.isUnset(request.authValidTime)) {
|
|
27023
|
+
query["AuthValidTime"] = request.authValidTime;
|
|
27024
|
+
}
|
|
27018
27025
|
if (!tea_util_1.default.isUnset(request.description)) {
|
|
27019
27026
|
query["Description"] = request.description;
|
|
27020
27027
|
}
|