@alicloud/eas20210701 6.0.1 → 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 CHANGED
@@ -268,6 +268,93 @@ 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\\&ampEnv=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 {
272
359
  /**
273
360
  * @remarks
@@ -440,6 +527,8 @@ export declare class CreateAclPolicyRequest extends $tea.Model {
440
527
  /**
441
528
  * @remarks
442
529
  * The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
530
+ *
531
+ * This parameter is required.
443
532
  */
444
533
  aclPolicyList?: CreateAclPolicyRequestAclPolicyList[];
445
534
  /**
@@ -464,6 +553,8 @@ export declare class CreateAclPolicyShrinkRequest extends $tea.Model {
464
553
  /**
465
554
  * @remarks
466
555
  * The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
556
+ *
557
+ * This parameter is required.
467
558
  */
468
559
  aclPolicyListShrink?: string;
469
560
  /**
@@ -823,6 +914,25 @@ export declare class CreateGatewayRequest extends $tea.Model {
823
914
  * eas-r-4gt8twzwllfo******
824
915
  */
825
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;
826
936
  /**
827
937
  * @remarks
828
938
  * Specifies whether to enable Internet access. Default value: false.
@@ -1027,6 +1137,82 @@ export declare class CreateGatewayIntranetLinkedVpcResponse extends $tea.Model {
1027
1137
  [key: string]: any;
1028
1138
  });
1029
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
+ }
1030
1216
  export declare class CreateResourceRequest extends $tea.Model {
1031
1217
  /**
1032
1218
  * @remarks
@@ -1949,6 +2135,81 @@ export declare class CreateServiceMirrorResponse extends $tea.Model {
1949
2135
  [key: string]: any;
1950
2136
  });
1951
2137
  }
2138
+ export declare class CreateVirtualResourceRequest extends $tea.Model {
2139
+ /**
2140
+ * @remarks
2141
+ * The list of resources in the virtual resource group.
2142
+ */
2143
+ resources?: CreateVirtualResourceRequestResources[];
2144
+ /**
2145
+ * @remarks
2146
+ * The name of the virtual resource group. Default value: the ID of the virtual resource group.
2147
+ *
2148
+ * @example
2149
+ * MyVirtualResource
2150
+ */
2151
+ virtualResourceName?: string;
2152
+ static names(): {
2153
+ [key: string]: string;
2154
+ };
2155
+ static types(): {
2156
+ [key: string]: any;
2157
+ };
2158
+ constructor(map?: {
2159
+ [key: string]: any;
2160
+ });
2161
+ }
2162
+ export declare class CreateVirtualResourceResponseBody extends $tea.Model {
2163
+ /**
2164
+ * @remarks
2165
+ * The returned message.
2166
+ *
2167
+ * @example
2168
+ * Successfully created virtual resource eas-vr-npovr28onap1xxxxxx
2169
+ */
2170
+ message?: string;
2171
+ /**
2172
+ * @remarks
2173
+ * The ID of the request.
2174
+ *
2175
+ * @example
2176
+ * 40325405-579C-4D82***
2177
+ */
2178
+ requestId?: string;
2179
+ /**
2180
+ * @remarks
2181
+ * The ID of the virtual resource group.
2182
+ *
2183
+ * @example
2184
+ * eas-vr-npovr28onap1xxxxxx
2185
+ */
2186
+ virtualResourceId?: string;
2187
+ static names(): {
2188
+ [key: string]: string;
2189
+ };
2190
+ static types(): {
2191
+ [key: string]: any;
2192
+ };
2193
+ constructor(map?: {
2194
+ [key: string]: any;
2195
+ });
2196
+ }
2197
+ export declare class CreateVirtualResourceResponse extends $tea.Model {
2198
+ headers?: {
2199
+ [key: string]: string;
2200
+ };
2201
+ statusCode?: number;
2202
+ body?: CreateVirtualResourceResponseBody;
2203
+ static names(): {
2204
+ [key: string]: string;
2205
+ };
2206
+ static types(): {
2207
+ [key: string]: any;
2208
+ };
2209
+ constructor(map?: {
2210
+ [key: string]: any;
2211
+ });
2212
+ }
1952
2213
  export declare class DeleteAclPolicyRequest extends $tea.Model {
1953
2214
  /**
1954
2215
  * @remarks
@@ -2220,6 +2481,82 @@ export declare class DeleteGatewayIntranetLinkedVpcResponse extends $tea.Model {
2220
2481
  [key: string]: any;
2221
2482
  });
2222
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
+ }
2223
2560
  export declare class DeleteResourceResponseBody extends $tea.Model {
2224
2561
  /**
2225
2562
  * @remarks
@@ -2753,6 +3090,49 @@ export declare class DeleteServiceMirrorResponse extends $tea.Model {
2753
3090
  [key: string]: any;
2754
3091
  });
2755
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
+ }
2756
3136
  export declare class DescribeBenchmarkTaskResponseBody extends $tea.Model {
2757
3137
  /**
2758
3138
  * @remarks
@@ -4134,25 +4514,173 @@ export declare class DescribeServiceMirrorResponse extends $tea.Model {
4134
4514
  [key: string]: any;
4135
4515
  });
4136
4516
  }
4137
- export declare class DescribeSpotDiscountHistoryRequest extends $tea.Model {
4517
+ export declare class DescribeSpotDiscountHistoryRequest extends $tea.Model {
4518
+ /**
4519
+ * @remarks
4520
+ * The type of the Elastic Algorithm Service (EAS) instance.
4521
+ *
4522
+ * This parameter is required.
4523
+ *
4524
+ * @example
4525
+ * ecs.c6.4xlarge
4526
+ */
4527
+ instanceType?: string;
4528
+ /**
4529
+ * @remarks
4530
+ * Specifies whether the preemptible instance has a protection period. During the 1-hour protection period of the preemptible instance, the preemptible instance will not be released.
4531
+ *
4532
+ * @example
4533
+ * false
4534
+ */
4535
+ isProtect?: boolean;
4536
+ static names(): {
4537
+ [key: string]: string;
4538
+ };
4539
+ static types(): {
4540
+ [key: string]: any;
4541
+ };
4542
+ constructor(map?: {
4543
+ [key: string]: any;
4544
+ });
4545
+ }
4546
+ export declare class DescribeSpotDiscountHistoryResponseBody extends $tea.Model {
4547
+ /**
4548
+ * @remarks
4549
+ * The request ID.
4550
+ *
4551
+ * @example
4552
+ * 40325405-579C-4D82***
4553
+ */
4554
+ requestId?: string;
4555
+ /**
4556
+ * @remarks
4557
+ * The discount for the preemptible instance.
4558
+ */
4559
+ spotDiscounts?: DescribeSpotDiscountHistoryResponseBodySpotDiscounts[];
4560
+ static names(): {
4561
+ [key: string]: string;
4562
+ };
4563
+ static types(): {
4564
+ [key: string]: any;
4565
+ };
4566
+ constructor(map?: {
4567
+ [key: string]: any;
4568
+ });
4569
+ }
4570
+ export declare class DescribeSpotDiscountHistoryResponse extends $tea.Model {
4571
+ headers?: {
4572
+ [key: string]: string;
4573
+ };
4574
+ statusCode?: number;
4575
+ body?: DescribeSpotDiscountHistoryResponseBody;
4576
+ static names(): {
4577
+ [key: string]: string;
4578
+ };
4579
+ static types(): {
4580
+ [key: string]: any;
4581
+ };
4582
+ constructor(map?: {
4583
+ [key: string]: any;
4584
+ });
4585
+ }
4586
+ export declare class DescribeVirtualResourceResponseBody extends $tea.Model {
4587
+ /**
4588
+ * @remarks
4589
+ * The time when the virtual resource group was created.
4590
+ *
4591
+ * @example
4592
+ * 2024-10-16T17:52:49Z
4593
+ */
4594
+ createTime?: string;
4595
+ /**
4596
+ * @remarks
4597
+ * The ID of the request.
4598
+ *
4599
+ * @example
4600
+ * 40325405-579C-4D82****
4601
+ */
4602
+ requestId?: string;
4603
+ /**
4604
+ * @remarks
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.
4611
+ *
4612
+ * @example
4613
+ * 2024-10-16T19:52:49Z
4614
+ */
4615
+ updateTime?: string;
4616
+ /**
4617
+ * @remarks
4618
+ * The ID of the virtual resource group.
4619
+ *
4620
+ * @example
4621
+ * eas-vr-npovr28onap1xxxxxx
4622
+ */
4623
+ virtualResourceId?: string;
4624
+ /**
4625
+ * @remarks
4626
+ * The name of the virtual resource group.
4627
+ *
4628
+ * @example
4629
+ * MyVirtualResource
4630
+ */
4631
+ virtualResourceName?: string;
4632
+ static names(): {
4633
+ [key: string]: string;
4634
+ };
4635
+ static types(): {
4636
+ [key: string]: any;
4637
+ };
4638
+ constructor(map?: {
4639
+ [key: string]: any;
4640
+ });
4641
+ }
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 {
4138
4677
  /**
4139
4678
  * @remarks
4140
- * The type of the Elastic Algorithm Service (EAS) instance.
4679
+ * The custom domain name information.
4141
4680
  *
4142
4681
  * This parameter is required.
4143
- *
4144
- * @example
4145
- * ecs.c6.4xlarge
4146
- */
4147
- instanceType?: string;
4148
- /**
4149
- * @remarks
4150
- * Specifies whether the preemptible instance has a protection period. During the 1-hour protection period of the preemptible instance, the preemptible instance will not be released.
4151
- *
4152
- * @example
4153
- * false
4154
4682
  */
4155
- isProtect?: boolean;
4683
+ customDomainShrink?: string;
4156
4684
  static names(): {
4157
4685
  [key: string]: string;
4158
4686
  };
@@ -4163,20 +4691,31 @@ export declare class DescribeSpotDiscountHistoryRequest extends $tea.Model {
4163
4691
  [key: string]: any;
4164
4692
  });
