@alicloud/gpdb20160503 3.12.0 → 3.12.2
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 +4 -4
- package/dist/client.js +62 -26
- package/dist/client.js.map +1 -1
- package/dist/models/CreateSupabaseProjectRequest.d.ts +1 -0
- package/dist/models/CreateSupabaseProjectRequest.js +2 -0
- package/dist/models/CreateSupabaseProjectRequest.js.map +1 -1
- package/dist/models/DescribeBranchResponseBody.d.ts +14 -6
- package/dist/models/DescribeBranchResponseBody.js +2 -0
- package/dist/models/DescribeBranchResponseBody.js.map +1 -1
- package/dist/models/GetSupabaseProjectResponseBody.d.ts +1 -0
- package/dist/models/GetSupabaseProjectResponseBody.js +2 -0
- package/dist/models/GetSupabaseProjectResponseBody.js.map +1 -1
- package/dist/models/ListBranchesRequest.d.ts +6 -6
- package/dist/models/ListBranchesResponseBody.d.ts +4 -3
- package/dist/models/ListBranchesResponseBody.js +2 -0
- package/dist/models/ListBranchesResponseBody.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +63 -26
- package/src/models/CreateSupabaseProjectRequest.ts +3 -0
- package/src/models/DescribeBranchResponseBody.ts +16 -6
- package/src/models/GetSupabaseProjectResponseBody.ts +3 -0
- package/src/models/ListBranchesRequest.ts +6 -6
- package/src/models/ListBranchesResponseBody.ts +6 -3
package/dist/client.d.ts
CHANGED
|
@@ -1603,7 +1603,7 @@ export default class Client extends OpenApi {
|
|
|
1603
1603
|
* Queries the details of a Supabase branch.
|
|
1604
1604
|
*
|
|
1605
1605
|
* @remarks
|
|
1606
|
-
*
|
|
1606
|
+
* This operation queries the details of a specified Supabase branch and returns the basic attributes, parent branch information, protection status, and connection information of the branch.
|
|
1607
1607
|
*
|
|
1608
1608
|
* @param request - DescribeBranchRequest
|
|
1609
1609
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -1614,7 +1614,7 @@ export default class Client extends OpenApi {
|
|
|
1614
1614
|
* Queries the details of a Supabase branch.
|
|
1615
1615
|
*
|
|
1616
1616
|
* @remarks
|
|
1617
|
-
*
|
|
1617
|
+
* This operation queries the details of a specified Supabase branch and returns the basic attributes, parent branch information, protection status, and connection information of the branch.
|
|
1618
1618
|
*
|
|
1619
1619
|
* @param request - DescribeBranchRequest
|
|
1620
1620
|
* @returns DescribeBranchResponse
|
|
@@ -3506,7 +3506,7 @@ export default class Client extends OpenApi {
|
|
|
3506
3506
|
* Queries the branch list of a Supabase project.
|
|
3507
3507
|
*
|
|
3508
3508
|
* @remarks
|
|
3509
|
-
*
|
|
3509
|
+
* This operation performs a paging query of all branches under a specified Supabase project. You can filter results by parent branch, keyword, and sorting conditions.
|
|
3510
3510
|
*
|
|
3511
3511
|
* @param request - ListBranchesRequest
|
|
3512
3512
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -3517,7 +3517,7 @@ export default class Client extends OpenApi {
|
|
|
3517
3517
|
* Queries the branch list of a Supabase project.
|
|
3518
3518
|
*
|
|
3519
3519
|
* @remarks
|
|
3520
|
-
*
|
|
3520
|
+
* This operation performs a paging query of all branches under a specified Supabase project. You can filter results by parent branch, keyword, and sorting conditions.
|
|
3521
3521
|
*
|
|
3522
3522
|
* @param request - ListBranchesRequest
|
|
3523
3523
|
* @returns ListBranchesResponse
|
package/dist/client.js
CHANGED
|
@@ -67,33 +67,66 @@ class Client extends openapi_core_1.default {
|
|
|
67
67
|
super(config);
|
|
68
68
|
this._endpointRule = "regional";
|
|
69
69
|
this._endpointMap = {
|
|
70
|
-
'cn-beijing': "gpdb.aliyuncs.com",
|
|
71
70
|
'cn-hangzhou': "gpdb.aliyuncs.com",
|
|
72
|
-
'cn-shanghai': "gpdb.aliyuncs.com",
|
|
73
|
-
'cn-shenzhen': "gpdb.aliyuncs.com",
|
|
74
|
-
'cn-hongkong': "gpdb.aliyuncs.com",
|
|
75
|
-
'ap-southeast-1': "gpdb.aliyuncs.com",
|
|
76
|
-
'us-west-1': "gpdb.aliyuncs.com",
|
|
77
|
-
'us-east-1': "gpdb.aliyuncs.com",
|
|
78
71
|
'cn-hangzhou-finance': "gpdb.aliyuncs.com",
|
|
79
|
-
'
|
|
80
|
-
'
|
|
81
|
-
'
|
|
82
|
-
'cn-
|
|
83
|
-
'
|
|
84
|
-
'
|
|
85
|
-
'
|
|
86
|
-
'
|
|
87
|
-
'cn-
|
|
72
|
+
'ap-northeast-2-pop': "gpdb.aliyuncs.com",
|
|
73
|
+
'ap-south-1': "gpdb.aliyuncs.com",
|
|
74
|
+
'ap-southeast-2': "gpdb.aliyuncs.com",
|
|
75
|
+
'cn-beijing-finance-1': "gpdb.aliyuncs.com",
|
|
76
|
+
'cn-beijing-finance-pop': "gpdb.aliyuncs.com",
|
|
77
|
+
'cn-beijing-gov-1': "gpdb.aliyuncs.com",
|
|
78
|
+
'cn-beijing-nu16-b01': "gpdb.aliyuncs.com",
|
|
79
|
+
'cn-edge-1': "gpdb.aliyuncs.com",
|
|
80
|
+
'cn-fujian': "gpdb.aliyuncs.com",
|
|
81
|
+
'cn-haidian-cm12-c01': "gpdb.aliyuncs.com",
|
|
82
|
+
'cn-hangzhou-bj-b01': "gpdb.aliyuncs.com",
|
|
83
|
+
'cn-hangzhou-internal-prod-1': "gpdb.aliyuncs.com",
|
|
84
|
+
'cn-hangzhou-internal-test-1': "gpdb.aliyuncs.com",
|
|
85
|
+
'cn-hangzhou-internal-test-2': "gpdb.aliyuncs.com",
|
|
86
|
+
'cn-hangzhou-internal-test-3': "gpdb.aliyuncs.com",
|
|
87
|
+
'cn-hangzhou-test-306': "gpdb.aliyuncs.com",
|
|
88
|
+
'cn-hongkong-finance-pop': "gpdb.aliyuncs.com",
|
|
89
|
+
'cn-huhehaote-nebula-1': "gpdb.aliyuncs.com",
|
|
90
|
+
'cn-qingdao-nebula': "gpdb.aliyuncs.com",
|
|
91
|
+
'cn-shanghai-et15-b01': "gpdb.aliyuncs.com",
|
|
92
|
+
'cn-shanghai-et2-b01': "gpdb.aliyuncs.com",
|
|
93
|
+
'cn-shanghai-inner': "gpdb.aliyuncs.com",
|
|
94
|
+
'cn-shanghai-internal-test-1': "gpdb.aliyuncs.com",
|
|
95
|
+
'cn-shenzhen-inner': "gpdb.aliyuncs.com",
|
|
96
|
+
'cn-shenzhen-st4-d01': "gpdb.aliyuncs.com",
|
|
97
|
+
'cn-shenzhen-su18-b01': "gpdb.aliyuncs.com",
|
|
98
|
+
'cn-wuhan': "gpdb.aliyuncs.com",
|
|
99
|
+
'cn-yushanfang': "gpdb.aliyuncs.com",
|
|
100
|
+
'cn-zhangbei': "gpdb.aliyuncs.com",
|
|
101
|
+
'cn-zhangbei-na61-b01': "gpdb.aliyuncs.com",
|
|
102
|
+
'cn-zhangjiakou-na62-a01': "gpdb.aliyuncs.com",
|
|
103
|
+
'cn-zhengzhou-nebula-1': "gpdb.aliyuncs.com",
|
|
104
|
+
'eu-west-1-oxs': "gpdb.aliyuncs.com",
|
|
105
|
+
'rus-west-1-pop': "gpdb.aliyuncs.com",
|
|
88
106
|
'cn-wulanchabu': "gpdb.cn-wulanchabu.aliyuncs.com",
|
|
89
|
-
'cn-
|
|
90
|
-
'cn-
|
|
91
|
-
'cn-
|
|
92
|
-
'
|
|
93
|
-
'
|
|
94
|
-
'
|
|
107
|
+
'cn-beijing': "gpdb.cn-beijing.aliyuncs.com",
|
|
108
|
+
'cn-qingdao': "gpdb.cn-qingdao.aliyuncs.com",
|
|
109
|
+
'cn-shanghai': "gpdb.cn-shanghai.aliyuncs.com",
|
|
110
|
+
'cn-hongkong': "gpdb.cn-hongkong.aliyuncs.com",
|
|
111
|
+
'cn-zhangjiakou': "gpdb.cn-zhangjiakou.aliyuncs.com",
|
|
112
|
+
'cn-shenzhen': "gpdb.cn-shenzhen.aliyuncs.com",
|
|
95
113
|
'ap-northeast-2': "gpdb.ap-northeast-2.aliyuncs.com",
|
|
96
114
|
'ap-northeast-1': "gpdb.ap-northeast-1.aliyuncs.com",
|
|
115
|
+
'cn-chengdu': "gpdb.cn-chengdu.aliyuncs.com",
|
|
116
|
+
'ap-southeast-1': "gpdb.ap-southeast-1.aliyuncs.com",
|
|
117
|
+
'ap-southeast-3': "gpdb.ap-southeast-3.aliyuncs.com",
|
|
118
|
+
'cn-huhehaote': "gpdb.cn-huhehaote.aliyuncs.com",
|
|
119
|
+
'ap-southeast-5': "gpdb.ap-southeast-5.aliyuncs.com",
|
|
120
|
+
'ap-southeast-7': "gpdb.ap-southeast-7.aliyuncs.com",
|
|
121
|
+
'us-east-1': "gpdb.us-east-1.aliyuncs.com",
|
|
122
|
+
'eu-west-1': "gpdb.eu-west-1.aliyuncs.com",
|
|
123
|
+
'us-west-1': "gpdb.us-west-1.aliyuncs.com",
|
|
124
|
+
'eu-central-1': "gpdb.eu-central-1.aliyuncs.com",
|
|
125
|
+
'me-east-1': "gpdb.me-east-1.aliyuncs.com",
|
|
126
|
+
'me-central-1': "gpdb.me-central-1.aliyuncs.com",
|
|
127
|
+
'cn-shenzhen-finance-1': "gpdb.cn-shenzhen-finance-1.aliyuncs.com",
|
|
128
|
+
'cn-shanghai-finance-1': "gpdb.cn-shanghai-finance-1.aliyuncs.com",
|
|
129
|
+
'cn-north-2-gov-1': "gpdb.cn-north-2-gov-1.aliyuncs.com",
|
|
97
130
|
};
|
|
98
131
|
this.checkConfig(config);
|
|
99
132
|
this._endpoint = this.getEndpoint("gpdb", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
@@ -3129,6 +3162,9 @@ class Client extends openapi_core_1.default {
|
|
|
3129
3162
|
if (!$dara.isNull(request.engineVersion)) {
|
|
3130
3163
|
query["EngineVersion"] = request.engineVersion;
|
|
3131
3164
|
}
|
|
3165
|
+
if (!$dara.isNull(request.lightweight)) {
|
|
3166
|
+
query["Lightweight"] = request.lightweight;
|
|
3167
|
+
}
|
|
3132
3168
|
if (!$dara.isNull(request.payType)) {
|
|
3133
3169
|
query["PayType"] = request.payType;
|
|
3134
3170
|
}
|
|
@@ -5382,7 +5418,7 @@ class Client extends openapi_core_1.default {
|
|
|
5382
5418
|
* Queries the details of a Supabase branch.
|
|
5383
5419
|
*
|
|
5384
5420
|
* @remarks
|
|
5385
|
-
*
|
|
5421
|
+
* This operation queries the details of a specified Supabase branch and returns the basic attributes, parent branch information, protection status, and connection information of the branch.
|
|
5386
5422
|
*
|
|
5387
5423
|
* @param request - DescribeBranchRequest
|
|
5388
5424
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5417,7 +5453,7 @@ class Client extends openapi_core_1.default {
|
|
|
5417
5453
|
* Queries the details of a Supabase branch.
|
|
5418
5454
|
*
|
|
5419
5455
|
* @remarks
|
|
5420
|
-
*
|
|
5456
|
+
* This operation queries the details of a specified Supabase branch and returns the basic attributes, parent branch information, protection status, and connection information of the branch.
|
|
5421
5457
|
*
|
|
5422
5458
|
* @param request - DescribeBranchRequest
|
|
5423
5459
|
* @returns DescribeBranchResponse
|
|
@@ -10862,7 +10898,7 @@ class Client extends openapi_core_1.default {
|
|
|
10862
10898
|
* Queries the branch list of a Supabase project.
|
|
10863
10899
|
*
|
|
10864
10900
|
* @remarks
|
|
10865
|
-
*
|
|
10901
|
+
* This operation performs a paging query of all branches under a specified Supabase project. You can filter results by parent branch, keyword, and sorting conditions.
|
|
10866
10902
|
*
|
|
10867
10903
|
* @param request - ListBranchesRequest
|
|
10868
10904
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -10918,7 +10954,7 @@ class Client extends openapi_core_1.default {
|
|
|
10918
10954
|
* Queries the branch list of a Supabase project.
|
|
10919
10955
|
*
|
|
10920
10956
|
* @remarks
|
|
10921
|
-
*
|
|
10957
|
+
* This operation performs a paging query of all branches under a specified Supabase project. You can filter results by parent branch, keyword, and sorting conditions.
|
|
10922
10958
|
*
|
|
10923
10959
|
* @param request - ListBranchesRequest
|
|
10924
10960
|
* @returns ListBranchesResponse
|