@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,23 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class DescribeInstanceEndpointsRequest extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * ra-supabase-8moov5lxba****
6
+ */
7
+ instanceName?: string;
8
+ /**
9
+ * @example
10
+ * cn-beijing
11
+ */
12
+ regionId?: string;
13
+ static names(): {
14
+ [key: string]: string;
15
+ };
16
+ static types(): {
17
+ [key: string]: any;
18
+ };
19
+ validate(): void;
20
+ constructor(map?: {
21
+ [key: string]: any;
22
+ });
23
+ }
@@ -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.DescribeInstanceEndpointsRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class DescribeInstanceEndpointsRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ instanceName: 'InstanceName',
43
+ regionId: 'RegionId',
44
+ };
45
+ }
46
+ static types() {
47
+ return {
48
+ instanceName: 'string',
49
+ regionId: 'string',
50
+ };
51
+ }
52
+ validate() {
53
+ super.validate();
54
+ }
55
+ constructor(map) {
56
+ super(map);
57
+ }
58
+ }
59
+ exports.DescribeInstanceEndpointsRequest = DescribeInstanceEndpointsRequest;
60
+ //# sourceMappingURL=DescribeInstanceEndpointsRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeInstanceEndpointsRequest.js","sourceRoot":"","sources":["../../src/models/DescribeInstanceEndpointsRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAW/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,QAAQ;YACtB,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;AAhCD,4EAgCC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { DescribeInstanceEndpointsResponseBody } from "./DescribeInstanceEndpointsResponseBody";
3
+ export declare class DescribeInstanceEndpointsResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: DescribeInstanceEndpointsResponseBody;
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.DescribeInstanceEndpointsResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const DescribeInstanceEndpointsResponseBody_1 = require("./DescribeInstanceEndpointsResponseBody");
40
+ class DescribeInstanceEndpointsResponse 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: DescribeInstanceEndpointsResponseBody_1.DescribeInstanceEndpointsResponseBody,
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.DescribeInstanceEndpointsResponse = DescribeInstanceEndpointsResponse;
69
+ //# sourceMappingURL=DescribeInstanceEndpointsResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeInstanceEndpointsResponse.js","sourceRoot":"","sources":["../../src/models/DescribeInstanceEndpointsResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,mGAAgG;AAGhG,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAIhE,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,6EAAqC;SAC5C,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,8EAiCC"}
@@ -0,0 +1,56 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class DescribeInstanceEndpointsResponseBodyInstanceEndpoints extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * 8.152.XXX.XXX:8000
6
+ */
7
+ connectionString?: string;
8
+ /**
9
+ * @example
10
+ * 8.152.XXX.XXX
11
+ */
12
+ IP?: string;
13
+ /**
14
+ * @example
15
+ * public
16
+ */
17
+ ipType?: string;
18
+ /**
19
+ * @example
20
+ * 8000
21
+ */
22
+ port?: string;
23
+ static names(): {
24
+ [key: string]: string;
25
+ };
26
+ static types(): {
27
+ [key: string]: any;
28
+ };
29
+ validate(): void;
30
+ constructor(map?: {
31
+ [key: string]: any;
32
+ });
33
+ }
34
+ export declare class DescribeInstanceEndpointsResponseBody extends $dara.Model {
35
+ instanceEndpoints?: DescribeInstanceEndpointsResponseBodyInstanceEndpoints[];
36
+ /**
37
+ * @example
38
+ * ra-supabase-8moov5lxba****
39
+ */
40
+ instanceName?: string;
41
+ /**
42
+ * @example
43
+ * 32DEFB4A-861F-5D1D-ADD5-918E4FD7AB8C
44
+ */
45
+ requestId?: string;
46
+ static names(): {
47
+ [key: string]: string;
48
+ };
49
+ static types(): {
50
+ [key: string]: any;
51
+ };
52
+ validate(): void;
53
+ constructor(map?: {
54
+ [key: string]: any;
55
+ });
56
+ }
@@ -0,0 +1,90 @@
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.DescribeInstanceEndpointsResponseBody = exports.DescribeInstanceEndpointsResponseBodyInstanceEndpoints = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class DescribeInstanceEndpointsResponseBodyInstanceEndpoints extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ connectionString: 'ConnectionString',
43
+ IP: 'IP',
44
+ ipType: 'IpType',
45
+ port: 'Port',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ connectionString: 'string',
51
+ IP: 'string',
52
+ ipType: 'string',
53
+ port: 'string',
54
+ };
55
+ }
56
+ validate() {
57
+ super.validate();
58
+ }
59
+ constructor(map) {
60
+ super(map);
61
+ }
62
+ }
63
+ exports.DescribeInstanceEndpointsResponseBodyInstanceEndpoints = DescribeInstanceEndpointsResponseBodyInstanceEndpoints;
64
+ class DescribeInstanceEndpointsResponseBody extends $dara.Model {
65
+ static names() {
66
+ return {
67
+ instanceEndpoints: 'InstanceEndpoints',
68
+ instanceName: 'InstanceName',
69
+ requestId: 'RequestId',
70
+ };
71
+ }
72
+ static types() {
73
+ return {
74
+ instanceEndpoints: { 'type': 'array', 'itemType': DescribeInstanceEndpointsResponseBodyInstanceEndpoints },
75
+ instanceName: 'string',
76
+ requestId: 'string',
77
+ };
78
+ }
79
+ validate() {
80
+ if (Array.isArray(this.instanceEndpoints)) {
81
+ $dara.Model.validateArray(this.instanceEndpoints);
82
+ }
83
+ super.validate();
84
+ }
85
+ constructor(map) {
86
+ super(map);
87
+ }
88
+ }
89
+ exports.DescribeInstanceEndpointsResponseBody = DescribeInstanceEndpointsResponseBody;
90
+ //# sourceMappingURL=DescribeInstanceEndpointsResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeInstanceEndpointsResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeInstanceEndpointsResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,sDAAuD,SAAQ,KAAK,CAAC,KAAK;IAqBrF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,gBAAgB,EAAE,kBAAkB;YACpC,EAAE,EAAE,IAAI;YACR,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,gBAAgB,EAAE,QAAQ;YAC1B,EAAE,EAAE,QAAQ;YACZ,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,QAAQ;SACf,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;AA9CD,wHA8CC;AAED,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IAYpE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,iBAAiB,EAAE,mBAAmB;YACtC,YAAY,EAAE,cAAc;YAC5B,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,iBAAiB,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,sDAAsD,EAAE;YAC1G,YAAY,EAAE,QAAQ;YACtB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,iBAAiB,CAAC,EAAE,CAAC;YACzC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;QACpD,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,sFAsCC"}
@@ -0,0 +1,23 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class DescribeInstanceIpWhitelistRequest extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * ra-supabase-8moov5lxba****
6
+ */
7
+ instanceName?: string;
8
+ /**
9
+ * @example
10
+ * cn-beijing
11
+ */
12
+ regionId?: string;
13
+ static names(): {
14
+ [key: string]: string;
15
+ };
16
+ static types(): {
17
+ [key: string]: any;
18
+ };
19
+ validate(): void;
20
+ constructor(map?: {
21
+ [key: string]: any;
22
+ });
23
+ }
@@ -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.DescribeInstanceIpWhitelistRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class DescribeInstanceIpWhitelistRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ instanceName: 'InstanceName',
43
+ regionId: 'RegionId',
44
+ };
45
+ }
46
+ static types() {
47
+ return {
48
+ instanceName: 'string',
49
+ regionId: 'string',
50
+ };
51
+ }
52
+ validate() {
53
+ super.validate();
54
+ }
55
+ constructor(map) {
56
+ super(map);
57
+ }
58
+ }
59
+ exports.DescribeInstanceIpWhitelistRequest = DescribeInstanceIpWhitelistRequest;
60
+ //# sourceMappingURL=DescribeInstanceIpWhitelistRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeInstanceIpWhitelistRequest.js","sourceRoot":"","sources":["../../src/models/DescribeInstanceIpWhitelistRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IAWjE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,QAAQ;YACtB,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;AAhCD,gFAgCC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { DescribeInstanceIpWhitelistResponseBody } from "./DescribeInstanceIpWhitelistResponseBody";
3
+ export declare class DescribeInstanceIpWhitelistResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: DescribeInstanceIpWhitelistResponseBody;
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.DescribeInstanceIpWhitelistResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const DescribeInstanceIpWhitelistResponseBody_1 = require("./DescribeInstanceIpWhitelistResponseBody");
40
+ class DescribeInstanceIpWhitelistResponse 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: DescribeInstanceIpWhitelistResponseBody_1.DescribeInstanceIpWhitelistResponseBody,
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.DescribeInstanceIpWhitelistResponse = DescribeInstanceIpWhitelistResponse;
69
+ //# sourceMappingURL=DescribeInstanceIpWhitelistResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeInstanceIpWhitelistResponse.js","sourceRoot":"","sources":["../../src/models/DescribeInstanceIpWhitelistResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uGAAoG;AAGpG,MAAa,mCAAoC,SAAQ,KAAK,CAAC,KAAK;IAIlE,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,iFAAuC;SAC9C,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,kFAiCC"}
@@ -0,0 +1,46 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class DescribeInstanceIpWhitelistResponseBodyIpWhiteListGroups extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * default
6
+ */
7
+ groupName?: string;
8
+ /**
9
+ * @example
10
+ * 192.168.XXX.XXX/24,10.0.XXX.XXX/24
11
+ */
12
+ ipWhitelist?: string;
13
+ static names(): {
14
+ [key: string]: string;
15
+ };
16
+ static types(): {
17
+ [key: string]: any;
18
+ };
19
+ validate(): void;
20
+ constructor(map?: {
21
+ [key: string]: any;
22
+ });
23
+ }
24
+ export declare class DescribeInstanceIpWhitelistResponseBody extends $dara.Model {
25
+ /**
26
+ * @example
27
+ * ra-supabase-8moov5lxba****
28
+ */
29
+ instanceName?: string;
30
+ ipWhiteListGroups?: DescribeInstanceIpWhitelistResponseBodyIpWhiteListGroups[];
31
+ /**
32
+ * @example
33
+ * 32DEFB4A-861F-5D1D-ADD5-918E4FD7AB8C
34
+ */
35
+ requestId?: string;
36
+ static names(): {
37
+ [key: string]: string;
38
+ };
39
+ static types(): {
40
+ [key: string]: any;
41
+ };
42
+ validate(): void;
43
+ constructor(map?: {
44
+ [key: string]: any;
45
+ });
46
+ }
@@ -0,0 +1,86 @@
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.DescribeInstanceIpWhitelistResponseBody = exports.DescribeInstanceIpWhitelistResponseBodyIpWhiteListGroups = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class DescribeInstanceIpWhitelistResponseBodyIpWhiteListGroups extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ groupName: 'GroupName',
43
+ ipWhitelist: 'IpWhitelist',
44
+ };
45
+ }
46
+ static types() {
47
+ return {
48
+ groupName: 'string',
49
+ ipWhitelist: 'string',
50
+ };
51
+ }
52
+ validate() {
53
+ super.validate();
54
+ }
55
+ constructor(map) {
56
+ super(map);
57
+ }
58
+ }
59
+ exports.DescribeInstanceIpWhitelistResponseBodyIpWhiteListGroups = DescribeInstanceIpWhitelistResponseBodyIpWhiteListGroups;
60
+ class DescribeInstanceIpWhitelistResponseBody extends $dara.Model {
61
+ static names() {
62
+ return {
63
+ instanceName: 'InstanceName',
64
+ ipWhiteListGroups: 'IpWhiteListGroups',
65
+ requestId: 'RequestId',
66
+ };
67
+ }
68
+ static types() {
69
+ return {
70
+ instanceName: 'string',
71
+ ipWhiteListGroups: { 'type': 'array', 'itemType': DescribeInstanceIpWhitelistResponseBodyIpWhiteListGroups },
72
+ requestId: 'string',
73
+ };
74
+ }
75
+ validate() {
76
+ if (Array.isArray(this.ipWhiteListGroups)) {
77
+ $dara.Model.validateArray(this.ipWhiteListGroups);
78
+ }
79
+ super.validate();
80
+ }
81
+ constructor(map) {
82
+ super(map);
83
+ }
84
+ }
85
+ exports.DescribeInstanceIpWhitelistResponseBody = DescribeInstanceIpWhitelistResponseBody;
86
+ //# sourceMappingURL=DescribeInstanceIpWhitelistResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescribeInstanceIpWhitelistResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeInstanceIpWhitelistResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wDAAyD,SAAQ,KAAK,CAAC,KAAK;IAWvF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,WAAW,EAAE,aAAa;SAC3B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,WAAW,EAAE,QAAQ;SACtB,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;AAhCD,4HAgCC;AAED,MAAa,uCAAwC,SAAQ,KAAK,CAAC,KAAK;IAYtE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,iBAAiB,EAAE,mBAAmB;YACtC,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,QAAQ;YACtB,iBAAiB,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,wDAAwD,EAAE;YAC5G,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,iBAAiB,CAAC,EAAE,CAAC;YACzC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;QACpD,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,0FAsCC"}