@alicloud/rdsai20250507 1.0.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 (95) hide show
  1. package/LICENSE +13 -0
  2. package/README.md +25 -0
  3. package/dist/client.d.ts +116 -0
  4. package/dist/client.js +411 -0
  5. package/dist/client.js.map +1 -0
  6. package/dist/models/CreateAppInstanceRequest.d.ts +68 -0
  7. package/dist/models/CreateAppInstanceRequest.js +78 -0
  8. package/dist/models/CreateAppInstanceRequest.js.map +1 -0
  9. package/dist/models/CreateAppInstanceResponse.d.ts +19 -0
  10. package/dist/models/CreateAppInstanceResponse.js +69 -0
  11. package/dist/models/CreateAppInstanceResponse.js.map +1 -0
  12. package/dist/models/CreateAppInstanceResponseBody.d.ts +23 -0
  13. package/dist/models/CreateAppInstanceResponseBody.js +60 -0
  14. package/dist/models/CreateAppInstanceResponseBody.js.map +1 -0
  15. package/dist/models/DeleteAppInstanceRequest.d.ts +28 -0
  16. package/dist/models/DeleteAppInstanceRequest.js +62 -0
  17. package/dist/models/DeleteAppInstanceRequest.js.map +1 -0
  18. package/dist/models/DeleteAppInstanceResponse.d.ts +19 -0
  19. package/dist/models/DeleteAppInstanceResponse.js +69 -0
  20. package/dist/models/DeleteAppInstanceResponse.js.map +1 -0
  21. package/dist/models/DeleteAppInstanceResponseBody.d.ts +23 -0
  22. package/dist/models/DeleteAppInstanceResponseBody.js +60 -0
  23. package/dist/models/DeleteAppInstanceResponseBody.js.map +1 -0
  24. package/dist/models/DescribeAppInstanceAttributeRequest.d.ts +23 -0
  25. package/dist/models/DescribeAppInstanceAttributeRequest.js +60 -0
  26. package/dist/models/DescribeAppInstanceAttributeRequest.js.map +1 -0
  27. package/dist/models/DescribeAppInstanceAttributeResponse.d.ts +19 -0
  28. package/dist/models/DescribeAppInstanceAttributeResponse.js +69 -0
  29. package/dist/models/DescribeAppInstanceAttributeResponse.js.map +1 -0
  30. package/dist/models/DescribeAppInstanceAttributeResponseBody.d.ts +78 -0
  31. package/dist/models/DescribeAppInstanceAttributeResponseBody.js +82 -0
  32. package/dist/models/DescribeAppInstanceAttributeResponseBody.js.map +1 -0
  33. package/dist/models/DescribeAppInstancesRequest.d.ts +38 -0
  34. package/dist/models/DescribeAppInstancesRequest.js +66 -0
  35. package/dist/models/DescribeAppInstancesRequest.js.map +1 -0
  36. package/dist/models/DescribeAppInstancesResponse.d.ts +19 -0
  37. package/dist/models/DescribeAppInstancesResponse.js +69 -0
  38. package/dist/models/DescribeAppInstancesResponse.js.map +1 -0
  39. package/dist/models/DescribeAppInstancesResponseBody.d.ts +108 -0
  40. package/dist/models/DescribeAppInstancesResponseBody.js +112 -0
  41. package/dist/models/DescribeAppInstancesResponseBody.js.map +1 -0
  42. package/dist/models/DescribeInstanceEndpointsRequest.d.ts +23 -0
  43. package/dist/models/DescribeInstanceEndpointsRequest.js +60 -0
  44. package/dist/models/DescribeInstanceEndpointsRequest.js.map +1 -0
  45. package/dist/models/DescribeInstanceEndpointsResponse.d.ts +19 -0
  46. package/dist/models/DescribeInstanceEndpointsResponse.js +69 -0
  47. package/dist/models/DescribeInstanceEndpointsResponse.js.map +1 -0
  48. package/dist/models/DescribeInstanceEndpointsResponseBody.d.ts +56 -0
  49. package/dist/models/DescribeInstanceEndpointsResponseBody.js +90 -0
  50. package/dist/models/DescribeInstanceEndpointsResponseBody.js.map +1 -0
  51. package/dist/models/DescribeInstanceIpWhitelistRequest.d.ts +23 -0
  52. package/dist/models/DescribeInstanceIpWhitelistRequest.js +60 -0
  53. package/dist/models/DescribeInstanceIpWhitelistRequest.js.map +1 -0
  54. package/dist/models/DescribeInstanceIpWhitelistResponse.d.ts +19 -0
  55. package/dist/models/DescribeInstanceIpWhitelistResponse.js +69 -0
  56. package/dist/models/DescribeInstanceIpWhitelistResponse.js.map +1 -0
  57. package/dist/models/DescribeInstanceIpWhitelistResponseBody.d.ts +46 -0
  58. package/dist/models/DescribeInstanceIpWhitelistResponseBody.js +86 -0
  59. package/dist/models/DescribeInstanceIpWhitelistResponseBody.js.map +1 -0
  60. package/dist/models/ModifyInstanceIpWhitelistRequest.d.ts +43 -0
  61. package/dist/models/ModifyInstanceIpWhitelistRequest.js +68 -0
  62. package/dist/models/ModifyInstanceIpWhitelistRequest.js.map +1 -0
  63. package/dist/models/ModifyInstanceIpWhitelistResponse.d.ts +19 -0
  64. package/dist/models/ModifyInstanceIpWhitelistResponse.js +69 -0
  65. package/dist/models/ModifyInstanceIpWhitelistResponse.js.map +1 -0
  66. package/dist/models/ModifyInstanceIpWhitelistResponseBody.d.ts +23 -0
  67. package/dist/models/ModifyInstanceIpWhitelistResponseBody.js +60 -0
  68. package/dist/models/ModifyInstanceIpWhitelistResponseBody.js.map +1 -0
  69. package/dist/models/model.d.ts +24 -0
  70. package/dist/models/model.js +52 -0
  71. package/dist/models/model.js.map +1 -0
  72. package/package.json +29 -0
  73. package/src/client.ts +422 -0
  74. package/src/models/CreateAppInstanceRequest.ts +101 -0
  75. package/src/models/CreateAppInstanceResponse.ts +40 -0
  76. package/src/models/CreateAppInstanceResponseBody.ts +38 -0
  77. package/src/models/DeleteAppInstanceRequest.ts +45 -0
  78. package/src/models/DeleteAppInstanceResponse.ts +40 -0
  79. package/src/models/DeleteAppInstanceResponseBody.ts +38 -0
  80. package/src/models/DescribeAppInstanceAttributeRequest.ts +38 -0
  81. package/src/models/DescribeAppInstanceAttributeResponse.ts +40 -0
  82. package/src/models/DescribeAppInstanceAttributeResponseBody.ts +115 -0
  83. package/src/models/DescribeAppInstancesRequest.ts +59 -0
  84. package/src/models/DescribeAppInstancesResponse.ts +40 -0
  85. package/src/models/DescribeAppInstancesResponseBody.ts +164 -0
  86. package/src/models/DescribeInstanceEndpointsRequest.ts +38 -0
  87. package/src/models/DescribeInstanceEndpointsResponse.ts +40 -0
  88. package/src/models/DescribeInstanceEndpointsResponseBody.ts +92 -0
  89. package/src/models/DescribeInstanceIpWhitelistRequest.ts +38 -0
  90. package/src/models/DescribeInstanceIpWhitelistResponse.ts +40 -0
  91. package/src/models/DescribeInstanceIpWhitelistResponseBody.ts +78 -0
  92. package/src/models/ModifyInstanceIpWhitelistRequest.ts +66 -0
  93. package/src/models/ModifyInstanceIpWhitelistResponse.ts +40 -0
  94. package/src/models/ModifyInstanceIpWhitelistResponseBody.ts +38 -0
  95. package/src/models/model.ts +24 -0