4165
4693
  }
4166
- export declare class DescribeSpotDiscountHistoryResponseBody extends $tea.Model {
4694
+ export declare class DetachGatewayDomainResponseBody extends $tea.Model {
4167
4695
  /**
4168
4696
  * @remarks
4169
- * The request ID.
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\\&ampEnv=online) operation.
4170
4698
  *
4171
4699
  * @example
4172
- * 40325405-579C-4D82***
4700
+ * gw-1uhcqmsc7x22******
4173
4701
  */
4174
- requestId?: string;
4702
+ gatewayId?: string;
4175
4703
  /**
4176
4704
  * @remarks
4177
- * The discount for the preemptible instance.
4705
+ * The message that is returned.
4706
+ *
4707
+ * @example
4708
+ * Successfully delete custom endpoint for gateway gw-1uhcqmsc7x22******
4178
4709
  */
4179
- spotDiscounts?: DescribeSpotDiscountHistoryResponseBodySpotDiscounts[];
4710
+ message?: string;
4711
+ /**
4712
+ * @remarks
4713
+ * The ID of the request.
4714
+ *
4715
+ * @example
4716
+ * 40325405-579C-4D82****
4717
+ */
4718
+ requestId?: string;
4180
4719
  static names(): {
4181
4720
  [key: string]: string;
4182
4721
  };
@@ -4187,12 +4726,12 @@ export declare class DescribeSpotDiscountHistoryResponseBody extends $tea.Model
4187
4726
  [key: string]: any;
4188
4727
  });
