@alicloud/gpdb20160503 3.12.1 → 3.13.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.
Files changed (40) hide show
  1. package/dist/client.d.ts +23 -8
  2. package/dist/client.js +98 -20
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateSupabaseProjectRequest.d.ts +4 -3
  5. package/dist/models/CreateSupabaseProjectRequest.js +2 -0
  6. package/dist/models/CreateSupabaseProjectRequest.js.map +1 -1
  7. package/dist/models/CreateSupabaseProjectResponseBody.d.ts +1 -1
  8. package/dist/models/DescribeBranchRequest.d.ts +1 -1
  9. package/dist/models/DescribeBranchResponseBody.d.ts +11 -4
  10. package/dist/models/DescribeBranchResponseBody.js.map +1 -1
  11. package/dist/models/DescribeDbversionRequest.d.ts +24 -0
  12. package/dist/models/DescribeDbversionRequest.js +60 -0
  13. package/dist/models/DescribeDbversionRequest.js.map +1 -0
  14. package/dist/models/DescribeDbversionResponse.d.ts +19 -0
  15. package/dist/models/DescribeDbversionResponse.js +69 -0
  16. package/dist/models/DescribeDbversionResponse.js.map +1 -0
  17. package/dist/models/DescribeDbversionResponseBody.d.ts +29 -0
  18. package/dist/models/DescribeDbversionResponseBody.js +60 -0
  19. package/dist/models/DescribeDbversionResponseBody.js.map +1 -0
  20. package/dist/models/GetSupabaseProjectRequest.d.ts +2 -2
  21. package/dist/models/GetSupabaseProjectResponseBody.d.ts +26 -36
  22. package/dist/models/GetSupabaseProjectResponseBody.js +2 -0
  23. package/dist/models/GetSupabaseProjectResponseBody.js.map +1 -1
  24. package/dist/models/ListBranchesRequest.d.ts +2 -2
  25. package/dist/models/model.d.ts +3 -0
  26. package/dist/models/model.js +18 -12
  27. package/dist/models/model.js.map +1 -1
  28. package/package.json +1 -1
  29. package/src/client.ts +103 -20
  30. package/src/models/CreateSupabaseProjectRequest.ts +6 -3
  31. package/src/models/CreateSupabaseProjectResponseBody.ts +1 -1
  32. package/src/models/DescribeBranchRequest.ts +1 -1
  33. package/src/models/DescribeBranchResponseBody.ts +11 -4
  34. package/src/models/DescribeDbversionRequest.ts +39 -0
  35. package/src/models/DescribeDbversionResponse.ts +40 -0
  36. package/src/models/DescribeDbversionResponseBody.ts +44 -0
  37. package/src/models/GetSupabaseProjectRequest.ts +2 -2
  38. package/src/models/GetSupabaseProjectResponseBody.ts +28 -36
  39. package/src/models/ListBranchesRequest.ts +2 -2
  40. package/src/models/model.ts +3 -0
@@ -5,12 +5,9 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class GetSupabaseProjectResponseBody extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * Indicates whether the **auto pause and resume** feature is enabled.
9
- * Valid values:
10
- *
11
- * - `true`: The feature is enabled. The project automatically pauses and resumes based on traffic.
12
- *
13
- * - `false`: The feature is disabled.
8
+ * Indicates whether **auto start/stop** is enabled. Valid values:
9
+ * - true: Enabled. When enabled, Supabase automatically pauses and resumes based on traffic conditions.
10
+ * - false: Disabled. When disabled, the auto start/stop feature of Supabase is turned off.
14
11
  *
15
12
  * @example
16
13
  * false
@@ -18,7 +15,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
18
15
  autoScale?: string;
