@alicloud/gpdb20160503 3.12.2 → 3.13.1
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 +25 -10
- package/dist/client.js +58 -34
- package/dist/client.js.map +1 -1
- package/dist/models/CreateSupabaseProjectRequest.d.ts +3 -3
- package/dist/models/CreateSupabaseProjectResponseBody.d.ts +1 -1
- package/dist/models/DescribeDbversionRequest.d.ts +24 -0
- package/dist/models/DescribeDbversionRequest.js +60 -0
- package/dist/models/DescribeDbversionRequest.js.map +1 -0
- package/dist/models/DescribeDbversionResponse.d.ts +19 -0
- package/dist/models/DescribeDbversionResponse.js +69 -0
- package/dist/models/DescribeDbversionResponse.js.map +1 -0
- package/dist/models/DescribeDbversionResponseBody.d.ts +29 -0
- package/dist/models/DescribeDbversionResponseBody.js +60 -0
- package/dist/models/DescribeDbversionResponseBody.js.map +1 -0
- package/dist/models/GetSupabaseProjectRequest.d.ts +2 -2
- package/dist/models/GetSupabaseProjectResponseBody.d.ts +37 -36
- package/dist/models/GetSupabaseProjectResponseBody.js +2 -0
- package/dist/models/GetSupabaseProjectResponseBody.js.map +1 -1
- package/dist/models/ModifySupabaseAutoScalePolicyRequest.d.ts +1 -0
- package/dist/models/ModifySupabaseAutoScalePolicyRequest.js +2 -0
- package/dist/models/ModifySupabaseAutoScalePolicyRequest.js.map +1 -1
- package/dist/models/ResetSupabaseProjectPasswordRequest.d.ts +5 -5
- package/dist/models/ResetSupabaseProjectPasswordRequest.js +2 -0
- package/dist/models/ResetSupabaseProjectPasswordRequest.js.map +1 -1
- package/dist/models/ResetSupabaseProjectPasswordResponseBody.d.ts +1 -1
- package/dist/models/UpgradeDbversionResponseBody.d.ts +1 -1
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +18 -12
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +64 -34
- package/src/models/CreateSupabaseProjectRequest.ts +3 -3
- package/src/models/CreateSupabaseProjectResponseBody.ts +1 -1
- package/src/models/DescribeDbversionRequest.ts +39 -0
- package/src/models/DescribeDbversionResponse.ts +40 -0
- package/src/models/DescribeDbversionResponseBody.ts +44 -0
- package/src/models/GetSupabaseProjectRequest.ts +2 -2
- package/src/models/GetSupabaseProjectResponseBody.ts +39 -36
- package/src/models/ModifySupabaseAutoScalePolicyRequest.ts +3 -0
- package/src/models/ResetSupabaseProjectPasswordRequest.ts +7 -5
- package/src/models/ResetSupabaseProjectPasswordResponseBody.ts +1 -1
- package/src/models/UpgradeDbversionResponseBody.ts +1 -1
- package/src/models/model.ts +3 -0
|
@@ -55,7 +55,7 @@ export class CreateSupabaseProjectRequest extends $dara.Model {
|
|
|
55
55
|
autoScale?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
* @remarks
|
|
58
|
-
* The idempotency token. Ensures that
|
|
58
|
+
* The idempotency token. Ensures that duplicate requests do not result in duplicate operations.
|
|
59
59
|
*
|
|
60
60
|
* @example
|
|
61
61
|
* 123e4567-e89b-12d3-a456-426655440000
|
|
@@ -92,7 +92,7 @@ export class CreateSupabaseProjectRequest extends $dara.Model {
|
|
|
92
92
|
lightweight?: boolean;
|
|
93
93
|
/**
|
|
94
94
|
* @remarks
|
|
95
|
-
* The billing
|
|
95
|
+
* The billing type. If this parameter is not specified, the default value Free is used.
|
|
96
96
|
*
|
|
97
97
|
* Valid values:
|
|
98
98
|
*
|
|
@@ -163,7 +163,7 @@ export class CreateSupabaseProjectRequest extends $dara.Model {
|
|
|
163
163
|
securityIPList?: string;
|
|
164
164
|
/**
|
|
165
165
|
* @remarks
|
|
166
|
-
* The storage size
|
|
166
|
+
* The storage size, in GB. If this parameter is not specified for non-Free billing types, the default value is 1 GB.
|
|
167
167
|
*
|
|
168
168
|
* @example
|
|
169
169
|
* 50
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeDBVersionRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The instance ID.
|
|
9
|
+
*
|
|
10
|
+
* This parameter is required.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* gp-xxxxxxxxxx
|
|
14
|
+
*/
|
|
15
|
+
DBInstanceId?: string;
|
|
16
|
+
ownerId?: number;
|
|
17
|
+
static names(): { [key: string]: string } {
|
|
18
|
+
return {
|
|
19
|
+
DBInstanceId: 'DBInstanceId',
|
|
20
|
+
ownerId: 'OwnerId',
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
static types(): { [key: string]: any } {
|
|
25
|
+
return {
|
|
26
|
+
DBInstanceId: 'string',
|
|
27
|
+
ownerId: 'number',
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
validate() {
|
|
32
|
+
super.validate();
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
constructor(map?: { [key: string]: any }) {
|
|
36
|
+
super(map);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { DescribeDBVersionResponseBody } from "./DescribeDbversionResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class DescribeDBVersionResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: DescribeDBVersionResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: DescribeDBVersionResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -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
|
|
8
|
+
* The Supabase instance ID. You can obtain the ID 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
|
|
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
|
|
@@ -3,14 +3,16 @@ import * as $dara from '@darabonba/typescript';
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 0.5
|
|
9
|
+
*/
|
|
10
|
+
appliedIdleTimeHours?: string;
|
|
6
11
|
/**
|
|
7
12
|
* @remarks
|
|
8
|
-
* Indicates whether
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* - `true`: The feature is enabled. The project automatically pauses and resumes based on traffic.
|
|
12
|
-
*
|
|
13
|
-
* - `false`: The feature is disabled.
|
|
13
|
+
* Indicates whether **auto start and stop** is enabled. Valid values:
|
|
14
|
+
* - true: Enabled. After this feature is enabled, Supabase automatically pauses and resumes based on traffic conditions.
|
|
15
|
+
* - false: Disabled. After this feature is disabled, the auto start and stop feature of Supabase is turned off.
|
|
14
16
|
*
|
|
15
17
|
* @example
|
|
16
18
|
* false
|
|
@@ -18,7 +20,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
18
20
|
autoScale?: string;
|
|
19
21
|
/**
|
|
20
22
|
* @remarks
|
|
21
|
-
* The creation time
|
|
23
|
+
* The creation time.
|
|
22
24
|
*
|
|
23
25
|
* @example
|
|
24
26
|
* 2019-09-08T16:00:00Z
|
|
@@ -26,7 +28,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
26
28
|
createTime?: string;
|
|
27
29
|
/**
|
|
28
30
|
* @remarks
|
|
29
|
-
* The database
|
|
31
|
+
* The database whitelist.
|
|
30
32
|
*
|
|
31
33
|
* @example
|
|
32
34
|
* 127.0.0.1,100.64.XX.XX/10
|
|
@@ -34,7 +36,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
34
36
|
DBSecurityIpList?: string;
|
|
35
37
|
/**
|
|
36
38
|
* @remarks
|
|
37
|
-
* The
|
|
39
|
+
* The Supabase Dashboard password. This parameter is not in use.
|
|
38
40
|
*
|
|
39
41
|
* @example
|
|
40
42
|
* xxpassword
|
|
@@ -42,7 +44,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
42
44
|
dashboardPassword?: string;
|
|
43
45
|
/**
|
|
44
46
|
* @remarks
|
|
45
|
-
* The
|
|
47
|
+
* The Supabase Dashboard username. This parameter is not in use.
|
|
46
48
|
*
|
|
47
49
|
* @example
|
|
48
50
|
* username
|
|
@@ -50,10 +52,8 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
50
52
|
dashboardUserName?: string;
|
|
51
53
|
/**
|
|
52
54
|
* @remarks
|
|
53
|
-
* The performance level
|
|
54
|
-
*
|
|
55
|
+
* The performance level of the cloud disk. Valid values:
|
|
55
56
|
* - PL0
|
|
56
|
-
*
|
|
57
57
|
* - PL1
|
|
58
58
|
*
|
|
59
59
|
* @example
|
|
@@ -62,7 +62,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
62
62
|
diskPerformanceLevel?: string;
|
|
63
63
|
/**
|
|
64
64
|
* @remarks
|
|
65
|
-
* The database engine.
|
|
65
|
+
* The database engine type.
|
|
66
66
|
*
|
|
67
67
|
* @example
|
|
68
68
|
* postgres
|
|
@@ -70,7 +70,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
70
70
|
engine?: string;
|
|
71
71
|
/**
|
|
72
72
|
* @remarks
|
|
73
|
-
* The engine version.
|
|
73
|
+
* The database engine version.
|
|
74
74
|
*
|
|
75
75
|
* @example
|
|
76
76
|
* 15
|
|
@@ -78,7 +78,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
78
78
|
engineVersion?: string;
|
|
79
79
|
/**
|
|
80
80
|
* @remarks
|
|
81
|
-
* The elastic network interface (ENI) ID.
|
|
81
|
+
* The elastic network interface (ENI) ID. The network interface controller (NIC) ID of the instance.
|
|
82
82
|
*
|
|
83
83
|
* @example
|
|
84
84
|
* eni-xxxxxx
|
|
@@ -92,14 +92,21 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
92
92
|
* v1.0.3
|
|
93
93
|
*/
|
|
94
94
|
instanceVersion?: string;
|
|
95
|
+
/**
|
|
96
|
+
* @remarks
|
|
97
|
+
* Indicates whether the project is a lightweight edition.
|
|
98
|
+
*
|
|
99
|
+
* @example
|
|
100
|
+
* false
|
|
101
|
+
*/
|
|
95
102
|
lightweight?: string;
|
|
96
103
|
/**
|
|
97
104
|
* @remarks
|
|
98
|
-
* The billing
|
|
105
|
+
* The billing type. Valid values:
|
|
99
106
|
*
|
|
100
|
-
* -
|
|
107
|
+
* - POSTPAY: pay-as-you-go.
|
|
101
108
|
*
|
|
102
|
-
* -
|
|
109
|
+
* - PREPAY: subscription.
|
|
103
110
|
*
|
|
104
111
|
* @example
|
|
105
112
|
* POSTPAY
|
|
@@ -107,7 +114,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
107
114
|
payType?: string;
|
|
108
115
|
/**
|
|
109
116
|
* @remarks
|
|
110
|
-
* The
|
|
117
|
+
* The internal network connection string of the Supabase Dashboard.
|
|
111
118
|
*
|
|
112
119
|
* @example
|
|
113
120
|
* 192.168.0.11
|
|
@@ -115,7 +122,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
115
122
|
privateConnectUrl?: string;
|
|
116
123
|
/**
|
|
117
124
|
* @remarks
|
|
118
|
-
* The description of the Supabase project.
|
|
125
|
+
* The detailed description of the Supabase project.
|
|
119
126
|
*
|
|
120
127
|
* @example
|
|
121
128
|
* for-test-project
|
|
@@ -123,7 +130,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
123
130
|
projectDescription?: string;
|
|
124
131
|
/**
|
|
125
132
|
* @remarks
|
|
126
|
-
* The Supabase
|
|
133
|
+
* The Supabase instance ID.
|
|
127
134
|
*
|
|
128
135
|
* @example
|
|
129
136
|
* sbp-545434
|
|
@@ -139,7 +146,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
139
146
|
projectName?: string;
|
|
140
147
|
/**
|
|
141
148
|
* @remarks
|
|
142
|
-
* The Supabase instance
|
|
149
|
+
* The Supabase instance specifications.
|
|
143
150
|
*
|
|
144
151
|
* @example
|
|
145
152
|
* 1C1G
|
|
@@ -147,7 +154,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
147
154
|
projectSpec?: string;
|
|
148
155
|
/**
|
|
149
156
|
* @remarks
|
|
150
|
-
* The public connection
|
|
157
|
+
* The public network connection string of the Supabase Dashboard.
|
|
151
158
|
*
|
|
152
159
|
* @example
|
|
153
160
|
* 10.154.11.10
|
|
@@ -157,7 +164,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
157
164
|
* @remarks
|
|
158
165
|
* The region ID.
|
|
159
166
|
*
|
|
160
|
-
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query
|
|
167
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available region IDs.
|
|
161
168
|
*
|
|
162
169
|
* @example
|
|
163
170
|
* cn-hangzhou
|
|
@@ -173,7 +180,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
173
180
|
requestId?: string;
|
|
174
181
|
/**
|
|
175
182
|
* @remarks
|
|
176
|
-
* The IP
|
|
183
|
+
* The list of IP addresses in the IP whitelist group, separated by commas (,).
|
|
177
184
|
*
|
|
178
185
|
* @example
|
|
179
186
|
* 127.0.0.1
|
|
@@ -189,7 +196,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
189
196
|
status?: string;
|
|
190
197
|
/**
|
|
191
198
|
* @remarks
|
|
192
|
-
* The storage
|
|
199
|
+
* The storage size. Unit: GB.
|
|
193
200
|
*
|
|
194
201
|
* @example
|
|
195
202
|
* 2
|
|
@@ -198,13 +205,9 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
198
205
|
/**
|
|
199
206
|
* @remarks
|
|
200
207
|
* The storage type. Valid values:
|
|
201
|
-
*
|
|
202
208
|
* - **cloud_essd_pl0**
|
|
203
|
-
*
|
|
204
209
|
* - **cloud_essd_pl1**
|
|
205
|
-
*
|
|
206
210
|
* - **cloud_essd_pl2**
|
|
207
|
-
*
|
|
208
211
|
* - **cloud_essd_pl3**
|
|
209
212
|
*
|
|
210
213
|
* @example
|
|
@@ -213,7 +216,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
213
216
|
storageType?: string;
|
|
214
217
|
/**
|
|
215
218
|
* @remarks
|
|
216
|
-
* The vSwitch ID.
|
|
219
|
+
* The vSwitch ID. This parameter is required if a VPC ID is specified.
|
|
217
220
|
*
|
|
218
221
|
* @example
|
|
219
222
|
* vsw-bp1cpq8mr64paltkb****
|
|
@@ -222,9 +225,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
222
225
|
/**
|
|
223
226
|
* @remarks
|
|
224
227
|
* 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
|
-
* >
|
|
228
|
+
* > - You can call the [DescribeRdsVpcs](https://help.aliyun.com/document_detail/208327.html) operation to query available VPC IDs.
|
|
228
229
|
* > - This parameter is required.
|
|
229
230
|
*
|
|
230
231
|
* @example
|
|
@@ -235,7 +236,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
235
236
|
* @remarks
|
|
236
237
|
* The zone ID.
|
|
237
238
|
*
|
|
238
|
-
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query
|
|
239
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available zone IDs.
|
|
239
240
|
*
|
|
240
241
|
* @example
|
|
241
242
|
* cn-hangzhou-i
|
|
@@ -243,6 +244,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
243
244
|
zoneId?: string;
|
|
244
245
|
static names(): { [key: string]: string } {
|
|
245
246
|
return {
|
|
247
|
+
appliedIdleTimeHours: 'AppliedIdleTimeHours',
|
|
246
248
|
autoScale: 'AutoScale',
|
|
247
249
|
createTime: 'CreateTime',
|
|
248
250
|
DBSecurityIpList: 'DBSecurityIpList',
|
|
@@ -275,6 +277,7 @@ export class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
275
277
|
|
|
276
278
|
static types(): { [key: string]: any } {
|
|
277
279
|
return {
|
|
280
|
+
appliedIdleTimeHours: 'string',
|
|
278
281
|
autoScale: 'string',
|
|
279
282
|
createTime: 'string',
|
|
280
283
|
DBSecurityIpList: 'string',
|
|
@@ -15,6 +15,7 @@ export class ModifySupabaseAutoScalePolicyRequest extends $dara.Model {
|
|
|
15
15
|
* false
|
|
16
16
|
*/
|
|
17
17
|
autoScale?: boolean;
|
|
18
|
+
idleTimeHours?: string;
|
|
18
19
|
/**
|
|
19
20
|
* @remarks
|
|
20
21
|
* The ID of the Supabase project. You can obtain the workspace ID from the Supabase page in the console.
|
|
@@ -36,6 +37,7 @@ export class ModifySupabaseAutoScalePolicyRequest extends $dara.Model {
|
|
|
36
37
|
static names(): { [key: string]: string } {
|
|
37
38
|
return {
|
|
38
39
|
autoScale: 'AutoScale',
|
|
40
|
+
idleTimeHours: 'IdleTimeHours',
|
|
39
41
|
projectId: 'ProjectId',
|
|
40
42
|
regionId: 'RegionId',
|
|
41
43
|
};
|
|
@@ -44,6 +46,7 @@ export class ModifySupabaseAutoScalePolicyRequest extends $dara.Model {
|
|
|
44
46
|
static types(): { [key: string]: any } {
|
|
45
47
|
return {
|
|
46
48
|
autoScale: 'boolean',
|
|
49
|
+
idleTimeHours: 'string',
|
|
47
50
|
projectId: 'string',
|
|
48
51
|
regionId: 'string',
|
|
49
52
|
};
|
|
@@ -6,10 +6,9 @@ export class ResetSupabaseProjectPasswordRequest extends $dara.Model {
|
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
8
|
* The password of the database account.
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
* * The password must be 8 to 32 characters in length.
|
|
9
|
+
* - The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters.
|
|
10
|
+
* - The following special characters are supported: `!@#$%^&*()_+-=`
|
|
11
|
+
* - The password must be 8 to 32 characters in length.
|
|
13
12
|
*
|
|
14
13
|
* This parameter is required.
|
|
15
14
|
*
|
|
@@ -17,9 +16,10 @@ export class ResetSupabaseProjectPasswordRequest extends $dara.Model {
|
|
|
17
16
|
* Pw123456
|
|
18
17
|
*/
|
|
19
18
|
accountPassword?: string;
|
|
19
|
+
dashboardPassword?: string;
|
|
20
20
|
/**
|
|
21
21
|
* @remarks
|
|
22
|
-
* Supabase
|
|
22
|
+
* The Supabase instance ID.
|
|
23
23
|
*
|
|
24
24
|
* This parameter is required.
|
|
25
25
|
*
|
|
@@ -38,6 +38,7 @@ export class ResetSupabaseProjectPasswordRequest extends $dara.Model {
|
|
|
38
38
|
static names(): { [key: string]: string } {
|
|
39
39
|
return {
|
|
40
40
|
accountPassword: 'AccountPassword',
|
|
41
|
+
dashboardPassword: 'DashboardPassword',
|
|
41
42
|
projectId: 'ProjectId',
|
|
42
43
|
regionId: 'RegionId',
|
|
43
44
|
};
|
|
@@ -46,6 +47,7 @@ export class ResetSupabaseProjectPasswordRequest extends $dara.Model {
|
|
|
46
47
|
static types(): { [key: string]: any } {
|
|
47
48
|
return {
|
|
48
49
|
accountPassword: 'string',
|
|
50
|
+
dashboardPassword: 'string',
|
|
49
51
|
projectId: 'string',
|
|
50
52
|
regionId: 'string',
|
|
51
53
|
};
|
package/src/models/model.ts
CHANGED
|
@@ -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';
|