@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.
- package/dist/client.d.ts +21 -6
- package/dist/client.js +48 -6
- 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 +25 -36
- package/dist/models/GetSupabaseProjectResponseBody.js.map +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 +52 -6
- 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 +25 -36
- 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 this value 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
|
|
@@ -2,12 +2,9 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @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.
|
|
5
|
+
* Indicates whether **auto start/stop** is enabled. Valid values:
|
|
6
|
+
* - true: Enabled. When enabled, Supabase automatically pauses and resumes based on traffic conditions.
|
|
7
|
+
* - false: Disabled. When disabled, the auto start/stop feature of Supabase is turned off.
|
|
11
8
|
*
|
|
12
9
|
* @example
|
|
13
10
|
* false
|
|
@@ -15,7 +12,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
15
12
|
autoScale?: string;
|
|
16
13
|
/**
|
|
17
14
|
* @remarks
|
|
18
|
-
* The creation time
|
|
15
|
+
* The creation time.
|
|
19
16
|
*
|
|
20
17
|
* @example
|
|
21
18
|
* 2019-09-08T16:00:00Z
|
|
@@ -23,7 +20,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
23
20
|
createTime?: string;
|
|
24
21
|
/**
|
|
25
22
|
* @remarks
|
|
26
|
-
* The database
|
|
23
|
+
* The database whitelist.
|
|
27
24
|
*
|
|
28
25
|
* @example
|
|
29
26
|
* 127.0.0.1,100.64.XX.XX/10
|
|
@@ -31,7 +28,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
31
28
|
DBSecurityIpList?: string;
|
|
32
29
|
/**
|
|
33
30
|
* @remarks
|
|
34
|
-
* The
|
|
31
|
+
* The Supabase Dashboard password (not currently in use).
|
|
35
32
|
*
|
|
36
33
|
* @example
|
|
37
34
|
* xxpassword
|
|
@@ -39,7 +36,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
39
36
|
dashboardPassword?: string;
|
|
40
37
|
/**
|
|
41
38
|
* @remarks
|
|
42
|
-
* The
|
|
39
|
+
* The Supabase Dashboard username (not currently in use).
|
|
43
40
|
*
|
|
44
41
|
* @example
|
|
45
42
|
* username
|
|
@@ -47,10 +44,8 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
47
44
|
dashboardUserName?: string;
|
|
48
45
|
/**
|
|
49
46
|
* @remarks
|
|
50
|
-
* The performance level
|
|
51
|
-
*
|
|
47
|
+
* The cloud disk performance level. Valid values:
|
|
52
48
|
* - PL0
|
|
53
|
-
*
|
|
54
49
|
* - PL1
|
|
55
50
|
*
|
|
56
51
|
* @example
|
|
@@ -59,7 +54,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
59
54
|
diskPerformanceLevel?: string;
|
|
60
55
|
/**
|
|
61
56
|
* @remarks
|
|
62
|
-
* The database engine.
|
|
57
|
+
* The database engine type.
|
|
63
58
|
*
|
|
64
59
|
* @example
|
|
65
60
|
* postgres
|
|
@@ -67,7 +62,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
67
62
|
engine?: string;
|
|
68
63
|
/**
|
|
69
64
|
* @remarks
|
|
70
|
-
* The engine version.
|
|
65
|
+
* The DPI engine version.
|
|
71
66
|
*
|
|
72
67
|
* @example
|
|
73
68
|
* 15
|
|
@@ -75,7 +70,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
75
70
|
engineVersion?: string;
|
|
76
71
|
/**
|
|
77
72
|
* @remarks
|
|
78
|
-
* The elastic network
|
|
73
|
+
* The elastic network interfaces (ENIs) ID, which identifies the network interface controller (NIC).
|
|
79
74
|
*
|
|
80
75
|
* @example
|
|
81
76
|
* eni-xxxxxx
|
|
@@ -92,11 +87,11 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
92
87
|
lightweight?: string;
|
|
93
88
|
/**
|
|
94
89
|
* @remarks
|
|
95
|
-
* The billing
|
|
90
|
+
* The billing type. Valid values:
|
|
96
91
|
*
|
|
97
|
-
* -
|
|
92
|
+
* - POSTPAY: Pay-as-you-go.
|
|
98
93
|
*
|
|
99
|
-
* -
|
|
94
|
+
* - PREPAY: Subscription.
|
|
100
95
|
*
|
|
101
96
|
* @example
|
|
102
97
|
* POSTPAY
|
|
@@ -104,7 +99,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
104
99
|
payType?: string;
|
|
105
100
|
/**
|
|
106
101
|
* @remarks
|
|
107
|
-
* The
|
|
102
|
+
* The internal network connection string of the Supabase Dashboard.
|
|
108
103
|
*
|
|
109
104
|
* @example
|
|
110
105
|
* 192.168.0.11
|
|
@@ -112,7 +107,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
112
107
|
privateConnectUrl?: string;
|
|
113
108
|
/**
|
|
114
109
|
* @remarks
|
|
115
|
-
* The description of the Supabase project.
|
|
110
|
+
* The detailed description of the Supabase project.
|
|
116
111
|
*
|
|
117
112
|
* @example
|
|
118
113
|
* for-test-project
|
|
@@ -120,7 +115,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
120
115
|
projectDescription?: string;
|
|
121
116
|
/**
|
|
122
117
|
* @remarks
|
|
123
|
-
* The Supabase
|
|
118
|
+
* The Supabase instance ID.
|
|
124
119
|
*
|
|
125
120
|
* @example
|
|
126
121
|
* sbp-545434
|
|
@@ -136,7 +131,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
136
131
|
projectName?: string;
|
|
137
132
|
/**
|
|
138
133
|
* @remarks
|
|
139
|
-
* The Supabase instance
|
|
134
|
+
* The Supabase instance specifications.
|
|
140
135
|
*
|
|
141
136
|
* @example
|
|
142
137
|
* 1C1G
|
|
@@ -144,7 +139,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
144
139
|
projectSpec?: string;
|
|
145
140
|
/**
|
|
146
141
|
* @remarks
|
|
147
|
-
* The public connection
|
|
142
|
+
* The public network connection string of the Supabase Dashboard.
|
|
148
143
|
*
|
|
149
144
|
* @example
|
|
150
145
|
* 10.154.11.10
|
|
@@ -154,7 +149,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
154
149
|
* @remarks
|
|
155
150
|
* The region ID.
|
|
156
151
|
*
|
|
157
|
-
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query
|
|
152
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available region IDs.
|
|
158
153
|
*
|
|
159
154
|
* @example
|
|
160
155
|
* cn-hangzhou
|
|
@@ -170,7 +165,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
170
165
|
requestId?: string;
|
|
171
166
|
/**
|
|
172
167
|
* @remarks
|
|
173
|
-
* The IP
|
|
168
|
+
* The list of IP addresses in the IP whitelist group, separated by commas (,).
|
|
174
169
|
*
|
|
175
170
|
* @example
|
|
176
171
|
* 127.0.0.1
|
|
@@ -186,7 +181,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
186
181
|
status?: string;
|
|
187
182
|
/**
|
|
188
183
|
* @remarks
|
|
189
|
-
* The storage
|
|
184
|
+
* The storage size. Unit: GB.
|
|
190
185
|
*
|
|
191
186
|
* @example
|
|
192
187
|
* 2
|
|
@@ -195,13 +190,9 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
195
190
|
/**
|
|
196
191
|
* @remarks
|
|
197
192
|
* The storage type. Valid values:
|
|
198
|
-
*
|
|
199
193
|
* - **cloud_essd_pl0**
|
|
200
|
-
*
|
|
201
194
|
* - **cloud_essd_pl1**
|
|
202
|
-
*
|
|
203
195
|
* - **cloud_essd_pl2**
|
|
204
|
-
*
|
|
205
196
|
* - **cloud_essd_pl3**
|
|
206
197
|
*
|
|
207
198
|
* @example
|
|
@@ -210,7 +201,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
210
201
|
storageType?: string;
|
|
211
202
|
/**
|
|
212
203
|
* @remarks
|
|
213
|
-
* The vSwitch ID.
|
|
204
|
+
* The vSwitch ID. This parameter is required if a VPC ID is specified.
|
|
214
205
|
*
|
|
215
206
|
* @example
|
|
216
207
|
* vsw-bp1cpq8mr64paltkb****
|
|
@@ -219,9 +210,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
219
210
|
/**
|
|
220
211
|
* @remarks
|
|
221
212
|
* 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
|
-
* >
|
|
213
|
+
* > - You can call the [DescribeRdsVpcs](https://help.aliyun.com/document_detail/208327.html) operation to query available VPC IDs.
|
|
225
214
|
* > - This parameter is required.
|
|
226
215
|
*
|
|
227
216
|
* @example
|
|
@@ -232,7 +221,7 @@ export declare class GetSupabaseProjectResponseBody extends $dara.Model {
|
|
|
232
221
|
* @remarks
|
|
233
222
|
* The zone ID.
|
|
234
223
|
*
|
|
235
|
-
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query
|
|
224
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/86912.html) operation to query available zone IDs.
|
|
236
225
|
*
|
|
237
226
|
* @example
|
|
238
227
|
* cn-hangzhou-i
|
|
@@ -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;IAoO7D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,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,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;AA3SD,wEA2SC"}
|
package/dist/models/model.d.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';
|