19
16
  /**
20
17
  * @remarks
21
- * The creation time of the project.
18
+ * The creation time.
22
19
  *
23
20
  * @example
24
21
  * 2019-09-08T16:00:00Z
@@ -26,7 +23,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
26
23
  createTime?: string;
27
24
  /**
28
25
  * @remarks
29
- * The database IP address whitelist, specified as a comma-separated string.
26
+ * The database whitelist.
30
27
  *
31
28
  * @example
32
29
  * 127.0.0.1,100.64.XX.XX/10
@@ -34,7 +31,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
34
31
  DBSecurityIpList?: string;
35
32
  /**
36
33
  * @remarks
37
- * The password for the Supabase Dashboard. This parameter is not used.
34
+ * The Supabase Dashboard password (not currently in use).
38
35
  *
39
36
  * @example
40
37
  * xxpassword
@@ -42,7 +39,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
42
39
  dashboardPassword?: string;
43
40
  /**
44
41
  * @remarks
45
- * The username for the Supabase Dashboard. This parameter is not used.
42
+ * The Supabase Dashboard username (not currently in use).
46
43
  *
47
44
  * @example
48
45
  * username
@@ -50,10 +47,8 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
50
47
  dashboardUserName?: string;
51
48
  /**
52
49
  * @remarks
53
- * The performance level (PL) of the cloud disk. Valid values:
54
- *
50
+ * The cloud disk performance level. Valid values:
55
51
  * - PL0
56
- *
57
52
  * - PL1
58
53
  *
59
54
  * @example
@@ -62,7 +57,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
62
57
  diskPerformanceLevel?: string;
63
58
  /**
64
59
  * @remarks
65
- * The database engine.
60
+ * The database engine type.
66
61
  *
67
62
  * @example
68
63
  * postgres
@@ -70,7 +65,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
70
65
  engine?: string;
71
66
  /**
72
67
  * @remarks
73
- * The engine version.
68
+ * The DPI engine version.
74
69
  *
75
70
  * @example
76
71
  * 15
@@ -78,7 +73,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
78
73
  engineVersion?: string;
79
74
  /**
80
75
  * @remarks
81
- * The elastic network interface (ENI) ID.
76
+ * The elastic network interfaces (ENIs) ID, which identifies the network interface controller (NIC).
82
77
  *
83
78
  * @example
84
79
  * eni-xxxxxx
@@ -92,13 +87,14 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
92
87
  * v1.0.3
93
88
  */
94
89
  instanceVersion?: string;
