@alicloud/cloudapi20160714 4.4.2 → 4.5.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
@@ -344,6 +344,88 @@ export declare class AddTrafficSpecialControlResponse extends $tea.Model {
344
344
  [key: string]: any;
345
345
  });
346
346
  }
347
+ export declare class AssociateInstanceWithPrivateDNSRequest extends $tea.Model {
348
+ /**
349
+ * @remarks
350
+ * This parameter is required.
351
+ *
352
+ * @example
353
+ * apigateway-hz-ead4f4b0bac8
354
+ */
355
+ instanceId?: string;
356
+ /**
357
+ * @remarks
358
+ * This parameter is required.
359
+ */
360
+ intranetDomains?: string[];
361
+ securityToken?: string;
362
+ static names(): {
363
+ [key: string]: string;
364
+ };
365
+ static types(): {
366
+ [key: string]: any;
367
+ };
368
+ constructor(map?: {
369
+ [key: string]: any;
370
+ });
371
+ }
372
+ export declare class AssociateInstanceWithPrivateDNSShrinkRequest extends $tea.Model {
373
+ /**
374
+ * @remarks
375
+ * This parameter is required.
376
+ *
377
+ * @example
378
+ * apigateway-hz-ead4f4b0bac8
379
+ */
380
+ instanceId?: string;
381
+ /**
382
+ * @remarks
383
+ * This parameter is required.
384
+ */
385
+ intranetDomainsShrink?: string;
386
+ securityToken?: string;
387
+ static names(): {
388
+ [key: string]: string;
389
+ };
390
+ static types(): {
391
+ [key: string]: any;
392
+ };
393
+ constructor(map?: {
394
+ [key: string]: any;
395
+ });
396
+ }
397
+ export declare class AssociateInstanceWithPrivateDNSResponseBody extends $tea.Model {
398
+ /**
399
+ * @example
400
+ * 03442A3D-3B7D-434C-8A95-A5FEB999B529
401
+ */
402
+ requestId?: string;
403
+ static names(): {
404
+ [key: string]: string;
405
+ };
406
+ static types(): {
407
+ [key: string]: any;
408
+ };
409
+ constructor(map?: {
410
+ [key: string]: any;
411
+ });
412
+ }
413
+ export declare class AssociateInstanceWithPrivateDNSResponse extends $tea.Model {
414
+ headers?: {
415
+ [key: string]: string;
416
+ };
417
+ statusCode?: number;
418
+ body?: AssociateInstanceWithPrivateDNSResponseBody;
419
+ static names(): {
420
+ [key: string]: string;
421
+ };
422
+ static types(): {
423
+ [key: string]: any;
424
+ };
425
+ constructor(map?: {
426
+ [key: string]: any;
427
+ });
428
+ }
347
429
  export declare class AttachApiProductRequest extends $tea.Model {
348
430
  /**
349
431
  * @remarks
@@ -2574,6 +2656,96 @@ export declare class CreatePluginResponse extends $tea.Model {
2574
2656
  [key: string]: any;
2575
2657
  });
2576
2658
  }
2659
+ export declare class CreatePrivateDNSRequest extends $tea.Model {
2660
+ /**
2661
+ * @remarks
2662
+ * This parameter is required.
2663
+ *
2664
+ * @example
2665
+ * api.demo.com
2666
+ */
2667
+ intranetDomain?: string;
2668
+ records?: CreatePrivateDNSRequestRecords[];
2669
+ securityToken?: string;
2670
+ /**
2671
+ * @remarks
2672
+ * This parameter is required.
2673
+ *
2674
+ * @example
2675
+ * A
2676
+ */
2677
+ type?: string;
2678
+ static names(): {
2679
+ [key: string]: string;
2680
+ };
2681
+ static types(): {
2682
+ [key: string]: any;
2683
+ };
2684
+ constructor(map?: {
2685
+ [key: string]: any;
2686
+ });
2687
+ }
2688
+ export declare class CreatePrivateDNSShrinkRequest extends $tea.Model {
2689
+ /**
2690
+ * @remarks
2691
+ * This parameter is required.
2692
+ *
2693
+ * @example
2694
+ * api.demo.com
2695
+ */
2696
+ intranetDomain?: string;
2697
+ recordsShrink?: string;
2698
+ securityToken?: string;
2699
+ /**
2700
+ * @remarks
2701
+ * This parameter is required.
2702
+ *
2703
+ * @example
2704
+ * A
2705
+ */
2706
+ type?: string;
2707
+ static names(): {
2708
+ [key: string]: string;
2709
+ };
2710
+ static types(): {
2711
+ [key: string]: any;
2712
+ };
2713
+ constructor(map?: {
2714
+ [key: string]: any;
2715
+ });
2716
+ }
2717
+ export declare class CreatePrivateDNSResponseBody extends $tea.Model {
2718
+ /**
2719
+ * @example
2720
+ * CEF72CEB-54B6-4AE8-B225-F876FF7BZ015
2721
+ */
2722
+ requestId?: string;
2723
+ static names(): {
2724
+ [key: string]: string;
2725
+ };
2726
+ static types(): {
2727
+ [key: string]: any;
2728
+ };
2729
+ constructor(map?: {
2730
+ [key: string]: any;
2731
+ });
2732
+ }
2733
+ export declare class CreatePrivateDNSResponse extends $tea.Model {
2734
+ headers?: {
2735
+ [key: string]: string;
2736
+ };
2737
+ statusCode?: number;
2738
+ body?: CreatePrivateDNSResponseBody;
2739
+ static names(): {
2740
+ [key: string]: string;
2741
+ };
2742
+ static types(): {
2743
+ [key: string]: any;
2744
+ };
2745
+ constructor(map?: {
2746
+ [key: string]: any;
2747
+ });
2748
+ }
2577
2749
  export declare class CreateSignatureRequest extends $tea.Model {
2578
2750
  /**
2579
2751
  * @remarks
@@ -4149,6 +4321,71 @@ export declare class DeletePluginResponse extends $tea.Model {
4149
4321
  [key: string]: any;
4150
4322
  });
4151
4323
  }
4324
+ export declare class DeletePrivateDNSRequest extends $tea.Model {
4325
+ /**
4326
+ * @example
4327
+ * false
4328
+ */
4329
+ force?: boolean;
4330
+ /**
4331
+ * @remarks
4332
+ * This parameter is required.
4333
+ *
4334
+ * @example
4335
+ * api.demo.com
4336
+ */
4337
+ intranetDomain?: string;
4338
+ securityToken?: string;
4339
+ /**
4340
+ * @remarks
4341
+ * This parameter is required.
4342
+ *
4343
+ * @example
4344
+ * A
4345
+ */
4346
+ type?: string;
4347
+ static names(): {
4348
+ [key: string]: string;
4349
+ };
4350
+ static types(): {
4351
+ [key: string]: any;
4352
+ };
4353
+ constructor(map?: {
4354
+ [key: string]: any;
4355
+ });
4356
+ }
4357
+ export declare class DeletePrivateDNSResponseBody extends $tea.Model {
4358
+ /**
4359
+ * @example
4360
+ * EF924FE4-2EDD-4CD3-89EC-34E4708574E7
4361
+ */
4362
+ requestId?: string;
4363
+ static names(): {
4364
+ [key: string]: string;
4365
+ };
4366
+ static types(): {
4367
+ [key: string]: any;
4368
+ };
4369
+ constructor(map?: {
4370
+ [key: string]: any;
4371
+ });
4372
+ }
4373
+ export declare class DeletePrivateDNSResponse extends $tea.Model {
4374
+ headers?: {
4375
+ [key: string]: string;
4376
+ };
4377
+ statusCode?: number;
4378
+ body?: DeletePrivateDNSResponseBody;
4379
+ static names(): {
4380
+ [key: string]: string;
4381
+ };
4382
+ static types(): {
4383
+ [key: string]: any;
4384
+ };
4385
+ constructor(map?: {
4386
+ [key: string]: any;
4387
+ });
4388
+ }
4152
4389
  export declare class DeleteSignatureRequest extends $tea.Model {
4153
4390
  /**
4154
4391
  * @remarks
@@ -14571,6 +14808,88 @@ export declare class DisableInstanceAccessControlResponse extends $tea.Model {
14571
14808
  [key: string]: any;
14572
14809
  });
14573
14810
  }
14811
+ export declare class DissociateInstanceWithPrivateDNSRequest extends $tea.Model {
14812
+ /**
14813
+ * @remarks
14814
+ * This parameter is required.
14815
+ *
14816
+ * @example
14817
+ * apigateway-hz-ead4f4b0bac8
14818
+ */
14819
+ instanceId?: string;
14820
+ /**
14821
+ * @remarks
14822
+ * This parameter is required.
14823
+ */
14824
+ intranetDomains?: string[];
14825
+ securityToken?: string;
14826
+ static names(): {
14827
+ [key: string]: string;
14828
+ };
14829
+ static types(): {
14830
+ [key: string]: any;
14831
+ };
14832
+ constructor(map?: {
14833
+ [key: string]: any;
14834
+ });
14835
+ }
14836
+ export declare class DissociateInstanceWithPrivateDNSShrinkRequest extends $tea.Model {
14837
+ /**
14838
+ * @remarks
14839
+ * This parameter is required.
14840
+ *
14841
+ * @example
14842
+ * apigateway-hz-ead4f4b0bac8
14843
+ */
14844
+ instanceId?: string;
14845
+ /**
14846
+ * @remarks
14847
+ * This parameter is required.
14848
+ */
14849
+ intranetDomainsShrink?: string;
14850
+ securityToken?: string;
14851
+ static names(): {
14852
+ [key: string]: string;
14853
+ };
14854
+ static types(): {
14855
+ [key: string]: any;
14856
+ };
14857
+ constructor(map?: {
14858
+ [key: string]: any;
14859
+ });
14860
+ }
14861
+ export declare class DissociateInstanceWithPrivateDNSResponseBody extends $tea.Model {
14862
+ /**
14863
+ * @example
14864
+ * 6C87A26A-6A18-4B8E-8099-705278381A2C
14865
+ */
14866
+ requestId?: string;
14867
+ static names(): {
14868
+ [key: string]: string;
14869
+ };
14870
+ static types(): {
14871
+ [key: string]: any;
14872
+ };
14873
+ constructor(map?: {
14874
+ [key: string]: any;
14875
+ });
14876
+ }
14877
+ export declare class DissociateInstanceWithPrivateDNSResponse extends $tea.Model {
14878
+ headers?: {
14879
+ [key: string]: string;
14880
+ };
14881
+ statusCode?: number;
14882
+ body?: DissociateInstanceWithPrivateDNSResponseBody;
14883
+ static names(): {
14884
+ [key: string]: string;
14885
+ };
14886
+ static types(): {
14887
+ [key: string]: any;
14888
+ };
14889
+ constructor(map?: {
14890
+ [key: string]: any;
14891
+ });
14892
+ }
14574
14893
  export declare class DryRunSwaggerRequest extends $tea.Model {
14575
14894
  /**
14576
14895
  * @remarks
@@ -14836,34 +15155,66 @@ export declare class EnableInstanceAccessControlResponse extends $tea.Model {
14836
15155
  });
14837
15156
  }
14838
15157
  export declare class ExportOASRequest extends $tea.Model {
15158
+ /**
15159
+ * @remarks
15160
+ * The APIs that you want to export.
15161
+ */
14839
15162
  apiIdList?: string[];
14840
15163
  /**
15164
+ * @remarks
15165
+ * The exported format:
15166
+ *
15167
+ * * json
15168
+ * * yaml
15169
+ *
14841
15170
  * @example
14842
15171
  * yaml
14843
15172
  */
14844
15173
  dataFormat?: string;
14845
15174
  /**
15175
+ * @remarks
15176
+ * The API group ID.
15177
+ *
14846
15178
  * @example
14847
15179
  * 42925e7f5209438186d5560239af5xxx
14848
15180
  */
14849
15181
  groupId?: string;
14850
15182
  /**
15183
+ * @remarks
15184
+ * The OAS version. Valid values:
15185
+ *
15186
+ * * **oas2**
15187
+ * * **oas3**
15188
+ *
14851
15189
  * @example
14852
15190
  * oas2
14853
15191
  */
14854
15192
  oasVersion?: string;
14855
15193
  /**
15194
+ * @remarks
15195
+ * The number of pages in which you want to export the APIs.
15196
+ *
14856
15197
  * @example
14857
15198
  * 1
14858
15199
  */
14859
15200
  pageNumber?: number;
14860
15201
  securityToken?: string;
14861
15202
  /**
15203
+ * @remarks
15204
+ * The environment to which the API is published. Valid values:
15205
+ *
15206
+ * * **RELEASE**: the production environment
15207
+ * * **PRE**: the pre-release environment
15208
+ * * **TEST**: the test environment
15209
+ *
14862
15210
  * @example
14863
15211
  * RELEASE
14864
15212
  */
14865
15213
  stageName?: string;
14866
15214
  /**
15215
+ * @remarks
15216
+ * Specifies whether to export API Gateway extensions at the same time.
15217
+ *
14867
15218
  * @example
14868
15219
  * true
14869
15220
  */
@@ -14879,34 +15230,66 @@ export declare class ExportOASRequest extends $tea.Model {
14879
15230
  });