@@ -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.DescribeAppInstanceAttributeResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const DescribeAppInstanceAttributeResponseBody_1 = require("./DescribeAppInstanceAttributeResponseBody");
40
+ class DescribeAppInstanceAttributeResponse 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: DescribeAppInstanceAttributeResponseBody_1.DescribeAppInstanceAttributeResponseBody,
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.DescribeAppInstanceAttributeResponse = DescribeAppInstanceAttributeResponse;
69
+ //# sourceMappingURL=DescribeAppInstanceAttributeResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeAppInstanceAttributeResponse.js","sourceRoot":"","sources":["../../src/models/DescribeAppInstanceAttributeResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,yGAAsG;AAGtG,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAInE,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,mFAAwC;SAC/C,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,oFAiCC"}
@@ -0,0 +1,78 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class DescribeAppInstanceAttributeResponseBody extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * test-supabase
6
+ */
7
+ appName?: string;
8
+ /**
9
+ * @example
10
+ * supabase
11
+ */
12
+ appType?: string;
13
+ /**
14
+ * @example
15
+ * pgm-2ze49qv594vi****
16
+ */
17
+ DBInstanceName?: string;
18
+ /**
19
+ * @example
20
+ * rdsai.supabase.basic
21
+ */
22
+ instanceClass?: string;
23
+ /**
24
+ * @example
25
+ * 20241231
26
+ */
27
+ instanceMinorVersion?: string;
28
+ /**
29
+ * @example
30
+ * ra-supabase-8moov5lxba****
31
+ */
32
+ instanceName?: string;
33
+ /**
34
+ * @example
35
+ * 8.152. XXX.XXX:8000
36
+ */
37
+ publicConnectionString?: string;
38
+ /**
39
+ * @example
40
+ * cn-beijing
41
+ */
42
+ regionId?: string;
43
+ /**
44
+ * @example
45
+ * FE9C65D7-930F-57A5-A207-8C396329241C
46
+ */
47
+ requestId?: string;
48
+ /**
49
+ * @example
50
+ * Running
51
+ */
52
+ status?: string;
53
+ /**
54
+ * @example
55
+ * vsw-2zeaepb8k4ku05ov2****
56
+ */
57
+ vSwitchId?: string;
58
+ /**
59
+ * @example
60
+ * 172.16.XXX.XXX:8000
61
+ */
62
+ vpcConnectionString?: string;
63
+ /**
64
+ * @example
65
+ * cn-beijing-i
66
+ */
67
+ zoneId?: string;
68
+ static names(): {
69
+ [key: string]: string;
70
+ };
71
+ static types(): {
72
+ [key: string]: any;
73
+ };
74
+ validate(): void;
75
+ constructor(map?: {
76
+ [key: string]: any;
77
+ });
78
+ }
@@ -0,0 +1,82 @@
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.DescribeAppInstanceAttributeResponseBody = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class DescribeAppInstanceAttributeResponseBody extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ appName: 'AppName',
43
+ appType: 'AppType',
44
+ DBInstanceName: 'DBInstanceName',
45
+ instanceClass: 'InstanceClass',
46
+ instanceMinorVersion: 'InstanceMinorVersion',
47
+ instanceName: 'InstanceName',
48
+ publicConnectionString: 'PublicConnectionString',
49
+ regionId: 'RegionId',
50
+ requestId: 'RequestId',
51
+ status: 'Status',
52
+ vSwitchId: 'VSwitchId',
53
+ vpcConnectionString: 'VpcConnectionString',
54
+ zoneId: 'ZoneId',
55
+ };
56
+ }
57
+ static types() {
58
+ return {
59
+ appName: 'string',
60
+ appType: 'string',
61
+ DBInstanceName: 'string',
62
+ instanceClass: 'string',
63
+ instanceMinorVersion: 'string',
64
+ instanceName: 'string',
65
+ publicConnectionString: 'string',
66
+ regionId: 'string',
67
+ requestId: 'string',
68
+ status: 'string',
69
+ vSwitchId: 'string',
70
+ vpcConnectionString: 'string',
71
+ zoneId: 'string',
72
+ };
73
+ }
74
+ validate() {
75
+ super.validate();
76
+ }
77
+ constructor(map) {
78
+ super(map);
79
+ }
80
+ }
81
+ exports.DescribeAppInstanceAttributeResponseBody = DescribeAppInstanceAttributeResponseBody;
82
+ //# sourceMappingURL=DescribeAppInstanceAttributeResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeAppInstanceAttributeResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeAppInstanceAttributeResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wCAAyC,SAAQ,KAAK,CAAC,KAAK;IAkEvE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;YAClB,cAAc,EAAE,gBAAgB;YAChC,aAAa,EAAE,eAAe;YAC9B,oBAAoB,EAAE,sBAAsB;YAC5C,YAAY,EAAE,cAAc;YAC5B,sBAAsB,EAAE,wBAAwB;YAChD,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;YACtB,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,WAAW;YACtB,mBAAmB,EAAE,qBAAqB;YAC1C,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,OAAO,EAAE,QAAQ;YACjB,cAAc,EAAE,QAAQ;YACxB,aAAa,EAAE,QAAQ;YACvB,oBAAoB,EAAE,QAAQ;YAC9B,YAAY,EAAE,QAAQ;YACtB,sBAAsB,EAAE,QAAQ;YAChC,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;YACnB,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,QAAQ;YACnB,mBAAmB,EAAE,QAAQ;YAC7B,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;AA7GD,4FA6GC"}
@@ -0,0 +1,38 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class DescribeAppInstancesRequest extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * supabase
6
+ */
7
+ appType?: string;
8
+ /**
9
+ * @example
10
+ * pgm-2ze49qv594vi****
11
+ */
12
+ DBInstanceName?: string;
13
+ /**
14
+ * @example
15
+ * 1
16
+ */
17
+ pageNumber?: number;
18
+ /**
19
+ * @example
20
+ * 10
21
+ */
22
+ pageSize?: number;
23
+ /**
24
+ * @example
25
+ * cn-beijing
26
+ */
27
+ regionId?: string;
28
+ static names(): {
29
+ [key: string]: string;
30
+ };
31
+ static types(): {
32
+ [key: string]: any;
33
+ };
34
+ validate(): void;
35
+ constructor(map?: {
36
+ [key: string]: any;
37
+ });
38
+ }
@@ -0,0 +1,66 @@
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.DescribeAppInstancesRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class DescribeAppInstancesRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ appType: 'AppType',
43
+ DBInstanceName: 'DBInstanceName',
44
+ pageNumber: 'PageNumber',
45
+ pageSize: 'PageSize',
46
+ regionId: 'RegionId',
47
+ };
48
+ }
49
+ static types() {
50
+ return {
51
+ appType: 'string',
52
+ DBInstanceName: 'string',
53
+ pageNumber: 'number',
54
+ pageSize: 'number',
55
+ regionId: 'string',
56
+ };
57
+ }
58
+ validate() {
59
+ super.validate();
60
+ }
61
+ constructor(map) {
62
+ super(map);
63
+ }
64
+ }
65
+ exports.DescribeAppInstancesRequest = DescribeAppInstancesRequest;
66
+ //# sourceMappingURL=DescribeAppInstancesRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeAppInstancesRequest.js","sourceRoot":"","sources":["../../src/models/DescribeAppInstancesRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,2BAA4B,SAAQ,KAAK,CAAC,KAAK;IA0B1D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,cAAc,EAAE,gBAAgB;YAChC,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,cAAc,EAAE,QAAQ;YACxB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,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;AArDD,kEAqDC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { DescribeAppInstancesResponseBody } from "./DescribeAppInstancesResponseBody";
3
+ export declare class DescribeAppInstancesResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: DescribeAppInstancesResponseBody;
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.DescribeAppInstancesResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const DescribeAppInstancesResponseBody_1 = require("./DescribeAppInstancesResponseBody");
40
+ class DescribeAppInstancesResponse 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: DescribeAppInstancesResponseBody_1.DescribeAppInstancesResponseBody,
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.DescribeAppInstancesResponse = DescribeAppInstancesResponse;
69
+ //# sourceMappingURL=DescribeAppInstancesResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeAppInstancesResponse.js","sourceRoot":"","sources":["../../src/models/DescribeAppInstancesResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,yFAAsF;AAGtF,MAAa,4BAA6B,SAAQ,KAAK,CAAC,KAAK;IAI3D,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,mEAAgC;SACvC,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,oEAiCC"}
@@ -0,0 +1,108 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ /**
3
+ */
4
+ export declare class DescribeAppInstancesResponseBodyInstances extends $dara.Model {
5
+ /**
6
+ * @example
7
+ * test-supabase
8
+ */
9
+ appName?: string;
10
+ /**
11
+ * @example
12
+ * supabase
13
+ */
14
+ appType?: string;
15
+ /**
16
+ * @example
17
+ * pgm-2ze49qv594vi****
18
+ */
19
+ DBInstanceName?: string;
20
+ /**
21
+ * @example
22
+ * rdsai.supabase.basic
23
+ */
24
+ instanceClass?: string;
25
+ /**
26
+ * @example
27
+ * 20241231
28
+ */
29
+ instanceMinorVersion?: string;
30
+ /**
31
+ * @example
32
+ * ra-supabase-8moov5lxba****
33
+ */
34
+ instanceName?: string;
35
+ /**
36
+ * @example
37
+ * 8.152. XXX.XXX:8000
38
+ */
39
+ publicConnectionString?: string;
40
+ /**
41
+ * @example
42
+ * cn-beijing
43
+ */
44
+ regionId?: string;
45
+ /**
46
+ * @example
47
+ * Running
48
+ */
49
+ status?: string;
50
+ /**
51
+ * @example
52
+ * vsw-2zeaepb8k4ku05ov2****
53
+ */
54
+ vSwitchId?: string;
55
+ /**
56
+ * @example
57
+ * 172.16.XXX.XXX:8000
58
+ */
59
+ vpcConnectionString?: string;
60
+ static names(): {
61
+ [key: string]: string;
62
+ };
63
+ static types(): {
64
+ [key: string]: any;
65
+ };
66
+ validate(): void;
67
+ constructor(map?: {
68
+ [key: string]: any;
69
+ });
70
+ }
71
+ export declare class DescribeAppInstancesResponseBody extends $dara.Model {
72
+ instances?: DescribeAppInstancesResponseBodyInstances[];
73
+ /**
74
+ * @example
75
+ * None
76
+ */
77
+ maxResults?: number;
78
+ /**
79
+ * @example
80
+ * 1
81
+ */
82
+ pageNumber?: number;
83
+ /**
84
+ * @example
85
+ * 10
86
+ */
87
+ pageSize?: number;
88
+ /**
89
+ * @example
90
+ * 32DEFB4A-861F-5D1D-ADD5-918E4FD7AB8C
91
+ */
92
+ requestId?: string;
93
+ /**
94
+ * @example
95
+ * 20
96
+ */
97
+ totalCount?: number;
98
+ static names(): {
99
+ [key: string]: string;
100
+ };
101
+ static types(): {
102
+ [key: string]: any;
103
+ };
104
+ validate(): void;
105
+ constructor(map?: {
106
+ [key: string]: any;
107
+ });
108
+ }
@@ -0,0 +1,112 @@
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.DescribeAppInstancesResponseBody = exports.DescribeAppInstancesResponseBodyInstances = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ /**
40
+ */
41
+ class DescribeAppInstancesResponseBodyInstances extends $dara.Model {
42
+ static names() {
43
+ return {
44
+ appName: 'AppName',
45
+ appType: 'AppType',
46
+ DBInstanceName: 'DBInstanceName',
47
+ instanceClass: 'InstanceClass',
48
+ instanceMinorVersion: 'InstanceMinorVersion',
49
+ instanceName: 'InstanceName',
50
+ publicConnectionString: 'PublicConnectionString',
51
+ regionId: 'RegionId',
52
+ status: 'Status',
53
+ vSwitchId: 'VSwitchId',
54
+ vpcConnectionString: 'VpcConnectionString',
55
+ };
56
+ }
57
+ static types() {
58
+ return {
59
+ appName: 'string',
60
+ appType: 'string',
61
+ DBInstanceName: 'string',
62
+ instanceClass: 'string',
63
+ instanceMinorVersion: 'string',
64
+ instanceName: 'string',
65
+ publicConnectionString: 'string',
66
+ regionId: 'string',
67
+ status: 'string',
68
+ vSwitchId: 'string',
69
+ vpcConnectionString: 'string',
70
+ };
71
+ }
72
+ validate() {
73
+ super.validate();
74
+ }
75
+ constructor(map) {
76
+ super(map);
77
+ }
78
+ }
79
+ exports.DescribeAppInstancesResponseBodyInstances = DescribeAppInstancesResponseBodyInstances;
80
+ class DescribeAppInstancesResponseBody extends $dara.Model {
81
+ static names() {
82
+ return {
83
+ instances: 'Instances',
84
+ maxResults: 'MaxResults',
85
+ pageNumber: 'PageNumber',
86
+ pageSize: 'PageSize',
87
+ requestId: 'RequestId',
88
+ totalCount: 'TotalCount',
89
+ };
90
+ }
91
+ static types() {
92
+ return {
93
+ instances: { 'type': 'array', 'itemType': DescribeAppInstancesResponseBodyInstances },
94
+ maxResults: 'number',
95
+ pageNumber: 'number',
96
+ pageSize: 'number',
97
+ requestId: 'string',
98
+ totalCount: 'number',
99
+ };
100
+ }
101
+ validate() {
102
+ if (Array.isArray(this.instances)) {
103
+ $dara.Model.validateArray(this.instances);
104
+ }
105
+ super.validate();
106
+ }
107
+ constructor(map) {
108
+ super(map);
109
+ }
110
+ }
111
+ exports.DescribeAppInstancesResponseBody = DescribeAppInstancesResponseBody;
112
+ //# sourceMappingURL=DescribeAppInstancesResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeAppInstancesResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeAppInstancesResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C;GACG;AACH,MAAa,yCAA0C,SAAQ,KAAK,CAAC,KAAK;IAwDxE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;YAClB,cAAc,EAAE,gBAAgB;YAChC,aAAa,EAAE,eAAe;YAC9B,oBAAoB,EAAE,sBAAsB;YAC5C,YAAY,EAAE,cAAc;YAC5B,sBAAsB,EAAE,wBAAwB;YAChD,QAAQ,EAAE,UAAU;YACpB,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,WAAW;YACtB,mBAAmB,EAAE,qBAAqB;SAC3C,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,OAAO,EAAE,QAAQ;YACjB,cAAc,EAAE,QAAQ;YACxB,aAAa,EAAE,QAAQ;YACvB,oBAAoB,EAAE,QAAQ;YAC9B,YAAY,EAAE,QAAQ;YACtB,sBAAsB,EAAE,QAAQ;YAChC,QAAQ,EAAE,QAAQ;YAClB,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,QAAQ;YACnB,mBAAmB,EAAE,QAAQ;SAC9B,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;AA/FD,8FA+FC;AAED,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IA2B/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;YACxB,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,yCAAyC,EAAE;YACrF,UAAU,EAAE,QAAQ;YACpB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;YACnB,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC;YACjC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3DD,4EA2DC"}