90
+ lightweight?: string;
95
91
  /**
96
92
  * @remarks
97
- * The billing method. Valid values:
93
+ * The billing type. Valid values:
98
94
  *
99
- * - `POSTPAY`: pay-as-you-go
95
+ * - POSTPAY: Pay-as-you-go.
100
96
  *
101
- * - `PREPAY`: subscription
97
+ * - PREPAY: Subscription.
102
98
  *
103
99
  * @example
104
100
  * POSTPAY
@@ -106,7 +102,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
106
102
  payType?: string;
107
103
  /**
108
104
  * @remarks
109
- * The private connection URL for the Supabase Dashboard.
105
+ * The internal network connection string of the Supabase Dashboard.
110
106
  *
111
107
  * @example
112
108
  * 192.168.0.11
@@ -114,7 +110,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
114
110
  privateConnectUrl?: string;
115
111
  /**
116
112
  * @remarks
117
- * The description of the Supabase project.
113
+ * The detailed description of the Supabase project.
118
114
  *
119
115
  * @example
120
116
  * for-test-project
@@ -122,7 +118,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
122
118
  projectDescription?: string;
123
119
  /**
124
120
  * @remarks
125
- * The Supabase project ID.
121
+ * The Supabase instance ID.
126
122
  *
127
123
  * @example
128
124
  * sbp-545434
@@ -138,7 +134,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
138
134
  projectName?: string;
139
135
  /**
140
136
  * @remarks
141
- * The Supabase instance specification.
137
+ * The Supabase instance specifications.
142
138
  *
143
139
  * @example
144
140
  * 1C1G
@@ -146,7 +142,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
146
142
  projectSpec?: string;
147
143
  /**
148
144
  * @remarks
149
- * The public connection URL for the Supabase Dashboard.
145
+ * The public network connection string of the Supabase Dashboard.
150
146
  *
151
147
  * @example
152
148
  * 10.154.11.10
@@ -156,7 +152,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
156
152
  * @remarks
157
153
  * The region ID.
158
154
  *
159
- * > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query the available regions.
155
+ * > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available region IDs.
160
156
  *
161
157
  * @example
162
158
  * cn-hangzhou
@@ -172,7 +168,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
172
168
  requestId?: string;
173
169
  /**
174
170
  * @remarks
175
- * The IP address whitelist, specified as a comma-separated string.
171
+ * The list of IP addresses in the IP whitelist group, separated by commas (,).
176
172
  *
177
173
  * @example
178
174
  * 127.0.0.1
@@ -188,7 +184,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
188
184
  status?: string;
189
185
  /**
190
186
  * @remarks
191
- * The storage space, in GB.
187
+ * The storage size. Unit: GB.
192
188
  *
193
189
  * @example
194
190
  * 2
@@ -197,13 +193,9 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
197
193
  /**
198
194
  * @remarks
199
195
  * The storage type. Valid values:
200
- *
201
196
  * - **cloud_essd_pl0**
202
- *
203
197
  * - **cloud_essd_pl1**
204
- *
205
198
  * - **cloud_essd_pl2**
206
- *
207
199
  * - **cloud_essd_pl3**
208
200
  *
209
201
  * @example
@@ -212,7 +204,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
212
204
  storageType?: string;
213
205
  /**
214
206
  * @remarks
215
- * The vSwitch ID.
207
+ * The vSwitch ID. This parameter is required if a VPC ID is specified.
216
208
  *
217
209
  * @example
218
210
  * vsw-bp1cpq8mr64paltkb****
@@ -221,9 +213,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
221
213
  /**
222
214
  * @remarks
223
215
  * The VPC ID.
224
- *
225
- * > - You can call the [DescribeRdsVpcs](https://help.aliyun.com/document_detail/208327.html) operation to query the available VPCs.
226
- * >
216
+ * > - You can call the [DescribeRdsVpcs](https://help.aliyun.com/document_detail/208327.html) operation to query available VPC IDs.
227
217
  * > - This parameter is required.
228
218
  *
229
219
  * @example
@@ -234,7 +224,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
234
224
  * @remarks
235
225
  * The zone ID.
236
226
  *
237
- * > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query the available zones.
227
+ * > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available zone IDs.
238
228
  *
239
229
  * @example
240
230
  * cn-hangzhou-i
@@ -252,6 +242,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
252
242
  engineVersion: 'EngineVersion',
253
243
  eni: 'Eni',
254
244
  instanceVersion: 'InstanceVersion',
245
+ lightweight: 'Lightweight',
255
246
  payType: 'PayType',
256
247
  privateConnectUrl: 'PrivateConnectUrl',
257
248
  projectDescription: 'ProjectDescription',
@@ -283,6 +274,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
283
274
  engineVersion: 'string',
284
275
  eni: 'string',
285
276
  instanceVersion: 'string',
277
+ lightweight: 'string',
286
278
  payType: 'string',
287
279
  privateConnectUrl: 'string',
288
280
  projectDescription: 'string',
@@ -45,7 +45,7 @@ export class ListBranchesRequest extends $dara.Model {
45
45
  pageSize?: number;
46
46
  /**
47
47
  * @remarks
48
- * The parent branch ID. This parameter specifies the parent branch for a new branch or as a query filter condition.
48
+ * The parent branch ID. Specifies the parent branch for a new branch or as a query filter condition.
49
49
  *
50
50
  * @example
51
51
  * br-main
@@ -61,7 +61,7 @@ export class ListBranchesRequest extends $dara.Model {
61
61
  regionId?: string;
62
62
  /**
63
63
  * @remarks
64
- * The search keyword. Fuzzy search by branch ID or branch name is supported.
64
+ * The search keyword. Supports fuzzy search by branch ID or branch name.
65
65
  *
66
66
  * @example
67
67
  * main
@@ -616,6 +616,9 @@ export { DescribeDBResourceGroupResponse } from './DescribeDbresourceGroupRespon
616
616
  export { DescribeDBResourceManagementModeRequest } from './DescribeDbresourceManagementModeRequest';
617
617
  export { DescribeDBResourceManagementModeResponseBody } from './DescribeDbresourceManagementModeResponseBody';
618
618
  export { DescribeDBResourceManagementModeResponse } from './DescribeDbresourceManagementModeResponse';
619
+ export { DescribeDBVersionRequest } from './DescribeDbversionRequest';
620
+ export { DescribeDBVersionResponseBody } from './DescribeDbversionResponseBody';
621
+ export { DescribeDBVersionResponse } from './DescribeDbversionResponse';
619
622
  export { DescribeDBVersionInfosRequest } from './DescribeDbversionInfosRequest';
620
623
  export { DescribeDBVersionInfosResponseBody } from './DescribeDbversionInfosResponseBody';
621
624
  export { DescribeDBVersionInfosResponse } from './DescribeDbversionInfosResponse';