@alicloud/adb20211201 3.3.0 → 3.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 +227 -0
- package/dist/client.js +281 -8
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +423 -0
package/dist/client.d.ts
CHANGED
|
@@ -10585,6 +10585,104 @@ export declare class ExistRunningSQLEngineResponse extends $tea.Model {
|
|
|
10585
10585
|
[key: string]: any;
|
|
10586
10586
|
});
|
|
10587
10587
|
}
|
|
10588
|
+
export declare class GetCreateTableSQLRequest extends $tea.Model {
|
|
10589
|
+
/**
|
|
10590
|
+
* @remarks
|
|
10591
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
10592
|
+
*
|
|
10593
|
+
* This parameter is required.
|
|
10594
|
+
*
|
|
10595
|
+
* @example
|
|
10596
|
+
* amv-2ze8mbuai974s4y2
|
|
10597
|
+
*/
|
|
10598
|
+
DBClusterId?: string;
|
|
10599
|
+
ownerAccount?: string;
|
|
10600
|
+
ownerId?: number;
|
|
10601
|
+
/**
|
|
10602
|
+
* @remarks
|
|
10603
|
+
* The region ID of the cluster.
|
|
10604
|
+
*
|
|
10605
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/143074.html) operation to query the most recent region list.
|
|
10606
|
+
*
|
|
10607
|
+
* This parameter is required.
|
|
10608
|
+
*
|
|
10609
|
+
* @example
|
|
10610
|
+
* cn-hangzhou
|
|
10611
|
+
*/
|
|
10612
|
+
regionId?: string;
|
|
10613
|
+
resourceOwnerAccount?: string;
|
|
10614
|
+
resourceOwnerId?: number;
|
|
10615
|
+
/**
|
|
10616
|
+
* @remarks
|
|
10617
|
+
* The name of the database.
|
|
10618
|
+
*
|
|
10619
|
+
* @example
|
|
10620
|
+
* adb_demo
|
|
10621
|
+
*/
|
|
10622
|
+
schemaName?: string;
|
|
10623
|
+
/**
|
|
10624
|
+
* @remarks
|
|
10625
|
+
* The name of the table.
|
|
10626
|
+
*
|
|
10627
|
+
* @example
|
|
10628
|
+
* test
|
|
10629
|
+
*/
|
|
10630
|
+
tableName?: string;
|
|
10631
|
+
static names(): {
|
|
10632
|
+
[key: string]: string;
|
|
10633
|
+
};
|
|
10634
|
+
static types(): {
|
|
10635
|
+
[key: string]: any;
|
|
10636
|
+
};
|
|
10637
|
+
constructor(map?: {
|
|
10638
|
+
[key: string]: any;
|
|
10639
|
+
});
|
|
10640
|
+
}
|
|
10641
|
+
export declare class GetCreateTableSQLResponseBody extends $tea.Model {
|
|
10642
|
+
/**
|
|
10643
|
+
* @remarks
|
|
10644
|
+
* The request ID.
|
|
10645
|
+
*
|
|
10646
|
+
* @example
|
|
10647
|
+
* 109462AF-B5FA-3D5A-9377-B27E5B******
|
|
10648
|
+
*/
|
|
10649
|
+
requestId?: string;
|
|
10650
|
+
/**
|
|
10651
|
+
* @remarks
|
|
10652
|
+
* The SQL statement.
|
|
10653
|
+
*
|
|
10654
|
+
* @example
|
|
10655
|
+
* create table (
|
|
10656
|
+
* id varchar(32)
|
|
10657
|
+
* );
|
|
10658
|
+
*/
|
|
10659
|
+
SQL?: string;
|
|
10660
|
+
static names(): {
|
|
10661
|
+
[key: string]: string;
|
|
10662
|
+
};
|
|
10663
|
+
static types(): {
|
|
10664
|
+
[key: string]: any;
|
|
10665
|
+
};
|
|
10666
|
+
constructor(map?: {
|
|
10667
|
+
[key: string]: any;
|
|
10668
|
+
});
|
|
10669
|
+
}
|
|
10670
|
+
export declare class GetCreateTableSQLResponse extends $tea.Model {
|
|
10671
|
+
headers?: {
|
|
10672
|
+
[key: string]: string;
|
|
10673
|
+
};
|
|
10674
|
+
statusCode?: number;
|
|
10675
|
+
body?: GetCreateTableSQLResponseBody;
|
|
10676
|
+
static names(): {
|
|
10677
|
+
[key: string]: string;
|
|
10678
|
+
};
|
|
10679
|
+
static types(): {
|
|
10680
|
+
[key: string]: any;
|
|
10681
|
+
};
|
|
10682
|
+
constructor(map?: {
|
|
10683
|
+
[key: string]: any;
|
|
10684
|
+
});
|
|
10685
|
+
}
|
|
10588
10686
|
export declare class GetDatabaseObjectsRequest extends $tea.Model {
|
|
10589
10687
|
/**
|
|
10590
10688
|
* @remarks
|
|
@@ -15239,6 +15337,94 @@ export declare class ModifyPerformanceViewResponse extends $tea.Model {
|
|
|
15239
15337
|
[key: string]: any;
|
|
15240
15338
|
});
|
|
15241
15339
|
}
|
|
15340
|
+
export declare class ModifyUserEniVswitchOptionsRequest extends $tea.Model {
|
|
15341
|
+
/**
|
|
15342
|
+
* @remarks
|
|
15343
|
+
* This parameter is required.
|
|
15344
|
+
*
|
|
15345
|
+
* @example
|
|
15346
|
+
* amv-bp11q28kvl688****
|
|
15347
|
+
*/
|
|
15348
|
+
dbClusterId?: string;
|
|
15349
|
+
ownerAccount?: string;
|
|
15350
|
+
ownerId?: number;
|
|
15351
|
+
/**
|
|
15352
|
+
* @example
|
|
15353
|
+
* cn-hangzhou
|
|
15354
|
+
*/
|
|
15355
|
+
regionId?: string;
|
|
15356
|
+
resourceOwnerAccount?: string;
|
|
15357
|
+
resourceOwnerId?: number;
|
|
15358
|
+
/**
|
|
15359
|
+
* @remarks
|
|
15360
|
+
* This parameter is required.
|
|
15361
|
+
*
|
|
15362
|
+
* @example
|
|
15363
|
+
* vsw-rj9ixufmywqq98z******,vsw-rj95ij6wcz656v7******
|
|
15364
|
+
*/
|
|
15365
|
+
vSwitchOptions?: string;
|
|
15366
|
+
static names(): {
|
|
15367
|
+
[key: string]: string;
|
|
15368
|
+
};
|
|
15369
|
+
static types(): {
|
|
15370
|
+
[key: string]: any;
|
|
15371
|
+
};
|
|
15372
|
+
constructor(map?: {
|
|
15373
|
+
[key: string]: any;
|
|
15374
|
+
});
|
|
15375
|
+
}
|
|
15376
|
+
export declare class ModifyUserEniVswitchOptionsResponseBody extends $tea.Model {
|
|
15377
|
+
/**
|
|
15378
|
+
* @example
|
|
15379
|
+
* 200
|
|
15380
|
+
*/
|
|
15381
|
+
code?: string;
|
|
15382
|
+
/**
|
|
15383
|
+
* @example
|
|
15384
|
+
* 200
|
|
15385
|
+
*/
|
|
15386
|
+
httpStatusCode?: number;
|
|
15387
|
+
/**
|
|
15388
|
+
* @example
|
|
15389
|
+
* SUCCESS
|
|
15390
|
+
*/
|
|
15391
|
+
message?: string;
|
|
15392
|
+
/**
|
|
15393
|
+
* @example
|
|
15394
|
+
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
|
|
15395
|
+
*/
|
|
15396
|
+
requestId?: string;
|
|
15397
|
+
/**
|
|
15398
|
+
* @example
|
|
15399
|
+
* true
|
|
15400
|
+
*/
|
|
15401
|
+
success?: boolean;
|
|
15402
|
+
static names(): {
|
|
15403
|
+
[key: string]: string;
|
|
15404
|
+
};
|
|
15405
|
+
static types(): {
|
|
15406
|
+
[key: string]: any;
|
|
15407
|
+
};
|
|
15408
|
+
constructor(map?: {
|
|
15409
|
+
[key: string]: any;
|
|
15410
|
+
});
|
|
15411
|
+
}
|
|
15412
|
+
export declare class ModifyUserEniVswitchOptionsResponse extends $tea.Model {
|
|
15413
|
+
headers?: {
|
|
15414
|
+
[key: string]: string;
|
|
15415
|
+
};
|
|
15416
|
+
statusCode?: number;
|
|
15417
|
+
body?: ModifyUserEniVswitchOptionsResponseBody;
|
|
15418
|
+
static names(): {
|
|
15419
|
+
[key: string]: string;
|
|
15420
|
+
};
|
|
15421
|
+
static types(): {
|
|
15422
|
+
[key: string]: any;
|
|
15423
|
+
};
|
|
15424
|
+
constructor(map?: {
|
|
15425
|
+
[key: string]: any;
|
|
15426
|
+
});
|
|
15427
|
+
}
|
|
15242
15428
|
export declare class PreloadSparkAppMetricsRequest extends $tea.Model {
|
|
15243
15429
|
/**
|
|
15244
15430
|
* @remarks
|
|
@@ -18490,6 +18676,9 @@ export declare class DescribeDBClusterAttributeResponseBodyItemsDBCluster extend
|
|
|
18490
18676
|
* false
|
|
18491
18677
|
*/
|
|
18492
18678
|
userENIStatus?: boolean;
|
|
18679
|
+
userENIVSwitchOptions?: string;
|
|
18680
|
+
userENIVpcId?: string;
|
|
18681
|
+
userENIZoneOptions?: string;
|
|
18493
18682
|
/**
|
|
18494
18683
|
* @remarks
|
|
18495
18684
|
* The virtual private cloud (VPC) ID of the cluster.
|
|
@@ -23967,6 +24156,8 @@ export default class Client extends OpenApi {
|
|
|
23967
24156
|
*/
|
|
23968
24157
|
describeAuditLogRecords(request: DescribeAuditLogRecordsRequest): Promise<DescribeAuditLogRecordsResponse>;
|
|
23969
24158
|
/**
|
|
24159
|
+
* 查看集群备份设置
|
|
24160
|
+
*
|
|
23970
24161
|
* @remarks
|
|
23971
24162
|
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
23972
24163
|
*
|
|
@@ -23976,6 +24167,8 @@ export default class Client extends OpenApi {
|
|
|
23976
24167
|
*/
|
|
23977
24168
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|
|
23978
24169
|
/**
|
|
24170
|
+
* 查看集群备份设置
|
|
24171
|
+
*
|
|
23979
24172
|
* @remarks
|
|
23980
24173
|
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
23981
24174
|
*
|
|
@@ -24882,6 +25075,8 @@ export default class Client extends OpenApi {
|
|
|
24882
25075
|
*/
|
|
24883
25076
|
describeUserQuota(request: DescribeUserQuotaRequest): Promise<DescribeUserQuotaResponse>;
|
|
24884
25077
|
/**
|
|
25078
|
+
* 解绑用户弹性网卡
|
|
25079
|
+
*
|
|
24885
25080
|
* @remarks
|
|
24886
25081
|
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
24887
25082
|
*
|
|
@@ -24891,6 +25086,8 @@ export default class Client extends OpenApi {
|
|
|
24891
25086
|
*/
|
|
24892
25087
|
detachUserENIWithOptions(request: DetachUserENIRequest, runtime: $Util.RuntimeOptions): Promise<DetachUserENIResponse>;
|
|
24893
25088
|
/**
|
|
25089
|
+
* 解绑用户弹性网卡
|
|
25090
|
+
*
|
|
24894
25091
|
* @remarks
|
|
24895
25092
|
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
24896
25093
|
*
|
|
@@ -25001,6 +25198,21 @@ export default class Client extends OpenApi {
|
|
|
25001
25198
|
* @returns ExistRunningSQLEngineResponse
|
|
25002
25199
|
*/
|
|
25003
25200
|
existRunningSQLEngine(request: ExistRunningSQLEngineRequest): Promise<ExistRunningSQLEngineResponse>;
|
|
25201
|
+
/**
|
|
25202
|
+
* Queries the table creation statement for tables.
|
|
25203
|
+
*
|
|
25204
|
+
* @param request - GetCreateTableSQLRequest
|
|
25205
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25206
|
+
* @returns GetCreateTableSQLResponse
|
|
25207
|
+
*/
|
|
25208
|
+
getCreateTableSQLWithOptions(request: GetCreateTableSQLRequest, runtime: $Util.RuntimeOptions): Promise<GetCreateTableSQLResponse>;
|
|
25209
|
+
/**
|
|
25210
|
+
* Queries the table creation statement for tables.
|
|
25211
|
+
*
|
|
25212
|
+
* @param request - GetCreateTableSQLRequest
|
|
25213
|
+
* @returns GetCreateTableSQLResponse
|
|
25214
|
+
*/
|
|
25215
|
+
getCreateTableSQL(request: GetCreateTableSQLRequest): Promise<GetCreateTableSQLResponse>;
|
|
25004
25216
|
/**
|
|
25005
25217
|
* Queries the information about databases.
|
|
25006
25218
|
*
|
|
@@ -26017,6 +26229,21 @@ export default class Client extends OpenApi {
|
|
|
26017
26229
|
* @returns ModifyPerformanceViewResponse
|
|
26018
26230
|
*/
|
|
26019
26231
|
modifyPerformanceView(request: ModifyPerformanceViewRequest): Promise<ModifyPerformanceViewResponse>;
|
|
26232
|
+
/**
|
|
26233
|
+
* 修改用户eni交换机
|
|
26234
|
+
*
|
|
26235
|
+
* @param request - ModifyUserEniVswitchOptionsRequest
|
|
26236
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
26237
|
+
* @returns ModifyUserEniVswitchOptionsResponse
|
|
26238
|
+
*/
|
|
26239
|
+
modifyUserEniVswitchOptionsWithOptions(request: ModifyUserEniVswitchOptionsRequest, runtime: $Util.RuntimeOptions): Promise<ModifyUserEniVswitchOptionsResponse>;
|
|
26240
|
+
/**
|
|
26241
|
+
* 修改用户eni交换机
|
|
26242
|
+
*
|
|
26243
|
+
* @param request - ModifyUserEniVswitchOptionsRequest
|
|
26244
|
+
* @returns ModifyUserEniVswitchOptionsResponse
|
|
26245
|
+
*/
|
|
26246
|
+
modifyUserEniVswitchOptions(request: ModifyUserEniVswitchOptionsRequest): Promise<ModifyUserEniVswitchOptionsResponse>;
|
|
26020
26247
|
/**
|
|
26021
26248
|
* Preloads metrics for a Spark application.
|
|
26022
26249
|
*
|