4189
4728
  }
4190
- export declare class DescribeSpotDiscountHistoryResponse extends $tea.Model {
4729
+ export declare class DetachGatewayDomainResponse extends $tea.Model {
4191
4730
  headers?: {
4192
4731
  [key: string]: string;
4193
4732
  };
4194
4733
  statusCode?: number;
4195
- body?: DescribeSpotDiscountHistoryResponseBody;
4734
+ body?: DetachGatewayDomainResponseBody;
4196
4735
  static names(): {
4197
4736
  [key: string]: string;
4198
4737
  };
@@ -4480,6 +5019,14 @@ export declare class ListGatewayRequest extends $tea.Model {
4480
5019
  * 100
4481
5020
  */
4482
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;
4483
5030
  static names(): {
4484
5031
  [key: string]: string;
4485
5032
  };
@@ -4554,6 +5101,54 @@ export declare class ListGatewayResponse extends $tea.Model {
4554
5101
  [key: string]: any;
4555
5102
  });
4556
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
+ }
4557
5152
  export declare class ListGatewayIntranetLinkedVpcResponseBody extends $tea.Model {
4558
5153
  /**
4559
5154
  * @remarks
@@ -4602,6 +5197,60 @@ export declare class ListGatewayIntranetLinkedVpcResponse extends $tea.Model {
4602
5197
  [key: string]: any;
4603
5198
  });
4604
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
+ /**
5224
+ * @example
5225
+ * 40325405-579C-4D82****
5226
+ */
5227
+ requestId?: string;
5228
+ static names(): {
5229
+ [key: string]: string;
5230
+ };
5231
+ static types(): {
5232
+ [key: string]: any;
5233
+ };
5234
+ constructor(map?: {
5235
+ [key: string]: any;
5236
+ });
5237
+ }
5238
+ export declare class ListGatewayIntranetLinkedVpcPeerResponse extends $tea.Model {
5239
+ headers?: {
5240
+ [key: string]: string;
5241
+ };
5242
+ statusCode?: number;
5243
+ body?: ListGatewayIntranetLinkedVpcPeerResponseBody;
5244
+ static names(): {
5245
+ [key: string]: string;
5246
+ };
5247
+ static types(): {
5248
+ [key: string]: any;
5249
+ };
5250
+ constructor(map?: {
5251
+ [key: string]: any;
5252
+ });
5253
+ }
4605
5254
  export declare class ListGroupsRequest extends $tea.Model {
4606
5255
  /**
4607
5256
  * @remarks
@@ -5784,7 +6433,7 @@ export declare class ListServicesRequest extends $tea.Model {
5784
6433
  filter?: string;
5785
6434
  /**
5786
6435
  * @remarks
5787
- * The ID of the private gateway.
6436
+ * The private gateway ID.
5788
6437
  *
5789
6438
  * @example
5790
6439
  * gw-1uhcqmsc7x22******
@@ -5856,6 +6505,25 @@ export declare class ListServicesRequest extends $tea.Model {
5856
6505
  * eas-r-hd0qwy8cxxxx
5857
6506
  */
5858
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
+ */
5859
6527
  role?: string;
5860
6528
  /**
5861
6529
  * @remarks
@@ -6111,7 +6779,7 @@ export declare class ListServicesShrinkRequest extends $tea.Model {
6111
6779
  filter?: string;
6112
6780
  /**
6113
6781
  * @remarks
6114
- * The ID of the private gateway.
6782
+ * The private gateway ID.
6115
6783
  *
6116
6784
  * @example
6117
6785
  * gw-1uhcqmsc7x22******
@@ -6181,6 +6849,25 @@ export declare class ListServicesShrinkRequest extends $tea.Model {
6181
6849
  * eas-r-hd0qwy8cxxxx
6182
6850
  */
6183
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
+ */
6184
6871
  role?: string;
6185
6872
  /**
6186
6873
  * @remarks
@@ -6529,6 +7216,113 @@ export declare class ListTenantAddonsResponse extends $tea.Model {
6529
7216
  [key: string]: any;
6530
7217
  });
6531
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
+ }
6532
7326
  export declare class ReinstallTenantAddonResponseBody extends $tea.Model {
6533
7327
  /**
6534
7328
  * @remarks
@@ -7974,6 +8768,75 @@ export declare class UpdateServiceVersionResponse extends $tea.Model {
7974
8768
  [key: string]: any;
7975
8769
  });
7976
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
+ }
7977
8840
  export declare class ServiceLabels extends $tea.Model {
7978
8841
  labelKey?: string;
7979
8842
  labelValue?: string;
@@ -7987,6 +8850,50 @@ export declare class ServiceLabels extends $tea.Model {
7987
8850
  [key: string]: any;
7988
8851
  });
7989
8852
  }
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
+ }
7990
8897
  export declare class CreateAclPolicyRequestAclPolicyList extends $tea.Model {
7991
8898
  /**
7992
8899
  * @remarks
@@ -8000,6 +8907,8 @@ export declare class CreateAclPolicyRequestAclPolicyList extends $tea.Model {
8000
8907
  * @remarks
8001
8908
  * The IP CIDR block in the VPC that can access the private gateway.
8002
8909
  *
8910
+ * This parameter is required.
8911
+ *
8003
8912
  * @example
8004
8913
  * 10.23.XX.XX/32
8005
8914
  */
@@ -8014,6 +8923,27 @@ export declare class CreateAclPolicyRequestAclPolicyList extends $tea.Model {
8014
8923
  [key: string]: any;
8015
8924
  });
8016
8925
  }
