@alicloud/cloudapi20160714 3.6.2 → 4.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 +113 -1
- package/dist/client.js +3027 -2810
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +249 -3
package/dist/client.d.ts
CHANGED
|
@@ -2232,7 +2232,6 @@ export declare class DescribeAccessControlListAttributeResponseBody extends $tea
|
|
|
2232
2232
|
aclEntrys?: DescribeAccessControlListAttributeResponseBodyAclEntrys;
|
|
2233
2233
|
aclId?: string;
|
|
2234
2234
|
aclName?: string;
|
|
2235
|
-
isUsed?: string;
|
|
2236
2235
|
requestId?: string;
|
|
2237
2236
|
static names(): {
|
|
2238
2237
|
[key: string]: string;
|
|
@@ -3466,6 +3465,53 @@ export declare class DescribeApisByTrafficControlResponse extends $tea.Model {
|
|
|
3466
3465
|
[key: string]: any;
|
|
3467
3466
|
});
|
|
3468
3467
|
}
|
|
3468
|
+
export declare class DescribeApisByVpcAccessRequest extends $tea.Model {
|
|
3469
|
+
pageNumber?: number;
|
|
3470
|
+
pageSize?: number;
|
|
3471
|
+
securityToken?: string;
|
|
3472
|
+
vpcName?: string;
|
|
3473
|
+
static names(): {
|
|
3474
|
+
[key: string]: string;
|
|
3475
|
+
};
|
|
3476
|
+
static types(): {
|
|
3477
|
+
[key: string]: any;
|
|
3478
|
+
};
|
|
3479
|
+
constructor(map?: {
|
|
3480
|
+
[key: string]: any;
|
|
3481
|
+
});
|
|
3482
|
+
}
|
|
3483
|
+
export declare class DescribeApisByVpcAccessResponseBody extends $tea.Model {
|
|
3484
|
+
apiVpcAccessInfos?: DescribeApisByVpcAccessResponseBodyApiVpcAccessInfos;
|
|
3485
|
+
pageNumber?: number;
|
|
3486
|
+
pageSize?: number;
|
|
3487
|
+
requestId?: string;
|
|
3488
|
+
totalCount?: number;
|
|
3489
|
+
static names(): {
|
|
3490
|
+
[key: string]: string;
|
|
3491
|
+
};
|
|
3492
|
+
static types(): {
|
|
3493
|
+
[key: string]: any;
|
|
3494
|
+
};
|
|
3495
|
+
constructor(map?: {
|
|
3496
|
+
[key: string]: any;
|
|
3497
|
+
});
|
|
3498
|
+
}
|
|
3499
|
+
export declare class DescribeApisByVpcAccessResponse extends $tea.Model {
|
|
3500
|
+
headers?: {
|
|
3501
|
+
[key: string]: string;
|
|
3502
|
+
};
|
|
3503
|
+
statusCode?: number;
|
|
3504
|
+
body?: DescribeApisByVpcAccessResponseBody;
|
|
3505
|
+
static names(): {
|
|
3506
|
+
[key: string]: string;
|
|
3507
|
+
};
|
|
3508
|
+
static types(): {
|
|
3509
|
+
[key: string]: any;
|
|
3510
|
+
};
|
|
3511
|
+
constructor(map?: {
|
|
3512
|
+
[key: string]: any;
|
|
3513
|
+
});
|
|
3514
|
+
}
|
|
3469
3515
|
export declare class DescribeApisWithStageNameIntegratedByAppRequest extends $tea.Model {
|
|
3470
3516
|
apiName?: string;
|
|
3471
3517
|
apiUid?: string;
|
|
@@ -11159,6 +11205,43 @@ export declare class DescribeApisByTrafficControlResponseBodyApiInfos extends $t
|
|
|
11159
11205
|
[key: string]: any;
|
|
11160
11206
|
});
|
|
11161
11207
|
}
|
|
11208
|
+
export declare class DescribeApisByVpcAccessResponseBodyApiVpcAccessInfosApiVpcAccessInfo extends $tea.Model {
|
|
11209
|
+
apiId?: string;
|
|
11210
|
+
apiName?: string;
|
|
11211
|
+
description?: string;
|
|
11212
|
+
groupId?: string;
|
|
11213
|
+
groupName?: string;
|
|
11214
|
+
instanceId?: string;
|
|
11215
|
+
method?: string;
|
|
11216
|
+
path?: string;
|
|
11217
|
+
port?: number;
|
|
11218
|
+
regionId?: string;
|
|
11219
|
+
stageId?: string;
|
|
11220
|
+
stageName?: string;
|
|
11221
|
+
vpcId?: string;
|
|
11222
|
+
vpcName?: string;
|
|
11223
|
+
static names(): {
|
|
11224
|
+
[key: string]: string;
|
|
11225
|
+
};
|
|
11226
|
+
static types(): {
|
|
11227
|
+
[key: string]: any;
|
|
11228
|
+
};
|
|
11229
|
+
constructor(map?: {
|
|
11230
|
+
[key: string]: any;
|
|
11231
|
+
});
|
|
11232
|
+
}
|
|
11233
|
+
export declare class DescribeApisByVpcAccessResponseBodyApiVpcAccessInfos extends $tea.Model {
|
|
11234
|
+
apiVpcAccessInfo?: DescribeApisByVpcAccessResponseBodyApiVpcAccessInfosApiVpcAccessInfo[];
|
|
11235
|
+
static names(): {
|
|
11236
|
+
[key: string]: string;
|
|
11237
|
+
};
|
|
11238
|
+
static types(): {
|
|
11239
|
+
[key: string]: any;
|
|
11240
|
+
};
|
|
11241
|
+
constructor(map?: {
|
|
11242
|
+
[key: string]: any;
|
|
11243
|
+
});
|
|
11244
|
+
}
|
|
11162
11245
|
export declare class DescribeApisWithStageNameIntegratedByAppResponseBodyAppApiRelationInfosAppApiRelationInfo extends $tea.Model {
|
|
11163
11246
|
apiId?: string;
|
|
11164
11247
|
apiName?: string;
|
|
@@ -11367,6 +11450,7 @@ export declare class DescribeAuthorizedApisResponseBodyAuthorizedApis extends $t
|
|
|
11367
11450
|
});
|
|
11368
11451
|
}
|
|
11369
11452
|
export declare class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp extends $tea.Model {
|
|
11453
|
+
appDescription?: string;
|
|
11370
11454
|
appId?: number;
|
|
11371
11455
|
appName?: string;
|
|
11372
11456
|
authVaildTime?: string;
|
|
@@ -12657,6 +12741,31 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributePriv
|
|
|
12657
12741
|
[key: string]: any;
|
|
12658
12742
|
});
|
|
12659
12743
|
}
|
|
12744
|
+
export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeTagsTagInfo extends $tea.Model {
|
|
12745
|
+
key?: string;
|
|
12746
|
+
value?: string;
|
|
12747
|
+
static names(): {
|
|
12748
|
+
[key: string]: string;
|
|
12749
|
+
};
|
|
12750
|
+
static types(): {
|
|
12751
|
+
[key: string]: any;
|
|
12752
|
+
};
|
|
12753
|
+
constructor(map?: {
|
|
12754
|
+
[key: string]: any;
|
|
12755
|
+
});
|
|
12756
|
+
}
|
|
12757
|
+
export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeTags extends $tea.Model {
|
|
12758
|
+
tagInfo?: DescribeInstancesResponseBodyInstancesInstanceAttributeTagsTagInfo[];
|
|
12759
|
+
static names(): {
|
|
12760
|
+
[key: string]: string;
|
|
12761
|
+
};
|
|
12762
|
+
static types(): {
|
|
12763
|
+
[key: string]: any;
|
|
12764
|
+
};
|
|
12765
|
+
constructor(map?: {
|
|
12766
|
+
[key: string]: any;
|
|
12767
|
+
});
|
|
12768
|
+
}
|
|
12660
12769
|
export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $tea.Model {
|
|
12661
12770
|
aclId?: string;
|
|
12662
12771
|
aclName?: string;
|
|
@@ -12692,6 +12801,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
12692
12801
|
regionId?: string;
|
|
12693
12802
|
status?: string;
|
|
12694
12803
|
supportIpv6?: boolean;
|
|
12804
|
+
tags?: DescribeInstancesResponseBodyInstancesInstanceAttributeTags;
|
|
12695
12805
|
userVpcId?: string;
|
|
12696
12806
|
userVswitchId?: string;
|
|
12697
12807
|
vpcEgressAddress?: string;
|
|
@@ -14930,6 +15040,8 @@ export default class Client extends OpenApi {
|
|
|
14930
15040
|
* @return DescribeApisByTrafficControlResponse
|
|
14931
15041
|
*/
|
|
14932
15042
|
describeApisByTrafficControl(request: DescribeApisByTrafficControlRequest): Promise<DescribeApisByTrafficControlResponse>;
|
|
15043
|
+
describeApisByVpcAccessWithOptions(request: DescribeApisByVpcAccessRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisByVpcAccessResponse>;
|
|
15044
|
+
describeApisByVpcAccess(request: DescribeApisByVpcAccessRequest): Promise<DescribeApisByVpcAccessResponse>;
|
|
14933
15045
|
describeApisWithStageNameIntegratedByAppWithOptions(request: DescribeApisWithStageNameIntegratedByAppRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisWithStageNameIntegratedByAppResponse>;
|
|
14934
15046
|
describeApisWithStageNameIntegratedByApp(request: DescribeApisWithStageNameIntegratedByAppRequest): Promise<DescribeApisWithStageNameIntegratedByAppResponse>;
|
|
14935
15047
|
describeAppWithOptions(request: DescribeAppRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppResponse>;
|