@alicloud/polardbx20200202 2.0.2 → 2.2.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
@@ -3049,6 +3049,95 @@ export declare class DescribeEventsResponse extends $tea.Model {
3049
3049
  [key: string]: any;
3050
3050
  });
3051
3051
  }
3052
+ export declare class DescribeGdnInstancesRequest extends $tea.Model {
3053
+ /**
3054
+ * @example
3055
+ * gdn_id、
3056
+ * polarx_id
3057
+ */
3058
+ filterType?: string;
3059
+ /**
3060
+ * @example
3061
+ * gdn-***、
3062
+ * pxc-***
3063
+ */
3064
+ filterValue?: string;
3065
+ /**
3066
+ * @remarks
3067
+ * GDN ID。
3068
+ *
3069
+ * @example
3070
+ * gdn-***
3071
+ */
3072
+ GDNId?: string;
3073
+ /**
3074
+ * @example
3075
+ * 50
3076
+ */
3077
+ pageNum?: string;
3078
+ /**
3079
+ * @example
3080
+ * 30
3081
+ */
3082
+ pageSize?: string;
3083
+ /**
3084
+ * @example
3085
+ * cn-hangzhou
3086
+ */
3087
+ regionId?: string;
3088
+ static names(): {
3089
+ [key: string]: string;
3090
+ };
3091
+ static types(): {
3092
+ [key: string]: any;
3093
+ };
3094
+ constructor(map?: {
3095
+ [key: string]: any;
3096
+ });
3097
+ }
3098
+ export declare class DescribeGdnInstancesResponseBody extends $tea.Model {
3099
+ data?: DescribeGdnInstancesResponseBodyData;
3100
+ /**
3101
+ * @example
3102
+ * success
3103
+ */
3104
+ message?: string;
3105
+ /**
3106
+ * @example
3107
+ * 7B044BD1-6402-5DE9-9AED-63D15A994E37
3108
+ */
3109
+ requestId?: string;
3110
+ /**
3111
+ * @example
3112
+ * True
3113
+ */
3114
+ success?: boolean;
3115
+ static names(): {
3116
+ [key: string]: string;
3117
+ };
3118
+ static types(): {
3119
+ [key: string]: any;
3120
+ };
3121
+ constructor(map?: {
3122
+ [key: string]: any;
3123
+ });
3124
+ }
3125
+ export declare class DescribeGdnInstancesResponse extends $tea.Model {
3126
+ headers?: {
3127
+ [key: string]: string;
3128
+ };
3129
+ statusCode?: number;
3130
+ body?: DescribeGdnInstancesResponseBody;
3131
+ static names(): {
3132
+ [key: string]: string;
3133
+ };
3134
+ static types(): {
3135
+ [key: string]: any;
3136
+ };
3137
+ constructor(map?: {
3138
+ [key: string]: any;
3139
+ });
3140
+ }
3052
3141
  export declare class DescribeOpenBackupSetRequest extends $tea.Model {
3053
3142
  /**
3054
3143
  * @remarks
@@ -3431,6 +3520,133 @@ export declare class DescribeSecurityIpsResponse extends $tea.Model {
3431
3520
  [key: string]: any;
3432
3521
  });
3433
3522
  }
3523
+ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
3524
+ /**
3525
+ * @remarks
3526
+ * This parameter is required.
3527
+ *
3528
+ * @example
3529
+ * polarx_cn
3530
+ */
3531
+ characterType?: string;
3532
+ /**
3533
+ * @remarks
3534
+ * This parameter is required.
3535
+ *
3536
+ * @example
3537
+ * pxc-bjxxxxxxxx
3538
+ */
3539
+ DBInstanceName?: string;
3540
+ /**
3541
+ * @example
3542
+ * testdb
3543
+ */
3544
+ DBName?: string;
3545
+ /**
3546
+ * @example
3547
+ * pxc-i-mezcj4ejdz
3548
+ */
3549
+ DBNodeIds?: string;
3550
+ /**
3551
+ * @remarks
3552
+ * This parameter is required.
3553
+ *
3554
+ * @example
3555
+ * 2024-11-22T02:22Z
3556
+ */
3557
+ endTime?: string;
3558
+ /**
3559
+ * @example
3560
+ * 1
3561
+ */
3562
+ page?: number;
3563
+ /**
3564
+ * @example
3565
+ * 30
3566
+ */
3567
+ pageSize?: number;
3568
+ /**
3569
+ * @remarks
3570
+ * This parameter is required.
3571
+ *
3572
+ * @example
3573
+ * cn-hangzhou
3574
+ */
3575
+ regionId?: string;
3576
+ /**
3577
+ * @remarks
3578
+ * This parameter is required.
3579
+ *
3580
+ * @example
3581
+ * 2024-10-09T02:26
3582
+ */
3583
+ startTime?: string;
3584
+ static names(): {
3585
+ [key: string]: string;
3586
+ };
3587
+ static types(): {
3588
+ [key: string]: any;
3589
+ };
3590
+ constructor(map?: {
3591
+ [key: string]: any;
3592
+ });
3593
+ }
3594
+ export declare class DescribeSlowLogRecordsResponseBody extends $tea.Model {
3595
+ /**
3596
+ * @example
3597
+ * pxc-********
3598
+ */
3599
+ DBInstanceId?: string;
3600
+ items?: DescribeSlowLogRecordsResponseBodyItems[];
3601
+ /**
3602
+ * @example
3603
+ * 1
3604
+ */
3605
+ pageNumber?: string;
3606
+ /**
3607
+ * @example
3608
+ * 30
3609
+ */
3610
+ pageRecordCount?: string;
3611
+ /**
3612
+ * @remarks
3613
+ * Id of the request
3614
+ *
3615
+ * @example
3616
+ * C458B1E8-1683-3645-B154-6BA32080EEA
3617
+ */
3618
+ requestId?: string;
3619
+ /**
3620
+ * @example
3621
+ * 3
3622
+ */
3623
+ totalCount?: string;
3624
+ static names(): {
3625
+ [key: string]: string;
3626
+ };
3627
+ static types(): {
3628
+ [key: string]: any;
3629
+ };
3630
+ constructor(map?: {
3631
+ [key: string]: any;
3632
+ });
3633
+ }
3634
+ export declare class DescribeSlowLogRecordsResponse extends $tea.Model {
3635
+ headers?: {
3636
+ [key: string]: string;
3637
+ };
3638
+ statusCode?: number;
3639
+ body?: DescribeSlowLogRecordsResponseBody;
3640
+ static names(): {
3641
+ [key: string]: string;
3642
+ };
3643
+ static types(): {
3644
+ [key: string]: any;
3645
+ };
3646
+ constructor(map?: {
3647
+ [key: string]: any;
3648
+ });
3649
+ }
3434
3650
  export declare class DescribeTagsRequest extends $tea.Model {
3435
3651
  /**
3436
3652
  * @example
@@ -5149,33 +5365,28 @@ export declare class SwitchDBInstanceHAResponse extends $tea.Model {
5149
5365
  [key: string]: any;
5150
5366
  });
5151
5367
  }
5152
- export declare class TagResourcesRequest extends $tea.Model {
5368
+ export declare class SwitchGdnMemberRoleRequest extends $tea.Model {
5153
5369
  /**
5154
5370
  * @remarks
5155
5371
  * This parameter is required.
5156
5372
  *
5157
5373
  * @example
5158
- * cn-hangzhou
5159
- */
5160
- regionId?: string;
5161
- /**
5162
- * @remarks
5163
- * This parameter is required.
5374
+ * pxc-********
5164
5375
  */
5165
- resourceId?: string[];
5376
+ DBInstanceName?: string;
5166
5377
  /**
5167
5378
  * @remarks
5168
5379
  * This parameter is required.
5169
5380
  *
5170
5381
  * @example
5171
- * PolarDBXInstance
5382
+ * cn-hangzhou
5172
5383
  */
5173
- resourceType?: string;
5384
+ regionId?: string;
5174
5385
  /**
5175
5386
  * @remarks
5176
5387
  * This parameter is required.
5177
5388
  */
5178
- tag?: TagResourcesRequestTag[];
5389
+ switchMode?: string;
5179
5390
  static names(): {
5180
5391
  [key: string]: string;
5181
5392
  };
@@ -5186,15 +5397,26 @@ export declare class TagResourcesRequest extends $tea.Model {
5186
5397
  [key: string]: any;
5187
5398
  });
