@alicloud/gpdb20160503 2.3.0 → 2.4.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
@@ -519,6 +519,56 @@ export declare class DescribeAvailableResourcesResponseBodyResources extends $da
519
519
  [key: string]: any;
520
520
  });
521
521
  }
522
+ export declare class DescribeCreateIndexJobResponseBodyJob extends $dara.Model {
523
+ /**
524
+ * @example
525
+ * false
526
+ */
527
+ completed?: boolean;
528
+ /**
529
+ * @example
530
+ * 2024-01-08 16:52:04.864664
531
+ */
532
+ createTime?: string;
533
+ /**
534
+ * @example
535
+ * Failed to connect database.
536
+ */
537
+ error?: string;
538
+ /**
539
+ * @remarks
540
+ * Job ID。
541
+ *
542
+ * @example
543
+ * 231460f8-75dc-405e-a669-0c5204887e91
544
+ */
545
+ id?: string;
546
+ /**
547
+ * @example
548
+ * 20
549
+ */
550
+ progress?: number;
551
+ /**
552
+ * @example
553
+ * Running
554
+ */
555
+ status?: string;
556
+ /**
557
+ * @example
558
+ * 2024-01-08 16:53:04.864664
559
+ */
560
+ updateTime?: string;
561
+ static names(): {
562
+ [key: string]: string;
563
+ };
564
+ static types(): {
565
+ [key: string]: any;
566
+ };
567
+ validate(): void;
568
+ constructor(map?: {
569
+ [key: string]: any;
570
+ });
571
+ }
522
572
  export declare class DescribeDBClusterNodeResponseBodyNodes extends $dara.Model {
523
573
  /**
524
574
  * @remarks
@@ -5863,6 +5913,51 @@ export declare class ListExternalDataSourcesResponseBodyItems extends $dara.Mode
5863
5913
  [key: string]: any;
5864
5914
  });
5865
5915
  }
5916
+ export declare class ListIndicesResponseBodyIndicesIndices extends $dara.Model {
5917
+ /**
5918
+ * @example
5919
+ * testcollection
5920
+ */
5921
+ collection?: string;
5922
+ /**
5923
+ * @example
5924
+ * CREATE INDEX testindex ON mynamespace. testcollection
5925
+ */
5926
+ indexDef?: string;
5927
+ /**
5928
+ * @example
5929
+ * testindex
5930
+ */
5931
+ indexName?: string;
5932
+ /**
5933
+ * @example
5934
+ * mynamespace
5935
+ */
5936
+ namespace?: string;
5937
+ static names(): {
5938
+ [key: string]: string;
5939
+ };
5940
+ static types(): {
5941
+ [key: string]: any;
5942
+ };
5943
+ validate(): void;
5944
+ constructor(map?: {
5945
+ [key: string]: any;
5946
+ });
5947
+ }
5948
+ export declare class ListIndicesResponseBodyIndices extends $dara.Model {
5949
+ indices?: ListIndicesResponseBodyIndicesIndices[];
5950
+ static names(): {
5951
+ [key: string]: string;
5952
+ };
5953
+ static types(): {
5954
+ [key: string]: any;
5955
+ };
5956
+ validate(): void;
5957
+ constructor(map?: {
5958
+ [key: string]: any;
5959
+ });
5960
+ }
5866
5961
  export declare class ListInstanceExtensionsResponseBodyItems extends $dara.Model {
5867
5962
  /**
5868
5963
  * @remarks
@@ -7640,6 +7735,113 @@ export declare class BindDBResourceGroupWithRoleResponse extends $dara.Model {
7640
7735
  [key: string]: any;
7641
7736
  });
7642
7737
  }
7738
+ export declare class CancelCreateIndexJobRequest extends $dara.Model {
7739
+ /**
7740
+ * @remarks
7741
+ * This parameter is required.
7742
+ *
7743
+ * @example
7744
+ * testcollection
7745
+ */
7746
+ collection?: string;
7747
+ /**
7748
+ * @example
7749
+ * gp-xxxxxxxxx
7750
+ */
7751
+ DBInstanceId?: string;
7752
+ /**
7753
+ * @remarks
7754
+ * This parameter is required.
7755
+ *
7756
+ * @example
7757
+ * 231460f8-75dc-405e-a669-0c5204887e91
7758
+ */
7759
+ jobId?: string;
7760
+ /**
7761
+ * @remarks
7762
+ * This parameter is required.
7763
+ *
7764
+ * @example
7765
+ * mynamespace
7766
+ */
7767
+ namespace?: string;
7768
+ /**
7769
+ * @remarks
7770
+ * This parameter is required.
7771
+ *
7772
+ * @example
7773
+ * testpassword
7774
+ */
7775
+ namespacePassword?: string;
7776
+ ownerId?: number;
7777
+ /**
7778
+ * @remarks
7779
+ * This parameter is required.
7780
+ *
7781
+ * @example
7782
+ * cn-hangzhou
7783
+ */
7784
+ regionId?: string;
7785
+ /**
7786
+ * @example
7787
+ * gp-ws-*****
7788
+ */
7789
+ workspaceId?: string;
7790
+ static names(): {
7791
+ [key: string]: string;
7792
+ };
7793
+ static types(): {
7794
+ [key: string]: any;
7795
+ };
7796
+ validate(): void;
7797
+ constructor(map?: {
7798
+ [key: string]: any;
7799
+ });
7800
+ }
7801
+ export declare class CancelCreateIndexJobResponseBody extends $dara.Model {
7802
+ /**
7803
+ * @example
7804
+ * success
7805
+ */
7806
+ message?: string;
7807
+ /**
7808
+ * @example
7809
+ * ABB39CC3-4488-4857-905D-2E4A051D0521
7810
+ */
7811
+ requestId?: string;
7812
+ /**
7813
+ * @example
7814
+ * success
7815
+ */
7816
+ status?: string;
7817
+ static names(): {
7818
+ [key: string]: string;
7819
+ };
7820
+ static types(): {
7821
+ [key: string]: any;
7822
+ };
7823
+ validate(): void;
7824
+ constructor(map?: {
7825
+ [key: string]: any;
7826
+ });
7827
+ }
7828
+ export declare class CancelCreateIndexJobResponse extends $dara.Model {
7829
+ headers?: {
7830
+ [key: string]: string;
7831
+ };
7832
+ statusCode?: number;
7833
+ body?: CancelCreateIndexJobResponseBody;
7834
+ static names(): {
7835
+ [key: string]: string;
7836
+ };
7837
+ static types(): {
7838
+ [key: string]: any;
7839
+ };
7840
+ validate(): void;
7841
+ constructor(map?: {
7842
+ [key: string]: any;
7843
+ });
7844
+ }
7643
7845
  export declare class CancelUploadDocumentJobRequest extends $dara.Model {
7644
7846
  /**
7645
7847
  * @remarks
@@ -10335,6 +10537,121 @@ export declare class CreateHadoopDataSourceResponse extends $dara.Model {
10335
10537
  [key: string]: any;
10336
10538
  });
10337
10539
  }
10540
+ export declare class CreateIndexRequest extends $dara.Model {
10541
+ /**
10542
+ * @remarks
10543
+ * This parameter is required.
10544
+ *
10545
+ * @example
10546
+ * testcollection
10547
+ */
10548
+ collection?: string;
10549
+ /**
10550
+ * @example
10551
+ * gp-xxxxxxxxx
10552
+ */
10553
+ DBInstanceId?: string;
10554
+ indexConfig?: string;
10555
+ /**
10556
+ * @example
10557
+ * title
10558
+ */
10559
+ indexField?: string;
10560
+ /**
10561
+ * @example
10562
+ * testindex
10563
+ */
10564
+ indexName?: string;
10565
+ /**
10566
+ * @remarks
10567
+ * This parameter is required.
10568
+ *
10569
+ * @example
10570
+ * mynamespace
10571
+ */
10572
+ namespace?: string;
10573
+ /**
10574
+ * @remarks
10575
+ * This parameter is required.
10576
+ *
10577
+ * @example
10578
+ * testpassword
10579
+ */
10580
+ namespacePassword?: string;
10581
+ ownerId?: number;
10582
+ /**
10583
+ * @remarks
10584
+ * This parameter is required.
10585
+ *
10586
+ * @example
10587
+ * cn-hangzhou
10588
+ */
10589
+ regionId?: string;
10590
+ /**
10591
+ * @example
10592
+ * gp-ws-*****
10593
+ */
10594
+ workspaceId?: string;
10595
+ static names(): {
10596
+ [key: string]: string;
10597
+ };
10598
+ static types(): {
10599
+ [key: string]: any;
10600
+ };
10601
+ validate(): void;
10602
+ constructor(map?: {
10603
+ [key: string]: any;
10604
+ });
10605
+ }
10606
+ export declare class CreateIndexResponseBody extends $dara.Model {
10607
+ /**
10608
+ * @example
10609
+ * 231460f8-75dc-405e-a669-0c5204887e91
10610
+ */
10611
+ jobId?: string;
10612
+ /**
10613
+ * @example
10614
+ * Successfully create job
10615
+ */
10616
+ message?: string;
10617
+ /**
10618
+ * @example
10619
+ * ABB39CC3-4488-4857-905D-2E4A051D0521
10620
+ */
10621
+ requestId?: string;
10622
+ /**
10623
+ * @example
10624
+ * success
10625
+ */
10626
+ status?: string;
10627
+ static names(): {
10628
+ [key: string]: string;
10629
+ };
10630
+ static types(): {
10631
+ [key: string]: any;
10632
+ };
10633
+ validate(): void;
10634
+ constructor(map?: {
10635
+ [key: string]: any;
10636
+ });
10637
+ }
10638
+ export declare class CreateIndexResponse extends $dara.Model {
10639
+ headers?: {
10640
+ [key: string]: string;
10641
+ };
10642
+ statusCode?: number;
10643
+ body?: CreateIndexResponseBody;
10644
+ static names(): {
10645
+ [key: string]: string;
10646
+ };
10647
+ static types(): {
10648
+ [key: string]: any;
10649
+ };
10650
+ validate(): void;
10651
+ constructor(map?: {
10652
+ [key: string]: any;
10653
+ });
10654
+ }
10338
10655
  export declare class CreateJDBCDataSourceRequest extends $dara.Model {
10339
10656
  /**
10340
10657
  * @remarks
@@ -13314,6 +13631,113 @@ export declare class DeleteHadoopDataSourceResponse extends $dara.Model {
13314
13631
  [key: string]: any;
13315
13632
  });
13316
13633
  }
13634
+ export declare class DeleteIndexRequest extends $dara.Model {
13635
+ /**
13636
+ * @remarks
13637
+ * This parameter is required.
13638
+ *
13639
+ * @example
13640
+ * testcollection
13641
+ */
13642
+ collection?: string;
13643
+ /**
13644
+ * @example
13645
+ * gp-xxxxxxxxx
13646
+ */
13647
+ DBInstanceId?: string;
13648
+ /**
13649
+ * @remarks
13650
+ * This parameter is required.
13651
+ *
13652
+ * @example
13653
+ * testindex
13654
+ */
13655
+ indexName?: string;
13656
+ /**
13657
+ * @remarks
13658
+ * This parameter is required.
13659
+ *
13660
+ * @example
13661
+ * mynamespace
13662
+ */
13663
+ namespace?: string;
13664
+ /**
13665
+ * @remarks
13666
+ * This parameter is required.
13667
+ *
13668
+ * @example
13669
+ * testpassword
13670
+ */
13671
+ namespacePassword?: string;
13672
+ ownerId?: number;
13673
+ /**
13674
+ * @remarks
13675
+ * This parameter is required.
13676
+ *
13677
+ * @example
13678
+ * cn-hangzhou
13679
+ */
13680
+ regionId?: string;
13681
+ /**
13682
+ * @example
13683
+ * gp-ws-*****
13684
+ */
13685
+ workspaceId?: string;
13686
+ static names(): {
13687
+ [key: string]: string;
13688
+ };
13689
+ static types(): {
13690
+ [key: string]: any;
13691
+ };
13692
+ validate(): void;
13693
+ constructor(map?: {
13694
+ [key: string]: any;
13695
+ });
13696
+ }
13697
+ export declare class DeleteIndexResponseBody extends $dara.Model {
13698
+ /**
13699
+ * @example
13700
+ * success
13701
+ */
13702
+ message?: string;
13703
+ /**
13704
+ * @example
13705
+ * ABB39CC3-4488-4857-905D-2E4A051D0521
13706
+ */
13707
+ requestId?: string;
13708
+ /**
13709
+ * @example
13710
+ * success
13711
+ */
13712
+ status?: string;
13713
+ static names(): {
13714
+ [key: string]: string;
13715
+ };
13716
+ static types(): {
13717
+ [key: string]: any;
13718
+ };
13719
+ validate(): void;
13720
+ constructor(map?: {
13721
+ [key: string]: any;
13722
+ });
13723
+ }
13724
+ export declare class DeleteIndexResponse extends $dara.Model {
13725
+ headers?: {
13726
+ [key: string]: string;
13727
+ };
13728
+ statusCode?: number;
13729
+ body?: DeleteIndexResponseBody;
13730
+ static names(): {
13731
+ [key: string]: string;
13732
+ };
13733
+ static types(): {
13734
+ [key: string]: any;
13735
+ };
13736
+ validate(): void;
13737
+ constructor(map?: {
13738
+ [key: string]: any;
13739
+ });
13740
+ }
13317
13741
  export declare class DeleteJDBCDataSourceRequest extends $dara.Model {
13318
13742
  /**
13319
13743
  * @remarks
@@ -14823,6 +15247,114 @@ export declare class DescribeCollectionResponse extends $dara.Model {
14823
15247
  [key: string]: any;
14824
15248
  });
14825
15249
  }
15250
+ export declare class DescribeCreateIndexJobRequest extends $dara.Model {
15251
+ /**
15252
+ * @remarks
15253
+ * This parameter is required.
15254
+ *
15255
+ * @example
15256
+ * testcollection
15257
+ */
15258
+ collection?: string;
15259
+ /**
15260
+ * @example
15261
+ * gp-xxxxxxxxx
15262
+ */
15263
+ DBInstanceId?: string;
15264
+ /**
15265
+ * @remarks
15266
+ * This parameter is required.
15267
+ *
15268
+ * @example
15269
+ * 231460f8-75dc-405e-a669-0c5204887e91
15270
+ */
15271
+ jobId?: string;
15272
+ /**
15273
+ * @remarks
15274
+ * This parameter is required.
15275
+ *
15276
+ * @example
15277
+ * mynamespace
15278
+ */
15279
+ namespace?: string;
15280
+ /**
15281
+ * @remarks
15282
+ * This parameter is required.
15283
+ *
15284
+ * @example
15285
+ * testpassword
15286
+ */
15287
+ namespacePassword?: string;
15288
+ ownerId?: number;
15289
+ /**
15290
+ * @remarks
15291
+ * This parameter is required.
15292
+ *
15293
+ * @example
15294
+ * cn-hangzhou
15295
+ */
15296
+ regionId?: string;
15297
+ /**
15298
+ * @example
15299
+ * gp-ws-*****
15300
+ */
15301
+ workspaceId?: string;
15302
+ static names(): {
15303
+ [key: string]: string;
15304
+ };
15305
+ static types(): {
15306
+ [key: string]: any;
15307
+ };
15308
+ validate(): void;
15309
+ constructor(map?: {
15310
+ [key: string]: any;
15311
+ });
15312
+ }
15313
+ export declare class DescribeCreateIndexJobResponseBody extends $dara.Model {
15314
+ job?: DescribeCreateIndexJobResponseBodyJob;
15315
+ /**
15316
+ * @example
15317
+ * success
15318
+ */
15319
+ message?: string;
15320
+ /**
15321
+ * @example
15322
+ * ABB39CC3-4488-4857-905D-2E4A051D0521
15323
+ */
15324
+ requestId?: string;
15325
+ /**
15326
+ * @example
15327
+ * success
15328
+ */
15329
+ status?: string;
15330
+ static names(): {
15331
+ [key: string]: string;
15332
+ };
15333
+ static types(): {
15334
+ [key: string]: any;
15335
+ };
15336
+ validate(): void;
15337
+ constructor(map?: {
15338
+ [key: string]: any;
15339
+ });
15340
+ }
15341
+ export declare class DescribeCreateIndexJobResponse extends $dara.Model {
15342
+ headers?: {
15343
+ [key: string]: string;
15344
+ };
15345
+ statusCode?: number;
15346
+ body?: DescribeCreateIndexJobResponseBody;
15347
+ static names(): {
15348
+ [key: string]: string;
15349
+ };
15350
+ static types(): {
15351
+ [key: string]: any;
15352
+ };
15353
+ validate(): void;
15354
+ constructor(map?: {
15355
+ [key: string]: any;
15356
+ });
15357
+ }
14826
15358
  export declare class DescribeDBClusterNodeRequest extends $dara.Model {
14827
15359
  /**
14828
15360
  * @remarks
@@ -19188,6 +19720,133 @@ export declare class DescribeIMVInfosResponse extends $dara.Model {
19188
19720
  [key: string]: any;
19189
19721
  });
19190
19722
  }
19723
+ export declare class DescribeIndexRequest extends $dara.Model {
19724
+ /**
19725
+ * @remarks
19726
+ * This parameter is required.
19727
+ *
19728
+ * @example
19729
+ * testcollection
19730
+ */
19731
+ collection?: string;
19732
+ /**
19733
+ * @example
19734
+ * gp-xxxxxxxxx
19735
+ */
19736
+ DBInstanceId?: string;
19737
+ /**
19738
+ * @remarks
19739
+ * This parameter is required.
19740
+ *
19741
+ * @example
19742
+ * testindex
19743
+ */
19744
+ indexName?: string;
19745
+ /**
19746
+ * @remarks
19747
+ * This parameter is required.
19748
+ *
19749
+ * @example
19750
+ * mynamespace
19751
+ */
19752
+ namespace?: string;
19753
+ /**
19754
+ * @remarks
19755
+ * This parameter is required.
19756
+ *
19757
+ * @example
19758
+ * testpassword
19759
+ */
19760
+ namespacePassword?: string;
19761
+ ownerId?: number;
19762
+ /**
19763
+ * @remarks
19764
+ * This parameter is required.
19765
+ *
19766
+ * @example
19767
+ * cn-hangzhou
19768
+ */
19769
+ regionId?: string;
19770
+ /**
19771
+ * @example
19772
+ * gp-ws-*****
19773
+ */
19774
+ workspaceId?: string;
19775
+ static names(): {
19776
+ [key: string]: string;
19777
+ };
19778
+ static types(): {
19779
+ [key: string]: any;
19780
+ };
19781
+ validate(): void;
19782
+ constructor(map?: {
19783
+ [key: string]: any;
19784
+ });
19785
+ }
19786
+ export declare class DescribeIndexResponseBody extends $dara.Model {
19787
+ /**
19788
+ * @example
19789
+ * testcollection
19790
+ */
19791
+ collection?: string;
19792
+ /**
19793
+ * @example
19794
+ * CREATE INDEX testindex ON mynamespace. testcollection
19795
+ */
19796
+ indexDef?: string;
19797
+ /**
19798
+ * @example
19799
+ * testindex
19800
+ */
19801
+ indexName?: string;
19802
+ /**
19803
+ * @example
19804
+ * success
19805
+ */
19806
+ message?: string;
19807
+ /**
19808
+ * @example
19809
+ * mynamespace
19810
+ */
19811
+ namespace?: string;
19812
+ /**
19813
+ * @example
19814
+ * ABB39CC3-4488-4857-905D-2E4A051D0521
19815
+ */
19816
+ requestId?: string;
19817
+ /**
19818
+ * @example
19819
+ * success
19820
+ */
19821
+ status?: string;
19822
+ static names(): {
19823
+ [key: string]: string;
19824
+ };
19825
+ static types(): {
19826
+ [key: string]: any;
19827
+ };
19828
+ validate(): void;
19829
+ constructor(map?: {
19830
+ [key: string]: any;
19831
+ });
19832
+ }
19833
+ export declare class DescribeIndexResponse extends $dara.Model {
19834
+ headers?: {
19835
+ [key: string]: string;
19836
+ };
19837
+ statusCode?: number;
19838
+ body?: DescribeIndexResponseBody;
19839
+ static names(): {
19840
+ [key: string]: string;
19841
+ };
19842
+ static types(): {
19843
+ [key: string]: any;
19844
+ };
19845
+ validate(): void;
19846
+ constructor(map?: {
19847
+ [key: string]: any;
19848
+ });
19849
+ }
19191
19850
  export declare class DescribeJDBCDataSourceRequest extends $dara.Model {
19192
19851
  /**
19193
19852
  * @remarks
@@ -24889,6 +25548,109 @@ export declare class ListExternalDataSourcesResponse extends $dara.Model {
24889
25548
  [key: string]: any;
24890
25549
  });
24891
25550
  }
25551
+ export declare class ListIndicesRequest extends $dara.Model {
25552
+ /**
25553
+ * @remarks
25554
+ * This parameter is required.
25555
+ *
25556
+ * @example
25557
+ * testcollection
25558
+ */
25559
+ collection?: string;
25560
+ /**
25561
+ * @example
25562
+ * gp-xxxxxxxxx
25563
+ */
25564
+ DBInstanceId?: string;
25565
+ /**
25566
+ * @remarks
25567
+ * This parameter is required.
25568
+ *
25569
+ * @example
25570
+ * mynamespace
25571
+ */
25572
+ namespace?: string;
25573
+ /**
25574
+ * @remarks
25575
+ * This parameter is required.
25576
+ *
25577
+ * @example
25578
+ * testpassword
25579
+ */
25580
+ namespacePassword?: string;
25581
+ ownerId?: number;
25582
+ /**
25583
+ * @remarks
25584
+ * This parameter is required.
25585
+ *
25586
+ * @example
25587
+ * cn-hangzhou
25588
+ */
25589
+ regionId?: string;
25590
+ /**
25591
+ * @example
25592
+ * gp-ws-*****
25593
+ */
25594
+ workspaceId?: string;
25595
+ static names(): {
25596
+ [key: string]: string;
25597
+ };
25598
+ static types(): {
25599
+ [key: string]: any;
25600
+ };
25601
+ validate(): void;
25602
+ constructor(map?: {
25603
+ [key: string]: any;
25604
+ });
25605
+ }
25606
+ export declare class ListIndicesResponseBody extends $dara.Model {
25607
+ indices?: ListIndicesResponseBodyIndices;
25608
+ /**
25609
+ * @example
25610
+ * success
25611
+ */
25612
+ message?: string;
25613
+ /**
25614
+ * @remarks
25615
+ * Request ID.
25616
+ *
25617
+ * @example
25618
+ * ABB39CC3-4488-4857-905D-2E4A051D0521
25619
+ */
25620
+ requestId?: string;
25621
+ /**
25622
+ * @example
25623
+ * success
25624
+ */
25625
+ status?: string;
25626
+ static names(): {
25627
+ [key: string]: string;
25628
+ };
25629
+ static types(): {
25630
+ [key: string]: any;
25631
+ };
25632
+ validate(): void;
25633
+ constructor(map?: {
25634
+ [key: string]: any;
25635
+ });
25636
+ }
25637
+ export declare class ListIndicesResponse extends $dara.Model {
25638
+ headers?: {
25639
+ [key: string]: string;
25640
+ };
25641
+ statusCode?: number;
25642
+ body?: ListIndicesResponseBody;
25643
+ static names(): {
25644
+ [key: string]: string;
25645
+ };
25646
+ static types(): {
25647
+ [key: string]: any;
25648
+ };
25649
+ validate(): void;
25650
+ constructor(map?: {
25651
+ [key: string]: any;
25652
+ });
25653
+ }
24892
25654
  export declare class ListInstanceExtensionsRequest extends $dara.Model {
24893
25655
  /**
24894
25656
  * @remarks
@@ -34298,6 +35060,21 @@ export default class Client extends OpenApi {
34298
35060
  * @returns BindDBResourceGroupWithRoleResponse
34299
35061
  */
34300
35062
  bindDBResourceGroupWithRole(request: BindDBResourceGroupWithRoleRequest): Promise<BindDBResourceGroupWithRoleResponse>;
35063
+ /**
35064
+ * 取消创建索引任务
35065
+ *
35066
+ * @param request - CancelCreateIndexJobRequest
35067
+ * @param runtime - runtime options for this request RuntimeOptions
35068
+ * @returns CancelCreateIndexJobResponse
35069
+ */
35070
+ cancelCreateIndexJobWithOptions(request: CancelCreateIndexJobRequest, runtime: $dara.RuntimeOptions): Promise<CancelCreateIndexJobResponse>;
35071
+ /**
35072
+ * 取消创建索引任务
35073
+ *
35074
+ * @param request - CancelCreateIndexJobRequest
35075
+ * @returns CancelCreateIndexJobResponse
35076
+ */
35077
+ cancelCreateIndexJob(request: CancelCreateIndexJobRequest): Promise<CancelCreateIndexJobResponse>;
34301
35078
  /**
34302
35079
  * Cancels an asynchronous document upload job based on the job ID.
34303
35080
  *
@@ -34597,6 +35374,21 @@ export default class Client extends OpenApi {
34597
35374
  * @returns CreateHadoopDataSourceResponse
34598
35375
  */
34599
35376
  createHadoopDataSource(request: CreateHadoopDataSourceRequest): Promise<CreateHadoopDataSourceResponse>;
35377
+ /**
35378
+ * 创建索引
35379
+ *
35380
+ * @param request - CreateIndexRequest
35381
+ * @param runtime - runtime options for this request RuntimeOptions
35382
+ * @returns CreateIndexResponse
35383
+ */
35384
+ createIndexWithOptions(request: CreateIndexRequest, runtime: $dara.RuntimeOptions): Promise<CreateIndexResponse>;
35385
+ /**
35386
+ * 创建索引
35387
+ *
35388
+ * @param request - CreateIndexRequest
35389
+ * @returns CreateIndexResponse
35390
+ */
35391
+ createIndex(request: CreateIndexRequest): Promise<CreateIndexResponse>;
34600
35392
  /**
34601
35393
  * Creates a JDBC data source.
34602
35394
  *
@@ -34957,6 +35749,21 @@ export default class Client extends OpenApi {
34957
35749
  * @returns DeleteHadoopDataSourceResponse
34958
35750
  */
34959
35751
  deleteHadoopDataSource(request: DeleteHadoopDataSourceRequest): Promise<DeleteHadoopDataSourceResponse>;
35752
+ /**
35753
+ * 删除索引
35754
+ *
35755
+ * @param request - DeleteIndexRequest
35756
+ * @param runtime - runtime options for this request RuntimeOptions
35757
+ * @returns DeleteIndexResponse
35758
+ */
35759
+ deleteIndexWithOptions(request: DeleteIndexRequest, runtime: $dara.RuntimeOptions): Promise<DeleteIndexResponse>;
35760
+ /**
35761
+ * 删除索引
35762
+ *
35763
+ * @param request - DeleteIndexRequest
35764
+ * @returns DeleteIndexResponse
35765
+ */
35766
+ deleteIndex(request: DeleteIndexRequest): Promise<DeleteIndexResponse>;
34960
35767
  /**
34961
35768
  * Delete JDBC data source
34962
35769
  *
@@ -35193,6 +36000,21 @@ export default class Client extends OpenApi {
35193
36000
  * @returns DescribeCollectionResponse
35194
36001
  */
35195
36002
  describeCollection(request: DescribeCollectionRequest): Promise<DescribeCollectionResponse>;
36003
+ /**
36004
+ * 获取创建索引任务
36005
+ *
36006
+ * @param request - DescribeCreateIndexJobRequest
36007
+ * @param runtime - runtime options for this request RuntimeOptions
36008
+ * @returns DescribeCreateIndexJobResponse
36009
+ */
36010
+ describeCreateIndexJobWithOptions(request: DescribeCreateIndexJobRequest, runtime: $dara.RuntimeOptions): Promise<DescribeCreateIndexJobResponse>;
36011
+ /**
36012
+ * 获取创建索引任务
36013
+ *
36014
+ * @param request - DescribeCreateIndexJobRequest
36015
+ * @returns DescribeCreateIndexJobResponse
36016
+ */
36017
+ describeCreateIndexJob(request: DescribeCreateIndexJobRequest): Promise<DescribeCreateIndexJobResponse>;
35196
36018
  /**
35197
36019
  * Queries a list of nodes in an AnalyticDB for PostgreSQL instance.
35198
36020
  *
@@ -35904,6 +36726,21 @@ export default class Client extends OpenApi {
35904
36726
  * @returns DescribeIMVInfosResponse
35905
36727
  */
35906
36728
  describeIMVInfos(request: DescribeIMVInfosRequest): Promise<DescribeIMVInfosResponse>;
36729
+ /**
36730
+ * 获取索引详情
36731
+ *
36732
+ * @param request - DescribeIndexRequest
36733
+ * @param runtime - runtime options for this request RuntimeOptions
36734
+ * @returns DescribeIndexResponse
36735
+ */
36736
+ describeIndexWithOptions(request: DescribeIndexRequest, runtime: $dara.RuntimeOptions): Promise<DescribeIndexResponse>;
36737
+ /**
36738
+ * 获取索引详情
36739
+ *
36740
+ * @param request - DescribeIndexRequest
36741
+ * @returns DescribeIndexResponse
36742
+ */
36743
+ describeIndex(request: DescribeIndexRequest): Promise<DescribeIndexResponse>;
35907
36744
  /**
35908
36745
  * Queries the configurations of a Java Database Connectivity (JDBC) data source.
35909
36746
  *
@@ -36657,6 +37494,21 @@ export default class Client extends OpenApi {
36657
37494
  * @returns ListExternalDataSourcesResponse
36658
37495
  */
36659
37496
  listExternalDataSources(request: ListExternalDataSourcesRequest): Promise<ListExternalDataSourcesResponse>;
37497
+ /**
37498
+ * 获取索引列表
37499
+ *
37500
+ * @param request - ListIndicesRequest
37501
+ * @param runtime - runtime options for this request RuntimeOptions
37502
+ * @returns ListIndicesResponse
37503
+ */
37504
+ listIndicesWithOptions(request: ListIndicesRequest, runtime: $dara.RuntimeOptions): Promise<ListIndicesResponse>;
37505
+ /**
37506
+ * 获取索引列表
37507
+ *
37508
+ * @param request - ListIndicesRequest
37509
+ * @returns ListIndicesResponse
37510
+ */
37511
+ listIndices(request: ListIndicesRequest): Promise<ListIndicesResponse>;
36660
37512
  /**
36661
37513
  * Queries a list of extensions.
36662
37514
  *