@alicloud/eas20210701 6.0.0 → 6.1.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 +1829 -113
- package/dist/client.js +1463 -77
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2897 -366
package/dist/client.d.ts
CHANGED
|
@@ -268,7 +268,98 @@ export declare class Service extends $tea.Model {
|
|
|
268
268
|
[key: string]: any;
|
|
269
269
|
});
|
|
270
270
|
}
|
|
271
|
+
export declare class AttachGatewayDomainRequest extends $tea.Model {
|
|
272
|
+
/**
|
|
273
|
+
* @remarks
|
|
274
|
+
* The custom domain name information.
|
|
275
|
+
*
|
|
276
|
+
* This parameter is required.
|
|
277
|
+
*/
|
|
278
|
+
customDomain?: AttachGatewayDomainRequestCustomDomain;
|
|
279
|
+
static names(): {
|
|
280
|
+
[key: string]: string;
|
|
281
|
+
};
|
|
282
|
+
static types(): {
|
|
283
|
+
[key: string]: any;
|
|
284
|
+
};
|
|
285
|
+
constructor(map?: {
|
|
286
|
+
[key: string]: any;
|
|
287
|
+
});
|
|
288
|
+
}
|
|
289
|
+
export declare class AttachGatewayDomainShrinkRequest extends $tea.Model {
|
|
290
|
+
/**
|
|
291
|
+
* @remarks
|
|
292
|
+
* The custom domain name information.
|
|
293
|
+
*
|
|
294
|
+
* This parameter is required.
|
|
295
|
+
*/
|
|
296
|
+
customDomainShrink?: string;
|
|
297
|
+
static names(): {
|
|
298
|
+
[key: string]: string;
|
|
299
|
+
};
|
|
300
|
+
static types(): {
|
|
301
|
+
[key: string]: any;
|
|
302
|
+
};
|
|
303
|
+
constructor(map?: {
|
|
304
|
+
[key: string]: any;
|
|
305
|
+
});
|
|
306
|
+
}
|
|
307
|
+
export declare class AttachGatewayDomainResponseBody extends $tea.Model {
|
|
308
|
+
/**
|
|
309
|
+
* @remarks
|
|
310
|
+
* The ID of the private gateway. To obtain the private gateway ID, see the GatewayId parameter in the response parameters of the [ListGateway](https://apiworkbench.aliyun-inc.com/document/eas/2021-07-01/ListGateway?spm=openapi-amp.newDocPublishment.0.0.765e281fL2IcjJ\\&Env=online) operation.
|
|
311
|
+
*
|
|
312
|
+
* @example
|
|
313
|
+
* gw-1uhcqmsc7x22******
|
|
314
|
+
*/
|
|
315
|
+
gatewayId?: string;
|
|
316
|
+
/**
|
|
317
|
+
* @remarks
|
|
318
|
+
* The error message.
|
|
319
|
+
*
|
|
320
|
+
* @example
|
|
321
|
+
* Successfully update custom endpoint for gateway gw-1uhcqmsc7x22******
|
|
322
|
+
*/
|
|
323
|
+
message?: string;
|
|
324
|
+
/**
|
|
325
|
+
* @remarks
|
|
326
|
+
* The ID of the request.
|
|
327
|
+
*
|
|
328
|
+
* @example
|
|
329
|
+
* 40325405-579C-4D82****
|
|
330
|
+
*/
|
|
331
|
+
requestId?: string;
|
|
332
|
+
static names(): {
|
|
333
|
+
[key: string]: string;
|
|
334
|
+
};
|
|
335
|
+
static types(): {
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
};
|
|
338
|
+
constructor(map?: {
|
|
339
|
+
[key: string]: any;
|
|
340
|
+
});
|
|
341
|
+
}
|
|
342
|
+
export declare class AttachGatewayDomainResponse extends $tea.Model {
|
|
343
|
+
headers?: {
|
|
344
|
+
[key: string]: string;
|
|
345
|
+
};
|
|
346
|
+
statusCode?: number;
|
|
347
|
+
body?: AttachGatewayDomainResponseBody;
|
|
348
|
+
static names(): {
|
|
349
|
+
[key: string]: string;
|
|
350
|
+
};
|
|
351
|
+
static types(): {
|
|
352
|
+
[key: string]: any;
|
|
353
|
+
};
|
|
354
|
+
constructor(map?: {
|
|
355
|
+
[key: string]: any;
|
|
356
|
+
});
|
|
357
|
+
}
|
|
271
358
|
export declare class CloneServiceRequest extends $tea.Model {
|
|
359
|
+
/**
|
|
360
|
+
* @remarks
|
|
361
|
+
* The label of the service to be cloned.
|
|
362
|
+
*/
|
|
272
363
|
labels?: {
|
|
273
364
|
[key: string]: string;
|
|
274
365
|
};
|
|
@@ -291,6 +382,10 @@ export declare class CloneServiceRequest extends $tea.Model {
|
|
|
291
382
|
});
|
|
292
383
|
}
|
|
293
384
|
export declare class CloneServiceShrinkRequest extends $tea.Model {
|
|
385
|
+
/**
|
|
386
|
+
* @remarks
|
|
387
|
+
* The label of the service to be cloned.
|
|
388
|
+
*/
|
|
294
389
|
labelsShrink?: string;
|
|
295
390
|
/**
|
|
296
391
|
* @remarks
|
|
@@ -429,8 +524,17 @@ export declare class CommitServiceResponse extends $tea.Model {
|
|
|
429
524
|
});
|
|
430
525
|
}
|
|
431
526
|
export declare class CreateAclPolicyRequest extends $tea.Model {
|
|
527
|
+
/**
|
|
528
|
+
* @remarks
|
|
529
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
530
|
+
*
|
|
531
|
+
* This parameter is required.
|
|
532
|
+
*/
|
|
432
533
|
aclPolicyList?: CreateAclPolicyRequestAclPolicyList[];
|
|
433
534
|
/**
|
|
535
|
+
* @remarks
|
|
536
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
537
|
+
*
|
|
434
538
|
* @example
|
|
435
539
|
* vpc-uf66uio7md****
|
|
436
540
|
*/
|
|
@@ -446,8 +550,17 @@ export declare class CreateAclPolicyRequest extends $tea.Model {
|
|
|
446
550
|
});
|
|
447
551
|
}
|
|
448
552
|
export declare class CreateAclPolicyShrinkRequest extends $tea.Model {
|
|
553
|
+
/**
|
|
554
|
+
* @remarks
|
|
555
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
556
|
+
*
|
|
557
|
+
* This parameter is required.
|
|
558
|
+
*/
|
|
449
559
|
aclPolicyListShrink?: string;
|
|
450
560
|
/**
|
|
561
|
+
* @remarks
|
|
562
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
563
|
+
*
|
|
451
564
|
* @example
|
|
452
565
|
* vpc-uf66uio7md****
|
|
453
566
|
*/
|
|
@@ -464,16 +577,25 @@ export declare class CreateAclPolicyShrinkRequest extends $tea.Model {
|
|
|
464
577
|
}
|
|
465
578
|
export declare class CreateAclPolicyResponseBody extends $tea.Model {
|
|
466
579
|
/**
|
|
580
|
+
* @remarks
|
|
581
|
+
* The private gateway ID.
|
|
582
|
+
*
|
|
467
583
|
* @example
|
|
468
584
|
* gw-1uhcqmsc7x22******
|
|
469
585
|
*/
|
|
470
586
|
gatewayId?: string;
|
|
471
587
|
/**
|
|
588
|
+
* @remarks
|
|
589
|
+
* The returned message.
|
|
590
|
+
*
|
|
472
591
|
* @example
|
|
473
592
|
* Successfully add acl policy for gateway
|
|
474
593
|
*/
|
|
475
594
|
message?: string;
|
|
476
595
|
/**
|
|
596
|
+
* @remarks
|
|
597
|
+
* The request ID.
|
|
598
|
+
*
|
|
477
599
|
* @example
|
|
478
600
|
* 40325405-579C-4D82****
|
|
479
601
|
*/
|
|
@@ -792,6 +914,25 @@ export declare class CreateGatewayRequest extends $tea.Model {
|
|
|
792
914
|
* eas-r-4gt8twzwllfo******
|
|
793
915
|
*/
|
|
794
916
|
resourceName?: string;
|
|
917
|
+
/**
|
|
918
|
+
* @remarks
|
|
919
|
+
* Specifies whether to enable auto-renewal. Valid values:
|
|
920
|
+
*
|
|
921
|
+
* * false (default)
|
|
922
|
+
* * true
|
|
923
|
+
*/
|
|
924
|
+
autoRenewal?: boolean;
|
|
925
|
+
/**
|
|
926
|
+
* @remarks
|
|
927
|
+
* The billing method. Valid values:
|
|
928
|
+
*
|
|
929
|
+
* * PrePaid: subscription.
|
|
930
|
+
* * PostPaid: pay-as-you-go.
|
|
931
|
+
*
|
|
932
|
+
* @example
|
|
933
|
+
* PostPaid
|
|
934
|
+
*/
|
|
935
|
+
chargeType?: string;
|
|
795
936
|
/**
|
|
796
937
|
* @remarks
|
|
797
938
|
* Specifies whether to enable Internet access. Default value: false.
|
|
@@ -996,6 +1137,82 @@ export declare class CreateGatewayIntranetLinkedVpcResponse extends $tea.Model {
|
|
|
996
1137
|
[key: string]: any;
|
|
997
1138
|
});
|
|
998
1139
|
}
|
|
1140
|
+
export declare class CreateGatewayIntranetLinkedVpcPeerRequest extends $tea.Model {
|
|
1141
|
+
peerVpcs?: CreateGatewayIntranetLinkedVpcPeerRequestPeerVpcs[];
|
|
1142
|
+
/**
|
|
1143
|
+
* @example
|
|
1144
|
+
* vpc-2zetuli9ws0qgjd******
|
|
1145
|
+
*/
|
|
1146
|
+
vpcId?: string;
|
|
1147
|
+
static names(): {
|
|
1148
|
+
[key: string]: string;
|
|
1149
|
+
};
|
|
1150
|
+
static types(): {
|
|
1151
|
+
[key: string]: any;
|
|
1152
|
+
};
|
|
1153
|
+
constructor(map?: {
|
|
1154
|
+
[key: string]: any;
|
|
1155
|
+
});
|
|
1156
|
+
}
|
|
1157
|
+
export declare class CreateGatewayIntranetLinkedVpcPeerShrinkRequest extends $tea.Model {
|
|
1158
|
+
peerVpcsShrink?: string;
|
|
1159
|
+
/**
|
|
1160
|
+
* @example
|
|
1161
|
+
* vpc-2zetuli9ws0qgjd******
|
|
1162
|
+
*/
|
|
1163
|
+
vpcId?: string;
|
|
1164
|
+
static names(): {
|
|
1165
|
+
[key: string]: string;
|
|
1166
|
+
};
|
|
1167
|
+
static types(): {
|
|
1168
|
+
[key: string]: any;
|
|
1169
|
+
};
|
|
1170
|
+
constructor(map?: {
|
|
1171
|
+
[key: string]: any;
|
|
1172
|
+
});
|
|
1173
|
+
}
|
|
1174
|
+
export declare class CreateGatewayIntranetLinkedVpcPeerResponseBody extends $tea.Model {
|
|
1175
|
+
/**
|
|
1176
|
+
* @example
|
|
1177
|
+
* gw-1uhcqmsc7x22******
|
|
1178
|
+
*/
|
|
1179
|
+
gatewayId?: string;
|
|
1180
|
+
/**
|
|
1181
|
+
* @example
|
|
1182
|
+
* Successfully add intranet linked vpc Peer for gateway
|
|
1183
|
+
*/
|
|
1184
|
+
message?: string;
|
|
1185
|
+
/**
|
|
1186
|
+
* @example
|
|
1187
|
+
* 40325405-579C-4D82****
|
|
1188
|
+
*/
|
|
1189
|
+
requestId?: string;
|
|
1190
|
+
static names(): {
|
|
1191
|
+
[key: string]: string;
|
|
1192
|
+
};
|
|
1193
|
+
static types(): {
|
|
1194
|
+
[key: string]: any;
|
|
1195
|
+
};
|
|
1196
|
+
constructor(map?: {
|
|
1197
|
+
[key: string]: any;
|
|
1198
|
+
});
|
|
1199
|
+
}
|
|
1200
|
+
export declare class CreateGatewayIntranetLinkedVpcPeerResponse extends $tea.Model {
|
|
1201
|
+
headers?: {
|
|
1202
|
+
[key: string]: string;
|
|
1203
|
+
};
|
|
1204
|
+
statusCode?: number;
|
|
1205
|
+
body?: CreateGatewayIntranetLinkedVpcPeerResponseBody;
|
|
1206
|
+
static names(): {
|
|
1207
|
+
[key: string]: string;
|
|
1208
|
+
};
|
|
1209
|
+
static types(): {
|
|
1210
|
+
[key: string]: any;
|
|
1211
|
+
};
|
|
1212
|
+
constructor(map?: {
|
|
1213
|
+
[key: string]: any;
|
|
1214
|
+
});
|
|
1215
|
+
}
|
|
999
1216
|
export declare class CreateResourceRequest extends $tea.Model {
|
|
1000
1217
|
/**
|
|
1001
1218
|
* @remarks
|
|
@@ -1918,30 +2135,20 @@ export declare class CreateServiceMirrorResponse extends $tea.Model {
|
|
|
1918
2135
|
[key: string]: any;
|
|
1919
2136
|
});
|
|
1920
2137
|
}
|
|
1921
|
-
export declare class
|
|
1922
|
-
aclPolicyList?: DeleteAclPolicyRequestAclPolicyList[];
|
|
2138
|
+
export declare class CreateVirtualResourceRequest extends $tea.Model {
|
|
1923
2139
|
/**
|
|
1924
|
-
* @
|
|
1925
|
-
*
|
|
2140
|
+
* @remarks
|
|
2141
|
+
* The list of resources in the virtual resource group.
|
|
1926
2142
|
*/
|
|
1927
|
-
|
|
1928
|
-
static names(): {
|
|
1929
|
-
[key: string]: string;
|
|
1930
|
-
};
|
|
1931
|
-
static types(): {
|
|
1932
|
-
[key: string]: any;
|
|
1933
|
-
};
|
|
1934
|
-
constructor(map?: {
|
|
1935
|
-
[key: string]: any;
|
|
1936
|
-
});
|
|
1937
|
-
}
|
|
1938
|
-
export declare class DeleteAclPolicyShrinkRequest extends $tea.Model {
|
|
1939
|
-
aclPolicyListShrink?: string;
|
|
2143
|
+
resources?: CreateVirtualResourceRequestResources[];
|
|
1940
2144
|
/**
|
|
2145
|
+
* @remarks
|
|
2146
|
+
* The name of the virtual resource group. Default value: the ID of the virtual resource group.
|
|
2147
|
+
*
|
|
1941
2148
|
* @example
|
|
1942
|
-
*
|
|
2149
|
+
* MyVirtualResource
|
|
1943
2150
|
*/
|
|
1944
|
-
|
|
2151
|
+
virtualResourceName?: string;
|
|
1945
2152
|
static names(): {
|
|
1946
2153
|
[key: string]: string;
|
|
1947
2154
|
};
|
|
@@ -1952,22 +2159,31 @@ export declare class DeleteAclPolicyShrinkRequest extends $tea.Model {
|
|
|
1952
2159
|
[key: string]: any;
|
|
1953
2160
|
});
|
|
1954
2161
|
}
|
|
1955
|
-
export declare class
|
|
2162
|
+
export declare class CreateVirtualResourceResponseBody extends $tea.Model {
|
|
1956
2163
|
/**
|
|
2164
|
+
* @remarks
|
|
2165
|
+
* The returned message.
|
|
2166
|
+
*
|
|
1957
2167
|
* @example
|
|
1958
|
-
*
|
|
2168
|
+
* Successfully created virtual resource eas-vr-npovr28onap1xxxxxx
|
|
1959
2169
|
*/
|
|
1960
|
-
|
|
2170
|
+
message?: string;
|
|
1961
2171
|
/**
|
|
2172
|
+
* @remarks
|
|
2173
|
+
* The ID of the request.
|
|
2174
|
+
*
|
|
1962
2175
|
* @example
|
|
1963
|
-
*
|
|
2176
|
+
* 40325405-579C-4D82***
|
|
1964
2177
|
*/
|
|
1965
|
-
|
|
2178
|
+
requestId?: string;
|
|
1966
2179
|
/**
|
|
2180
|
+
* @remarks
|
|
2181
|
+
* The ID of the virtual resource group.
|
|
2182
|
+
*
|
|
1967
2183
|
* @example
|
|
1968
|
-
*
|
|
2184
|
+
* eas-vr-npovr28onap1xxxxxx
|
|
1969
2185
|
*/
|
|
1970
|
-
|
|
2186
|
+
virtualResourceId?: string;
|
|
1971
2187
|
static names(): {
|
|
1972
2188
|
[key: string]: string;
|
|
1973
2189
|
};
|
|
@@ -1978,12 +2194,12 @@ export declare class DeleteAclPolicyResponseBody extends $tea.Model {
|
|
|
1978
2194
|
[key: string]: any;
|
|
1979
2195
|
});
|
|
1980
2196
|
}
|
|
1981
|
-
export declare class
|
|
2197
|
+
export declare class CreateVirtualResourceResponse extends $tea.Model {
|
|
1982
2198
|
headers?: {
|
|
1983
2199
|
[key: string]: string;
|
|
1984
2200
|
};
|
|
1985
2201
|
statusCode?: number;
|
|
1986
|
-
body?:
|
|
2202
|
+
body?: CreateVirtualResourceResponseBody;
|
|
1987
2203
|
static names(): {
|
|
1988
2204
|
[key: string]: string;
|
|
1989
2205
|
};
|
|
@@ -1994,23 +2210,20 @@ export declare class DeleteAclPolicyResponse extends $tea.Model {
|
|
|
1994
2210
|
[key: string]: any;
|
|
1995
2211
|
});
|
|
1996
2212
|
}
|
|
1997
|
-
export declare class
|
|
2213
|
+
export declare class DeleteAclPolicyRequest extends $tea.Model {
|
|
1998
2214
|
/**
|
|
1999
2215
|
* @remarks
|
|
2000
|
-
* The
|
|
2001
|
-
*
|
|
2002
|
-
* @example
|
|
2003
|
-
* Benchmark task [benchmark-test-service-234c] is Deleting
|
|
2216
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
2004
2217
|
*/
|
|
2005
|
-
|
|
2218
|
+
aclPolicyList?: DeleteAclPolicyRequestAclPolicyList[];
|
|
2006
2219
|
/**
|
|
2007
2220
|
* @remarks
|
|
2008
|
-
* The
|
|
2221
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
2009
2222
|
*
|
|
2010
2223
|
* @example
|
|
2011
|
-
*
|
|
2224
|
+
* vpc-uf66uio7md****
|
|
2012
2225
|
*/
|
|
2013
|
-
|
|
2226
|
+
vpcId?: string;
|
|
2014
2227
|
static names(): {
|
|
2015
2228
|
[key: string]: string;
|
|
2016
2229
|
};
|
|
@@ -2021,15 +2234,117 @@ export declare class DeleteBenchmarkTaskResponseBody extends $tea.Model {
|
|
|
2021
2234
|
[key: string]: any;
|
|
2022
2235
|
});
|
|
2023
2236
|
}
|
|
2024
|
-
export declare class
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2237
|
+
export declare class DeleteAclPolicyShrinkRequest extends $tea.Model {
|
|
2238
|
+
/**
|
|
2239
|
+
* @remarks
|
|
2240
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
2241
|
+
*/
|
|
2242
|
+
aclPolicyListShrink?: string;
|
|
2243
|
+
/**
|
|
2244
|
+
* @remarks
|
|
2245
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
2246
|
+
*
|
|
2247
|
+
* @example
|
|
2248
|
+
* vpc-uf66uio7md****
|
|
2249
|
+
*/
|
|
2250
|
+
vpcId?: string;
|
|
2251
|
+
static names(): {
|
|
2252
|
+
[key: string]: string;
|
|
2253
|
+
};
|
|
2254
|
+
static types(): {
|
|
2255
|
+
[key: string]: any;
|
|
2256
|
+
};
|
|
2257
|
+
constructor(map?: {
|
|
2258
|
+
[key: string]: any;
|
|
2259
|
+
});
|
|
2260
|
+
}
|
|
2261
|
+
export declare class DeleteAclPolicyResponseBody extends $tea.Model {
|
|
2262
|
+
/**
|
|
2263
|
+
* @remarks
|
|
2264
|
+
* The private gateway ID.
|
|
2265
|
+
*
|
|
2266
|
+
* @example
|
|
2267
|
+
* gw-1uhcqmsc7x22******
|
|
2268
|
+
*/
|
|
2269
|
+
gatewayId?: string;
|
|
2270
|
+
/**
|
|
2271
|
+
* @remarks
|
|
2272
|
+
* The returned message.
|
|
2273
|
+
*
|
|
2274
|
+
* @example
|
|
2275
|
+
* Successfully delete acl policy for gateway
|
|
2276
|
+
*/
|
|
2277
|
+
message?: string;
|
|
2278
|
+
/**
|
|
2279
|
+
* @remarks
|
|
2280
|
+
* The request ID.
|
|
2281
|
+
*
|
|
2282
|
+
* @example
|
|
2283
|
+
* 40325405-579C-4D82****
|
|
2284
|
+
*/
|
|
2285
|
+
requestId?: string;
|
|
2286
|
+
static names(): {
|
|
2287
|
+
[key: string]: string;
|
|
2288
|
+
};
|
|
2289
|
+
static types(): {
|
|
2290
|
+
[key: string]: any;
|
|
2291
|
+
};
|
|
2292
|
+
constructor(map?: {
|
|
2293
|
+
[key: string]: any;
|
|
2294
|
+
});
|
|
2295
|
+
}
|
|
2296
|
+
export declare class DeleteAclPolicyResponse extends $tea.Model {
|
|
2297
|
+
headers?: {
|
|
2298
|
+
[key: string]: string;
|
|
2299
|
+
};
|
|
2300
|
+
statusCode?: number;
|
|
2301
|
+
body?: DeleteAclPolicyResponseBody;
|
|
2302
|
+
static names(): {
|
|
2303
|
+
[key: string]: string;
|
|
2304
|
+
};
|
|
2305
|
+
static types(): {
|
|
2306
|
+
[key: string]: any;
|
|
2307
|
+
};
|
|
2308
|
+
constructor(map?: {
|
|
2309
|
+
[key: string]: any;
|
|
2310
|
+
});
|
|
2311
|
+
}
|
|
2312
|
+
export declare class DeleteBenchmarkTaskResponseBody extends $tea.Model {
|
|
2313
|
+
/**
|
|
2314
|
+
* @remarks
|
|
2315
|
+
* The returned message.
|
|
2316
|
+
*
|
|
2317
|
+
* @example
|
|
2318
|
+
* Benchmark task [benchmark-test-service-234c] is Deleting
|
|
2319
|
+
*/
|
|
2320
|
+
message?: string;
|
|
2321
|
+
/**
|
|
2322
|
+
* @remarks
|
|
2323
|
+
* The request ID.
|
|
2324
|
+
*
|
|
2325
|
+
* @example
|
|
2326
|
+
* 40325405-579C-4D82****
|
|
2327
|
+
*/
|
|
2328
|
+
requestId?: string;
|
|
2329
|
+
static names(): {
|
|
2330
|
+
[key: string]: string;
|
|
2331
|
+
};
|
|
2332
|
+
static types(): {
|
|
2333
|
+
[key: string]: any;
|
|
2334
|
+
};
|
|
2335
|
+
constructor(map?: {
|
|
2336
|
+
[key: string]: any;
|
|
2337
|
+
});
|
|
2338
|
+
}
|
|
2339
|
+
export declare class DeleteBenchmarkTaskResponse extends $tea.Model {
|
|
2340
|
+
headers?: {
|
|
2341
|
+
[key: string]: string;
|
|
2342
|
+
};
|
|
2343
|
+
statusCode?: number;
|
|
2344
|
+
body?: DeleteBenchmarkTaskResponseBody;
|
|
2345
|
+
static names(): {
|
|
2346
|
+
[key: string]: string;
|
|
2347
|
+
};
|
|
2033
2348
|
static types(): {
|
|
2034
2349
|
[key: string]: any;
|
|
2035
2350
|
};
|
|
@@ -2166,6 +2481,82 @@ export declare class DeleteGatewayIntranetLinkedVpcResponse extends $tea.Model {
|
|
|
2166
2481
|
[key: string]: any;
|
|
2167
2482
|
});
|
|
2168
2483
|
}
|
|
2484
|
+
export declare class DeleteGatewayIntranetLinkedVpcPeerRequest extends $tea.Model {
|
|
2485
|
+
peerVpcs?: DeleteGatewayIntranetLinkedVpcPeerRequestPeerVpcs[];
|
|
2486
|
+
/**
|
|
2487
|
+
* @example
|
|
2488
|
+
* vpc-2zetuli9ws0qgjd******
|
|
2489
|
+
*/
|
|
2490
|
+
vpcId?: string;
|
|
2491
|
+
static names(): {
|
|
2492
|
+
[key: string]: string;
|
|
2493
|
+
};
|
|
2494
|
+
static types(): {
|
|
2495
|
+
[key: string]: any;
|
|
2496
|
+
};
|
|
2497
|
+
constructor(map?: {
|
|
2498
|
+
[key: string]: any;
|
|
2499
|
+
});
|
|
2500
|
+
}
|
|
2501
|
+
export declare class DeleteGatewayIntranetLinkedVpcPeerShrinkRequest extends $tea.Model {
|
|
2502
|
+
peerVpcsShrink?: string;
|
|
2503
|
+
/**
|
|
2504
|
+
* @example
|
|
2505
|
+
* vpc-2zetuli9ws0qgjd******
|
|
2506
|
+
*/
|
|
2507
|
+
vpcId?: string;
|
|
2508
|
+
static names(): {
|
|
2509
|
+
[key: string]: string;
|
|
2510
|
+
};
|
|
2511
|
+
static types(): {
|
|
2512
|
+
[key: string]: any;
|
|
2513
|
+
};
|
|
2514
|
+
constructor(map?: {
|
|
2515
|
+
[key: string]: any;
|
|
2516
|
+
});
|
|
2517
|
+
}
|
|
2518
|
+
export declare class DeleteGatewayIntranetLinkedVpcPeerResponseBody extends $tea.Model {
|
|
2519
|
+
/**
|
|
2520
|
+
* @example
|
|
2521
|
+
* gw-1uhcqmsc7x22******
|
|
2522
|
+
*/
|
|
2523
|
+
gatewayId?: string;
|
|
2524
|
+
/**
|
|
2525
|
+
* @example
|
|
2526
|
+
* Successfully delete intranet linked vpc Peer for gateway
|
|
2527
|
+
*/
|
|
2528
|
+
message?: string;
|
|
2529
|
+
/**
|
|
2530
|
+
* @example
|
|
2531
|
+
* 40325405-579C-4D82****
|
|
2532
|
+
*/
|
|
2533
|
+
requestId?: string;
|
|
2534
|
+
static names(): {
|
|
2535
|
+
[key: string]: string;
|
|
2536
|
+
};
|
|
2537
|
+
static types(): {
|
|
2538
|
+
[key: string]: any;
|
|
2539
|
+
};
|
|
2540
|
+
constructor(map?: {
|
|
2541
|
+
[key: string]: any;
|
|
2542
|
+
});
|
|
2543
|
+
}
|
|
2544
|
+
export declare class DeleteGatewayIntranetLinkedVpcPeerResponse extends $tea.Model {
|
|
2545
|
+
headers?: {
|
|
2546
|
+
[key: string]: string;
|
|
2547
|
+
};
|
|
2548
|
+
statusCode?: number;
|
|
2549
|
+
body?: DeleteGatewayIntranetLinkedVpcPeerResponseBody;
|
|
2550
|
+
static names(): {
|
|
2551
|
+
[key: string]: string;
|
|
2552
|
+
};
|
|
2553
|
+
static types(): {
|
|
2554
|
+
[key: string]: any;
|
|
2555
|
+
};
|
|
2556
|
+
constructor(map?: {
|
|
2557
|
+
[key: string]: any;
|
|
2558
|
+
});
|
|
2559
|
+
}
|
|
2169
2560
|
export declare class DeleteResourceResponseBody extends $tea.Model {
|
|
2170
2561
|
/**
|
|
2171
2562
|
* @remarks
|
|
@@ -2699,6 +3090,49 @@ export declare class DeleteServiceMirrorResponse extends $tea.Model {
|
|
|
2699
3090
|
[key: string]: any;
|
|
2700
3091
|
});
|
|
2701
3092
|
}
|
|
3093
|
+
export declare class DeleteVirtualResourceResponseBody extends $tea.Model {
|
|
3094
|
+
/**
|
|
3095
|
+
* @remarks
|
|
3096
|
+
* The information about the operation result.
|
|
3097
|
+
*
|
|
3098
|
+
* @example
|
|
3099
|
+
* Successfully deleted virtual resource eas-vr-npovr28onap1xxxxxx
|
|
3100
|
+
*/
|
|
3101
|
+
message?: string;
|
|
3102
|
+
/**
|
|
3103
|
+
* @remarks
|
|
3104
|
+
* The ID of the request.
|
|
3105
|
+
*
|
|
3106
|
+
* @example
|
|
3107
|
+
* 40325405-579C-4D82***
|
|
3108
|
+
*/
|
|
3109
|
+
requestId?: string;
|
|
3110
|
+
static names(): {
|
|
3111
|
+
[key: string]: string;
|
|
3112
|
+
};
|
|
3113
|
+
static types(): {
|
|
3114
|
+
[key: string]: any;
|
|
3115
|
+
};
|
|
3116
|
+
constructor(map?: {
|
|
3117
|
+
[key: string]: any;
|
|
3118
|
+
});
|
|
3119
|
+
}
|
|
3120
|
+
export declare class DeleteVirtualResourceResponse extends $tea.Model {
|
|
3121
|
+
headers?: {
|
|
3122
|
+
[key: string]: string;
|
|
3123
|
+
};
|
|
3124
|
+
statusCode?: number;
|
|
3125
|
+
body?: DeleteVirtualResourceResponseBody;
|
|
3126
|
+
static names(): {
|
|
3127
|
+
[key: string]: string;
|
|
3128
|
+
};
|
|
3129
|
+
static types(): {
|
|
3130
|
+
[key: string]: any;
|
|
3131
|
+
};
|
|
3132
|
+
constructor(map?: {
|
|
3133
|
+
[key: string]: any;
|
|
3134
|
+
});
|
|
3135
|
+
}
|
|
2702
3136
|
export declare class DescribeBenchmarkTaskResponseBody extends $tea.Model {
|
|
2703
3137
|
/**
|
|
2704
3138
|
* @remarks
|
|
@@ -4149,45 +4583,52 @@ export declare class DescribeSpotDiscountHistoryResponse extends $tea.Model {
|
|
|
4149
4583
|
[key: string]: any;
|
|
4150
4584
|
});
|
|
4151
4585
|
}
|
|
4152
|
-
export declare class
|
|
4586
|
+
export declare class DescribeVirtualResourceResponseBody extends $tea.Model {
|
|
4153
4587
|
/**
|
|
4154
4588
|
* @remarks
|
|
4155
|
-
*
|
|
4589
|
+
* The time when the virtual resource group was created.
|
|
4156
4590
|
*
|
|
4157
|
-
*
|
|
4158
|
-
*
|
|
4591
|
+
* @example
|
|
4592
|
+
* 2024-10-16T17:52:49Z
|
|
4593
|
+
*/
|
|
4594
|
+
createTime?: string;
|
|
4595
|
+
/**
|
|
4596
|
+
* @remarks
|
|
4597
|
+
* The ID of the request.
|
|
4159
4598
|
*
|
|
4160
4599
|
* @example
|
|
4161
|
-
*
|
|
4600
|
+
* 40325405-579C-4D82****
|
|
4162
4601
|
*/
|
|
4163
|
-
|
|
4164
|
-
static names(): {
|
|
4165
|
-
[key: string]: string;
|
|
4166
|
-
};
|
|
4167
|
-
static types(): {
|
|
4168
|
-
[key: string]: any;
|
|
4169
|
-
};
|
|
4170
|
-
constructor(map?: {
|
|
4171
|
-
[key: string]: any;
|
|
4172
|
-
});
|
|
4173
|
-
}
|
|
4174
|
-
export declare class DevelopServiceResponseBody extends $tea.Model {
|
|
4602
|
+
requestId?: string;
|
|
4175
4603
|
/**
|
|
4176
4604
|
* @remarks
|
|
4177
|
-
* The
|
|
4605
|
+
* The list of resources in the virtual resource group.
|
|
4606
|
+
*/
|
|
4607
|
+
resources?: DescribeVirtualResourceResponseBodyResources[];
|
|
4608
|
+
/**
|
|
4609
|
+
* @remarks
|
|
4610
|
+
* The time when the virtual resource group was last updated.
|
|
4178
4611
|
*
|
|
4179
4612
|
* @example
|
|
4180
|
-
*
|
|
4613
|
+
* 2024-10-16T19:52:49Z
|
|
4181
4614
|
*/
|
|
4182
|
-
|
|
4615
|
+
updateTime?: string;
|
|
4183
4616
|
/**
|
|
4184
4617
|
* @remarks
|
|
4185
|
-
* The
|
|
4618
|
+
* The ID of the virtual resource group.
|
|
4186
4619
|
*
|
|
4187
4620
|
* @example
|
|
4188
|
-
*
|
|
4621
|
+
* eas-vr-npovr28onap1xxxxxx
|
|
4189
4622
|
*/
|
|
4190
|
-
|
|
4623
|
+
virtualResourceId?: string;
|
|
4624
|
+
/**
|
|
4625
|
+
* @remarks
|
|
4626
|
+
* The name of the virtual resource group.
|
|
4627
|
+
*
|
|
4628
|
+
* @example
|
|
4629
|
+
* MyVirtualResource
|
|
4630
|
+
*/
|
|
4631
|
+
virtualResourceName?: string;
|
|
4191
4632
|
static names(): {
|
|
4192
4633
|
[key: string]: string;
|
|
4193
4634
|
};
|
|
@@ -4198,7 +4639,159 @@ export declare class DevelopServiceResponseBody extends $tea.Model {
|
|
|
4198
4639
|
[key: string]: any;
|
|
4199
4640
|
});
|
|
4200
4641
|
}
|
|
4201
|
-
export declare class
|
|
4642
|
+
export declare class DescribeVirtualResourceResponse extends $tea.Model {
|
|
4643
|
+
headers?: {
|
|
4644
|
+
[key: string]: string;
|
|
4645
|
+
};
|
|
4646
|
+
statusCode?: number;
|
|
4647
|
+
body?: DescribeVirtualResourceResponseBody;
|
|
4648
|
+
static names(): {
|
|
4649
|
+
[key: string]: string;
|
|
4650
|
+
};
|
|
4651
|
+
static types(): {
|
|
4652
|
+
[key: string]: any;
|
|
4653
|
+
};
|
|
4654
|
+
constructor(map?: {
|
|
4655
|
+
[key: string]: any;
|
|
4656
|
+
});
|
|
4657
|
+
}
|
|
4658
|
+
export declare class DetachGatewayDomainRequest extends $tea.Model {
|
|
4659
|
+
/**
|
|
4660
|
+
* @remarks
|
|
4661
|
+
* The custom domain name information.
|
|
4662
|
+
*
|
|
4663
|
+
* This parameter is required.
|
|
4664
|
+
*/
|
|
4665
|
+
customDomain?: DetachGatewayDomainRequestCustomDomain;
|
|
4666
|
+
static names(): {
|
|
4667
|
+
[key: string]: string;
|
|
4668
|
+
};
|
|
4669
|
+
static types(): {
|
|
4670
|
+
[key: string]: any;
|
|
4671
|
+
};
|
|
4672
|
+
constructor(map?: {
|
|
4673
|
+
[key: string]: any;
|
|
4674
|
+
});
|
|
4675
|
+
}
|
|
4676
|
+
export declare class DetachGatewayDomainShrinkRequest extends $tea.Model {
|
|
4677
|
+
/**
|
|
4678
|
+
* @remarks
|
|
4679
|
+
* The custom domain name information.
|
|
4680
|
+
*
|
|
4681
|
+
* This parameter is required.
|
|
4682
|
+
*/
|
|
4683
|
+
customDomainShrink?: string;
|
|
4684
|
+
static names(): {
|
|
4685
|
+
[key: string]: string;
|
|
4686
|
+
};
|
|
4687
|
+
static types(): {
|
|
4688
|
+
[key: string]: any;
|
|
4689
|
+
};
|
|
4690
|
+
constructor(map?: {
|
|
4691
|
+
[key: string]: any;
|
|
4692
|
+
});
|
|
4693
|
+
}
|
|
4694
|
+
export declare class DetachGatewayDomainResponseBody extends $tea.Model {
|
|
4695
|
+
/**
|
|
4696
|
+
* @remarks
|
|
4697
|
+
* The ID of the private gateway. To obtain the private gateway ID, see the GatewayId parameter in the response parameters of the [ListGateway](https://apiworkbench.aliyun-inc.com/document/eas/2021-07-01/ListGateway?spm=openapi-amp.newDocPublishment.0.0.765e281fL2IcjJ\\&Env=online) operation.
|
|
4698
|
+
*
|
|
4699
|
+
* @example
|
|
4700
|
+
* gw-1uhcqmsc7x22******
|
|
4701
|
+
*/
|
|
4702
|
+
gatewayId?: string;
|
|
4703
|
+
/**
|
|
4704
|
+
* @remarks
|
|
4705
|
+
* The message that is returned.
|
|
4706
|
+
*
|
|
4707
|
+
* @example
|
|
4708
|
+
* Successfully delete custom endpoint for gateway gw-1uhcqmsc7x22******
|
|
4709
|
+
*/
|
|
4710
|
+
message?: string;
|
|
4711
|
+
/**
|
|
4712
|
+
* @remarks
|
|
4713
|
+
* The ID of the request.
|
|
4714
|
+
*
|
|
4715
|
+
* @example
|
|
4716
|
+
* 40325405-579C-4D82****
|
|
4717
|
+
*/
|
|
4718
|
+
requestId?: string;
|
|
4719
|
+
static names(): {
|
|
4720
|
+
[key: string]: string;
|
|
4721
|
+
};
|
|
4722
|
+
static types(): {
|
|
4723
|
+
[key: string]: any;
|
|
4724
|
+
};
|
|
4725
|
+
constructor(map?: {
|
|
4726
|
+
[key: string]: any;
|
|
4727
|
+
});
|
|
4728
|
+
}
|
|
4729
|
+
export declare class DetachGatewayDomainResponse extends $tea.Model {
|
|
4730
|
+
headers?: {
|
|
4731
|
+
[key: string]: string;
|
|
4732
|
+
};
|
|
4733
|
+
statusCode?: number;
|
|
4734
|
+
body?: DetachGatewayDomainResponseBody;
|
|
4735
|
+
static names(): {
|
|
4736
|
+
[key: string]: string;
|
|
4737
|
+
};
|
|
4738
|
+
static types(): {
|
|
4739
|
+
[key: string]: any;
|
|
4740
|
+
};
|
|
4741
|
+
constructor(map?: {
|
|
4742
|
+
[key: string]: any;
|
|
4743
|
+
});
|
|
4744
|
+
}
|
|
4745
|
+
export declare class DevelopServiceRequest extends $tea.Model {
|
|
4746
|
+
/**
|
|
4747
|
+
* @remarks
|
|
4748
|
+
* Specifies whether to exit development mode. Valid values:
|
|
4749
|
+
*
|
|
4750
|
+
* * true: exits development mode.
|
|
4751
|
+
* * false (default): enters development mode.
|
|
4752
|
+
*
|
|
4753
|
+
* @example
|
|
4754
|
+
* true
|
|
4755
|
+
*/
|
|
4756
|
+
exit?: string;
|
|
4757
|
+
static names(): {
|
|
4758
|
+
[key: string]: string;
|
|
4759
|
+
};
|
|
4760
|
+
static types(): {
|
|
4761
|
+
[key: string]: any;
|
|
4762
|
+
};
|
|
4763
|
+
constructor(map?: {
|
|
4764
|
+
[key: string]: any;
|
|
4765
|
+
});
|
|
4766
|
+
}
|
|
4767
|
+
export declare class DevelopServiceResponseBody extends $tea.Model {
|
|
4768
|
+
/**
|
|
4769
|
+
* @remarks
|
|
4770
|
+
* The returned message.
|
|
4771
|
+
*
|
|
4772
|
+
* @example
|
|
4773
|
+
* Success
|
|
4774
|
+
*/
|
|
4775
|
+
message?: string;
|
|
4776
|
+
/**
|
|
4777
|
+
* @remarks
|
|
4778
|
+
* The request ID.
|
|
4779
|
+
*
|
|
4780
|
+
* @example
|
|
4781
|
+
* 40325405-579C-4D82****
|
|
4782
|
+
*/
|
|
4783
|
+
requestId?: string;
|
|
4784
|
+
static names(): {
|
|
4785
|
+
[key: string]: string;
|
|
4786
|
+
};
|
|
4787
|
+
static types(): {
|
|
4788
|
+
[key: string]: any;
|
|
4789
|
+
};
|
|
4790
|
+
constructor(map?: {
|
|
4791
|
+
[key: string]: any;
|
|
4792
|
+
});
|
|
4793
|
+
}
|
|
4794
|
+
export declare class DevelopServiceResponse extends $tea.Model {
|
|
4202
4795
|
headers?: {
|
|
4203
4796
|
[key: string]: string;
|
|
4204
4797
|
};
|
|
@@ -4216,6 +4809,9 @@ export declare class DevelopServiceResponse extends $tea.Model {
|
|
|
4216
4809
|
}
|
|
4217
4810
|
export declare class ListAclPolicyRequest extends $tea.Model {
|
|
4218
4811
|
/**
|
|
4812
|
+
* @remarks
|
|
4813
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
4814
|
+
*
|
|
4219
4815
|
* @example
|
|
4220
4816
|
* vpc-uf66uio7md****
|
|
4221
4817
|
*/
|
|
@@ -4232,13 +4828,27 @@ export declare class ListAclPolicyRequest extends $tea.Model {
|
|
|
4232
4828
|
}
|
|
4233
4829
|
export declare class ListAclPolicyResponseBody extends $tea.Model {
|
|
4234
4830
|
/**
|
|
4831
|
+
* @remarks
|
|
4832
|
+
* The private gateway ID.
|
|
4833
|
+
*
|
|
4235
4834
|
* @example
|
|
4236
4835
|
* gw-1uhcqmsc7x22******
|
|
4237
4836
|
*/
|
|
4238
4837
|
gatewayId?: string;
|
|
4838
|
+
/**
|
|
4839
|
+
* @remarks
|
|
4840
|
+
* The access control policies of the private gateway over the Internet.
|
|
4841
|
+
*/
|
|
4239
4842
|
internetAclPolicyList?: ListAclPolicyResponseBodyInternetAclPolicyList[];
|
|
4843
|
+
/**
|
|
4844
|
+
* @remarks
|
|
4845
|
+
* The access control policies of the private gateway over the internal network.
|
|
4846
|
+
*/
|
|
4240
4847
|
intranetVpcAclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyList[];
|
|
4241
4848
|
/**
|
|
4849
|
+
* @remarks
|
|
4850
|
+
* The request ID.
|
|
4851
|
+
*
|
|
4242
4852
|
* @example
|
|
4243
4853
|
* 40325405-579C-4D82****
|
|
4244
4854
|
*/
|
|
@@ -4378,25 +4988,45 @@ export declare class ListBenchmarkTaskResponse extends $tea.Model {
|
|
|
4378
4988
|
}
|
|
4379
4989
|
export declare class ListGatewayRequest extends $tea.Model {
|
|
4380
4990
|
/**
|
|
4991
|
+
* @remarks
|
|
4992
|
+
* The private gateway ID. To obtain the private gateway ID, see the private_gateway_id parameter in the response parameters of the ListResources operation.
|
|
4993
|
+
*
|
|
4381
4994
|
* @example
|
|
4382
4995
|
* gw-1uhcqmsc7x22******
|
|
4383
4996
|
*/
|
|
4384
4997
|
gatewayId?: string;
|
|
4385
4998
|
/**
|
|
4999
|
+
* @remarks
|
|
5000
|
+
* The private gateway alias.
|
|
5001
|
+
*
|
|
4386
5002
|
* @example
|
|
4387
5003
|
* mygateway1
|
|
4388
5004
|
*/
|
|
4389
5005
|
gatewayName?: string;
|
|
4390
5006
|
/**
|
|
5007
|
+
* @remarks
|
|
5008
|
+
* The page number. Default value: 1.
|
|
5009
|
+
*
|
|
4391
5010
|
* @example
|
|
4392
5011
|
* 1
|
|
4393
5012
|
*/
|
|
4394
5013
|
pageNumber?: number;
|
|
4395
5014
|
/**
|
|
5015
|
+
* @remarks
|
|
5016
|
+
* The number of entries per page. Default value: 100.
|
|
5017
|
+
*
|
|
4396
5018
|
* @example
|
|
4397
5019
|
* 100
|
|
4398
5020
|
*/
|
|
4399
5021
|
pageSize?: number;
|
|
5022
|
+
/**
|
|
5023
|
+
* @remarks
|
|
5024
|
+
* The ID of the resource group. To obtain a resource group ID, see the ResourceId field in the response of the [ListResources](https://help.aliyun.com/document_detail/412133.html) operation.
|
|
5025
|
+
*
|
|
5026
|
+
* @example
|
|
5027
|
+
* eas-r-4gt8twzwllfo******
|
|
5028
|
+
*/
|
|
5029
|
+
resourceName?: string;
|
|
4400
5030
|
static names(): {
|
|
4401
5031
|
[key: string]: string;
|
|
4402
5032
|
};
|
|
@@ -4408,23 +5038,39 @@ export declare class ListGatewayRequest extends $tea.Model {
|
|
|
4408
5038
|
});
|
|
4409
5039
|
}
|
|
4410
5040
|
export declare class ListGatewayResponseBody extends $tea.Model {
|
|
5041
|
+
/**
|
|
5042
|
+
* @remarks
|
|
5043
|
+
* The private gateways.
|
|
5044
|
+
*/
|
|
4411
5045
|
gateways?: ListGatewayResponseBodyGateways[];
|
|
4412
5046
|
/**
|
|
5047
|
+
* @remarks
|
|
5048
|
+
* The page number.
|
|
5049
|
+
*
|
|
4413
5050
|
* @example
|
|
4414
5051
|
* 1
|
|
4415
5052
|
*/
|
|
4416
5053
|
pageNumber?: number;
|
|
4417
5054
|
/**
|
|
5055
|
+
* @remarks
|
|
5056
|
+
* The number of entries per page.
|
|
5057
|
+
*
|
|
4418
5058
|
* @example
|
|
4419
5059
|
* 100
|
|
4420
5060
|
*/
|
|
4421
5061
|
pageSize?: number;
|
|
4422
5062
|
/**
|
|
5063
|
+
* @remarks
|
|
5064
|
+
* The request ID.
|
|
5065
|
+
*
|
|
4423
5066
|
* @example
|
|
4424
5067
|
* 40325405-579C-4D82****
|
|
4425
5068
|
*/
|
|
4426
5069
|
requestId?: string;
|
|
4427
5070
|
/**
|
|
5071
|
+
* @remarks
|
|
5072
|
+
* The total number of private gateways returned.
|
|
5073
|
+
*
|
|
4428
5074
|
* @example
|
|
4429
5075
|
* 5
|
|
4430
5076
|
*/
|
|
@@ -4455,6 +5101,54 @@ export declare class ListGatewayResponse extends $tea.Model {
|
|
|
4455
5101
|
[key: string]: any;
|
|
4456
5102
|
});
|
|
4457
5103
|
}
|
|
5104
|
+
export declare class ListGatewayDomainsResponseBody extends $tea.Model {
|
|
5105
|
+
/**
|
|
5106
|
+
* @remarks
|
|
5107
|
+
* The list of custom domain names.
|
|
5108
|
+
*/
|
|
5109
|
+
customDomains?: ListGatewayDomainsResponseBodyCustomDomains[];
|
|
5110
|
+
/**
|
|
5111
|
+
* @remarks
|
|
5112
|
+
* The message that is returned.
|
|
5113
|
+
*
|
|
5114
|
+
* @example
|
|
5115
|
+
* Successfully get custom domains
|
|
5116
|
+
*/
|
|
5117
|
+
message?: string;
|
|
5118
|
+
/**
|
|
5119
|
+
* @remarks
|
|
5120
|
+
* The ID of the request.
|
|
5121
|
+
*
|
|
5122
|
+
* @example
|
|
5123
|
+
* 40325405-579C-4D82****
|
|
5124
|
+
*/
|
|
5125
|
+
requestId?: string;
|
|
5126
|
+
static names(): {
|
|
5127
|
+
[key: string]: string;
|
|
5128
|
+
};
|
|
5129
|
+
static types(): {
|
|
5130
|
+
[key: string]: any;
|
|
5131
|
+
};
|
|
5132
|
+
constructor(map?: {
|
|
5133
|
+
[key: string]: any;
|
|
5134
|
+
});
|
|
5135
|
+
}
|
|
5136
|
+
export declare class ListGatewayDomainsResponse extends $tea.Model {
|
|
5137
|
+
headers?: {
|
|
5138
|
+
[key: string]: string;
|
|
5139
|
+
};
|
|
5140
|
+
statusCode?: number;
|
|
5141
|
+
body?: ListGatewayDomainsResponseBody;
|
|
5142
|
+
static names(): {
|
|
5143
|
+
[key: string]: string;
|
|
5144
|
+
};
|
|
5145
|
+
static types(): {
|
|
5146
|
+
[key: string]: any;
|
|
5147
|
+
};
|
|
5148
|
+
constructor(map?: {
|
|
5149
|
+
[key: string]: any;
|
|
5150
|
+
});
|
|
5151
|
+
}
|
|
4458
5152
|
export declare class ListGatewayIntranetLinkedVpcResponseBody extends $tea.Model {
|
|
4459
5153
|
/**
|
|
4460
5154
|
* @remarks
|
|
@@ -4465,14 +5159,68 @@ export declare class ListGatewayIntranetLinkedVpcResponseBody extends $tea.Model
|
|
|
4465
5159
|
*/
|
|
4466
5160
|
gatewayId?: string;
|
|
4467
5161
|
/**
|
|
4468
|
-
* @remarks
|
|
4469
|
-
* The internal endpoints.
|
|
4470
|
-
*/
|
|
4471
|
-
intranetLinkedVpcList?: ListGatewayIntranetLinkedVpcResponseBodyIntranetLinkedVpcList[];
|
|
4472
|
-
/**
|
|
4473
|
-
* @remarks
|
|
4474
|
-
* The request ID.
|
|
4475
|
-
*
|
|
5162
|
+
* @remarks
|
|
5163
|
+
* The internal endpoints.
|
|
5164
|
+
*/
|
|
5165
|
+
intranetLinkedVpcList?: ListGatewayIntranetLinkedVpcResponseBodyIntranetLinkedVpcList[];
|
|
5166
|
+
/**
|
|
5167
|
+
* @remarks
|
|
5168
|
+
* The request ID.
|
|
5169
|
+
*
|
|
5170
|
+
* @example
|
|
5171
|
+
* 40325405-579C-4D82****
|
|
5172
|
+
*/
|
|
5173
|
+
requestId?: string;
|
|
5174
|
+
static names(): {
|
|
5175
|
+
[key: string]: string;
|
|
5176
|
+
};
|
|
5177
|
+
static types(): {
|
|
5178
|
+
[key: string]: any;
|
|
5179
|
+
};
|
|
5180
|
+
constructor(map?: {
|
|
5181
|
+
[key: string]: any;
|
|
5182
|
+
});
|
|
5183
|
+
}
|
|
5184
|
+
export declare class ListGatewayIntranetLinkedVpcResponse extends $tea.Model {
|
|
5185
|
+
headers?: {
|
|
5186
|
+
[key: string]: string;
|
|
5187
|
+
};
|
|
5188
|
+
statusCode?: number;
|
|
5189
|
+
body?: ListGatewayIntranetLinkedVpcResponseBody;
|
|
5190
|
+
static names(): {
|
|
5191
|
+
[key: string]: string;
|
|
5192
|
+
};
|
|
5193
|
+
static types(): {
|
|
5194
|
+
[key: string]: any;
|
|
5195
|
+
};
|
|
5196
|
+
constructor(map?: {
|
|
5197
|
+
[key: string]: any;
|
|
5198
|
+
});
|
|
5199
|
+
}
|
|
5200
|
+
export declare class ListGatewayIntranetLinkedVpcPeerRequest extends $tea.Model {
|
|
5201
|
+
/**
|
|
5202
|
+
* @example
|
|
5203
|
+
* vpc-2zetuli9ws0qgjd******
|
|
5204
|
+
*/
|
|
5205
|
+
vpcId?: string;
|
|
5206
|
+
static names(): {
|
|
5207
|
+
[key: string]: string;
|
|
5208
|
+
};
|
|
5209
|
+
static types(): {
|
|
5210
|
+
[key: string]: any;
|
|
5211
|
+
};
|
|
5212
|
+
constructor(map?: {
|
|
5213
|
+
[key: string]: any;
|
|
5214
|
+
});
|
|
5215
|
+
}
|
|
5216
|
+
export declare class ListGatewayIntranetLinkedVpcPeerResponseBody extends $tea.Model {
|
|
5217
|
+
/**
|
|
5218
|
+
* @example
|
|
5219
|
+
* gw-1uhcqmsc7x22******
|
|
5220
|
+
*/
|
|
5221
|
+
gatewayId?: string;
|
|
5222
|
+
peerVpcList?: ListGatewayIntranetLinkedVpcPeerResponseBodyPeerVpcList[];
|
|
5223
|
+
/**
|
|
4476
5224
|
* @example
|
|
4477
5225
|
* 40325405-579C-4D82****
|
|
4478
5226
|
*/
|
|
@@ -4487,12 +5235,12 @@ export declare class ListGatewayIntranetLinkedVpcResponseBody extends $tea.Model
|
|
|
4487
5235
|
[key: string]: any;
|
|
4488
5236
|
});
|
|
4489
5237
|
}
|
|
4490
|
-
export declare class
|
|
5238
|
+
export declare class ListGatewayIntranetLinkedVpcPeerResponse extends $tea.Model {
|
|
4491
5239
|
headers?: {
|
|
4492
5240
|
[key: string]: string;
|
|
4493
5241
|
};
|
|
4494
5242
|
statusCode?: number;
|
|
4495
|
-
body?:
|
|
5243
|
+
body?: ListGatewayIntranetLinkedVpcPeerResponseBody;
|
|
4496
5244
|
static names(): {
|
|
4497
5245
|
[key: string]: string;
|
|
4498
5246
|
};
|
|
@@ -5685,7 +6433,7 @@ export declare class ListServicesRequest extends $tea.Model {
|
|
|
5685
6433
|
filter?: string;
|
|
5686
6434
|
/**
|
|
5687
6435
|
* @remarks
|
|
5688
|
-
* The
|
|
6436
|
+
* The private gateway ID.
|
|
5689
6437
|
*
|
|
5690
6438
|
* @example
|
|
5691
6439
|
* gw-1uhcqmsc7x22******
|
|
@@ -5757,6 +6505,26 @@ export declare class ListServicesRequest extends $tea.Model {
|
|
|
5757
6505
|
* eas-r-hd0qwy8cxxxx
|
|
5758
6506
|
*/
|
|
5759
6507
|
resourceName?: string;
|
|
6508
|
+
/**
|
|
6509
|
+
* @remarks
|
|
6510
|
+
* The server role.
|
|
6511
|
+
*
|
|
6512
|
+
* Valid values:
|
|
6513
|
+
*
|
|
6514
|
+
* * DataLoader
|
|
6515
|
+
* * FrontEnd
|
|
6516
|
+
* * DataSet
|
|
6517
|
+
* * SDProxy
|
|
6518
|
+
* * LLMSscheduler
|
|
6519
|
+
* * ScalableJob
|
|
6520
|
+
* * LLMGateway
|
|
6521
|
+
* * Job
|
|
6522
|
+
* * Queue
|
|
6523
|
+
*
|
|
6524
|
+
* @example
|
|
6525
|
+
* LLMGateway
|
|
6526
|
+
*/
|
|
6527
|
+
role?: string;
|
|
5760
6528
|
/**
|
|
5761
6529
|
* @remarks
|
|
5762
6530
|
* The service name.
|
|
@@ -6011,7 +6779,7 @@ export declare class ListServicesShrinkRequest extends $tea.Model {
|
|
|
6011
6779
|
filter?: string;
|
|
6012
6780
|
/**
|
|
6013
6781
|
* @remarks
|
|
6014
|
-
* The
|
|
6782
|
+
* The private gateway ID.
|
|
6015
6783
|
*
|
|
6016
6784
|
* @example
|
|
6017
6785
|
* gw-1uhcqmsc7x22******
|
|
@@ -6081,6 +6849,26 @@ export declare class ListServicesShrinkRequest extends $tea.Model {
|
|
|
6081
6849
|
* eas-r-hd0qwy8cxxxx
|
|
6082
6850
|
*/
|
|
6083
6851
|
resourceName?: string;
|
|
6852
|
+
/**
|
|
6853
|
+
* @remarks
|
|
6854
|
+
* The server role.
|
|
6855
|
+
*
|
|
6856
|
+
* Valid values:
|
|
6857
|
+
*
|
|
6858
|
+
* * DataLoader
|
|
6859
|
+
* * FrontEnd
|
|
6860
|
+
* * DataSet
|
|
6861
|
+
* * SDProxy
|
|
6862
|
+
* * LLMSscheduler
|
|
6863
|
+
* * ScalableJob
|
|
6864
|
+
* * LLMGateway
|
|
6865
|
+
* * Job
|
|
6866
|
+
* * Queue
|
|
6867
|
+
*
|
|
6868
|
+
* @example
|
|
6869
|
+
* LLMGateway
|
|
6870
|
+
*/
|
|
6871
|
+
role?: string;
|
|
6084
6872
|
/**
|
|
6085
6873
|
* @remarks
|
|
6086
6874
|
* The service name.
|
|
@@ -6389,8 +7177,15 @@ export declare class ListServicesResponse extends $tea.Model {
|
|
|
6389
7177
|
});
|
|
6390
7178
|
}
|
|
6391
7179
|
export declare class ListTenantAddonsResponseBody extends $tea.Model {
|
|
7180
|
+
/**
|
|
7181
|
+
* @remarks
|
|
7182
|
+
* The information about the plug-in.
|
|
7183
|
+
*/
|
|
6392
7184
|
addons?: ListTenantAddonsResponseBodyAddons[];
|
|
6393
7185
|
/**
|
|
7186
|
+
* @remarks
|
|
7187
|
+
* The request ID.
|
|
7188
|
+
*
|
|
6394
7189
|
* @example
|
|
6395
7190
|
* 40325405-579C-4D82****
|
|
6396
7191
|
*/
|
|
@@ -6421,13 +7216,126 @@ export declare class ListTenantAddonsResponse extends $tea.Model {
|
|
|
6421
7216
|
[key: string]: any;
|
|
6422
7217
|
});
|
|
6423
7218
|
}
|
|
7219
|
+
export declare class ListVirtualResourceRequest extends $tea.Model {
|
|
7220
|
+
/**
|
|
7221
|
+
* @remarks
|
|
7222
|
+
* The page number. Pages start from page 1. Default value: 1.
|
|
7223
|
+
*
|
|
7224
|
+
* @example
|
|
7225
|
+
* 1
|
|
7226
|
+
*/
|
|
7227
|
+
pageNumber?: number;
|
|
7228
|
+
/**
|
|
7229
|
+
* @remarks
|
|
7230
|
+
* The number of entries per page. Default value: 100.
|
|
7231
|
+
*
|
|
7232
|
+
* @example
|
|
7233
|
+
* 20
|
|
7234
|
+
*/
|
|
7235
|
+
pageSize?: number;
|
|
7236
|
+
/**
|
|
7237
|
+
* @remarks
|
|
7238
|
+
* The ID of the virtual resource group.
|
|
7239
|
+
*
|
|
7240
|
+
* @example
|
|
7241
|
+
* eas-vr-npovr28onap1xxxxxx
|
|
7242
|
+
*/
|
|
7243
|
+
virtualResourceId?: string;
|
|
7244
|
+
/**
|
|
7245
|
+
* @remarks
|
|
7246
|
+
* The name of the virtual resource group.
|
|
7247
|
+
*
|
|
7248
|
+
* @example
|
|
7249
|
+
* MyVirtualResource
|
|
7250
|
+
*/
|
|
7251
|
+
virtualResourceName?: string;
|
|
7252
|
+
static names(): {
|
|
7253
|
+
[key: string]: string;
|
|
7254
|
+
};
|
|
7255
|
+
static types(): {
|
|
7256
|
+
[key: string]: any;
|
|
7257
|
+
};
|
|
7258
|
+
constructor(map?: {
|
|
7259
|
+
[key: string]: any;
|
|
7260
|
+
});
|
|
7261
|
+
}
|
|
7262
|
+
export declare class ListVirtualResourceResponseBody extends $tea.Model {
|
|
7263
|
+
/**
|
|
7264
|
+
* @remarks
|
|
7265
|
+
* The page number.
|
|
7266
|
+
*
|
|
7267
|
+
* @example
|
|
7268
|
+
* 1
|
|
7269
|
+
*/
|
|
7270
|
+
pageNumber?: number;
|
|
7271
|
+
/**
|
|
7272
|
+
* @remarks
|
|
7273
|
+
* The number of entries per page.
|
|
7274
|
+
*
|
|
7275
|
+
* @example
|
|
7276
|
+
* 20
|
|
7277
|
+
*/
|
|
7278
|
+
pageSize?: number;
|
|
7279
|
+
/**
|
|
7280
|
+
* @remarks
|
|
7281
|
+
* The ID of the request.
|
|
7282
|
+
*
|
|
7283
|
+
* @example
|
|
7284
|
+
* 40325405-579C-4D82****
|
|
7285
|
+
*/
|
|
7286
|
+
requestId?: string;
|
|
7287
|
+
/**
|
|
7288
|
+
* @remarks
|
|
7289
|
+
* The total number of entries returned.
|
|
7290
|
+
*
|
|
7291
|
+
* @example
|
|
7292
|
+
* 100
|
|
7293
|
+
*/
|
|
7294
|
+
totalCount?: number;
|
|
7295
|
+
/**
|
|
7296
|
+
* @remarks
|
|
7297
|
+
* The list of virtual resource groups.
|
|
7298
|
+
*/
|
|
7299
|
+
virtualResources?: ListVirtualResourceResponseBodyVirtualResources[];
|
|
7300
|
+
static names(): {
|
|
7301
|
+
[key: string]: string;
|
|
7302
|
+
};
|
|
7303
|
+
static types(): {
|
|
7304
|
+
[key: string]: any;
|
|
7305
|
+
};
|
|
7306
|
+
constructor(map?: {
|
|
7307
|
+
[key: string]: any;
|
|
7308
|
+
});
|
|
7309
|
+
}
|
|
7310
|
+
export declare class ListVirtualResourceResponse extends $tea.Model {
|
|
7311
|
+
headers?: {
|
|
7312
|
+
[key: string]: string;
|
|
7313
|
+
};
|
|
7314
|
+
statusCode?: number;
|
|
7315
|
+
body?: ListVirtualResourceResponseBody;
|
|
7316
|
+
static names(): {
|
|
7317
|
+
[key: string]: string;
|
|
7318
|
+
};
|
|
7319
|
+
static types(): {
|
|
7320
|
+
[key: string]: any;
|
|
7321
|
+
};
|
|
7322
|
+
constructor(map?: {
|
|
7323
|
+
[key: string]: any;
|
|
7324
|
+
});
|
|
7325
|
+
}
|
|
6424
7326
|
export declare class ReinstallTenantAddonResponseBody extends $tea.Model {
|
|
6425
7327
|
/**
|
|
7328
|
+
* @remarks
|
|
7329
|
+
* The returned message.
|
|
7330
|
+
*
|
|
6426
7331
|
* @example
|
|
6427
7332
|
* Addon prometheus_discovery is successfully reinstalled
|
|
6428
7333
|
*/
|
|
6429
7334
|
message?: string;
|
|
6430
7335
|
/**
|
|
7336
|
+
* @remarks
|
|
7337
|
+
* The request ID.
|
|
7338
|
+
*
|
|
6431
7339
|
* @example
|
|
6432
7340
|
* 40325405-579C-4D82****
|
|
6433
7341
|
*/
|
|
@@ -7860,6 +8768,75 @@ export declare class UpdateServiceVersionResponse extends $tea.Model {
|
|
|
7860
8768
|
[key: string]: any;
|
|
7861
8769
|
});
|
|
7862
8770
|
}
|
|
8771
|
+
export declare class UpdateVirtualResourceRequest extends $tea.Model {
|
|
8772
|
+
/**
|
|
8773
|
+
* @remarks
|
|
8774
|
+
* The list of resources in the virtual resource group.
|
|
8775
|
+
*
|
|
8776
|
+
* > If you specify this parameter, previous data are overwritten.
|
|
8777
|
+
*/
|
|
8778
|
+
resources?: UpdateVirtualResourceRequestResources[];
|
|
8779
|
+
/**
|
|
8780
|
+
* @remarks
|
|
8781
|
+
* The new name for the virtual resource group.
|
|
8782
|
+
*
|
|
8783
|
+
* @example
|
|
8784
|
+
* NewMyVirtualResource
|
|
8785
|
+
*/
|
|
8786
|
+
virtualResourceName?: string;
|
|
8787
|
+
static names(): {
|
|
8788
|
+
[key: string]: string;
|
|
8789
|
+
};
|
|
8790
|
+
static types(): {
|
|
8791
|
+
[key: string]: any;
|
|
8792
|
+
};
|
|
8793
|
+
constructor(map?: {
|
|
8794
|
+
[key: string]: any;
|
|
8795
|
+
});
|
|
8796
|
+
}
|
|
8797
|
+
export declare class UpdateVirtualResourceResponseBody extends $tea.Model {
|
|
8798
|
+
/**
|
|
8799
|
+
* @remarks
|
|
8800
|
+
* The returned message.
|
|
8801
|
+
*
|
|
8802
|
+
* @example
|
|
8803
|
+
* Successfully updated virtual resource eas-vr-npovr28onap1xxxxxx
|
|
8804
|
+
*/
|
|
8805
|
+
message?: string;
|
|
8806
|
+
/**
|
|
8807
|
+
* @remarks
|
|
8808
|
+
* The ID of the request.
|
|
8809
|
+
*
|
|
8810
|
+
* @example
|
|
8811
|
+
* 40325405-579C-4D82****
|
|
8812
|
+
*/
|
|
8813
|
+
requestId?: string;
|
|
8814
|
+
static names(): {
|
|
8815
|
+
[key: string]: string;
|
|
8816
|
+
};
|
|
8817
|
+
static types(): {
|
|
8818
|
+
[key: string]: any;
|
|
8819
|
+
};
|
|
8820
|
+
constructor(map?: {
|
|
8821
|
+
[key: string]: any;
|
|
8822
|
+
});
|
|
8823
|
+
}
|
|
8824
|
+
export declare class UpdateVirtualResourceResponse extends $tea.Model {
|
|
8825
|
+
headers?: {
|
|
8826
|
+
[key: string]: string;
|
|
8827
|
+
};
|
|
8828
|
+
statusCode?: number;
|
|
8829
|
+
body?: UpdateVirtualResourceResponseBody;
|
|
8830
|
+
static names(): {
|
|
8831
|
+
[key: string]: string;
|
|
8832
|
+
};
|
|
8833
|
+
static types(): {
|
|
8834
|
+
[key: string]: any;
|
|
8835
|
+
};
|
|
8836
|
+
constructor(map?: {
|
|
8837
|
+
[key: string]: any;
|
|
8838
|
+
});
|
|
8839
|
+
}
|
|
7863
8840
|
export declare class ServiceLabels extends $tea.Model {
|
|
7864
8841
|
labelKey?: string;
|
|
7865
8842
|
labelValue?: string;
|
|
@@ -7873,17 +8850,90 @@ export declare class ServiceLabels extends $tea.Model {
|
|
|
7873
8850
|
[key: string]: any;
|
|
7874
8851
|
});
|
|
7875
8852
|
}
|
|
7876
|
-
export declare class
|
|
8853
|
+
export declare class AttachGatewayDomainRequestCustomDomain extends $tea.Model {
|
|
8854
|
+
/**
|
|
8855
|
+
* @remarks
|
|
8856
|
+
* The ID of the SSL certificate bound to the domain name. Obtain the certificate ID after you upload or purchase a certificate in the [Certificate Management Service](https://yundunnext.console.aliyun.com/?spm=5176.2020520163.console-base_help.2.4b3baJixaJixOc\\&p=cas) console.
|
|
8857
|
+
*
|
|
8858
|
+
* @example
|
|
8859
|
+
* 1473**25
|
|
8860
|
+
*/
|
|
8861
|
+
certificateId?: string;
|
|
8862
|
+
/**
|
|
8863
|
+
* @remarks
|
|
8864
|
+
* The custom domain name.
|
|
8865
|
+
*
|
|
8866
|
+
* This parameter is required.
|
|
8867
|
+
*
|
|
8868
|
+
* @example
|
|
8869
|
+
* test.com
|
|
8870
|
+
*/
|
|
8871
|
+
domain?: string;
|
|
8872
|
+
/**
|
|
8873
|
+
* @remarks
|
|
8874
|
+
* The domain name type.
|
|
8875
|
+
*
|
|
8876
|
+
* Valid value:
|
|
8877
|
+
*
|
|
8878
|
+
* * intranet: internal network.
|
|
8879
|
+
* * internet: public network.
|
|
8880
|
+
*
|
|
8881
|
+
* This parameter is required.
|
|
8882
|
+
*
|
|
8883
|
+
* @example
|
|
8884
|
+
* intranet
|
|
8885
|
+
*/
|
|
8886
|
+
type?: string;
|
|
8887
|
+
static names(): {
|
|
8888
|
+
[key: string]: string;
|
|
8889
|
+
};
|
|
8890
|
+
static types(): {
|
|
8891
|
+
[key: string]: any;
|
|
8892
|
+
};
|
|
8893
|
+
constructor(map?: {
|
|
8894
|
+
[key: string]: any;
|
|
8895
|
+
});
|
|
8896
|
+
}
|
|
8897
|
+
export declare class CreateAclPolicyRequestAclPolicyList extends $tea.Model {
|
|
8898
|
+
/**
|
|
8899
|
+
* @remarks
|
|
8900
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway.
|
|
8901
|
+
*
|
|
8902
|
+
* @example
|
|
8903
|
+
* default
|
|
8904
|
+
*/
|
|
8905
|
+
comment?: string;
|
|
8906
|
+
/**
|
|
8907
|
+
* @remarks
|
|
8908
|
+
* The IP CIDR block in the VPC that can access the private gateway.
|
|
8909
|
+
*
|
|
8910
|
+
* This parameter is required.
|
|
8911
|
+
*
|
|
8912
|
+
* @example
|
|
8913
|
+
* 10.23.XX.XX/32
|
|
8914
|
+
*/
|
|
8915
|
+
entry?: string;
|
|
8916
|
+
static names(): {
|
|
8917
|
+
[key: string]: string;
|
|
8918
|
+
};
|
|
8919
|
+
static types(): {
|
|
8920
|
+
[key: string]: any;
|
|
8921
|
+
};
|
|
8922
|
+
constructor(map?: {
|
|
8923
|
+
[key: string]: any;
|
|
8924
|
+
});
|
|
8925
|
+
}
|
|
8926
|
+
export declare class CreateGatewayIntranetLinkedVpcPeerRequestPeerVpcs extends $tea.Model {
|
|
7877
8927
|
/**
|
|
7878
8928
|
* @example
|
|
7879
|
-
*
|
|
8929
|
+
* cn-shanghai
|
|
7880
8930
|
*/
|
|
7881
|
-
|
|
8931
|
+
region?: string;
|
|
7882
8932
|
/**
|
|
7883
8933
|
* @example
|
|
7884
|
-
*
|
|
8934
|
+
* vpc-uf66uio7md****
|
|
7885
8935
|
*/
|
|
7886
|
-
|
|
8936
|
+
vpcId?: string;
|
|
7887
8937
|
static names(): {
|
|
7888
8938
|
[key: string]: string;
|
|
7889
8939
|
};
|
|
@@ -8164,13 +9214,86 @@ export declare class CreateServiceCronScalerRequestScaleJobs extends $tea.Model
|
|
|
8164
9214
|
[key: string]: any;
|
|
8165
9215
|
});
|
|
8166
9216
|
}
|
|
9217
|
+
export declare class CreateVirtualResourceRequestResources extends $tea.Model {
|
|
9218
|
+
/**
|
|
9219
|
+
* @remarks
|
|
9220
|
+
* The instance type of the public resource group.
|
|
9221
|
+
*
|
|
9222
|
+
* > You must specify one and only one of the InstanceType, ResourceId, and QuotaId parameters.
|
|
9223
|
+
*
|
|
9224
|
+
* @example
|
|
9225
|
+
* ecs.s6-c1m2.xlarge
|
|
9226
|
+
*/
|
|
9227
|
+
instanceType?: string;
|
|
9228
|
+
/**
|
|
9229
|
+
* @remarks
|
|
9230
|
+
* The priority of resource scheduling. A greater number specifies a higher priority.
|
|
9231
|
+
*
|
|
9232
|
+
* @example
|
|
9233
|
+
* 6
|
|
9234
|
+
*/
|
|
9235
|
+
priority?: number;
|
|
9236
|
+
/**
|
|
9237
|
+
* @remarks
|
|
9238
|
+
* Lingjun Resource Quota ID.
|
|
9239
|
+
*
|
|
9240
|
+
* > You must specify one and only one of the InstanceType, ResourceId, and QuotaId parameters.
|
|
9241
|
+
*
|
|
9242
|
+
* @example
|
|
9243
|
+
* quota185lqxxxxxx
|
|
9244
|
+
*/
|
|
9245
|
+
quotaId?: string;
|
|
9246
|
+
/**
|
|
9247
|
+
* @remarks
|
|
9248
|
+
* The region where the resource resides.
|
|
9249
|
+
*
|
|
9250
|
+
* @example
|
|
9251
|
+
* cn-hangzhou
|
|
9252
|
+
*/
|
|
9253
|
+
region?: string;
|
|
9254
|
+
/**
|
|
9255
|
+
* @remarks
|
|
9256
|
+
* The ID of the dedicated resource group. For information about how to query the ID of a dedicated resource group, see [ListResources](https://help.aliyun.com/document_detail/412133.html).
|
|
9257
|
+
*
|
|
9258
|
+
* > You must specify one and only one of the InstanceType, ResourceId, and QuotaId parameters.
|
|
9259
|
+
*
|
|
9260
|
+
* @example
|
|
9261
|
+
* eas-r-g55ieatgg3buxxxxxx
|
|
9262
|
+
*/
|
|
9263
|
+
resourceId?: string;
|
|
9264
|
+
/**
|
|
9265
|
+
* @remarks
|
|
9266
|
+
* The maximum price of preemptible instances in a public resource group.
|
|
9267
|
+
*
|
|
9268
|
+
* > If you do not set this value, preemptible instances are not used.
|
|
9269
|
+
*
|
|
9270
|
+
* @example
|
|
9271
|
+
* 10.05
|
|
9272
|
+
*/
|
|
9273
|
+
spotPriceLimit?: number;
|
|
9274
|
+
static names(): {
|
|
9275
|
+
[key: string]: string;
|
|
9276
|
+
};
|
|
9277
|
+
static types(): {
|
|
9278
|
+
[key: string]: any;
|
|
9279
|
+
};
|
|
9280
|
+
constructor(map?: {
|
|
9281
|
+
[key: string]: any;
|
|
9282
|
+
});
|
|
9283
|
+
}
|
|
8167
9284
|
export declare class DeleteAclPolicyRequestAclPolicyList extends $tea.Model {
|
|
8168
9285
|
/**
|
|
9286
|
+
* @remarks
|
|
9287
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway.
|
|
9288
|
+
*
|
|
8169
9289
|
* @example
|
|
8170
9290
|
* default
|
|
8171
9291
|
*/
|
|
8172
9292
|
comment?: string;
|
|
8173
9293
|
/**
|
|
9294
|
+
* @remarks
|
|
9295
|
+
* The IP CIDR block in the VPC that can access the private gateway.
|
|
9296
|
+
*
|
|
8174
9297
|
* @example
|
|
8175
9298
|
* 10.23.XX.XX/32
|
|
8176
9299
|
*/
|
|
@@ -8185,6 +9308,27 @@ export declare class DeleteAclPolicyRequestAclPolicyList extends $tea.Model {
|
|
|
8185
9308
|
[key: string]: any;
|
|
8186
9309
|
});
|
|
8187
9310
|
}
|
|
9311
|
+
export declare class DeleteGatewayIntranetLinkedVpcPeerRequestPeerVpcs extends $tea.Model {
|
|
9312
|
+
/**
|
|
9313
|
+
* @example
|
|
9314
|
+
* cn-shanghai
|
|
9315
|
+
*/
|
|
9316
|
+
region?: string;
|
|
9317
|
+
/**
|
|
9318
|
+
* @example
|
|
9319
|
+
* vpc-uf66uio7md****
|
|
9320
|
+
*/
|
|
9321
|
+
vpcId?: string;
|
|
9322
|
+
static names(): {
|
|
9323
|
+
[key: string]: string;
|
|
9324
|
+
};
|
|
9325
|
+
static types(): {
|
|
9326
|
+
[key: string]: any;
|
|
9327
|
+
};
|
|
9328
|
+
constructor(map?: {
|
|
9329
|
+
[key: string]: any;
|
|
9330
|
+
});
|
|
9331
|
+
}
|
|
8188
9332
|
export declare class DescribeServiceAutoScalerResponseBodyCurrentMetrics extends $tea.Model {
|
|
8189
9333
|
/**
|
|
8190
9334
|
* @remarks
|
|
@@ -8478,8 +9622,117 @@ export declare class DescribeSpotDiscountHistoryResponseBodySpotDiscounts extend
|
|
|
8478
9622
|
[key: string]: any;
|
|
8479
9623
|
});
|
|
8480
9624
|
}
|
|
9625
|
+
export declare class DescribeVirtualResourceResponseBodyResources extends $tea.Model {
|
|
9626
|
+
/**
|
|
9627
|
+
* @remarks
|
|
9628
|
+
* The instance type of the public resource group.
|
|
9629
|
+
*
|
|
9630
|
+
* @example
|
|
9631
|
+
* ecs.s6-c1m2.xlarge
|
|
9632
|
+
*/
|
|
9633
|
+
instanceType?: string;
|
|
9634
|
+
/**
|
|
9635
|
+
* @remarks
|
|
9636
|
+
* The priority of resource scheduling. A greater number specifies a higher priority.
|
|
9637
|
+
*
|
|
9638
|
+
* @example
|
|
9639
|
+
* 3
|
|
9640
|
+
*/
|
|
9641
|
+
priority?: number;
|
|
9642
|
+
/**
|
|
9643
|
+
* @remarks
|
|
9644
|
+
* The instance type of the public resource group.
|
|
9645
|
+
*
|
|
9646
|
+
* @example
|
|
9647
|
+
* quota185lqxxxxxx
|
|
9648
|
+
*/
|
|
9649
|
+
quotaId?: string;
|
|
9650
|
+
/**
|
|
9651
|
+
* @remarks
|
|
9652
|
+
* The region where the resource resides.
|
|
9653
|
+
*
|
|
9654
|
+
* @example
|
|
9655
|
+
* cn-hangzhou
|
|
9656
|
+
*/
|
|
9657
|
+
region?: string;
|
|
9658
|
+
/**
|
|
9659
|
+
* @remarks
|
|
9660
|
+
* The ID of the dedicated resource group.
|
|
9661
|
+
*
|
|
9662
|
+
* @example
|
|
9663
|
+
* eas-r-g55ieatgg3buxxxxxx
|
|
9664
|
+
*/
|
|
9665
|
+
resourceId?: string;
|
|
9666
|
+
/**
|
|
9667
|
+
* @remarks
|
|
9668
|
+
* The maximum price of preemptible instances in a public resource group.
|
|
9669
|
+
*
|
|
9670
|
+
* @example
|
|
9671
|
+
* 10.05
|
|
9672
|
+
*/
|
|
9673
|
+
spotPriceLimit?: number;
|
|
9674
|
+
static names(): {
|
|
9675
|
+
[key: string]: string;
|
|
9676
|
+
};
|
|
9677
|
+
static types(): {
|
|
9678
|
+
[key: string]: any;
|
|
9679
|
+
};
|
|
9680
|
+
constructor(map?: {
|
|
9681
|
+
[key: string]: any;
|
|
9682
|
+
});
|
|
9683
|
+
}
|
|
9684
|
+
export declare class DetachGatewayDomainRequestCustomDomain extends $tea.Model {
|
|
9685
|
+
/**
|
|
9686
|
+
* @remarks
|
|
9687
|
+
* The custom domain name.
|
|
9688
|
+
*
|
|
9689
|
+
* This parameter is required.
|
|
9690
|
+
*
|
|
9691
|
+
* @example
|
|
9692
|
+
* test.com
|
|
9693
|
+
*/
|
|
9694
|
+
domain?: string;
|
|
9695
|
+
/**
|
|
9696
|
+
* @remarks
|
|
9697
|
+
* The domain name type.
|
|
9698
|
+
*
|
|
9699
|
+
* Valid value:
|
|
9700
|
+
*
|
|
9701
|
+
* * intranet: internal network.
|
|
9702
|
+
* * internet: public network.
|
|
9703
|
+
*
|
|
9704
|
+
* This parameter is required.
|
|
9705
|
+
*
|
|
9706
|
+
* @example
|
|
9707
|
+
* intranet
|
|
9708
|
+
*/
|
|
9709
|
+
type?: string;
|
|
9710
|
+
static names(): {
|
|
9711
|
+
[key: string]: string;
|
|
9712
|
+
};
|
|
9713
|
+
static types(): {
|
|
9714
|
+
[key: string]: any;
|
|
9715
|
+
};
|
|
9716
|
+
constructor(map?: {
|
|
9717
|
+
[key: string]: any;
|
|
9718
|
+
});
|
|
9719
|
+
}
|
|
8481
9720
|
export declare class ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList extends $tea.Model {
|
|
9721
|
+
/**
|
|
9722
|
+
* @remarks
|
|
9723
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway over the Internet.
|
|
9724
|
+
*
|
|
9725
|
+
* @example
|
|
9726
|
+
* default
|
|
9727
|
+
*/
|
|
8482
9728
|
comment?: string;
|
|
9729
|
+
/**
|
|
9730
|
+
* @remarks
|
|
9731
|
+
* The IP CIDR block in the VPC that can access the private gateway over the Internet.
|
|
9732
|
+
*
|
|
9733
|
+
* @example
|
|
9734
|
+
* 10.23.XX.XX/32
|
|
9735
|
+
*/
|
|
8483
9736
|
entry?: string;
|
|
8484
9737
|
static names(): {
|
|
8485
9738
|
[key: string]: string;
|
|
@@ -8492,6 +9745,10 @@ export declare class ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList
|
|
|
8492
9745
|
});
|
|
8493
9746
|
}
|
|
8494
9747
|
export declare class ListAclPolicyResponseBodyInternetAclPolicyList extends $tea.Model {
|
|
9748
|
+
/**
|
|
9749
|
+
* @remarks
|
|
9750
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway over the Internet.
|
|
9751
|
+
*/
|
|
8495
9752
|
aclPolicyList?: ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList[];
|
|
8496
9753
|
static names(): {
|
|
8497
9754
|
[key: string]: string;
|
|
@@ -8504,7 +9761,21 @@ export declare class ListAclPolicyResponseBodyInternetAclPolicyList extends $tea
|
|
|
8504
9761
|
});
|
|
8505
9762
|
}
|
|
8506
9763
|
export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList extends $tea.Model {
|
|
9764
|
+
/**
|
|
9765
|
+
* @remarks
|
|
9766
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway over the internal network.
|
|
9767
|
+
*
|
|
9768
|
+
* @example
|
|
9769
|
+
* Test Entry
|
|
9770
|
+
*/
|
|
8507
9771
|
comment?: string;
|
|
9772
|
+
/**
|
|
9773
|
+
* @remarks
|
|
9774
|
+
* The IP CIDR block in the VPC that can access the private gateway over the internal network.
|
|
9775
|
+
*
|
|
9776
|
+
* @example
|
|
9777
|
+
* 192.168.XX.XX/24
|
|
9778
|
+
*/
|
|
8508
9779
|
entry?: string;
|
|
8509
9780
|
static names(): {
|
|
8510
9781
|
[key: string]: string;
|
|
@@ -8517,8 +9788,15 @@ export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyL
|
|
|
8517
9788
|
});
|
|
8518
9789
|
}
|
|
8519
9790
|
export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyList extends $tea.Model {
|
|
9791
|
+
/**
|
|
9792
|
+
* @remarks
|
|
9793
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway over the internal network.
|
|
9794
|
+
*/
|
|
8520
9795
|
aclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList[];
|
|
8521
9796
|
/**
|
|
9797
|
+
* @remarks
|
|
9798
|
+
* The VPC ID. For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
9799
|
+
*
|
|
8522
9800
|
* @example
|
|
8523
9801
|
* vpc-uf66uio7md****
|
|
8524
9802
|
*/
|
|
@@ -8692,60 +9970,154 @@ export declare class ListBenchmarkTaskResponseBodyTasks extends $tea.Model {
|
|
|
8692
9970
|
}
|
|
8693
9971
|
export declare class ListGatewayResponseBodyGateways extends $tea.Model {
|
|
8694
9972
|
/**
|
|
9973
|
+
* @remarks
|
|
9974
|
+
* The billing method. Valid values:
|
|
9975
|
+
*
|
|
9976
|
+
* * PrePaid: subscription.
|
|
9977
|
+
* * PostPaid: pay-as-you-go.
|
|
9978
|
+
*
|
|
9979
|
+
* @example
|
|
9980
|
+
* PostPaid
|
|
9981
|
+
*/
|
|
9982
|
+
chargeType?: string;
|
|
9983
|
+
/**
|
|
9984
|
+
* @remarks
|
|
9985
|
+
* The time when the private gateway was created. The time is displayed in UTC.
|
|
9986
|
+
*
|
|
8695
9987
|
* @example
|
|
8696
9988
|
* 2020-05-19T14:19:42Z
|
|
8697
9989
|
*/
|
|
8698
9990
|
createTime?: string;
|
|
8699
9991
|
/**
|
|
9992
|
+
* @remarks
|
|
9993
|
+
* The private gateway ID.
|
|
9994
|
+
*
|
|
8700
9995
|
* @example
|
|
8701
9996
|
* gw-1uhcqmsc7x22******
|
|
8702
9997
|
*/
|
|
8703
9998
|
gatewayId?: string;
|
|
8704
9999
|
/**
|
|
10000
|
+
* @remarks
|
|
10001
|
+
* The private gateway alias.
|
|
10002
|
+
*
|
|
8705
10003
|
* @example
|
|
8706
10004
|
* mygateway1
|
|
8707
10005
|
*/
|
|
8708
10006
|
gatewayName?: string;
|
|
8709
10007
|
/**
|
|
10008
|
+
* @remarks
|
|
10009
|
+
* The type of instances used for the private gateway.
|
|
10010
|
+
*
|
|
8710
10011
|
* @example
|
|
8711
10012
|
* 2c4g
|
|
8712
10013
|
*/
|
|
8713
10014
|
instanceType?: string;
|
|
8714
10015
|
/**
|
|
10016
|
+
* @remarks
|
|
10017
|
+
* The public endpoint.
|
|
10018
|
+
*
|
|
8715
10019
|
* @example
|
|
8716
10020
|
* gw-1uhcqmsc7x22******-1801786532******.cn-wulanchabu.pai-eas.aliyuncs.com
|
|
8717
10021
|
*/
|
|
8718
10022
|
internetDomain?: string;
|
|
8719
10023
|
/**
|
|
10024
|
+
* @remarks
|
|
10025
|
+
* Indicates whether Internet access is enabled.
|
|
10026
|
+
*
|
|
8720
10027
|
* @example
|
|
8721
10028
|
* true
|
|
8722
10029
|
*/
|
|
8723
10030
|
internetEnabled?: boolean;
|
|
8724
10031
|
/**
|
|
10032
|
+
* @remarks
|
|
10033
|
+
* The internal endpoint.
|
|
10034
|
+
*
|
|
10035
|
+
* @example
|
|
10036
|
+
* gw-1uhcqmsc7x22******-1801786532******-vpc.cn-wulanchabu.pai-eas.aliyuncs.com
|
|
10037
|
+
*/
|
|
10038
|
+
intranetDomain?: string;
|
|
10039
|
+
/**
|
|
10040
|
+
* @remarks
|
|
10041
|
+
* Indicates whether it is the default private gateway.
|
|
10042
|
+
*
|
|
10043
|
+
* @example
|
|
10044
|
+
* true
|
|
10045
|
+
*/
|
|
10046
|
+
isDefault?: boolean;
|
|
10047
|
+
/**
|
|
10048
|
+
* @remarks
|
|
10049
|
+
* The number of nodes in the private gateway.
|
|
10050
|
+
*
|
|
10051
|
+
* @example
|
|
10052
|
+
* 2
|
|
10053
|
+
*/
|
|
10054
|
+
replicas?: number;
|
|
10055
|
+
/**
|
|
10056
|
+
* @remarks
|
|
10057
|
+
* The state of the private gateway.
|
|
10058
|
+
*
|
|
10059
|
+
* Valid values:
|
|
10060
|
+
*
|
|
10061
|
+
* * Creating
|
|
10062
|
+
* * Stopped
|
|
10063
|
+
* * Failed
|
|
10064
|
+
* * Running
|
|
10065
|
+
* * Deleted
|
|
10066
|
+
* * Deleting
|
|
10067
|
+
* * Waiting
|
|
10068
|
+
*
|
|
8725
10069
|
* @example
|
|
8726
|
-
*
|
|
10070
|
+
* Running
|
|
8727
10071
|
*/
|
|
8728
|
-
|
|
10072
|
+
status?: string;
|
|
8729
10073
|
/**
|
|
10074
|
+
* @remarks
|
|
10075
|
+
* The time when the private gateway was updated. The time is displayed in UTC.
|
|
10076
|
+
*
|
|
8730
10077
|
* @example
|
|
8731
|
-
*
|
|
10078
|
+
* 2021-02-24T11:52:17Z
|
|
8732
10079
|
*/
|
|
8733
|
-
|
|
10080
|
+
updateTime?: string;
|
|
10081
|
+
static names(): {
|
|
10082
|
+
[key: string]: string;
|
|
10083
|
+
};
|
|
10084
|
+
static types(): {
|
|
10085
|
+
[key: string]: any;
|
|
10086
|
+
};
|
|
10087
|
+
constructor(map?: {
|
|
10088
|
+
[key: string]: any;
|
|
10089
|
+
});
|
|
10090
|
+
}
|
|
10091
|
+
export declare class ListGatewayDomainsResponseBodyCustomDomains extends $tea.Model {
|
|
8734
10092
|
/**
|
|
10093
|
+
* @remarks
|
|
10094
|
+
* The ID of the SSL certificate bound to the domain name. Obtain the certificate ID after you upload or purchase a certificate in the [Certificate Management Service](https://yundunnext.console.aliyun.com/?spm=5176.2020520163.console-base_help.2.4b3baJixaJixOc\\&p=cas) console.
|
|
10095
|
+
*
|
|
8735
10096
|
* @example
|
|
8736
|
-
*
|
|
10097
|
+
* 1473**25
|
|
8737
10098
|
*/
|
|
8738
|
-
|
|
10099
|
+
certificateId?: string;
|
|
8739
10100
|
/**
|
|
10101
|
+
* @remarks
|
|
10102
|
+
* The custom domain name.
|
|
10103
|
+
*
|
|
8740
10104
|
* @example
|
|
8741
|
-
*
|
|
10105
|
+
* test.com
|
|
8742
10106
|
*/
|
|
8743
|
-
|
|
10107
|
+
domain?: string;
|
|
8744
10108
|
/**
|
|
10109
|
+
* @remarks
|
|
10110
|
+
* The domain name type.
|
|
10111
|
+
*
|
|
10112
|
+
* Valid value:
|
|
10113
|
+
*
|
|
10114
|
+
* * intranet: internal network.
|
|
10115
|
+
* * internet: public network.
|
|
10116
|
+
*
|
|
8745
10117
|
* @example
|
|
8746
|
-
*
|
|
10118
|
+
* intranet
|
|
8747
10119
|
*/
|
|
8748
|
-
|
|
10120
|
+
type?: string;
|
|
8749
10121
|
static names(): {
|
|
8750
10122
|
[key: string]: string;
|
|
8751
10123
|
};
|
|
@@ -8833,6 +10205,44 @@ export declare class ListGatewayIntranetLinkedVpcResponseBodyIntranetLinkedVpcLi
|
|
|
8833
10205
|
[key: string]: any;
|
|
8834
10206
|
});
|
|
8835
10207
|
}
|
|
10208
|
+
export declare class ListGatewayIntranetLinkedVpcPeerResponseBodyPeerVpcListPeerVpcs extends $tea.Model {
|
|
10209
|
+
/**
|
|
10210
|
+
* @example
|
|
10211
|
+
* cn-shanghai
|
|
10212
|
+
*/
|
|
10213
|
+
region?: string;
|
|
10214
|
+
/**
|
|
10215
|
+
* @example
|
|
10216
|
+
* vpc-uf66uio7md****
|
|
10217
|
+
*/
|
|
10218
|
+
vpcId?: string;
|
|
10219
|
+
static names(): {
|
|
10220
|
+
[key: string]: string;
|
|
10221
|
+
};
|
|
10222
|
+
static types(): {
|
|
10223
|
+
[key: string]: any;
|
|
10224
|
+
};
|
|
10225
|
+
constructor(map?: {
|
|
10226
|
+
[key: string]: any;
|
|
10227
|
+
});
|
|
10228
|
+
}
|
|
10229
|
+
export declare class ListGatewayIntranetLinkedVpcPeerResponseBodyPeerVpcList extends $tea.Model {
|
|
10230
|
+
peerVpcs?: ListGatewayIntranetLinkedVpcPeerResponseBodyPeerVpcListPeerVpcs[];
|
|
10231
|
+
/**
|
|
10232
|
+
* @example
|
|
10233
|
+
* vpc-2zetuli9ws0qgjd******
|
|
10234
|
+
*/
|
|
10235
|
+
vpcId?: string;
|
|
10236
|
+
static names(): {
|
|
10237
|
+
[key: string]: string;
|
|
10238
|
+
};
|
|
10239
|
+
static types(): {
|
|
10240
|
+
[key: string]: any;
|
|
10241
|
+
};
|
|
10242
|
+
constructor(map?: {
|
|
10243
|
+
[key: string]: any;
|
|
10244
|
+
});
|
|
10245
|
+
}
|
|
8836
10246
|
export declare class ListServiceVersionsResponseBodyVersions extends $tea.Model {
|
|
8837
10247
|
/**
|
|
8838
10248
|
* @remarks
|
|
@@ -8908,10 +10318,17 @@ export declare class ListServiceVersionsResponseBodyVersions extends $tea.Model
|
|
|
8908
10318
|
});
|
|
8909
10319
|
}
|
|
8910
10320
|
export declare class ListTenantAddonsResponseBodyAddons extends $tea.Model {
|
|
10321
|
+
/**
|
|
10322
|
+
* @remarks
|
|
10323
|
+
* The attributes of the plug-in.
|
|
10324
|
+
*/
|
|
8911
10325
|
attributes?: {
|
|
8912
10326
|
[key: string]: string;
|
|
8913
10327
|
};
|
|
8914
10328
|
/**
|
|
10329
|
+
* @remarks
|
|
10330
|
+
* The name of the plug-in.
|
|
10331
|
+
*
|
|
8915
10332
|
* @example
|
|
8916
10333
|
* prometheus_discovery
|
|
8917
10334
|
*/
|
|
@@ -8926,6 +10343,49 @@ export declare class ListTenantAddonsResponseBodyAddons extends $tea.Model {
|
|
|
8926
10343
|
[key: string]: any;
|
|
8927
10344
|
});
|
|
8928
10345
|
}
|
|
10346
|
+
export declare class ListVirtualResourceResponseBodyVirtualResources extends $tea.Model {
|
|
10347
|
+
/**
|
|
10348
|
+
* @remarks
|
|
10349
|
+
* The time when the virtual resource group was created.
|
|
10350
|
+
*
|
|
10351
|
+
* @example
|
|
10352
|
+
* 2024-10-16T17:52:49Z
|
|
10353
|
+
*/
|
|
10354
|
+
createTime?: string;
|
|
10355
|
+
/**
|
|
10356
|
+
* @remarks
|
|
10357
|
+
* The time when the virtual resource group was last updated.
|
|
10358
|
+
*
|
|
10359
|
+
* @example
|
|
10360
|
+
* 2024-10-16T19:52:49Z
|
|
10361
|
+
*/
|
|
10362
|
+
updateTime?: string;
|
|
10363
|
+
/**
|
|
10364
|
+
* @remarks
|
|
10365
|
+
* The ID of the virtual resource group.
|
|
10366
|
+
*
|
|
10367
|
+
* @example
|
|
10368
|
+
* eas-vr-npovr28onap1xxxxxx
|
|
10369
|
+
*/
|
|
10370
|
+
virtualResourceId?: string;
|
|
10371
|
+
/**
|
|
10372
|
+
* @remarks
|
|
10373
|
+
* The name of the virtual resource group.
|
|
10374
|
+
*
|
|
10375
|
+
* @example
|
|
10376
|
+
* MyVirtualResource
|
|
10377
|
+
*/
|
|
10378
|
+
virtualResourceName?: string;
|
|
10379
|
+
static names(): {
|
|
10380
|
+
[key: string]: string;
|
|
10381
|
+
};
|
|
10382
|
+
static types(): {
|
|
10383
|
+
[key: string]: any;
|
|
10384
|
+
};
|
|
10385
|
+
constructor(map?: {
|
|
10386
|
+
[key: string]: any;
|
|
10387
|
+
});
|
|
10388
|
+
}
|
|
8929
10389
|
export declare class UpdateResourceRequestSelfManagedResourceOptionsNodeTolerations extends $tea.Model {
|
|
8930
10390
|
/**
|
|
8931
10391
|
* @remarks
|
|
@@ -9174,11 +10634,96 @@ export declare class UpdateServiceCronScalerRequestScaleJobs extends $tea.Model
|
|
|
9174
10634
|
[key: string]: any;
|
|
9175
10635
|
});
|
|
9176
10636
|
}
|
|
10637
|
+
export declare class UpdateVirtualResourceRequestResources extends $tea.Model {
|
|
10638
|
+
/**
|
|
10639
|
+
* @remarks
|
|
10640
|
+
* The instance type of the public resource group.
|
|
10641
|
+
*
|
|
10642
|
+
* > You must specify one and only one of the InstanceType, ResourceId, and QuotaId parameters.
|
|
10643
|
+
*
|
|
10644
|
+
* @example
|
|
10645
|
+
* ecs.s6-c1m2.xlarge
|
|
10646
|
+
*/
|
|
10647
|
+
instanceType?: string;
|
|
10648
|
+
/**
|
|
10649
|
+
* @remarks
|
|
10650
|
+
* The priority of resource scheduling. A greater number specifies a higher priority.
|
|
10651
|
+
*
|
|
10652
|
+
* @example
|
|
10653
|
+
* 6
|
|
10654
|
+
*/
|
|
10655
|
+
priority?: number;
|
|
10656
|
+
/**
|
|
10657
|
+
* @remarks
|
|
10658
|
+
* The Lingjun resource quota ID.
|
|
10659
|
+
*
|
|
10660
|
+
* > You must specify one and only one of the InstanceType, ResourceId, and QuotaId parameters.
|
|
10661
|
+
*
|
|
10662
|
+
* @example
|
|
10663
|
+
* quota185lqf994k6
|
|
10664
|
+
*/
|
|
10665
|
+
quotaId?: string;
|
|
10666
|
+
/**
|
|
10667
|
+
* @remarks
|
|
10668
|
+
* The region where the resource resides.
|
|
10669
|
+
*
|
|
10670
|
+
* @example
|
|
10671
|
+
* cn-hangzhou
|
|
10672
|
+
*/
|
|
10673
|
+
region?: string;
|
|
10674
|
+
/**
|
|
10675
|
+
* @remarks
|
|
10676
|
+
* The ID of the dedicated resource group. For information about how to query the ID of a dedicated resource group, see [ListResources](https://help.aliyun.com/document_detail/412133.html).
|
|
10677
|
+
*
|
|
10678
|
+
* > You must specify one and only one of the InstanceType, ResourceId, and QuotaId parameters.
|
|
10679
|
+
*
|
|
10680
|
+
* @example
|
|
10681
|
+
* eas-r-g55ieatgg3butwrn7a
|
|
10682
|
+
*/
|
|
10683
|
+
resourceId?: string;
|
|
10684
|
+
/**
|
|
10685
|
+
* @remarks
|
|
10686
|
+
* The maximum price of preemptible instances in a public resource group.
|
|
10687
|
+
*
|
|
10688
|
+
* > If you do not specify this parameter, preemptible instances are not used.
|
|
10689
|
+
*
|
|
10690
|
+
* @example
|
|
10691
|
+
* 10.05
|
|
10692
|
+
*/
|
|
10693
|
+
spotPriceLimit?: number;
|
|
10694
|
+
static names(): {
|
|
10695
|
+
[key: string]: string;
|
|
10696
|
+
};
|
|
10697
|
+
static types(): {
|
|
10698
|
+
[key: string]: any;
|
|
10699
|
+
};
|
|
10700
|
+
constructor(map?: {
|
|
10701
|
+
[key: string]: any;
|
|
10702
|
+
});
|
|
10703
|
+
}
|
|
9177
10704
|
export default class Client extends OpenApi {
|
|
9178
10705
|
constructor(config: $OpenApi.Config);
|
|
9179
10706
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
9180
10707
|
[key: string]: string;
|
|
9181
10708
|
}, endpoint: string): string;
|
|
10709
|
+
/**
|
|
10710
|
+
* Binds a custom domain name to a private gateway.
|
|
10711
|
+
*
|
|
10712
|
+
* @param tmpReq - AttachGatewayDomainRequest
|
|
10713
|
+
* @param headers - map
|
|
10714
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
10715
|
+
* @returns AttachGatewayDomainResponse
|
|
10716
|
+
*/
|
|
10717
|
+
attachGatewayDomainWithOptions(ClusterId: string, GatewayId: string, tmpReq: AttachGatewayDomainRequest, headers: {
|
|
10718
|
+
[key: string]: string;
|
|
10719
|
+
}, runtime: $Util.RuntimeOptions): Promise<AttachGatewayDomainResponse>;
|
|
10720
|
+
/**
|
|
10721
|
+
* Binds a custom domain name to a private gateway.
|
|
10722
|
+
*
|
|
10723
|
+
* @param request - AttachGatewayDomainRequest
|
|
10724
|
+
* @returns AttachGatewayDomainResponse
|
|
10725
|
+
*/
|
|
10726
|
+
attachGatewayDomain(ClusterId: string, GatewayId: string, request: AttachGatewayDomainRequest): Promise<AttachGatewayDomainResponse>;
|
|
9182
10727
|
/**
|
|
9183
10728
|
* Clones a service.
|
|
9184
10729
|
*
|
|
@@ -9213,7 +10758,7 @@ export default class Client extends OpenApi {
|
|
|
9213
10758
|
*/
|
|
9214
10759
|
commitService(ClusterId: string, ServiceName: string): Promise<CommitServiceResponse>;
|
|
9215
10760
|
/**
|
|
9216
|
-
*
|
|
10761
|
+
* Creates an access control list (ACL) for a private gateway. The IP CIDR blocks added to the ACL can access the private gateway.
|
|
9217
10762
|
*
|
|
9218
10763
|
* @param tmpReq - CreateAclPolicyRequest
|
|
9219
10764
|
* @param headers - map
|
|
@@ -9224,7 +10769,7 @@ export default class Client extends OpenApi {
|
|
|
9224
10769
|
[key: string]: string;
|
|
9225
10770
|
}, runtime: $Util.RuntimeOptions): Promise<CreateAclPolicyResponse>;
|
|
9226
10771
|
/**
|
|
9227
|
-
*
|
|
10772
|
+
* Creates an access control list (ACL) for a private gateway. The IP CIDR blocks added to the ACL can access the private gateway.
|
|
9228
10773
|
*
|
|
9229
10774
|
* @param request - CreateAclPolicyRequest
|
|
9230
10775
|
* @returns CreateAclPolicyResponse
|
|
@@ -9267,7 +10812,7 @@ export default class Client extends OpenApi {
|
|
|
9267
10812
|
*/
|
|
9268
10813
|
createBenchmarkTask(request: CreateBenchmarkTaskRequest): Promise<CreateBenchmarkTaskResponse>;
|
|
9269
10814
|
/**
|
|
9270
|
-
* Creates a
|
|
10815
|
+
* Creates a gateway.
|
|
9271
10816
|
*
|
|
9272
10817
|
* @param request - CreateGatewayRequest
|
|
9273
10818
|
* @param headers - map
|
|
@@ -9278,7 +10823,7 @@ export default class Client extends OpenApi {
|
|
|
9278
10823
|
[key: string]: string;
|
|
9279
10824
|
}, runtime: $Util.RuntimeOptions): Promise<CreateGatewayResponse>;
|
|
9280
10825
|
/**
|
|
9281
|
-
* Creates a
|
|
10826
|
+
* Creates a gateway.
|
|
9282
10827
|
*
|
|
9283
10828
|
* @param request - CreateGatewayRequest
|
|
9284
10829
|
* @returns CreateGatewayResponse
|
|
@@ -9302,6 +10847,24 @@ export default class Client extends OpenApi {
|
|
|
9302
10847
|
* @returns CreateGatewayIntranetLinkedVpcResponse
|
|
9303
10848
|
*/
|
|
9304
10849
|
createGatewayIntranetLinkedVpc(ClusterId: string, GatewayId: string, request: CreateGatewayIntranetLinkedVpcRequest): Promise<CreateGatewayIntranetLinkedVpcResponse>;
|
|
10850
|
+
/**
|
|
10851
|
+
* 创建网关内网访问端点跨VPC连接
|
|
10852
|
+
*
|
|
10853
|
+
* @param tmpReq - CreateGatewayIntranetLinkedVpcPeerRequest
|
|
10854
|
+
* @param headers - map
|
|
10855
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
10856
|
+
* @returns CreateGatewayIntranetLinkedVpcPeerResponse
|
|
10857
|
+
*/
|
|
10858
|
+
createGatewayIntranetLinkedVpcPeerWithOptions(ClusterId: string, GatewayId: string, tmpReq: CreateGatewayIntranetLinkedVpcPeerRequest, headers: {
|
|
10859
|
+
[key: string]: string;
|
|
10860
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateGatewayIntranetLinkedVpcPeerResponse>;
|
|
10861
|
+
/**
|
|
10862
|
+
* 创建网关内网访问端点跨VPC连接
|
|
10863
|
+
*
|
|
10864
|
+
* @param request - CreateGatewayIntranetLinkedVpcPeerRequest
|
|
10865
|
+
* @returns CreateGatewayIntranetLinkedVpcPeerResponse
|
|
10866
|
+
*/
|
|
10867
|
+
createGatewayIntranetLinkedVpcPeer(ClusterId: string, GatewayId: string, request: CreateGatewayIntranetLinkedVpcPeerRequest): Promise<CreateGatewayIntranetLinkedVpcPeerResponse>;
|
|
9305
10868
|
/**
|
|
9306
10869
|
* Creates a resource group.
|
|
9307
10870
|
*
|
|
@@ -9441,7 +11004,25 @@ export default class Client extends OpenApi {
|
|
|
9441
11004
|
*/
|
|
9442
11005
|
createServiceMirror(ClusterId: string, ServiceName: string, request: CreateServiceMirrorRequest): Promise<CreateServiceMirrorResponse>;
|
|
9443
11006
|
/**
|
|
9444
|
-
*
|
|
11007
|
+
* Creates a virtual resource group.
|
|
11008
|
+
*
|
|
11009
|
+
* @param request - CreateVirtualResourceRequest
|
|
11010
|
+
* @param headers - map
|
|
11011
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
11012
|
+
* @returns CreateVirtualResourceResponse
|
|
11013
|
+
*/
|
|
11014
|
+
createVirtualResourceWithOptions(request: CreateVirtualResourceRequest, headers: {
|
|
11015
|
+
[key: string]: string;
|
|
11016
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateVirtualResourceResponse>;
|
|
11017
|
+
/**
|
|
11018
|
+
* Creates a virtual resource group.
|
|
11019
|
+
*
|
|
11020
|
+
* @param request - CreateVirtualResourceRequest
|
|
11021
|
+
* @returns CreateVirtualResourceResponse
|
|
11022
|
+
*/
|
|
11023
|
+
createVirtualResource(request: CreateVirtualResourceRequest): Promise<CreateVirtualResourceResponse>;
|
|
11024
|
+
/**
|
|
11025
|
+
* Deletes an access control list (ACL) for a private gateway. The IP CIDR block that is deleted from the ACL cannot access the private gateway.
|
|
9445
11026
|
*
|
|
9446
11027
|
* @param tmpReq - DeleteAclPolicyRequest
|
|
9447
11028
|
* @param headers - map
|
|
@@ -9452,7 +11033,7 @@ export default class Client extends OpenApi {
|
|
|
9452
11033
|
[key: string]: string;
|
|
9453
11034
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteAclPolicyResponse>;
|
|
9454
11035
|
/**
|
|
9455
|
-
*
|
|
11036
|
+
* Deletes an access control list (ACL) for a private gateway. The IP CIDR block that is deleted from the ACL cannot access the private gateway.
|
|
9456
11037
|
*
|
|
9457
11038
|
* @param request - DeleteAclPolicyRequest
|
|
9458
11039
|
* @returns DeleteAclPolicyResponse
|
|
@@ -9506,6 +11087,24 @@ export default class Client extends OpenApi {
|
|
|
9506
11087
|
* @returns DeleteGatewayIntranetLinkedVpcResponse
|
|
9507
11088
|
*/
|
|
9508
11089
|
deleteGatewayIntranetLinkedVpc(ClusterId: string, GatewayId: string, request: DeleteGatewayIntranetLinkedVpcRequest): Promise<DeleteGatewayIntranetLinkedVpcResponse>;
|
|
11090
|
+
/**
|
|
11091
|
+
* 删除网关内网访问端点跨VPC连接
|
|
11092
|
+
*
|
|
11093
|
+
* @param tmpReq - DeleteGatewayIntranetLinkedVpcPeerRequest
|
|
11094
|
+
* @param headers - map
|
|
11095
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
11096
|
+
* @returns DeleteGatewayIntranetLinkedVpcPeerResponse
|
|
11097
|
+
*/
|
|
11098
|
+
deleteGatewayIntranetLinkedVpcPeerWithOptions(ClusterId: string, GatewayId: string, tmpReq: DeleteGatewayIntranetLinkedVpcPeerRequest, headers: {
|
|
11099
|
+
[key: string]: string;
|
|
11100
|
+
}, runtime: $Util.RuntimeOptions): Promise<DeleteGatewayIntranetLinkedVpcPeerResponse>;
|
|
11101
|
+
/**
|
|
11102
|
+
* 删除网关内网访问端点跨VPC连接
|
|
11103
|
+
*
|
|
11104
|
+
* @param request - DeleteGatewayIntranetLinkedVpcPeerRequest
|
|
11105
|
+
* @returns DeleteGatewayIntranetLinkedVpcPeerResponse
|
|
11106
|
+
*/
|
|
11107
|
+
deleteGatewayIntranetLinkedVpcPeer(ClusterId: string, GatewayId: string, request: DeleteGatewayIntranetLinkedVpcPeerRequest): Promise<DeleteGatewayIntranetLinkedVpcPeerResponse>;
|
|
9509
11108
|
/**
|
|
9510
11109
|
* Deletes a resource group that contains no resources or instances.
|
|
9511
11110
|
*
|
|
@@ -9665,6 +11264,21 @@ export default class Client extends OpenApi {
|
|
|
9665
11264
|
* @returns DeleteServiceMirrorResponse
|
|
9666
11265
|
*/
|
|
9667
11266
|
deleteServiceMirror(ClusterId: string, ServiceName: string): Promise<DeleteServiceMirrorResponse>;
|
|
11267
|
+
/**
|
|
11268
|
+
* Deletes a virtual resource group that contains no resources or instances.
|
|
11269
|
+
*
|
|
11270
|
+
* @param headers - map
|
|
11271
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
11272
|
+
* @returns DeleteVirtualResourceResponse
|
|
11273
|
+
*/
|
|
11274
|
+
deleteVirtualResourceWithOptions(ClusterId: string, VirtualResourceId: string, headers: {
|
|
11275
|
+
[key: string]: string;
|
|
11276
|
+
}, runtime: $Util.RuntimeOptions): Promise<DeleteVirtualResourceResponse>;
|
|
11277
|
+
/**
|
|
11278
|
+
* Deletes a virtual resource group that contains no resources or instances.
|
|
11279
|
+
* @returns DeleteVirtualResourceResponse
|
|
11280
|
+
*/
|
|
11281
|
+
deleteVirtualResource(ClusterId: string, VirtualResourceId: string): Promise<DeleteVirtualResourceResponse>;
|
|
9668
11282
|
/**
|
|
9669
11283
|
* Queries details about the configurations of a stress testing task.
|
|
9670
11284
|
*
|
|
@@ -9917,6 +11531,39 @@ export default class Client extends OpenApi {
|
|
|
9917
11531
|
* @returns DescribeSpotDiscountHistoryResponse
|
|
9918
11532
|
*/
|
|
9919
11533
|
describeSpotDiscountHistory(request: DescribeSpotDiscountHistoryRequest): Promise<DescribeSpotDiscountHistoryResponse>;
|
|
11534
|
+
/**
|
|
11535
|
+
* Views the details of a virtual resource group.
|
|
11536
|
+
*
|
|
11537
|
+
* @param headers - map
|
|
11538
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
11539
|
+
* @returns DescribeVirtualResourceResponse
|
|
11540
|
+
*/
|
|
11541
|
+
describeVirtualResourceWithOptions(ClusterId: string, VirtualResourceId: string, headers: {
|
|
11542
|
+
[key: string]: string;
|
|
11543
|
+
}, runtime: $Util.RuntimeOptions): Promise<DescribeVirtualResourceResponse>;
|
|
11544
|
+
/**
|
|
11545
|
+
* Views the details of a virtual resource group.
|
|
11546
|
+
* @returns DescribeVirtualResourceResponse
|
|
11547
|
+
*/
|
|
11548
|
+
describeVirtualResource(ClusterId: string, VirtualResourceId: string): Promise<DescribeVirtualResourceResponse>;
|
|
11549
|
+
/**
|
|
11550
|
+
* Unbinds a custom domain name from a private gateway.
|
|
11551
|
+
*
|
|
11552
|
+
* @param tmpReq - DetachGatewayDomainRequest
|
|
11553
|
+
* @param headers - map
|
|
11554
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
11555
|
+
* @returns DetachGatewayDomainResponse
|
|
11556
|
+
*/
|
|
11557
|
+
detachGatewayDomainWithOptions(ClusterId: string, GatewayId: string, tmpReq: DetachGatewayDomainRequest, headers: {
|
|
11558
|
+
[key: string]: string;
|
|
11559
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetachGatewayDomainResponse>;
|
|
11560
|
+
/**
|
|
11561
|
+
* Unbinds a custom domain name from a private gateway.
|
|
11562
|
+
*
|
|
11563
|
+
* @param request - DetachGatewayDomainRequest
|
|
11564
|
+
* @returns DetachGatewayDomainResponse
|
|
11565
|
+
*/
|
|
11566
|
+
detachGatewayDomain(ClusterId: string, GatewayId: string, request: DetachGatewayDomainRequest): Promise<DetachGatewayDomainResponse>;
|
|
9920
11567
|
/**
|
|
9921
11568
|
* Switches a container service to development mode or exits development mode.
|
|
9922
11569
|
*
|
|
@@ -9936,7 +11583,7 @@ export default class Client extends OpenApi {
|
|
|
9936
11583
|
*/
|
|
9937
11584
|
developService(ClusterId: string, ServiceName: string, request: DevelopServiceRequest): Promise<DevelopServiceResponse>;
|
|
9938
11585
|
/**
|
|
9939
|
-
*
|
|
11586
|
+
* Queries access control lists (ACLs) created for a private gateway.
|
|
9940
11587
|
*
|
|
9941
11588
|
* @param request - ListAclPolicyRequest
|
|
9942
11589
|
* @param headers - map
|
|
@@ -9947,7 +11594,7 @@ export default class Client extends OpenApi {
|
|
|
9947
11594
|
[key: string]: string;
|
|
9948
11595
|
}, runtime: $Util.RuntimeOptions): Promise<ListAclPolicyResponse>;
|
|
9949
11596
|
/**
|
|
9950
|
-
*
|
|
11597
|
+
* Queries access control lists (ACLs) created for a private gateway.
|
|
9951
11598
|
*
|
|
9952
11599
|
* @param request - ListAclPolicyRequest
|
|
9953
11600
|
* @returns ListAclPolicyResponse
|
|
@@ -9972,7 +11619,7 @@ export default class Client extends OpenApi {
|
|
|
9972
11619
|
*/
|
|
9973
11620
|
listBenchmarkTask(request: ListBenchmarkTaskRequest): Promise<ListBenchmarkTaskResponse>;
|
|
9974
11621
|
/**
|
|
9975
|
-
*
|
|
11622
|
+
* Queries a list of private gateways.
|
|
9976
11623
|
*
|
|
9977
11624
|
* @param request - ListGatewayRequest
|
|
9978
11625
|
* @param headers - map
|
|
@@ -9983,12 +11630,27 @@ export default class Client extends OpenApi {
|
|
|
9983
11630
|
[key: string]: string;
|
|
9984
11631
|
}, runtime: $Util.RuntimeOptions): Promise<ListGatewayResponse>;
|
|
9985
11632
|
/**
|
|
9986
|
-
*
|
|
11633
|
+
* Queries a list of private gateways.
|
|
9987
11634
|
*
|
|
9988
11635
|
* @param request - ListGatewayRequest
|
|
9989
11636
|
* @returns ListGatewayResponse
|
|
9990
11637
|
*/
|
|
9991
11638
|
listGateway(request: ListGatewayRequest): Promise<ListGatewayResponse>;
|
|
11639
|
+
/**
|
|
11640
|
+
* Queries a list of custom domain names of a private gateway.
|
|
11641
|
+
*
|
|
11642
|
+
* @param headers - map
|
|
11643
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
11644
|
+
* @returns ListGatewayDomainsResponse
|
|
11645
|
+
*/
|
|
11646
|
+
listGatewayDomainsWithOptions(ClusterId: string, GatewayId: string, headers: {
|
|
11647
|
+
[key: string]: string;
|
|
11648
|
+
}, runtime: $Util.RuntimeOptions): Promise<ListGatewayDomainsResponse>;
|
|
11649
|
+
/**
|
|
11650
|
+
* Queries a list of custom domain names of a private gateway.
|
|
11651
|
+
* @returns ListGatewayDomainsResponse
|
|
11652
|
+
*/
|
|
11653
|
+
listGatewayDomains(ClusterId: string, GatewayId: string): Promise<ListGatewayDomainsResponse>;
|
|
9992
11654
|
/**
|
|
9993
11655
|
* Queries a list of the internal endpoints of a private gateway.
|
|
9994
11656
|
*
|
|
@@ -10004,6 +11666,24 @@ export default class Client extends OpenApi {
|
|
|
10004
11666
|
* @returns ListGatewayIntranetLinkedVpcResponse
|
|
10005
11667
|
*/
|
|
10006
11668
|
listGatewayIntranetLinkedVpc(ClusterId: string, GatewayId: string): Promise<ListGatewayIntranetLinkedVpcResponse>;
|
|
11669
|
+
/**
|
|
11670
|
+
* 获取网关内网访问端点跨VPC连接列表
|
|
11671
|
+
*
|
|
11672
|
+
* @param request - ListGatewayIntranetLinkedVpcPeerRequest
|
|
11673
|
+
* @param headers - map
|
|
11674
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
11675
|
+
* @returns ListGatewayIntranetLinkedVpcPeerResponse
|
|
11676
|
+
*/
|
|
11677
|
+
listGatewayIntranetLinkedVpcPeerWithOptions(ClusterId: string, GatewayId: string, request: ListGatewayIntranetLinkedVpcPeerRequest, headers: {
|
|
11678
|
+
[key: string]: string;
|
|
11679
|
+
}, runtime: $Util.RuntimeOptions): Promise<ListGatewayIntranetLinkedVpcPeerResponse>;
|
|
11680
|
+
/**
|
|
11681
|
+
* 获取网关内网访问端点跨VPC连接列表
|
|
11682
|
+
*
|
|
11683
|
+
* @param request - ListGatewayIntranetLinkedVpcPeerRequest
|
|
11684
|
+
* @returns ListGatewayIntranetLinkedVpcPeerResponse
|
|
11685
|
+
*/
|
|
11686
|
+
listGatewayIntranetLinkedVpcPeer(ClusterId: string, GatewayId: string, request: ListGatewayIntranetLinkedVpcPeerRequest): Promise<ListGatewayIntranetLinkedVpcPeerResponse>;
|
|
10007
11687
|
/**
|
|
10008
11688
|
* Queries created service groups.
|
|
10009
11689
|
*
|
|
@@ -10150,7 +11830,7 @@ export default class Client extends OpenApi {
|
|
|
10150
11830
|
*/
|
|
10151
11831
|
listServiceVersions(ClusterId: string, ServiceName: string, request: ListServiceVersionsRequest): Promise<ListServiceVersionsResponse>;
|
|
10152
11832
|
/**
|
|
10153
|
-
*
|
|
11833
|
+
* Lists services.
|
|
10154
11834
|
*
|
|
10155
11835
|
* @param tmpReq - ListServicesRequest
|
|
10156
11836
|
* @param headers - map
|
|
@@ -10161,14 +11841,14 @@ export default class Client extends OpenApi {
|
|
|
10161
11841
|
[key: string]: string;
|
|
10162
11842
|
}, runtime: $Util.RuntimeOptions): Promise<ListServicesResponse>;
|
|
10163
11843
|
/**
|
|
10164
|
-
*
|
|
11844
|
+
* Lists services.
|
|
10165
11845
|
*
|
|
10166
11846
|
* @param request - ListServicesRequest
|
|
10167
11847
|
* @returns ListServicesResponse
|
|
10168
11848
|
*/
|
|
10169
11849
|
listServices(request: ListServicesRequest): Promise<ListServicesResponse>;
|
|
10170
11850
|
/**
|
|
10171
|
-
*
|
|
11851
|
+
* Queries a list of tenant plug-ins.
|
|
10172
11852
|
*
|
|
10173
11853
|
* @param headers - map
|
|
10174
11854
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -10178,12 +11858,30 @@ export default class Client extends OpenApi {
|
|
|
10178
11858
|
[key: string]: string;
|
|
10179
11859
|
}, runtime: $Util.RuntimeOptions): Promise<ListTenantAddonsResponse>;
|
|
10180
11860
|
/**
|
|
10181
|
-
*
|
|
11861
|
+
* Queries a list of tenant plug-ins.
|
|
10182
11862
|
* @returns ListTenantAddonsResponse
|
|
10183
11863
|
*/
|
|
10184
11864
|
listTenantAddons(): Promise<ListTenantAddonsResponse>;
|
|
10185
11865
|
/**
|
|
10186
|
-
*
|
|
11866
|
+
* Queries a list of virtual resource groups for the current user.
|
|
11867
|
+
*
|
|
11868
|
+
* @param request - ListVirtualResourceRequest
|
|
11869
|
+
* @param headers - map
|
|
11870
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
11871
|
+
* @returns ListVirtualResourceResponse
|
|
11872
|
+
*/
|
|
11873
|
+
listVirtualResourceWithOptions(request: ListVirtualResourceRequest, headers: {
|
|
11874
|
+
[key: string]: string;
|
|
11875
|
+
}, runtime: $Util.RuntimeOptions): Promise<ListVirtualResourceResponse>;
|
|
11876
|
+
/**
|
|
11877
|
+
* Queries a list of virtual resource groups for the current user.
|
|
11878
|
+
*
|
|
11879
|
+
* @param request - ListVirtualResourceRequest
|
|
11880
|
+
* @returns ListVirtualResourceResponse
|
|
11881
|
+
*/
|
|
11882
|
+
listVirtualResource(request: ListVirtualResourceRequest): Promise<ListVirtualResourceResponse>;
|
|
11883
|
+
/**
|
|
11884
|
+
* Resets tenant configurations.
|
|
10187
11885
|
*
|
|
10188
11886
|
* @param headers - map
|
|
10189
11887
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -10193,7 +11891,7 @@ export default class Client extends OpenApi {
|
|
|
10193
11891
|
[key: string]: string;
|
|
10194
11892
|
}, runtime: $Util.RuntimeOptions): Promise<ReinstallTenantAddonResponse>;
|
|
10195
11893
|
/**
|
|
10196
|
-
*
|
|
11894
|
+
* Resets tenant configurations.
|
|
10197
11895
|
* @returns ReinstallTenantAddonResponse
|
|
10198
11896
|
*/
|
|
10199
11897
|
reinstallTenantAddon(ClusterId: string, TenantAddonName: string): Promise<ReinstallTenantAddonResponse>;
|
|
@@ -10542,4 +12240,22 @@ export default class Client extends OpenApi {
|
|
|
10542
12240
|
* @returns UpdateServiceVersionResponse
|
|
10543
12241
|
*/
|
|
10544
12242
|
updateServiceVersion(ClusterId: string, ServiceName: string, request: UpdateServiceVersionRequest): Promise<UpdateServiceVersionResponse>;
|
|
12243
|
+
/**
|
|
12244
|
+
* Updates the information about a virtual resource group.
|
|
12245
|
+
*
|
|
12246
|
+
* @param request - UpdateVirtualResourceRequest
|
|
12247
|
+
* @param headers - map
|
|
12248
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
12249
|
+
* @returns UpdateVirtualResourceResponse
|
|
12250
|
+
*/
|
|
12251
|
+
updateVirtualResourceWithOptions(ClusterId: string, VirtualResourceId: string, request: UpdateVirtualResourceRequest, headers: {
|
|
12252
|
+
[key: string]: string;
|
|
12253
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateVirtualResourceResponse>;
|
|
12254
|
+
/**
|
|
12255
|
+
* Updates the information about a virtual resource group.
|
|
12256
|
+
*
|
|
12257
|
+
* @param request - UpdateVirtualResourceRequest
|
|
12258
|
+
* @returns UpdateVirtualResourceResponse
|
|
12259
|
+
*/
|
|
12260
|
+
updateVirtualResource(ClusterId: string, VirtualResourceId: string, request: UpdateVirtualResourceRequest): Promise<UpdateVirtualResourceResponse>;
|
|
10545
12261
|
}
|