5188
5399
  }
5189
- export declare class TagResourcesResponseBody extends $tea.Model {
5400
+ export declare class SwitchGdnMemberRoleResponseBody extends $tea.Model {
5401
+ data?: SwitchGdnMemberRoleResponseBodyData;
5402
+ /**
5403
+ * @example
5404
+ * success
5405
+ */
5406
+ message?: string;
5190
5407
  /**
5191
5408
  * @remarks
5192
- * requestId
5409
+ * Id of the request
5193
5410
  *
5194
5411
  * @example
5195
- * xxxx-xxxx
5412
+ * 9B2F3840-5C98-475C-B269-2D5C3A31797C
5196
5413
  */
5197
5414
  requestId?: string;
5415
+ /**
5416
+ * @example
5417
+ * true
5418
+ */
5419
+ success?: boolean;
5198
5420
  static names(): {
5199
5421
  [key: string]: string;
5200
5422
  };
@@ -5205,12 +5427,12 @@ export declare class TagResourcesResponseBody extends $tea.Model {
5205
5427
  [key: string]: any;
5206
5428
  });
5207
5429
  }
5208
- export declare class TagResourcesResponse extends $tea.Model {
5430
+ export declare class SwitchGdnMemberRoleResponse extends $tea.Model {
5209
5431
  headers?: {
5210
5432
  [key: string]: string;
5211
5433
  };
5212
5434
  statusCode?: number;
5213
- body?: TagResourcesResponseBody;
5435
+ body?: SwitchGdnMemberRoleResponseBody;
5214
5436
  static names(): {
5215
5437
  [key: string]: string;
5216
5438
  };
@@ -5221,8 +5443,7 @@ export declare class TagResourcesResponse extends $tea.Model {
5221
5443
  [key: string]: any;
5222
5444
  });
5223
5445
  }
