@alicloud/cloudapi20160714 2.2.19 → 3.0.0
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 +54 -72
- package/dist/client.js +109 -110
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +136 -144
package/dist/client.d.ts
CHANGED
|
@@ -522,6 +522,7 @@ export declare class CreateAppRequest extends $tea.Model {
|
|
|
522
522
|
appName?: string;
|
|
523
523
|
appSecret?: string;
|
|
524
524
|
description?: string;
|
|
525
|
+
extend?: string;
|
|
525
526
|
securityToken?: string;
|
|
526
527
|
tag?: CreateAppRequestTag[];
|
|
527
528
|
static names(): {
|
|
@@ -2261,7 +2262,6 @@ export declare class DescribeApiResponseBody extends $tea.Model {
|
|
|
2261
2262
|
requestId?: string;
|
|
2262
2263
|
requestParameters?: DescribeApiResponseBodyRequestParameters;
|
|
2263
2264
|
resultBodyModel?: string;
|
|
2264
|
-
resultDescriptions?: DescribeApiResponseBodyResultDescriptions;
|
|
2265
2265
|
resultSample?: string;
|
|
2266
2266
|
resultType?: string;
|
|
2267
2267
|
serviceConfig?: DescribeApiResponseBodyServiceConfig;
|
|
@@ -2327,7 +2327,6 @@ export declare class DescribeApiDocResponseBody extends $tea.Model {
|
|
|
2327
2327
|
requestConfig?: DescribeApiDocResponseBodyRequestConfig;
|
|
2328
2328
|
requestId?: string;
|
|
2329
2329
|
requestParameters?: DescribeApiDocResponseBodyRequestParameters;
|
|
2330
|
-
resultDescriptions?: DescribeApiDocResponseBodyResultDescriptions;
|
|
2331
2330
|
resultSample?: string;
|
|
2332
2331
|
resultType?: string;
|
|
2333
2332
|
stageName?: string;
|
|
@@ -2375,7 +2374,6 @@ export declare class DescribeApiGroupRequest extends $tea.Model {
|
|
|
2375
2374
|
export declare class DescribeApiGroupResponseBody extends $tea.Model {
|
|
2376
2375
|
basePath?: string;
|
|
2377
2376
|
billingStatus?: string;
|
|
2378
|
-
classicVpcSubDomain?: string;
|
|
2379
2377
|
cloudMarketCommodity?: boolean;
|
|
2380
2378
|
cmsMonitorGroup?: string;
|
|
2381
2379
|
compatibleFlags?: string;
|
|
@@ -2392,7 +2390,6 @@ export declare class DescribeApiGroupResponseBody extends $tea.Model {
|
|
|
2392
2390
|
illegalStatus?: string;
|
|
2393
2391
|
instanceId?: string;
|
|
2394
2392
|
instanceType?: string;
|
|
2395
|
-
instanceVipList?: string;
|
|
2396
2393
|
ipv6Status?: string;
|
|
2397
2394
|
migrationError?: string;
|
|
2398
2395
|
migrationStatus?: string;
|
|
@@ -2400,7 +2397,6 @@ export declare class DescribeApiGroupResponseBody extends $tea.Model {
|
|
|
2400
2397
|
passthroughHeaders?: string;
|
|
2401
2398
|
regionId?: string;
|
|
2402
2399
|
requestId?: string;
|
|
2403
|
-
rpcPattern?: string;
|
|
2404
2400
|
stageItems?: DescribeApiGroupResponseBodyStageItems;
|
|
2405
2401
|
status?: string;
|
|
2406
2402
|
subDomain?: string;
|
|
@@ -3304,6 +3300,7 @@ export declare class DescribeAppResponseBody extends $tea.Model {
|
|
|
3304
3300
|
appName?: string;
|
|
3305
3301
|
createdTime?: string;
|
|
3306
3302
|
description?: string;
|
|
3303
|
+
extend?: string;
|
|
3307
3304
|
modifiedTime?: string;
|
|
3308
3305
|
requestId?: string;
|
|
3309
3306
|
static names(): {
|
|
@@ -3338,6 +3335,7 @@ export declare class DescribeAppAttributesRequest extends $tea.Model {
|
|
|
3338
3335
|
appKey?: string;
|
|
3339
3336
|
appName?: string;
|
|
3340
3337
|
enableTagAuth?: boolean;
|
|
3338
|
+
extend?: string;
|
|
3341
3339
|
pageNumber?: number;
|
|
3342
3340
|
pageSize?: number;
|
|
3343
3341
|
securityToken?: string;
|
|
@@ -5365,6 +5363,51 @@ export declare class DescribeSignaturesByApiResponse extends $tea.Model {
|
|
|
5365
5363
|
[key: string]: any;
|
|
5366
5364
|
});
|
|
5367
5365
|
}
|
|
5366
|
+
export declare class DescribeSummaryDataRequest extends $tea.Model {
|
|
5367
|
+
securityToken?: string;
|
|
5368
|
+
static names(): {
|
|
5369
|
+
[key: string]: string;
|
|
5370
|
+
};
|
|
5371
|
+
static types(): {
|
|
5372
|
+
[key: string]: any;
|
|
5373
|
+
};
|
|
5374
|
+
constructor(map?: {
|
|
5375
|
+
[key: string]: any;
|
|
5376
|
+
});
|
|
5377
|
+
}
|
|
5378
|
+
export declare class DescribeSummaryDataResponseBody extends $tea.Model {
|
|
5379
|
+
expireInstanceNum?: number;
|
|
5380
|
+
region?: string;
|
|
5381
|
+
requestId?: string;
|
|
5382
|
+
usageApiNum?: number;
|
|
5383
|
+
usageGroupNum?: number;
|
|
5384
|
+
usageInstanceNum?: number;
|
|
5385
|
+
static names(): {
|
|
5386
|
+
[key: string]: string;
|
|
5387
|
+
};
|
|
5388
|
+
static types(): {
|
|
5389
|
+
[key: string]: any;
|
|
5390
|
+
};
|
|
5391
|
+
constructor(map?: {
|
|
5392
|
+
[key: string]: any;
|
|
5393
|
+
});
|
|
5394
|
+
}
|
|
5395
|
+
export declare class DescribeSummaryDataResponse extends $tea.Model {
|
|
5396
|
+
headers: {
|
|
5397
|
+
[key: string]: string;
|
|
5398
|
+
};
|
|
5399
|
+
statusCode: number;
|
|
5400
|
+
body: DescribeSummaryDataResponseBody;
|
|
5401
|
+
static names(): {
|
|
5402
|
+
[key: string]: string;
|
|
5403
|
+
};
|
|
5404
|
+
static types(): {
|
|
5405
|
+
[key: string]: any;
|
|
5406
|
+
};
|
|
5407
|
+
constructor(map?: {
|
|
5408
|
+
[key: string]: any;
|
|
5409
|
+
});
|
|
5410
|
+
}
|
|
5368
5411
|
export declare class DescribeSystemParametersRequest extends $tea.Model {
|
|
5369
5412
|
securityToken?: string;
|
|
5370
5413
|
static names(): {
|
|
@@ -6295,6 +6338,7 @@ export declare class ModifyAppRequest extends $tea.Model {
|
|
|
6295
6338
|
appId?: number;
|
|
6296
6339
|
appName?: string;
|
|
6297
6340
|
description?: string;
|
|
6341
|
+
extend?: string;
|
|
6298
6342
|
securityToken?: string;
|
|
6299
6343
|
tag?: ModifyAppRequestTag[];
|
|
6300
6344
|
static names(): {
|
|
@@ -8793,37 +8837,6 @@ export declare class DescribeApiResponseBodyRequestParameters extends $tea.Model
|
|
|
8793
8837
|
[key: string]: any;
|
|
8794
8838
|
});
|
|
8795
8839
|
}
|
|
8796
|
-
export declare class DescribeApiResponseBodyResultDescriptionsResultDescription extends $tea.Model {
|
|
8797
|
-
description?: string;
|
|
8798
|
-
hasChild?: boolean;
|
|
8799
|
-
id?: string;
|
|
8800
|
-
key?: string;
|
|
8801
|
-
mandatory?: boolean;
|
|
8802
|
-
name?: string;
|
|
8803
|
-
pid?: string;
|
|
8804
|
-
type?: string;
|
|
8805
|
-
static names(): {
|
|
8806
|
-
[key: string]: string;
|
|
8807
|
-
};
|
|
8808
|
-
static types(): {
|
|
8809
|
-
[key: string]: any;
|
|
8810
|
-
};
|
|
8811
|
-
constructor(map?: {
|
|
8812
|
-
[key: string]: any;
|
|
8813
|
-
});
|
|
8814
|
-
}
|
|
8815
|
-
export declare class DescribeApiResponseBodyResultDescriptions extends $tea.Model {
|
|
8816
|
-
resultDescription?: DescribeApiResponseBodyResultDescriptionsResultDescription[];
|
|
8817
|
-
static names(): {
|
|
8818
|
-
[key: string]: string;
|
|
8819
|
-
};
|
|
8820
|
-
static types(): {
|
|
8821
|
-
[key: string]: any;
|
|
8822
|
-
};
|
|
8823
|
-
constructor(map?: {
|
|
8824
|
-
[key: string]: any;
|
|
8825
|
-
});
|
|
8826
|
-
}
|
|
8827
8840
|
export declare class DescribeApiResponseBodyServiceConfigEventBridgeConfig extends $tea.Model {
|
|
8828
8841
|
eventBridgeRegionId?: string;
|
|
8829
8842
|
eventBus?: string;
|
|
@@ -9108,37 +9121,6 @@ export declare class DescribeApiDocResponseBodyRequestParameters extends $tea.Mo
|
|
|
9108
9121
|
[key: string]: any;
|
|
9109
9122
|
});
|
|
9110
9123
|
}
|
|
9111
|
-
export declare class DescribeApiDocResponseBodyResultDescriptionsResultDescription extends $tea.Model {
|
|
9112
|
-
description?: string;
|
|
9113
|
-
hasChild?: boolean;
|
|
9114
|
-
id?: string;
|
|
9115
|
-
key?: string;
|
|
9116
|
-
mandatory?: boolean;
|
|
9117
|
-
name?: string;
|
|
9118
|
-
pid?: string;
|
|
9119
|
-
type?: string;
|
|
9120
|
-
static names(): {
|
|
9121
|
-
[key: string]: string;
|
|
9122
|
-
};
|
|
9123
|
-
static types(): {
|
|
9124
|
-
[key: string]: any;
|
|
9125
|
-
};
|
|
9126
|
-
constructor(map?: {
|
|
9127
|
-
[key: string]: any;
|
|
9128
|
-
});
|
|
9129
|
-
}
|
|
9130
|
-
export declare class DescribeApiDocResponseBodyResultDescriptions extends $tea.Model {
|
|
9131
|
-
resultDescription?: DescribeApiDocResponseBodyResultDescriptionsResultDescription[];
|
|
9132
|
-
static names(): {
|
|
9133
|
-
[key: string]: string;
|
|
9134
|
-
};
|
|
9135
|
-
static types(): {
|
|
9136
|
-
[key: string]: any;
|
|
9137
|
-
};
|
|
9138
|
-
constructor(map?: {
|
|
9139
|
-
[key: string]: any;
|
|
9140
|
-
});
|
|
9141
|
-
}
|
|
9142
9124
|
export declare class DescribeApiGroupRequestTag extends $tea.Model {
|
|
9143
9125
|
key?: string;
|
|
9144
9126
|
value?: string;
|
|
@@ -9167,7 +9149,6 @@ export declare class DescribeApiGroupResponseBodyCustomDomainsDomainItem extends
|
|
|
9167
9149
|
domainWebSocketStatus?: string;
|
|
9168
9150
|
isHttpRedirectToHttps?: boolean;
|
|
9169
9151
|
wildcardDomainPatterns?: string;
|
|
9170
|
-
wssEnable?: string;
|
|
9171
9152
|
static names(): {
|
|
9172
9153
|
[key: string]: string;
|
|
9173
9154
|
};
|
|
@@ -10239,6 +10220,7 @@ export declare class DescribeAppAttributesResponseBodyAppsAppAttribute extends $
|
|
|
10239
10220
|
appName?: string;
|
|
10240
10221
|
createdTime?: string;
|
|
10241
10222
|
description?: string;
|
|
10223
|
+
extend?: string;
|
|
10242
10224
|
modifiedTime?: string;
|
|
10243
10225
|
tags?: DescribeAppAttributesResponseBodyAppsAppAttributeTags;
|
|
10244
10226
|
static names(): {
|
|
@@ -11422,7 +11404,6 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInst
|
|
|
11422
11404
|
}
|
|
11423
11405
|
export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeNetworkInterfaceAttributesNetworkInterfaceAttribute extends $tea.Model {
|
|
11424
11406
|
cidrBlock?: string;
|
|
11425
|
-
networkInterfaceId?: string;
|
|
11426
11407
|
securityGroupId?: string;
|
|
11427
11408
|
vswitchId?: string;
|
|
11428
11409
|
zoneId?: string;
|
|
@@ -11484,7 +11465,6 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
11484
11465
|
supportIpv6?: boolean;
|
|
11485
11466
|
userVpcId?: string;
|
|
11486
11467
|
userVswitchId?: string;
|
|
11487
|
-
vipTypeList?: string;
|
|
11488
11468
|
vpcEgressAddress?: string;
|
|
11489
11469
|
vpcIntranetEnable?: boolean;
|
|
11490
11470
|
vpcOwnerId?: number;
|
|
@@ -13063,7 +13043,7 @@ export default class Client extends OpenApi {
|
|
|
13063
13043
|
describeAccessControlListsWithOptions(request: DescribeAccessControlListsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListsResponse>;
|
|
13064
13044
|
describeAccessControlLists(request: DescribeAccessControlListsRequest): Promise<DescribeAccessControlListsResponse>;
|
|
13065
13045
|
/**
|
|
13066
|
-
*
|
|
13046
|
+
* * This operation is intended for API providers.
|
|
13067
13047
|
*
|
|
13068
13048
|
* @param request DescribeApiRequest
|
|
13069
13049
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13071,7 +13051,7 @@ export default class Client extends OpenApi {
|
|
|
13071
13051
|
*/
|
|
13072
13052
|
describeApiWithOptions(request: DescribeApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiResponse>;
|
|
13073
13053
|
/**
|
|
13074
|
-
*
|
|
13054
|
+
* * This operation is intended for API providers.
|
|
13075
13055
|
*
|
|
13076
13056
|
* @param request DescribeApiRequest
|
|
13077
13057
|
* @return DescribeApiResponse
|
|
@@ -13465,6 +13445,8 @@ export default class Client extends OpenApi {
|
|
|
13465
13445
|
* @return DescribeSignaturesByApiResponse
|
|
13466
13446
|
*/
|
|
13467
13447
|
describeSignaturesByApi(request: DescribeSignaturesByApiRequest): Promise<DescribeSignaturesByApiResponse>;
|
|
13448
|
+
describeSummaryDataWithOptions(request: DescribeSummaryDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSummaryDataResponse>;
|
|
13449
|
+
describeSummaryData(request: DescribeSummaryDataRequest): Promise<DescribeSummaryDataResponse>;
|
|
13468
13450
|
/**
|
|
13469
13451
|
* The returned information about system parameters. It is an array that consists of SystemParam data.
|
|
13470
13452
|
*
|