8926
+ export declare class CreateGatewayIntranetLinkedVpcPeerRequestPeerVpcs extends $tea.Model {
8927
+ /**
8928
+ * @example
8929
+ * cn-shanghai
8930
+ */
8931
+ region?: string;
8932
+ /**
8933
+ * @example
8934
+ * vpc-uf66uio7md****
8935
+ */
8936
+ vpcId?: string;
8937
+ static names(): {
8938
+ [key: string]: string;
8939
+ };
8940
+ static types(): {
8941
+ [key: string]: any;
8942
+ };
8943
+ constructor(map?: {
8944
+ [key: string]: any;
8945
+ });
8946
+ }
8017
8947
  export declare class CreateResourceRequestSelfManagedResourceOptionsNodeTolerations extends $tea.Model {
8018
8948
  /**
8019
8949
  * @remarks
@@ -8284,6 +9214,73 @@ export declare class CreateServiceCronScalerRequestScaleJobs extends $tea.Model
8284
9214
  [key: string]: any;
8285
9215
  });
8286
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
+ }
8287
9284
  export declare class DeleteAclPolicyRequestAclPolicyList extends $tea.Model {
8288
9285
  /**
8289
9286
  * @remarks
@@ -8311,6 +9308,27 @@ export declare class DeleteAclPolicyRequestAclPolicyList extends $tea.Model {
8311
9308
  [key: string]: any;
8312
9309
  });
8313
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
+ }
8314
9332
  export declare class DescribeServiceAutoScalerResponseBodyCurrentMetrics extends $tea.Model {
8315
9333
  /**
8316
9334
  * @remarks
@@ -8591,9 +9609,104 @@ export declare class DescribeSpotDiscountHistoryResponseBodySpotDiscounts extend
8591
9609
  * The zone ID.
8592
9610
  *
8593
9611
  * @example
8594
- * cn-hangzhou-i
9612
+ * cn-hangzhou-i
9613
+ */
9614
+ zoneId?: string;
9615
+ static names(): {
9616
+ [key: string]: string;
9617
+ };
9618
+ static types(): {
9619
+ [key: string]: any;
9620
+ };
9621
+ constructor(map?: {
9622
+ [key: string]: any;
9623
+ });
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
8595
9708
  */
8596
- zoneId?: string;
9709
+ type?: string;
8597
9710
  static names(): {
8598
9711
  [key: string]: string;
8599
9712
  };
@@ -8856,6 +9969,17 @@ export declare class ListBenchmarkTaskResponseBodyTasks extends $tea.Model {
8856
9969
  });
