@alicloud/gpdb20160503 3.12.2 → 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 (30) hide show
  1. package/dist/client.d.ts +21 -6
  2. package/dist/client.js +48 -6
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateSupabaseProjectRequest.d.ts +3 -3
  5. package/dist/models/CreateSupabaseProjectResponseBody.d.ts +1 -1
  6. package/dist/models/DescribeDbversionRequest.d.ts +24 -0
  7. package/dist/models/DescribeDbversionRequest.js +60 -0
  8. package/dist/models/DescribeDbversionRequest.js.map +1 -0
  9. package/dist/models/DescribeDbversionResponse.d.ts +19 -0
  10. package/dist/models/DescribeDbversionResponse.js +69 -0
  11. package/dist/models/DescribeDbversionResponse.js.map +1 -0
  12. package/dist/models/DescribeDbversionResponseBody.d.ts +29 -0
  13. package/dist/models/DescribeDbversionResponseBody.js +60 -0
  14. package/dist/models/DescribeDbversionResponseBody.js.map +1 -0
  15. package/dist/models/GetSupabaseProjectRequest.d.ts +2 -2
  16. package/dist/models/GetSupabaseProjectResponseBody.d.ts +25 -36
  17. package/dist/models/GetSupabaseProjectResponseBody.js.map +1 -1
  18. package/dist/models/model.d.ts +3 -0
  19. package/dist/models/model.js +18 -12
  20. package/dist/models/model.js.map +1 -1
  21. package/package.json +1 -1
  22. package/src/client.ts +52 -6
  23. package/src/models/CreateSupabaseProjectRequest.ts +3 -3
  24. package/src/models/CreateSupabaseProjectResponseBody.ts +1 -1
  25. package/src/models/DescribeDbversionRequest.ts +39 -0
  26. package/src/models/DescribeDbversionResponse.ts +40 -0
  27. package/src/models/DescribeDbversionResponseBody.ts +44 -0
  28. package/src/models/GetSupabaseProjectRequest.ts +2 -2
  29. package/src/models/GetSupabaseProjectResponseBody.ts +25 -36
  30. package/src/models/model.ts +3 -0
@@ -0,0 +1,44 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DescribeDBVersionResponseBody extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * The request ID.
9
+ *
10
+ * @example
11
+ * 25C11EE5-B7E8-481A-A07C-BD619971A570
12
+ */
13
+ requestId?: string;
14
+ /**
15
+ * @remarks
16
+ * The recommended upgrade version in the format of "major version,minor version" (separated by a comma). The first value is the target version for major engine version upgrade, and the second value is the target version for minor engine version update.
17
+ *
18
+ * @example
19
+ * mm.v7.4.2.7-202608031659,mm.v7.3.2.12-202608071438
20
+ */
21
+ versionSuggestion?: string;
22
+ static names(): { [key: string]: string } {
23
+ return {
24
+ requestId: 'RequestId',
25
+ versionSuggestion: 'VersionSuggestion',
26
+ };
27
+ }
28
+
29
+ static types(): { [key: string]: any } {
30
+ return {
31
+ requestId: 'string',
32
+ versionSuggestion: 'string',
33
+ };
34
+ }
35
+
36
+ validate() {
37
+ super.validate();
38
+ }
39
+
40
+ constructor(map?: { [key: string]: any }) {
41
+ super(map);
42
+ }
43
+ }
44
+
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class GetSupabaseProjectRequest extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The Supabase instance ID. You can find this ID on the Supabase page in the console.
8
+ * The Supabase instance ID. You can obtain this value from the Supabase page in the console.
9
9
  *
10
10
  * This parameter is required.
11
11
  *