5224
- export declare class UntagResourcesRequest extends $tea.Model {
5225
- all?: boolean;
5446
+ export declare class TagResourcesRequest extends $tea.Model {
5226
5447
  /**
5227
5448
  * @remarks
5228
5449
  * This parameter is required.
@@ -5244,7 +5465,11 @@ export declare class UntagResourcesRequest extends $tea.Model {
5244
5465
  * PolarDBXInstance
5245
5466
  */
5246
5467
  resourceType?: string;
5247
- tagKey?: string[];
5468
+ /**
5469
+ * @remarks
5470
+ * This parameter is required.
5471
+ */
5472
+ tag?: TagResourcesRequestTag[];
5248
5473
  static names(): {
5249
5474
  [key: string]: string;
5250
5475
  };
@@ -5255,13 +5480,13 @@ export declare class UntagResourcesRequest extends $tea.Model {
5255
5480
  [key: string]: any;
5256
5481
  });
5257
5482
  }
5258
- export declare class UntagResourcesResponseBody extends $tea.Model {
5483
+ export declare class TagResourcesResponseBody extends $tea.Model {
5259
5484
  /**
5260
5485
  * @remarks
5261
- * RequestId
5486
+ * requestId
5262
5487
  *
5263
5488
  * @example
5264
- * xxxxxx
5489
+ * xxxx-xxxx
5265
5490
  */
5266
5491
  requestId?: string;
5267
5492
  static names(): {
@@ -5274,12 +5499,12 @@ export declare class UntagResourcesResponseBody extends $tea.Model {
5274
5499
  [key: string]: any;
5275
5500
  });
5276
5501
  }
5277
- export declare class UntagResourcesResponse extends $tea.Model {
5502
+ export declare class TagResourcesResponse extends $tea.Model {
5278
5503
  headers?: {
5279
5504
  [key: string]: string;
5280
5505
  };
5281
5506
  statusCode?: number;
5282
- body?: UntagResourcesResponseBody;
5507
+ body?: TagResourcesResponseBody;
5283
5508
  static names(): {
5284
5509
  [key: string]: string;
5285
5510
  };
@@ -5290,20 +5515,89 @@ export declare class UntagResourcesResponse extends $tea.Model {
5290
5515
  [key: string]: any;
5291
5516
  });
5292
5517
  }
5293
- export declare class UpdateBackupPolicyRequest extends $tea.Model {
5518
+ export declare class UntagResourcesRequest extends $tea.Model {
5519
+ all?: boolean;
5294
5520
  /**
5521
+ * @remarks
5522
+ * This parameter is required.
5523
+ *
5295
5524
  * @example
5296
- * 1001000
5525
+ * cn-hangzhou
5297
5526
  */
5298
- backupPeriod?: string;
5527
+ regionId?: string;
5299
5528
  /**
5300
- * @example
5301
- * 03:00Z
5529
+ * @remarks
5530
+ * This parameter is required.
5302
5531
  */
5303
- backupPlanBegin?: string;
5532
+ resourceId?: string[];
5304
5533
  /**
5534
+ * @remarks
5535
+ * This parameter is required.
5536
+ *
5305
5537
  * @example
5306
- * 30
5538
+ * PolarDBXInstance
5539
+ */
5540
+ resourceType?: string;
5541
+ tagKey?: string[];
5542
+ static names(): {
5543
+ [key: string]: string;
5544
+ };
5545
+ static types(): {
5546
+ [key: string]: any;
5547
+ };
5548
+ constructor(map?: {
5549
+ [key: string]: any;
5550
+ });
5551
+ }
5552
+ export declare class UntagResourcesResponseBody extends $tea.Model {
5553
+ /**
5554
+ * @remarks
5555
+ * RequestId
5556
+ *
5557
+ * @example
5558
+ * xxxxxx
5559
+ */
5560
+ requestId?: string;
5561
+ static names(): {
5562
+ [key: string]: string;
5563
+ };
5564
+ static types(): {
5565
+ [key: string]: any;
5566
+ };
5567
+ constructor(map?: {
5568
+ [key: string]: any;
5569
+ });
5570
+ }
5571
+ export declare class UntagResourcesResponse extends $tea.Model {
5572
+ headers?: {
5573
+ [key: string]: string;
5574
+ };
5575
+ statusCode?: number;
5576
+ body?: UntagResourcesResponseBody;
5577
+ static names(): {
5578
+ [key: string]: string;
5579
+ };
5580
+ static types(): {
5581
+ [key: string]: any;
5582
+ };
5583
+ constructor(map?: {
5584
+ [key: string]: any;
5585
+ });
5586
+ }
5587
+ export declare class UpdateBackupPolicyRequest extends $tea.Model {
5588
+ /**
5589
+ * @example
5590
+ * 1001000
5591
+ */
5592
+ backupPeriod?: string;
5593
+ /**
5594
+ * @example
5595
+ * 03:00Z
5596
+ */
5597
+ backupPlanBegin?: string;
5598
+ /**
5599
+ * @example
5600
+ * 30
5307
5601
  */
5308
5602
  backupSetRetention?: number;
5309
5603
  /**
@@ -7781,6 +8075,177 @@ export declare class DescribeEventsResponseBodyEventItems extends $tea.Model {
7781
8075
  [key: string]: any;
7782
8076
  });
7783
8077
  }
8078
+ export declare class DescribeGdnInstancesResponseBodyDataGdnInstanceListMemberList extends $tea.Model {
8079
+ /**
8080
+ * @example
8081
+ * polarx.x4.medium.2e
8082
+ */
8083
+ classCode?: string;
8084
+ /**
8085
+ * @example
8086
+ * polarx.x4.medium.2e
8087
+ */
8088
+ cnNodeClassCode?: string;
8089
+ /**
8090
+ * @example
8091
+ * 2
8092
+ */
8093
+ cnNodeCount?: string;
8094
+ /**
8095
+ * @example
8096
+ * drds_polarxpre_public_cn
8097
+ */
8098
+ commodityCode?: string;
8099
+ /**
8100
+ * @example
8101
+ * mysql.n4.medium.25
8102
+ */
8103
+ dnNodeClassCode?: string;
8104
+ /**
8105
+ * @example
8106
+ * 2
8107
+ */
8108
+ dnNodeCount?: string;
8109
+ /**
8110
+ * @example
8111
+ * 2025-01-02T13:11:10.000+0000
8112
+ */
8113
+ expireTime?: string;
8114
+ /**
8115
+ * @example
8116
+ * 2025-01-02T13:11:10.000+0000
8117
+ */
8118
+ gmtCreated?: string;
8119
+ /**
8120
+ * @example
8121
+ * pxc-***
8122
+ */
8123
+ memberName?: string;
8124
+ /**
8125
+ * @example
8126
+ * Prepaid
8127
+ */
8128
+ payType?: string;
8129
+ /**
8130
+ * @example
8131
+ * cn-zhangjiakou-a
8132
+ */
8133
+ primaryZone?: string;
8134
+ /**
8135
+ * @example
8136
+ * cn-hangzhou
8137
+ */
8138
+ regionId?: string;
8139
+ /**
8140
+ * @example
8141
+ * primary、
8142
+ * standby
8143
+ */
8144
+ role?: string;
8145
+ /**
8146
+ * @example
8147
+ * cn-zhangjiakou-a
8148
+ */
8149
+ secondaryZone?: string;
8150
+ /**
8151
+ * @example
8152
+ * 1s
8153
+ */
8154
+ secondsBehindMaster?: string;
8155
+ /**
8156
+ * @example
8157
+ * Creating
8158
+ */
8159
+ status?: string;
8160
+ /**
8161
+ * @example
8162
+ * cn-zhangjiakou-a
8163
+ */
8164
+ tertiaryZone?: string;
8165
+ /**
8166
+ * @example
8167
+ * cn-zhangjiakou-a
8168
+ */
8169
+ zoneId?: string;
8170
+ static names(): {
8171
+ [key: string]: string;
8172
+ };
8173
+ static types(): {
8174
+ [key: string]: any;
8175
+ };
8176
+ constructor(map?: {
8177
+ [key: string]: any;
8178
+ });
8179
+ }
8180
+ export declare class DescribeGdnInstancesResponseBodyDataGdnInstanceList extends $tea.Model {
8181
+ /**
8182
+ * @example
8183
+ * test
8184
+ */
8185
+ description?: string;
8186
+ /**
8187
+ * @example
8188
+ * gdn-***
8189
+ */
8190
+ gdnInstanceName?: string;
8191
+ /**
8192
+ * @example
8193
+ * 2025-01-02T13:11:10.000+0000
8194
+ */
8195
+ gmtCreated?: string;
8196
+ memberList?: DescribeGdnInstancesResponseBodyDataGdnInstanceListMemberList[];
8197
+ /**
8198
+ * @example
8199
+ * 5.7
8200
+ */
8201
+ mysqlVersion?: string;
8202
+ /**
8203
+ * @example
8204
+ * Creating
8205
+ */
8206
+ status?: string;
8207
+ /**
8208
+ * @example
8209
+ * ""
8210
+ */
8211
+ switchHistory?: string;
8212
+ static names(): {
8213
+ [key: string]: string;
8214
+ };
8215
+ static types(): {
8216
+ [key: string]: any;
8217
+ };
8218
+ constructor(map?: {
8219
+ [key: string]: any;
8220
+ });
8221
+ }
8222
+ export declare class DescribeGdnInstancesResponseBodyData extends $tea.Model {
8223
+ gdnInstanceList?: DescribeGdnInstancesResponseBodyDataGdnInstanceList[];
8224
+ /**
8225
+ * @example
8226
+ * 1
8227
+ */
8228
+ pageNumber?: string;
8229
+ /**
8230
+ * @example
8231
+ * 30
8232
+ */
8233
+ pageSize?: string;
8234
+ /**
8235
+ * @example
8236
+ * 130
8237
+ */
8238
+ totalNumber?: string;
8239
+ static names(): {
8240
+ [key: string]: string;
8241
+ };
8242
+ static types(): {
8243
+ [key: string]: any;
8244
+ };
8245
+ constructor(map?: {
8246
+ [key: string]: any;
8247
+ });
8248
+ }
7784
8249
  export declare class DescribeParameterTemplatesResponseBodyDataParameters extends $tea.Model {
7785
8250
  /**
7786
8251
  * @example
@@ -8027,6 +8492,142 @@ export declare class DescribeSecurityIpsResponseBodyData extends $tea.Model {
8027
8492
  [key: string]: any;
8028
8493
  });
8029
8494
  }
8495
+ export declare class DescribeSlowLogRecordsResponseBodyItems extends $tea.Model {
8496
+ /**
8497
+ * @example
8498
+ * pxc-i-xxxx
8499
+ */
8500
+ CNname?: string;
8501
+ /**
8502
+ * @example
8503
+ * dcdev
8504
+ */
8505
+ DBName?: string;
8506
+ /**
8507
+ * @example
8508
+ * tddl:5.4.19-20240927
8509
+ */
8510
+ extension?: string;
8511
+ /**
8512
+ * @example
8513
+ * 0
8514
+ */
8515
+ fail?: string;
8516
+ /**
8517
+ * @example
8518
+ * 1
8519
+ */
8520
+ frows?: string;
8521
+ /**
8522
+ * @example
8523
+ * ****[****] @ [1XX.XX.XX.XX]
8524
+ */
8525
+ hostAddress?: string;
8526
+ /**
8527
+ * @example
8528
+ * pxc-xdb-s-xxxx
8529
+ */
8530
+ insName?: string;
8531
+ /**
8532
+ * @example
8533
+ * 0
8534
+ */
8535
+ isBind?: string;
8536
+ /**
8537
+ * @example
8538
+ * 1
8539
+ */
8540
+ lockTimeMS?: string;
8541
+ /**
8542
+ * @example
8543
+ * ["1"]
8544
+ */
8545
+ params?: string;
8546
+ /**
8547
+ * @example
8548
+ * 10
8549
+ */
8550
+ parseRowCounts?: string;
8551
+ /**
8552
+ * @example
8553
+ * 2024-11-22T02:22:22.444Z
8554
+ */
8555
+ queryStartTime?: string;
8556
+ /**
8557
+ * @example
8558
+ * 3.000
8559
+ */
8560
+ queryTime?: string;
8561
+ /**
8562
+ * @example
8563
+ * 3000.000
8564
+ */
8565
+ queryTimeMS?: string;
8566
+ /**
8567
+ * @example
8568
+ * 20
8569
+ */
8570
+ returnRowCounts?: string;
8571
+ /**
8572
+ * @example
8573
+ * 1
8574
+ */
8575
+ rows?: string;
8576
+ /**
8577
+ * @example
8578
+ * 1
8579
+ */
8580
+ SCNT?: string;
8581
+ /**
8582
+ * @example
8583
+ * c8df07e5d45cd68da8b4771c2016e20b
8584
+ */
8585
+ SQLHash?: string;
8586
+ /**
8587
+ * @example
8588
+ * select * from test
8589
+ */
8590
+ SQLText?: string;
8591
+ /**
8592
+ * @example
8593
+ * select
8594
+ */
8595
+ sqlType?: string;
8596
+ /**
8597
+ * @example
8598
+ * 0
8599
+ */
8600
+ tooLong?: string;
8601
+ /**
8602
+ * @example
8603
+ * 17a5c5c840006000
8604
+ */
8605
+ traceId?: string;
8606
+ /**
8607
+ * @example
8608
+ * XA
8609
+ */
8610
+ transactionPolicy?: string;
8611
+ /**
8612
+ * @example
8613
+ * 17a5c5c840006000
8614
+ */
8615
+ trxId?: string;
8616
+ /**
8617
+ * @example
8618
+ * TP
8619
+ */
8620
+ WT?: string;
8621
+ static names(): {
8622
+ [key: string]: string;
8623
+ };
8624
+ static types(): {
8625
+ [key: string]: any;
8626
+ };
8627
+ constructor(map?: {
8628
+ [key: string]: any;
8629
+ });
8630
+ }
8030
8631
  export declare class DescribeTagsResponseBodyTagInfos extends $tea.Model {
8031
8632
  DBInstanceIds?: string[];
8032
8633
  /**
@@ -8222,6 +8823,22 @@ export declare class ModifyDBInstanceConnectionStringResponseBodyData extends $t
8222
8823
  [key: string]: any;
8223
8824
  });
8224
8825
  }
8826
+ export declare class SwitchGdnMemberRoleResponseBodyData extends $tea.Model {
8827
+ /**
8828
+ * @example
8829
+ * 2209883
8830
+ */
8831
+ taskId?: number;
8832
+ static names(): {
8833
+ [key: string]: string;
8834
+ };
8835
+ static types(): {
8836
+ [key: string]: any;
8837
+ };
8838
+ constructor(map?: {
8839
+ [key: string]: any;
8840
+ });
8841
+ }
8225
8842
  export declare class TagResourcesRequestTag extends $tea.Model {
8226
8843
  /**
8227
8844
  * @example
@@ -8761,6 +9378,21 @@ export default class Client extends OpenApi {
8761
9378
  * @returns DescribeEventsResponse
8762
9379
  */
8763
9380
  describeEvents(request: DescribeEventsRequest): Promise<DescribeEventsResponse>;
9381
+ /**
9382
+ * 获取GDN实例列表
9383
+ *
9384
+ * @param request - DescribeGdnInstancesRequest
9385
+ * @param runtime - runtime options for this request RuntimeOptions
9386
+ * @returns DescribeGdnInstancesResponse
9387
+ */
9388
+ describeGdnInstancesWithOptions(request: DescribeGdnInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeGdnInstancesResponse>;
9389
+ /**
9390
+ * 获取GDN实例列表
9391
+ *
9392
+ * @param request - DescribeGdnInstancesRequest
9393
+ * @returns DescribeGdnInstancesResponse
9394
+ */
9395
+ describeGdnInstances(request: DescribeGdnInstancesRequest): Promise<DescribeGdnInstancesResponse>;
8764
9396
  /**
8765
9397
  * 开放商业备份集
8766
9398
  *
@@ -8830,6 +9462,21 @@ export default class Client extends OpenApi {
8830
9462
  * @returns DescribeSecurityIpsResponse
8831
9463
  */
8832
9464
  describeSecurityIps(request: DescribeSecurityIpsRequest): Promise<DescribeSecurityIpsResponse>;
9465
+ /**
9466
+ * 慢SQL明细
9467
+ *
9468
+ * @param request - DescribeSlowLogRecordsRequest
9469
+ * @param runtime - runtime options for this request RuntimeOptions
9470
+ * @returns DescribeSlowLogRecordsResponse
9471
+ */
9472
+ describeSlowLogRecordsWithOptions(request: DescribeSlowLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSlowLogRecordsResponse>;
9473
+ /**
9474
+ * 慢SQL明细
9475
+ *
9476
+ * @param request - DescribeSlowLogRecordsRequest
9477
+ * @returns DescribeSlowLogRecordsResponse
9478
+ */
9479
+ describeSlowLogRecords(request: DescribeSlowLogRecordsRequest): Promise<DescribeSlowLogRecordsResponse>;
8833
9480
  /**
8834
9481
  * 标签列表查询
8835
9482
  *
@@ -9104,6 +9751,21 @@ export default class Client extends OpenApi {
9104
9751
  * @returns SwitchDBInstanceHAResponse
9105
9752
  */
9106
9753
  switchDBInstanceHA(request: SwitchDBInstanceHARequest): Promise<SwitchDBInstanceHAResponse>;
9754
+ /**
9755
+ * GDN主备切换
9756
+ *
9757
+ * @param request - SwitchGdnMemberRoleRequest
9758
+ * @param runtime - runtime options for this request RuntimeOptions
9759
+ * @returns SwitchGdnMemberRoleResponse
9760
+ */
9761
+ switchGdnMemberRoleWithOptions(request: SwitchGdnMemberRoleRequest, runtime: $Util.RuntimeOptions): Promise<SwitchGdnMemberRoleResponse>;
9762
+ /**
9763
+ * GDN主备切换
9764
+ *
9765
+ * @param request - SwitchGdnMemberRoleRequest
9766
+ * @returns SwitchGdnMemberRoleResponse
9767
+ */
9768
+ switchGdnMemberRole(request: SwitchGdnMemberRoleRequest): Promise<SwitchGdnMemberRoleResponse>;
9107
9769
  /**
9108
9770
  * 打标签接口
9109
9771
  *