14880
15231
  }
14881
15232
  export declare class ExportOASShrinkRequest extends $tea.Model {
15233
+ /**
15234
+ * @remarks
15235
+ * The APIs that you want to export.
15236
+ */
14882
15237
  apiIdListShrink?: string;
14883
15238
  /**
15239
+ * @remarks
15240
+ * The exported format:
15241
+ *
15242
+ * * json
15243
+ * * yaml
15244
+ *
14884
15245
  * @example
14885
15246
  * yaml
14886
15247
  */
14887
15248
  dataFormat?: string;
14888
15249
  /**
15250
+ * @remarks
15251
+ * The API group ID.
15252
+ *
14889
15253
  * @example
14890
15254
  * 42925e7f5209438186d5560239af5xxx
14891
15255
  */
14892
15256
  groupId?: string;
14893
15257
  /**
15258
+ * @remarks
15259
+ * The OAS version. Valid values:
15260
+ *
15261
+ * * **oas2**
15262
+ * * **oas3**
15263
+ *
14894
15264
  * @example
14895
15265
  * oas2
14896
15266
  */
14897
15267
  oasVersion?: string;
14898
15268
  /**
15269
+ * @remarks
15270
+ * The number of pages in which you want to export the APIs.
15271
+ *
14899
15272
  * @example
14900
15273
  * 1
14901
15274
  */
14902
15275
  pageNumber?: number;
14903
15276
  securityToken?: string;
14904
15277
  /**
15278
+ * @remarks
15279
+ * The environment to which the API is published. Valid values:
15280
+ *
15281
+ * * **RELEASE**: the production environment
15282
+ * * **PRE**: the pre-release environment
15283
+ * * **TEST**: the test environment
15284
+ *
14905
15285
  * @example
14906
15286
  * RELEASE
14907
15287
  */
14908
15288
  stageName?: string;
14909
15289
  /**
15290
+ * @remarks
15291
+ * Specifies whether to export API Gateway extensions at the same time.
15292
+ *
14910
15293
  * @example
14911
15294
  * true
14912
15295
  */
@@ -14923,11 +15306,17 @@ export declare class ExportOASShrinkRequest extends $tea.Model {
14923
15306
  }
14924
15307
  export declare class ExportOASResponseBody extends $tea.Model {
14925
15308
  /**
15309
+ * @remarks
15310
+ * The Base64-encoded data of the exported Swagger file. You can obtain the file by using Base64 decoding.
15311
+ *
14926
15312
  * @example
14927
15313
  * UEsDBBQACAAIAABc8FgAAAAAAAAAAAAAAAA...
14928
15314
  */
14929
15315
  data?: string;
14930
15316
  /**
15317
+ * @remarks
15318
+ * The request ID.
15319
+ *
14931
15320
  * @example
14932
15321
  * CEF72CEB-54B6-4AE8-B225-F876xxxxxxxx
14933
15322
  */
@@ -15417,6 +15806,76 @@ export declare class ImportSwaggerResponse extends $tea.Model {
15417
15806
  [key: string]: any;
15418
15807
  });
15419
15808
  }