@@ -17,7 +17,7 @@ export class GetSupabaseProjectRequest extends $dara.Model {
17
17
  * @remarks
18
18
  * The region ID.
19
19
  *
20
- * > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to view the available region IDs.
20
+ * > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available region IDs.
21
21
  *
22
22
  * @example
23
23
  * cn-hangzhou
@@ -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
@@ -95,11 +90,11 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
95
90
  lightweight?: string;
96
91
  /**
97
92
  * @remarks
98
- * The billing method. Valid values:
93
+ * The billing type. Valid values:
99
94
  *
100
- * - `POSTPAY`: pay-as-you-go
95
+ * - POSTPAY: Pay-as-you-go.
101
96
  *
102
- * - `PREPAY`: subscription
97
+ * - PREPAY: Subscription.
103
98
  *
104
99
  * @example
105
100
  * POSTPAY
@@ -107,7 +102,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
107
102
  payType?: string;
108
103
  /**
109
104
  * @remarks
110
- * The private connection URL for the Supabase Dashboard.
105
+ * The internal network connection string of the Supabase Dashboard.
111
106
  *
112
107
  * @example
113
108
  * 192.168.0.11
@@ -115,7 +110,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
115
110
  privateConnectUrl?: string;
116
111
  /**
117
112
  * @remarks
118
- * The description of the Supabase project.
113
+ * The detailed description of the Supabase project.
119
114
  *
120
115
  * @example
121
116
  * for-test-project
@@ -123,7 +118,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
123
118
  projectDescription?: string;
124
119
  /**
125
120
  * @remarks
126
- * The Supabase project ID.
121
+ * The Supabase instance ID.
127
122
  *
128
123
  * @example
129
124
  * sbp-545434
@@ -139,7 +134,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
139
134
  projectName?: string;
140
135
  /**
141
136
  * @remarks
142
- * The Supabase instance specification.
137
+ * The Supabase instance specifications.
143
138
  *
144
139
  * @example
145
140
  * 1C1G
@@ -147,7 +142,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
147
142
  projectSpec?: string;
148
143
  /**
149
144
  * @remarks
150
- * The public connection URL for the Supabase Dashboard.
145
+ * The public network connection string of the Supabase Dashboard.
151
146
  *
152
147
  * @example
153
148
  * 10.154.11.10
@@ -157,7 +152,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
157
152
  * @remarks
158
153
  * The region ID.
159
154
  *
160
- * > 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.
161
156
  *
162
157
  * @example
163
158
  * cn-hangzhou
@@ -173,7 +168,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
173
168
  requestId?: string;
174
169
  /**
175
170
  * @remarks
176
- * The IP address whitelist, specified as a comma-separated string.
171
+ * The list of IP addresses in the IP whitelist group, separated by commas (,).
177
172
  *
178
173
  * @example
179
174
  * 127.0.0.1
@@ -189,7 +184,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
189
184
  status?: string;
190
185
  /**
191
186
  * @remarks
192
- * The storage space, in GB.
187
+ * The storage size. Unit: GB.
193
188
  *
194
189
  * @example
195
190
  * 2
@@ -198,13 +193,9 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
198
193
  /**
199
194
  * @remarks
200
195
  * The storage type. Valid values:
201
- *
202
196
  * - **cloud_essd_pl0**
203
- *
204
197
  * - **cloud_essd_pl1**
205
- *
206
198
  * - **cloud_essd_pl2**
207
- *
208
199
  * - **cloud_essd_pl3**
209
200
  *
210
201
  * @example
@@ -213,7 +204,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
213
204
  storageType?: string;
214
205
  /**
215
206
  * @remarks
216
- * The vSwitch ID.
207
+ * The vSwitch ID. This parameter is required if a VPC ID is specified.
217
208
  *
218
209
  * @example
219
210
  * vsw-bp1cpq8mr64paltkb****
@@ -222,9 +213,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
222
213
  /**
223
214
  * @remarks
224
215
  * The VPC ID.
225
- *
226
- * > - You can call the [DescribeRdsVpcs](https://help.aliyun.com/document_detail/208327.html) operation to query the available VPCs.
227
- * >
216
+ * > - You can call the [DescribeRdsVpcs](https://help.aliyun.com/document_detail/208327.html) operation to query available VPC IDs.
228
217
  * > - This parameter is required.
229
218
  *
230
219
  * @example
@@ -235,7 +224,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
235
224
  * @remarks
236
225
  * The zone ID.
237
226
  *
238
- * > 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.
239
228
  *
240
229
  * @example
241
230
  * cn-hangzhou-i
@@ -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';