8857
9970
  }
8858
9971
  export declare class ListGatewayResponseBodyGateways extends $tea.Model {
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;
8859
9983
  /**
8860
9984
  * @remarks
8861
9985
  * The time when the private gateway was created. The time is displayed in UTC.
@@ -8964,6 +10088,46 @@ export declare class ListGatewayResponseBodyGateways extends $tea.Model {
8964
10088
  [key: string]: any;
8965
10089
  });
8966
10090
  }
10091
+ export declare class ListGatewayDomainsResponseBodyCustomDomains extends $tea.Model {
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
+ *
10096
+ * @example
10097
+ * 1473**25
10098
+ */
10099
+ certificateId?: string;
10100
+ /**
10101
+ * @remarks
10102
+ * The custom domain name.
10103
+ *
10104
+ * @example
10105
+ * test.com
10106
+ */
10107
+ domain?: string;
10108
+ /**
10109
+ * @remarks
10110
+ * The domain name type.
10111
+ *
10112
+ * Valid value:
10113
+ *
10114
+ * * intranet: internal network.
10115
+ * * internet: public network.
10116
+ *
10117
+ * @example
10118
+ * intranet
10119
+ */
10120
+ type?: string;
10121
+ static names(): {
10122
+ [key: string]: string;
10123
+ };
10124
+ static types(): {
10125
+ [key: string]: any;
10126
+ };
10127
+ constructor(map?: {
10128
+ [key: string]: any;
10129
+ });
10130
+ }
8967
10131
  export declare class ListGatewayIntranetLinkedVpcResponseBodyIntranetLinkedVpcList extends $tea.Model {
8968
10132
  /**
8969
10133
  * @remarks
@@ -9041,6 +10205,44 @@ export declare class ListGatewayIntranetLinkedVpcResponseBodyIntranetLinkedVpcLi
9041
10205
  [key: string]: any;
9042
10206
  });
9043
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
+ }
9044
10246
  export declare class ListServiceVersionsResponseBodyVersions extends $tea.Model {
9045
10247
  /**
9046
10248
  * @remarks
@@ -9141,6 +10343,49 @@ export declare class ListTenantAddonsResponseBodyAddons extends $tea.Model {
9141
10343
  [key: string]: any;
9142
10344
  });
9143
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
+ }
9144
10389
  export declare class UpdateResourceRequestSelfManagedResourceOptionsNodeTolerations extends $tea.Model {
9145
10390
  /**
9146
10391
  * @remarks
@@ -9389,11 +10634,96 @@ export declare class UpdateServiceCronScalerRequestScaleJobs extends $tea.Model
9389
10634
  [key: string]: any;
9390
10635
  });
9391
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
+ }
9392
10704
  export default class Client extends OpenApi {
9393
10705
  constructor(config: $OpenApi.Config);
9394
10706
  getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
9395
10707
  [key: string]: string;
9396
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>;
9397
10727
  /**
9398
10728
  * Clones a service.
9399
10729
  *
@@ -9482,7 +10812,7 @@ export default class Client extends OpenApi {
9482
10812
  */
9483
10813
  createBenchmarkTask(request: CreateBenchmarkTaskRequest): Promise<CreateBenchmarkTaskResponse>;
9484
10814
  /**
9485
- * Creates a private gateway. You can create a private gateway only in a self-managed resource group.
10815
+ * Creates a gateway.
9486
10816
  *
9487
10817
  * @param request - CreateGatewayRequest
9488
10818
  * @param headers - map
@@ -9493,7 +10823,7 @@ export default class Client extends OpenApi {
9493
10823
  [key: string]: string;
9494
10824
  }, runtime: $Util.RuntimeOptions): Promise<CreateGatewayResponse>;
9495
10825
  /**
9496
- * Creates a private gateway. You can create a private gateway only in a self-managed resource group.
10826
+ * Creates a gateway.
9497
10827
  *
9498
10828
  * @param request - CreateGatewayRequest
9499
10829
  * @returns CreateGatewayResponse
@@ -9517,6 +10847,24 @@ export default class Client extends OpenApi {
9517
10847
  * @returns CreateGatewayIntranetLinkedVpcResponse
9518
10848
  */
9519
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>;
9520
10868
  /**
9521
10869
  * Creates a resource group.
9522
10870
  *
@@ -9655,6 +11003,24 @@ export default class Client extends OpenApi {
9655
11003
  * @returns CreateServiceMirrorResponse
9656
11004
  */
9657
11005
  createServiceMirror(ClusterId: string, ServiceName: string, request: CreateServiceMirrorRequest): Promise<CreateServiceMirrorResponse>;
11006
+ /**
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>;
9658
11024
  /**
9659
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.
9660
11026
  *
@@ -9721,6 +11087,24 @@ export default class Client extends OpenApi {
9721
11087
  * @returns DeleteGatewayIntranetLinkedVpcResponse
9722
11088
  */
9723
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>;
9724
11108
  /**
9725
11109
  * Deletes a resource group that contains no resources or instances.
9726
11110
  *
@@ -9880,6 +11264,21 @@ export default class Client extends OpenApi {
9880
11264
  * @returns DeleteServiceMirrorResponse
9881
11265
  */
9882
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>;
9883
11282
  /**
9884
11283
  * Queries details about the configurations of a stress testing task.
9885
11284
  *
@@ -10132,6 +11531,39 @@ export default class Client extends OpenApi {
10132
11531
  * @returns DescribeSpotDiscountHistoryResponse
10133
11532
  */
10134
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>;
10135
11567
  /**
10136
11568
  * Switches a container service to development mode or exits development mode.
10137
11569
  *
@@ -10204,6 +11636,21 @@ export default class Client extends OpenApi {
10204
11636
  * @returns ListGatewayResponse
10205
11637
  */
10206
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>;
10207
11654
  /**
10208
11655
  * Queries a list of the internal endpoints of a private gateway.
10209
11656
  *
@@ -10219,6 +11666,24 @@ export default class Client extends OpenApi {
10219
11666
  * @returns ListGatewayIntranetLinkedVpcResponse
10220
11667
  */
10221
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>;
10222
11687
  /**
10223
11688
  * Queries created service groups.
10224
11689
  *
@@ -10365,7 +11830,7 @@ export default class Client extends OpenApi {
10365
11830
  */
10366
11831
  listServiceVersions(ClusterId: string, ServiceName: string, request: ListServiceVersionsRequest): Promise<ListServiceVersionsResponse>;
10367
11832
  /**
10368
- * Queries a list of services that are created by the current user.
11833
+ * Lists services.
10369
11834
  *
10370
11835
  * @param tmpReq - ListServicesRequest
10371
11836
  * @param headers - map
@@ -10376,7 +11841,7 @@ export default class Client extends OpenApi {
10376
11841
  [key: string]: string;
10377
11842
  }, runtime: $Util.RuntimeOptions): Promise<ListServicesResponse>;
10378
11843
  /**
10379
- * Queries a list of services that are created by the current user.
11844
+ * Lists services.
10380
11845
  *
10381
11846
  * @param request - ListServicesRequest
10382
11847
  * @returns ListServicesResponse
@@ -10398,7 +11863,25 @@ export default class Client extends OpenApi {
10398
11863
  */
10399
11864
  listTenantAddons(): Promise<ListTenantAddonsResponse>;
10400
11865
  /**
10401
- * Updates the information about a tenant plug-in.
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.
10402
11885
  *
10403
11886
  * @param headers - map
10404
11887
  * @param runtime - runtime options for this request RuntimeOptions
@@ -10408,7 +11891,7 @@ export default class Client extends OpenApi {
10408
11891
  [key: string]: string;
10409
11892
  }, runtime: $Util.RuntimeOptions): Promise<ReinstallTenantAddonResponse>;
10410
11893
  /**
10411
- * Updates the information about a tenant plug-in.
11894
+ * Resets tenant configurations.
10412
11895
  * @returns ReinstallTenantAddonResponse
10413
11896
  */
10414
11897
  reinstallTenantAddon(ClusterId: string, TenantAddonName: string): Promise<ReinstallTenantAddonResponse>;
@@ -10757,4 +12240,22 @@ export default class Client extends OpenApi {
10757
12240
  * @returns UpdateServiceVersionResponse
10758
12241
  */
10759
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>;
10760
12261
  }