15809
+ export declare class ListPrivateDNSRequest extends $tea.Model {
15810
+ /**
15811
+ * @example
15812
+ * api.demo.com
15813
+ */
15814
+ intranetDomain?: string;
15815
+ securityToken?: string;
15816
+ /**
15817
+ * @example
15818
+ * A
15819
+ */
15820
+ type?: string;
15821
+ static names(): {
15822
+ [key: string]: string;
15823
+ };
15824
+ static types(): {
15825
+ [key: string]: any;
15826
+ };
15827
+ constructor(map?: {
15828
+ [key: string]: any;
15829
+ });
15830
+ }
15831
+ export declare class ListPrivateDNSResponseBody extends $tea.Model {
15832
+ /**
15833
+ * @example
15834
+ * 1
15835
+ */
15836
+ pageNumber?: number;
15837
+ /**
15838
+ * @example
15839
+ * 10
15840
+ */
15841
+ pageSize?: number;
15842
+ privateDNSList?: ListPrivateDNSResponseBodyPrivateDNSList[];
15843
+ /**
15844
+ * @example
15845
+ * CEF72CEB-54B6-4AE8-B225-F876FF7BZ016
15846
+ */
15847
+ requestId?: string;
15848
+ /**
15849
+ * @example
15850
+ * 2
15851
+ */
15852
+ totalCount?: number;
15853
+ static names(): {
15854
+ [key: string]: string;
15855
+ };
15856
+ static types(): {
15857
+ [key: string]: any;
15858
+ };
15859
+ constructor(map?: {
15860
+ [key: string]: any;
15861
+ });
15862
+ }
15863
+ export declare class ListPrivateDNSResponse extends $tea.Model {
15864
+ headers?: {
15865
+ [key: string]: string;
15866
+ };
15867
+ statusCode?: number;
15868
+ body?: ListPrivateDNSResponseBody;
15869
+ static names(): {
15870
+ [key: string]: string;
15871
+ };
15872
+ static types(): {
15873
+ [key: string]: any;
15874
+ };
15875
+ constructor(map?: {
15876
+ [key: string]: any;
15877
+ });
15878
+ }
15420
15879
  export declare class ListTagResourcesRequest extends $tea.Model {
15421
15880
  /**
15422
15881
  * @remarks
@@ -20987,6 +21446,104 @@ export declare class UntagResourcesResponse extends $tea.Model {
20987
21446
  [key: string]: any;
20988
21447
  });
20989
21448
  }
21449
+ export declare class UpdatePrivateDNSRequest extends $tea.Model {
21450
+ /**
21451
+ * @remarks
21452
+ * This parameter is required.
21453
+ *
21454
+ * @example
21455
+ * api.demo.com
21456
+ */
21457
+ intranetDomain?: string;
21458
+ /**
21459
+ * @remarks
21460
+ * This parameter is required.
21461
+ */
21462
+ records?: UpdatePrivateDNSRequestRecords[];
21463
+ securityToken?: string;
21464
+ /**
21465
+ * @remarks
21466
+ * This parameter is required.
21467
+ *
21468
+ * @example
21469
+ * A
21470
+ */
21471
+ type?: string;
21472
+ static names(): {
21473
+ [key: string]: string;
21474
+ };
21475
+ static types(): {
21476
+ [key: string]: any;
21477
+ };
21478
+ constructor(map?: {
21479
+ [key: string]: any;
21480
+ });
21481
+ }
21482
+ export declare class UpdatePrivateDNSShrinkRequest extends $tea.Model {
21483
+ /**
21484
+ * @remarks
21485
+ * This parameter is required.
21486
+ *
21487
+ * @example
21488
+ * api.demo.com
21489
+ */
21490
+ intranetDomain?: string;
21491
+ /**
21492
+ * @remarks
21493
+ * This parameter is required.
21494
+ */
21495
+ recordsShrink?: string;
21496
+ securityToken?: string;
21497
+ /**
21498
+ * @remarks
21499
+ * This parameter is required.
21500
+ *
21501
+ * @example
21502
+ * A
21503
+ */
21504
+ type?: string;
21505
+ static names(): {
21506
+ [key: string]: string;
21507
+ };
21508
+ static types(): {
21509
+ [key: string]: any;
21510
+ };
21511
+ constructor(map?: {
21512
+ [key: string]: any;
21513
+ });
21514
+ }
21515
+ export declare class UpdatePrivateDNSResponseBody extends $tea.Model {
21516
+ /**
21517
+ * @example
21518
+ * EF924FE4-2EDD-4CD3-89EC-34E4708574E7
21519
+ */
21520
+ requestId?: string;
21521
+ static names(): {
21522
+ [key: string]: string;
21523
+ };
21524
+ static types(): {
21525
+ [key: string]: any;
21526
+ };
21527
+ constructor(map?: {
21528
+ [key: string]: any;
21529
+ });
21530
+ }
21531
+ export declare class UpdatePrivateDNSResponse extends $tea.Model {
21532
+ headers?: {
21533
+ [key: string]: string;
21534
+ };
21535
+ statusCode?: number;
21536
+ body?: UpdatePrivateDNSResponseBody;
21537
+ static names(): {
21538
+ [key: string]: string;
21539
+ };
21540
+ static types(): {
21541
+ [key: string]: any;
21542
+ };
21543
+ constructor(map?: {
21544
+ [key: string]: any;
21545
+ });
21546
+ }
20990
21547
  export declare class ValidateVpcConnectivityRequest extends $tea.Model {
20991
21548
  /**
20992
21549
  * @remarks
@@ -21493,6 +22050,27 @@ export declare class CreatePluginRequestTag extends $tea.Model {
21493
22050
  [key: string]: any;
21494
22051
  });
21495
22052
  }
22053
+ export declare class CreatePrivateDNSRequestRecords extends $tea.Model {
22054
+ /**
22055
+ * @example
22056
+ * 192.168.0.1
22057
+ */
22058
+ record?: string;
22059
+ /**
22060
+ * @example
22061
+ * 100
22062
+ */
22063
+ weight?: number;
22064
+ static names(): {
22065
+ [key: string]: string;
22066
+ };
22067
+ static types(): {
22068
+ [key: string]: any;
22069
+ };
22070
+ constructor(map?: {
22071
+ [key: string]: any;
22072
+ });
22073
+ }
21496
22074
  export declare class DeleteApiGroupRequestTag extends $tea.Model {
21497
22075
  /**
21498
22076
  * @remarks
@@ -22117,6 +22695,13 @@ export declare class DescribeApiResponseBodyRequestConfig extends $tea.Model {
22117
22695
  * https://apigateway.aliyun.com/models/3a240a127dcc4afd9ab1bf7e947b4095/9e2df550e85b4121a79ec33e2619eaab
22118
22696
  */
22119
22697
  bodyModel?: string;
22698
+ /**
22699
+ * @remarks
22700
+ * Whether to escape the Path parameter, if true, the [param] on the Path will be treated as a regular character.
22701
+ *
22702
+ * @example
22703
+ * true
22704
+ */
22120
22705
  escapePathParam?: boolean;
22121
22706
  /**
22122
22707
  * @remarks
@@ -23007,6 +23592,13 @@ export declare class DescribeApiDocResponseBodyRequestConfig extends $tea.Model
23007
23592
  * STREAM
23008
23593
  */
23009
23594
  bodyFormat?: string;
23595
+ /**
23596
+ * @remarks
23597
+ * Whether to escape the Path parameter, if true, the [param] on the Path will be treated as a regular character.
23598
+ *
23599
+ * @example
23600
+ * true
23601
+ */
23010
23602
  escapePathParam?: boolean;
23011
23603
  /**
23012
23604
  * @remarks
@@ -24028,6 +24620,13 @@ export declare class DescribeApiHistoryResponseBodyRequestConfig extends $tea.Mo
24028
24620
  * https://apigateway.aliyun.com/models/3a240a1XXXXXXXXd9ab1bf7e947b4095/9e2df550e85b4XXXXXXXX619eaab
24029
24621
  */
24030
24622
  bodyModel?: string;
24623
+ /**
24624
+ * @remarks
24625
+ * Whether to escape the Path parameter, if true, the [param] on the Path will be treated as a regular character.
24626
+ *
24627
+ * @example
24628
+ * true
24629
+ */
24031
24630
  escapePathParam?: boolean;
24032
24631
  /**
24033
24632
  * @remarks
@@ -26928,7 +27527,21 @@ export declare class DescribeAuthorizedApisResponseBodyAuthorizedApis extends $t
26928
27527
  });
26929
27528
  }
26930
27529
  export declare class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTagTagInfo extends $tea.Model {
27530
+ /**
27531
+ * @remarks
27532
+ * The tag key.
27533
+ *
27534
+ * @example
27535
+ * DEV
27536
+ */
26931
27537
  key?: string;
27538
+ /**
27539
+ * @remarks
27540
+ * The tag value.
27541
+ *
27542
+ * @example
27543
+ * 240
27544
+ */
26932
27545
  value?: string;
26933
27546
  static names(): {
26934
27547
  [key: string]: string;
@@ -27043,6 +27656,10 @@ export declare class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedA
27043
27656
  * RELEASE
27044
27657
  */
27045
27658
  stageName?: string;
27659
+ /**
27660
+ * @remarks
27661
+ * The key of the tag.
27662
+ */
27046
27663
  tag?: DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTag;
27047
27664
  static names(): {
27048
27665
  [key: string]: string;
@@ -33547,6 +34164,55 @@ export declare class ImportSwaggerResponseBodySuccess extends $tea.Model {
33547
34164
  [key: string]: any;
33548
34165
  });
33549
34166
  }
34167
+ export declare class ListPrivateDNSResponseBodyPrivateDNSListRecords extends $tea.Model {
34168
+ /**
34169
+ * @example
34170
+ * 192.168.0.1
34171
+ */
34172
+ record?: string;
34173
+ /**
34174
+ * @example
34175
+ * 100
34176
+ */
34177
+ weight?: number;
34178
+ static names(): {
34179
+ [key: string]: string;
34180
+ };
34181
+ static types(): {
34182
+ [key: string]: any;
34183
+ };
34184
+ constructor(map?: {
34185
+ [key: string]: any;
34186
+ });
34187
+ }
34188
+ export declare class ListPrivateDNSResponseBodyPrivateDNSList extends $tea.Model {
34189
+ bindInstances?: string[];
34190
+ /**
34191
+ * @example
34192
+ * 2023-05-10T08:17:00Z
34193
+ */
34194
+ createdTime?: string;
34195
+ /**
34196
+ * @example
34197
+ * api.demo.com
34198
+ */
34199
+ intranetDomain?: string;
34200
+ records?: ListPrivateDNSResponseBodyPrivateDNSListRecords[];
34201
+ /**
34202
+ * @example
34203
+ * A
34204
+ */
34205
+ type?: string;
34206
+ static names(): {
34207
+ [key: string]: string;
34208
+ };
34209
+ static types(): {
34210
+ [key: string]: any;
34211
+ };
34212
+ constructor(map?: {
34213
+ [key: string]: any;
34214
+ });
34215
+ }
33550
34216
  export declare class ListTagResourcesRequestTag extends $tea.Model {
33551
34217
  /**
33552
34218
  * @remarks
@@ -34258,6 +34924,27 @@ export declare class TagResourcesRequestTag extends $tea.Model {
34258
34924
  [key: string]: any;
34259
34925
  });
34260
34926
  }
34927
+ export declare class UpdatePrivateDNSRequestRecords extends $tea.Model {
34928
+ /**
34929
+ * @example
34930
+ * 192.168.0.2
34931
+ */
34932
+ record?: string;
34933
+ /**
34934
+ * @example
34935
+ * 100
34936
+ */
34937
+ weight?: number;
34938
+ static names(): {
34939
+ [key: string]: string;
34940
+ };
34941
+ static types(): {
34942
+ [key: string]: any;
34943
+ };
34944
+ constructor(map?: {
34945
+ [key: string]: any;
34946
+ });
34947
+ }
34261
34948
  export default class Client extends OpenApi {
34262
34949
  constructor(config: $OpenApi.Config);
34263
34950
  getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
@@ -34355,6 +35042,21 @@ export default class Client extends OpenApi {
34355
35042
  * @returns AddTrafficSpecialControlResponse
34356
35043
  */
34357
35044
  addTrafficSpecialControl(request: AddTrafficSpecialControlRequest): Promise<AddTrafficSpecialControlResponse>;
35045
+ /**
35046
+ * 专享实例关联内网域名解析记录
35047
+ *
35048
+ * @param tmpReq - AssociateInstanceWithPrivateDNSRequest
35049
+ * @param runtime - runtime options for this request RuntimeOptions
35050
+ * @returns AssociateInstanceWithPrivateDNSResponse
35051
+ */
35052
+ associateInstanceWithPrivateDNSWithOptions(tmpReq: AssociateInstanceWithPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<AssociateInstanceWithPrivateDNSResponse>;
35053
+ /**
35054
+ * 专享实例关联内网域名解析记录
35055
+ *
35056
+ * @param request - AssociateInstanceWithPrivateDNSRequest
35057
+ * @returns AssociateInstanceWithPrivateDNSResponse
35058
+ */
35059
+ associateInstanceWithPrivateDNS(request: AssociateInstanceWithPrivateDNSRequest): Promise<AssociateInstanceWithPrivateDNSResponse>;
34358
35060
  /**
34359
35061
  * Attaches APIs to an API product. If the API product does not exist, the system automatically creates the API product.
34360
35062
  *
@@ -34751,6 +35453,21 @@ export default class Client extends OpenApi {
34751
35453
  * @returns CreatePluginResponse
34752
35454
  */
34753
35455
  createPlugin(request: CreatePluginRequest): Promise<CreatePluginResponse>;
35456
+ /**
35457
+ * 创建内网域名解析
35458
+ *
35459
+ * @param tmpReq - CreatePrivateDNSRequest
35460
+ * @param runtime - runtime options for this request RuntimeOptions
35461
+ * @returns CreatePrivateDNSResponse
35462
+ */
35463
+ createPrivateDNSWithOptions(tmpReq: CreatePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateDNSResponse>;
35464
+ /**
35465
+ * 创建内网域名解析
35466
+ *
35467
+ * @param request - CreatePrivateDNSRequest
35468
+ * @returns CreatePrivateDNSResponse
35469
+ */
35470
+ createPrivateDNS(request: CreatePrivateDNSRequest): Promise<CreatePrivateDNSResponse>;
34754
35471
  /**
34755
35472
  * Creates a backend signature key.
34756
35473
  *
@@ -35192,6 +35909,21 @@ export default class Client extends OpenApi {
35192
35909
  * @returns DeletePluginResponse
35193
35910
  */
35194
35911
  deletePlugin(request: DeletePluginRequest): Promise<DeletePluginResponse>;
35912
+ /**
35913
+ * 删除内网域名解析
35914
+ *
35915
+ * @param request - DeletePrivateDNSRequest
35916
+ * @param runtime - runtime options for this request RuntimeOptions
35917
+ * @returns DeletePrivateDNSResponse
35918
+ */
35919
+ deletePrivateDNSWithOptions(request: DeletePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateDNSResponse>;
35920
+ /**
35921
+ * 删除内网域名解析
35922
+ *
35923
+ * @param request - DeletePrivateDNSRequest
35924
+ * @returns DeletePrivateDNSResponse
35925
+ */
35926
+ deletePrivateDNS(request: DeletePrivateDNSRequest): Promise<DeletePrivateDNSResponse>;
35195
35927
  /**
35196
35928
  * Deletes a backend signature key.
35197
35929
  *
@@ -36879,6 +37611,21 @@ export default class Client extends OpenApi {
36879
37611
  * @returns DisableInstanceAccessControlResponse
36880
37612
  */
36881
37613
  disableInstanceAccessControl(request: DisableInstanceAccessControlRequest): Promise<DisableInstanceAccessControlResponse>;
37614
+ /**
37615
+ * 专享实例解除的关联内网域名解析记录
37616
+ *
37617
+ * @param tmpReq - DissociateInstanceWithPrivateDNSRequest
37618
+ * @param runtime - runtime options for this request RuntimeOptions
37619
+ * @returns DissociateInstanceWithPrivateDNSResponse
37620
+ */
37621
+ dissociateInstanceWithPrivateDNSWithOptions(tmpReq: DissociateInstanceWithPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<DissociateInstanceWithPrivateDNSResponse>;
37622
+ /**
37623
+ * 专享实例解除的关联内网域名解析记录
37624
+ *
37625
+ * @param request - DissociateInstanceWithPrivateDNSRequest
37626
+ * @returns DissociateInstanceWithPrivateDNSResponse
37627
+ */
37628
+ dissociateInstanceWithPrivateDNS(request: DissociateInstanceWithPrivateDNSRequest): Promise<DissociateInstanceWithPrivateDNSResponse>;
36882
37629
  /**
36883
37630
  * Checks the syntax before Swagger-compliant data is imported.
36884
37631
  *
@@ -36962,6 +37709,21 @@ export default class Client extends OpenApi {
36962
37709
  * @returns ImportSwaggerResponse
36963
37710
  */
36964
37711
  importSwagger(request: ImportSwaggerRequest): Promise<ImportSwaggerResponse>;
37712
+ /**
37713
+ * 查询内网域名解析
37714
+ *
37715
+ * @param request - ListPrivateDNSRequest
37716
+ * @param runtime - runtime options for this request RuntimeOptions
37717
+ * @returns ListPrivateDNSResponse
37718
+ */
37719
+ listPrivateDNSWithOptions(request: ListPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateDNSResponse>;
37720
+ /**
37721
+ * 查询内网域名解析
37722
+ *
37723
+ * @param request - ListPrivateDNSRequest
37724
+ * @returns ListPrivateDNSResponse
37725
+ */
37726
+ listPrivateDNS(request: ListPrivateDNSRequest): Promise<ListPrivateDNSResponse>;
36965
37727
  /**
36966
37728
  * Queries the visible resource tags.
36967
37729
  *
@@ -38065,6 +38827,21 @@ export default class Client extends OpenApi {
38065
38827
  * @returns UntagResourcesResponse
38066
38828
  */
38067
38829
  untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
38830
+ /**
38831
+ * 更新内网域名解析
38832
+ *
38833
+ * @param tmpReq - UpdatePrivateDNSRequest
38834
+ * @param runtime - runtime options for this request RuntimeOptions
38835
+ * @returns UpdatePrivateDNSResponse
38836
+ */
38837
+ updatePrivateDNSWithOptions(tmpReq: UpdatePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateDNSResponse>;
38838
+ /**
38839
+ * 更新内网域名解析
38840
+ *
38841
+ * @param request - UpdatePrivateDNSRequest
38842
+ * @returns UpdatePrivateDNSResponse
38843
+ */
38844
+ updatePrivateDNS(request: UpdatePrivateDNSRequest): Promise<UpdatePrivateDNSResponse>;
38068
38845
  /**
38069
38846
  * Tests the network connectivity between an API Gateway instance and a port on an Elastic Compute Service (ECS) or Server Load Balance (SLB) instance in a virtual private cloud (VPC) access authorization.
38070
38847
  *