@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
|
@@ -40,7 +40,7 @@ export declare class CreateSupabaseProjectRequest extends $dara.Model {
|
|
|
40
40
|
autoScale?: boolean;
|
|
41
41
|
/**
|
|
42
42
|
* @remarks
|
|
43
|
-
* The idempotency token. Ensures that
|
|
43
|
+
* The idempotency token. Ensures that duplicate requests do not result in duplicate operations.
|
|
44
44
|
*
|
|
45
45
|
* @example
|
|
46
46
|
* 123e4567-e89b-12d3-a456-426655440000
|
|
@@ -77,7 +77,7 @@ export declare class CreateSupabaseProjectRequest extends $dara.Model {
|
|
|
77
77
|
lightweight?: boolean;
|
|
78
78
|
/**
|
|
79
79
|
* @remarks
|
|
80
|
-
* The billing
|
|
80
|
+
* The billing type. If this parameter is not specified, the default value Free is used.
|
|
81
81
|
*
|
|
82
82
|
* Valid values:
|
|
83
83
|
*
|
|
@@ -148,7 +148,7 @@ export declare class CreateSupabaseProjectRequest extends $dara.Model {
|
|
|
148
148
|
securityIPList?: string;
|
|
149
149
|
/**
|
|
150
150
|
* @remarks
|
|
151
|
-
* The storage size
|
|
151
|
+
* The storage size, in GB. If this parameter is not specified for non-Free billing types, the default value is 1 GB.
|
|
152
152
|
*
|
|
153
153
|
* @example
|
|
154
154
|
* 50
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeDBVersionRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* The instance ID.
|
|
6
|
+
*
|
|
7
|
+
* This parameter is required.
|
|
8
|
+
*
|
|
9
|
+
* @example
|
|
10
|
+
* gp-xxxxxxxxxx
|
|
11
|
+
*/
|
|
12
|
+
DBInstanceId?: string;
|
|
13
|
+
ownerId?: number;
|
|
14
|
+
static names(): {
|
|
15
|
+
[key: string]: string;
|
|
16
|
+
};
|
|
17
|
+
static types(): {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
};
|
|
20
|
+
validate(): void;
|
|
21
|
+
constructor(map?: {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeDBVersionRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeDBVersionRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
DBInstanceId: 'DBInstanceId',
|
|
43
|
+
ownerId: 'OwnerId',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
static types() {
|
|
47
|
+
return {
|
|
48
|
+
DBInstanceId: 'string',
|
|
49
|
+
ownerId: 'number',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
validate() {
|
|
53
|
+
super.validate();
|
|
54
|
+
}
|
|
55
|
+
constructor(map) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.DescribeDBVersionRequest = DescribeDBVersionRequest;
|
|
60
|
+
//# sourceMappingURL=DescribeDbversionRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeDbversionRequest.js","sourceRoot":"","sources":["../../src/models/DescribeDbversionRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wBAAyB,SAAQ,KAAK,CAAC,KAAK;IAYvD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,QAAQ;YACtB,OAAO,EAAE,QAAQ;SAClB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,4DAiCC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { DescribeDBVersionResponseBody } from "./DescribeDbversionResponseBody";
|
|
3
|
+
export declare class DescribeDBVersionResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: DescribeDBVersionResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeDBVersionResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const DescribeDbversionResponseBody_1 = require("./DescribeDbversionResponseBody");
|
|
40
|
+
class DescribeDBVersionResponse extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
headers: 'headers',
|
|
44
|
+
statusCode: 'statusCode',
|
|
45
|
+
body: 'body',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
51
|
+
statusCode: 'number',
|
|
52
|
+
body: DescribeDbversionResponseBody_1.DescribeDBVersionResponseBody,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
validate() {
|
|
56
|
+
if (this.headers) {
|
|
57
|
+
$dara.Model.validateMap(this.headers);
|
|
58
|
+
}
|
|
59
|
+
if (this.body && typeof this.body.validate === 'function') {
|
|
60
|
+
this.body.validate();
|
|
61
|
+
}
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
constructor(map) {
|
|
65
|
+
super(map);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.DescribeDBVersionResponse = DescribeDBVersionResponse;
|
|
69
|
+
//# sourceMappingURL=DescribeDbversionResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeDbversionResponse.js","sourceRoot":"","sources":["../../src/models/DescribeDbversionResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,mFAAgF;AAGhF,MAAa,yBAA0B,SAAQ,KAAK,CAAC,KAAK;IAIxD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,6DAA6B;SACpC,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,8DAiCC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeDBVersionResponseBody extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* The request ID.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* 25C11EE5-B7E8-481A-A07C-BD619971A570
|
|
9
|
+
*/
|
|
10
|
+
requestId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* 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.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* mm.v7.4.2.7-202608031659,mm.v7.3.2.12-202608071438
|
|
17
|
+
*/
|
|
18
|
+
versionSuggestion?: string;
|
|
19
|
+
static names(): {
|
|
20
|
+
[key: string]: string;
|
|
21
|
+
};
|
|
22
|
+
static types(): {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
};
|
|
25
|
+
validate(): void;
|
|
26
|
+
constructor(map?: {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
});
|
|
29
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeDBVersionResponseBody = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeDBVersionResponseBody extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
requestId: 'RequestId',
|
|
43
|
+
versionSuggestion: 'VersionSuggestion',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
static types() {
|
|
47
|
+
return {
|
|
48
|
+
requestId: 'string',
|
|
49
|
+
versionSuggestion: 'string',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
validate() {
|
|
53
|
+
super.validate();
|
|
54
|
+
}
|
|
55
|
+
constructor(map) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.DescribeDBVersionResponseBody = DescribeDBVersionResponseBody;
|
|
60
|
+
//# sourceMappingURL=DescribeDbversionResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeDbversionResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeDbversionResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,6BAA8B,SAAQ,KAAK,CAAC,KAAK;IAiB5D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,iBAAiB,EAAE,mBAAmB;SACvC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,iBAAiB,EAAE,QAAQ;SAC5B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,sEAsCC"}
|
|
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class GetSupabaseProjectRequest extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
* The Supabase instance ID. You can
|
|
5
|
+
* The Supabase instance ID. You can obtain the ID from the Supabase page in the console.
|
|
6
6
|
*
|
|
7
7
|
* This parameter is required.
|
|
8
8
|
*
|
|
@@ -14,7 +14,7 @@ export declare class GetSupabaseProjectRequest extends $dara.Model {
|
|
|
14
14
|
* @remarks
|
|
15
15
|
* The region ID.
|
|
16
16
|
*
|
|
17
|
-
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to
|
|
17
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available region IDs.
|
|
18
18
|
*
|
|
19
19
|
* @example
|
|
20
20
|
* cn-hangzhou
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
2
|
export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 0.5
|
|
6
|
+
*/
|
|
7
|
+
appliedIdleTimeHours?: string;
|
|
3
8
|
/**
|
|
4
9
|
* @remarks
|
|
5
|
-
* Indicates whether
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* - `true`: The feature is enabled. The project automatically pauses and resumes based on traffic.
|
|
9
|
-
*
|
|
10
|
-
* - `false`: The feature is disabled.
|
|
10
|
+
* Indicates whether **auto start and stop** is enabled. Valid values:
|
|
11
|
+
* - true: Enabled. After this feature is enabled, Supabase automatically pauses and resumes based on traffic conditions.
|
|
12
|
+
* - false: Disabled. After this feature is disabled, the auto start and stop feature of Supabase is turned off.
|
|
11
13
|
*
|
|
12
14
|
* @example
|
|
13
15
|
* false
|
|
@@ -15,7 +17,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
15
17
|
autoScale?: string;
|
|
16
18
|
/**
|
|
17
19
|
* @remarks
|
|
18
|
-
* The creation time
|
|
20
|
+
* The creation time.
|
|
19
21
|
*
|
|
20
22
|
* @example
|
|
21
23
|
* 2019-09-08T16:00:00Z
|
|
@@ -23,7 +25,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
23
25
|
createTime?: string;
|
|
24
26
|
/**
|
|
25
27
|
* @remarks
|
|
26
|
-
* The database
|
|
28
|
+
* The database whitelist.
|
|
27
29
|
*
|
|
28
30
|
* @example
|
|
29
31
|
* 127.0.0.1,100.64.XX.XX/10
|
|
@@ -31,7 +33,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
31
33
|
DBSecurityIpList?: string;
|
|
32
34
|
/**
|
|
33
35
|
* @remarks
|
|
34
|
-
* The
|
|
36
|
+
* The Supabase Dashboard password. This parameter is not in use.
|
|
35
37
|
*
|
|
36
38
|
* @example
|
|
37
39
|
* xxpassword
|
|
@@ -39,7 +41,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
39
41
|
dashboardPassword?: string;
|
|
40
42
|
/**
|
|
41
43
|
* @remarks
|
|
42
|
-
* The
|
|
44
|
+
* The Supabase Dashboard username. This parameter is not in use.
|
|
43
45
|
*
|
|
44
46
|
* @example
|
|
45
47
|
* username
|
|
@@ -47,10 +49,8 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
47
49
|
dashboardUserName?: string;
|
|
48
50
|
/**
|
|
49
51
|
* @remarks
|
|
50
|
-
* The performance level
|
|
51
|
-
*
|
|
52
|
+
* The performance level of the cloud disk. Valid values:
|
|
52
53
|
* - PL0
|
|
53
|
-
*
|
|
54
54
|
* - PL1
|
|
55
55
|
*
|
|
56
56
|
* @example
|
|
@@ -59,7 +59,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
59
59
|
diskPerformanceLevel?: string;
|
|
60
60
|
/**
|
|
61
61
|
* @remarks
|
|
62
|
-
* The database engine.
|
|
62
|
+
* The database engine type.
|
|
63
63
|
*
|
|
64
64
|
* @example
|
|
65
65
|
* postgres
|
|
@@ -67,7 +67,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
67
67
|
engine?: string;
|
|
68
68
|
/**
|
|
69
69
|
* @remarks
|
|
70
|
-
* The engine version.
|
|
70
|
+
* The database engine version.
|
|
71
71
|
*
|
|
72
72
|
* @example
|
|
73
73
|
* 15
|
|
@@ -75,7 +75,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
75
75
|
engineVersion?: string;
|
|
76
76
|
/**
|
|
77
77
|
* @remarks
|
|
78
|
-
* The elastic network interface (ENI) ID.
|
|
78
|
+
* The elastic network interface (ENI) ID. The network interface controller (NIC) ID of the instance.
|
|
79
79
|
*
|
|
80
80
|
* @example
|
|
81
81
|
* eni-xxxxxx
|
|
@@ -89,14 +89,21 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
89
89
|
* v1.0.3
|
|
90
90
|
*/
|
|
91
91
|
instanceVersion?: string;
|
|
92
|
+
/**
|
|
93
|
+
* @remarks
|
|
94
|
+
* Indicates whether the project is a lightweight edition.
|
|
95
|
+
*
|
|
96
|
+
* @example
|
|
97
|
+
* false
|
|
98
|
+
*/
|
|
92
99
|
lightweight?: string;
|
|
93
100
|
/**
|
|
94
101
|
* @remarks
|
|
95
|
-
* The billing
|
|
102
|
+
* The billing type. Valid values:
|
|
96
103
|
*
|
|
97
|
-
* -
|
|
104
|
+
* - POSTPAY: pay-as-you-go.
|
|
98
105
|
*
|
|
99
|
-
* -
|
|
106
|
+
* - PREPAY: subscription.
|
|
100
107
|
*
|
|
101
108
|
* @example
|
|
102
109
|
* POSTPAY
|
|
@@ -104,7 +111,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
104
111
|
payType?: string;
|
|
105
112
|
/**
|
|
106
113
|
* @remarks
|
|
107
|
-
* The
|
|
114
|
+
* The internal network connection string of the Supabase Dashboard.
|
|
108
115
|
*
|
|
109
116
|
* @example
|
|
110
117
|
* 192.168.0.11
|
|
@@ -112,7 +119,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
112
119
|
privateConnectUrl?: string;
|
|
113
120
|
/**
|
|
114
121
|
* @remarks
|
|
115
|
-
* The description of the Supabase project.
|
|
122
|
+
* The detailed description of the Supabase project.
|
|
116
123
|
*
|
|
117
124
|
* @example
|
|
118
125
|
* for-test-project
|
|
@@ -120,7 +127,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
120
127
|
projectDescription?: string;
|
|
121
128
|
/**
|
|
122
129
|
* @remarks
|
|
123
|
-
* The Supabase
|
|
130
|
+
* The Supabase instance ID.
|
|
124
131
|
*
|
|
125
132
|
* @example
|
|
126
133
|
* sbp-545434
|
|
@@ -136,7 +143,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
136
143
|
projectName?: string;
|
|
137
144
|
/**
|
|
138
145
|
* @remarks
|
|
139
|
-
* The Supabase instance
|
|
146
|
+
* The Supabase instance specifications.
|
|
140
147
|
*
|
|
141
148
|
* @example
|
|
142
149
|
* 1C1G
|
|
@@ -144,7 +151,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
144
151
|
projectSpec?: string;
|
|
145
152
|
/**
|
|
146
153
|
* @remarks
|
|
147
|
-
* The public connection
|
|
154
|
+
* The public network connection string of the Supabase Dashboard.
|
|
148
155
|
*
|
|
149
156
|
* @example
|
|
150
157
|
* 10.154.11.10
|
|
@@ -154,7 +161,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
154
161
|
* @remarks
|
|
155
162
|
* The region ID.
|
|
156
163
|
*
|
|
157
|
-
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query
|
|
164
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available region IDs.
|
|
158
165
|
*
|
|
159
166
|
* @example
|
|
160
167
|
* cn-hangzhou
|
|
@@ -170,7 +177,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
170
177
|
requestId?: string;
|
|
171
178
|
/**
|
|
172
179
|
* @remarks
|
|
173
|
-
* The IP
|
|
180
|
+
* The list of IP addresses in the IP whitelist group, separated by commas (,).
|
|
174
181
|
*
|
|
175
182
|
* @example
|
|
176
183
|
* 127.0.0.1
|
|
@@ -186,7 +193,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
186
193
|
status?: string;
|
|
187
194
|
/**
|
|
188
195
|
* @remarks
|
|
189
|
-
* The storage
|
|
196
|
+
* The storage size. Unit: GB.
|
|
190
197
|
*
|
|
191
198
|
* @example
|
|
192
199
|
* 2
|
|
@@ -195,13 +202,9 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
195
202
|
/**
|
|
196
203
|
* @remarks
|
|
197
204
|
* The storage type. Valid values:
|
|
198
|
-
*
|
|
199
205
|
* - **cloud_essd_pl0**
|
|
200
|
-
*
|
|
201
206
|
* - **cloud_essd_pl1**
|
|
202
|
-
*
|
|
203
207
|
* - **cloud_essd_pl2**
|
|
204
|
-
*
|
|
205
208
|
* - **cloud_essd_pl3**
|
|
206
209
|
*
|
|
207
210
|
* @example
|
|
@@ -210,7 +213,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
210
213
|
storageType?: string;
|
|
211
214
|
/**
|
|
212
215
|
* @remarks
|
|
213
|
-
* The vSwitch ID.
|
|
216
|
+
* The vSwitch ID. This parameter is required if a VPC ID is specified.
|
|
214
217
|
*
|
|
215
218
|
* @example
|
|
216
219
|
* vsw-bp1cpq8mr64paltkb****
|
|
@@ -219,9 +222,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
219
222
|
/**
|
|
220
223
|
* @remarks
|
|
221
224
|
* The VPC ID.
|
|
222
|
-
*
|
|
223
|
-
* > - You can call the [DescribeRdsVpcs](https://help.aliyun.com/document_detail/208327.html) operation to query the available VPCs.
|
|
224
|
-
* >
|
|
225
|
+
* > - You can call the [DescribeRdsVpcs](https://help.aliyun.com/document_detail/208327.html) operation to query available VPC IDs.
|
|
225
226
|
* > - This parameter is required.
|
|
226
227
|
*
|
|
227
228
|
* @example
|
|
@@ -232,7 +233,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
232
233
|
* @remarks
|
|
233
234
|
* The zone ID.
|
|
234
235
|
*
|
|
235
|
-
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query
|
|
236
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available zone IDs.
|
|
236
237
|
*
|
|
237
238
|
* @example
|
|
238
239
|
* cn-hangzhou-i
|
|
@@ -39,6 +39,7 @@ const $dara = __importStar(require("@darabonba/typescript"));
|
|
|
39
39
|
class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
40
40
|
static names() {
|
|
41
41
|
return {
|
|
42
|
+
appliedIdleTimeHours: 'AppliedIdleTimeHours',
|
|
42
43
|
autoScale: 'AutoScale',
|
|
43
44
|
createTime: 'CreateTime',
|
|
44
45
|
DBSecurityIpList: 'DBSecurityIpList',
|
|
@@ -70,6 +71,7 @@ class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
70
71
|
}
|
|
71
72
|
static types() {
|
|
72
73
|
return {
|
|
74
|
+
appliedIdleTimeHours: 'string',
|
|
73
75
|
autoScale: 'string',
|
|
74
76
|
createTime: 'string',
|
|
75
77
|
DBSecurityIpList: 'string',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetSupabaseProjectResponseBody.js","sourceRoot":"","sources":["../../src/models/GetSupabaseProjectResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,8BAA+B,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"GetSupabaseProjectResponseBody.js","sourceRoot":"","sources":["../../src/models/GetSupabaseProjectResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,8BAA+B,SAAQ,KAAK,CAAC,KAAK;IAgP7D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,oBAAoB,EAAE,sBAAsB;YAC5C,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;YACxB,gBAAgB,EAAE,kBAAkB;YACpC,iBAAiB,EAAE,mBAAmB;YACtC,iBAAiB,EAAE,mBAAmB;YACtC,oBAAoB,EAAE,sBAAsB;YAC5C,MAAM,EAAE,QAAQ;YAChB,aAAa,EAAE,eAAe;YAC9B,GAAG,EAAE,KAAK;YACV,eAAe,EAAE,iBAAiB;YAClC,WAAW,EAAE,aAAa;YAC1B,OAAO,EAAE,SAAS;YAClB,iBAAiB,EAAE,mBAAmB;YACtC,kBAAkB,EAAE,oBAAoB;YACxC,SAAS,EAAE,WAAW;YACtB,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,aAAa;YAC1B,gBAAgB,EAAE,kBAAkB;YACpC,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;YACtB,cAAc,EAAE,gBAAgB;YAChC,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,aAAa;YAC1B,SAAS,EAAE,WAAW;YACtB,KAAK,EAAE,OAAO;YACd,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,oBAAoB,EAAE,QAAQ;YAC9B,SAAS,EAAE,QAAQ;YACnB,UAAU,EAAE,QAAQ;YACpB,gBAAgB,EAAE,QAAQ;YAC1B,iBAAiB,EAAE,QAAQ;YAC3B,iBAAiB,EAAE,QAAQ;YAC3B,oBAAoB,EAAE,QAAQ;YAC9B,MAAM,EAAE,QAAQ;YAChB,aAAa,EAAE,QAAQ;YACvB,GAAG,EAAE,QAAQ;YACb,eAAe,EAAE,QAAQ;YACzB,WAAW,EAAE,QAAQ;YACrB,OAAO,EAAE,QAAQ;YACjB,iBAAiB,EAAE,QAAQ;YAC3B,kBAAkB,EAAE,QAAQ;YAC5B,SAAS,EAAE,QAAQ;YACnB,WAAW,EAAE,QAAQ;YACrB,WAAW,EAAE,QAAQ;YACrB,gBAAgB,EAAE,QAAQ;YAC1B,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;YACnB,cAAc,EAAE,QAAQ;YACxB,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,QAAQ;YACrB,WAAW,EAAE,QAAQ;YACrB,SAAS,EAAE,QAAQ;YACnB,KAAK,EAAE,QAAQ;YACf,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAzTD,wEAyTC"}
|
|
@@ -12,6 +12,7 @@ export declare class ModifySupabaseAutoScalePolicyRequest extends $dara.Model {
|
|
|
12
12
|
* false
|
|
13
13
|
*/
|
|
14
14
|
autoScale?: boolean;
|
|
15
|
+
idleTimeHours?: string;
|
|
15
16
|
/**
|
|
16
17
|
* @remarks
|
|
17
18
|
* The ID of the Supabase project. You can obtain the workspace ID from the Supabase page in the console.
|
|
@@ -40,6 +40,7 @@ class ModifySupabaseAutoScalePolicyRequest extends $dara.Model {
|
|
|
40
40
|
static names() {
|
|
41
41
|
return {
|
|
42
42
|
autoScale: 'AutoScale',
|
|
43
|
+
idleTimeHours: 'IdleTimeHours',
|
|
43
44
|
projectId: 'ProjectId',
|
|
44
45
|
regionId: 'RegionId',
|
|
45
46
|
};
|
|
@@ -47,6 +48,7 @@ class ModifySupabaseAutoScalePolicyRequest extends $dara.Model {
|
|
|
47
48
|
static types() {
|
|
48
49
|
return {
|
|
49
50
|
autoScale: 'boolean',
|
|
51
|
+
idleTimeHours: 'string',
|
|
50
52
|
projectId: 'string',
|
|
51
53
|
regionId: 'string',
|
|
52
54
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModifySupabaseAutoScalePolicyRequest.js","sourceRoot":"","sources":["../../src/models/ModifySupabaseAutoScalePolicyRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ModifySupabaseAutoScalePolicyRequest.js","sourceRoot":"","sources":["../../src/models/ModifySupabaseAutoScalePolicyRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAgCnE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,eAAe;YAC9B,SAAS,EAAE,WAAW;YACtB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,SAAS;YACpB,aAAa,EAAE,QAAQ;YACvB,SAAS,EAAE,QAAQ;YACnB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAzDD,oFAyDC"}
|
|
@@ -3,10 +3,9 @@ export declare class ResetSupabaseProjectPasswordRequest extends $dara.Model {
|
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
5
|
* The password of the database account.
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* * The password must be 8 to 32 characters in length.
|
|
6
|
+
* - The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters.
|
|
7
|
+
* - The following special characters are supported: `!@#$%^&*()_+-=`
|
|
8
|
+
* - The password must be 8 to 32 characters in length.
|
|
10
9
|
*
|
|
11
10
|
* This parameter is required.
|
|
12
11
|
*
|
|
@@ -14,9 +13,10 @@ export declare class ResetSupabaseProjectPasswordRequest extends $dara.Model {
|
|
|
14
13
|
* Pw123456
|
|
15
14
|
*/
|
|
16
15
|
accountPassword?: string;
|
|
16
|
+
dashboardPassword?: string;
|
|
17
17
|
/**
|
|
18
18
|
* @remarks
|
|
19
|
-
* Supabase
|
|
19
|
+
* The Supabase instance ID.
|
|
20
20
|
*
|
|
21
21
|
* This parameter is required.
|
|
22
22
|
*
|
|
@@ -40,6 +40,7 @@ class ResetSupabaseProjectPasswordRequest extends $dara.Model {
|
|
|
40
40
|
static names() {
|
|
41
41
|
return {
|
|
42
42
|
accountPassword: 'AccountPassword',
|
|
43
|
+
dashboardPassword: 'DashboardPassword',
|
|
43
44
|
projectId: 'ProjectId',
|
|
44
45
|
regionId: 'RegionId',
|
|
45
46
|
};
|
|
@@ -47,6 +48,7 @@ class ResetSupabaseProjectPasswordRequest extends $dara.Model {
|
|
|
47
48
|
static types() {
|
|
48
49
|
return {
|
|
49
50
|
accountPassword: 'string',
|
|
51
|
+
dashboardPassword: 'string',
|
|
50
52
|
projectId: 'string',
|
|
51
53
|
regionId: 'string',
|
|
52
54
|
};
|