@alicloud/apig20240327 5.2.1 → 5.3.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.
Files changed (75) hide show
  1. package/dist/client.d.ts +72 -6
  2. package/dist/client.js +192 -6
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateServiceVersionRequest.d.ts +9 -0
  5. package/dist/models/CreateServiceVersionRequest.js.map +1 -1
  6. package/dist/models/CreateServiceVersionResponseBody.d.ts +9 -0
  7. package/dist/models/CreateServiceVersionResponseBody.js.map +1 -1
  8. package/dist/models/CreateSourceRequest.d.ts +80 -0
  9. package/dist/models/CreateSourceRequest.js +141 -0
  10. package/dist/models/CreateSourceRequest.js.map +1 -0
  11. package/dist/models/CreateSourceResponse.d.ts +19 -0
  12. package/dist/models/CreateSourceResponse.js +69 -0
  13. package/dist/models/CreateSourceResponse.js.map +1 -0
  14. package/dist/models/CreateSourceResponseBody.d.ts +46 -0
  15. package/dist/models/CreateSourceResponseBody.js +86 -0
  16. package/dist/models/CreateSourceResponseBody.js.map +1 -0
  17. package/dist/models/DeleteServiceVersionResponseBody.d.ts +9 -0
  18. package/dist/models/DeleteServiceVersionResponseBody.js.map +1 -1
  19. package/dist/models/DeleteSourceResponse.d.ts +19 -0
  20. package/dist/models/DeleteSourceResponse.js +69 -0
  21. package/dist/models/DeleteSourceResponse.js.map +1 -0
  22. package/dist/models/DeleteSourceResponseBody.d.ts +28 -0
  23. package/dist/models/DeleteSourceResponseBody.js +62 -0
  24. package/dist/models/DeleteSourceResponseBody.js.map +1 -0
  25. package/dist/models/GetResourceOverviewRequest.d.ts +4 -0
  26. package/dist/models/GetResourceOverviewRequest.js.map +1 -1
  27. package/dist/models/GetResourceOverviewResponseBody.d.ts +57 -0
  28. package/dist/models/GetResourceOverviewResponseBody.js +62 -1
  29. package/dist/models/GetResourceOverviewResponseBody.js.map +1 -1
  30. package/dist/models/GetSourceResponse.d.ts +19 -0
  31. package/dist/models/GetSourceResponse.js +69 -0
  32. package/dist/models/GetSourceResponse.js.map +1 -0
  33. package/dist/models/GetSourceResponseBody.d.ts +125 -0
  34. package/dist/models/GetSourceResponseBody.js +150 -0
  35. package/dist/models/GetSourceResponseBody.js.map +1 -0
  36. package/dist/models/RiskCheckResults.d.ts +188 -0
  37. package/dist/models/RiskCheckResults.js +145 -0
  38. package/dist/models/RiskCheckResults.js.map +1 -0
  39. package/dist/models/UpdateServiceRequest.d.ts +113 -0
  40. package/dist/models/UpdateServiceRequest.js +185 -0
  41. package/dist/models/UpdateServiceRequest.js.map +1 -0
  42. package/dist/models/UpdateServiceResponse.d.ts +19 -0
  43. package/dist/models/UpdateServiceResponse.js +69 -0
  44. package/dist/models/UpdateServiceResponse.js.map +1 -0
  45. package/dist/models/UpdateServiceResponseBody.d.ts +28 -0
  46. package/dist/models/UpdateServiceResponseBody.js +62 -0
  47. package/dist/models/UpdateServiceResponseBody.js.map +1 -0
  48. package/dist/models/UpdateServiceVersionRequest.d.ts +7 -0
  49. package/dist/models/UpdateServiceVersionRequest.js.map +1 -1
  50. package/dist/models/UpdateServiceVersionResponseBody.d.ts +9 -0
  51. package/dist/models/UpdateServiceVersionResponseBody.js.map +1 -1
  52. package/dist/models/model.d.ts +25 -0
  53. package/dist/models/model.js +63 -12
  54. package/dist/models/model.js.map +1 -1
  55. package/package.json +1 -1
  56. package/src/client.ts +214 -6
  57. package/src/models/CreateServiceVersionRequest.ts +9 -0
  58. package/src/models/CreateServiceVersionResponseBody.ts +9 -0
  59. package/src/models/CreateSourceRequest.ts +149 -0
  60. package/src/models/CreateSourceResponse.ts +40 -0
  61. package/src/models/CreateSourceResponseBody.ts +78 -0
  62. package/src/models/DeleteServiceVersionResponseBody.ts +9 -0
  63. package/src/models/DeleteSourceResponse.ts +40 -0
  64. package/src/models/DeleteSourceResponseBody.ts +45 -0
  65. package/src/models/GetResourceOverviewRequest.ts +4 -0
  66. package/src/models/GetResourceOverviewResponseBody.ts +100 -0
  67. package/src/models/GetSourceResponse.ts +40 -0
  68. package/src/models/GetSourceResponseBody.ts +203 -0
  69. package/src/models/RiskCheckResults.ts +268 -0
  70. package/src/models/UpdateServiceRequest.ts +224 -0
  71. package/src/models/UpdateServiceResponse.ts +40 -0
  72. package/src/models/UpdateServiceResponseBody.ts +45 -0
  73. package/src/models/UpdateServiceVersionRequest.ts +7 -0
  74. package/src/models/UpdateServiceVersionResponseBody.ts +9 -0
  75. package/src/models/model.ts +25 -0
@@ -2,6 +2,8 @@ import * as $dara from '@darabonba/typescript';
2
2
  export declare class CreateServiceVersionRequestLabels extends $dara.Model {
3
3
  /**
4
4
  * @remarks
5
+ * The tag key.
6
+ *
5
7
  * This parameter is required.
6
8
  *
7
9
  * @example
@@ -9,6 +11,9 @@ export declare class CreateServiceVersionRequestLabels extends $dara.Model {
9
11
  */
10
12
  key?: string;
11
13
  /**
14
+ * @remarks
15
+ * The tag value.
16
+ *
12
17
  * @example
13
18
  * cn-hangzhou-j
14
19
  */
@@ -27,11 +32,15 @@ export declare class CreateServiceVersionRequestLabels extends $dara.Model {
27
32
  export declare class CreateServiceVersionRequest extends $dara.Model {
28
33
  /**
29
34
  * @remarks
35
+ * The service tags.
36
+ *
30
37
  * This parameter is required.
31
38
  */
32
39
  labels?: CreateServiceVersionRequestLabels[];
33
40
  /**
34
41
  * @remarks
42
+ * The version name.
43
+ *
35
44
  * This parameter is required.
36
45
  *
37
46
  * @example
@@ -1 +1 @@
1
- {"version":3,"file":"CreateServiceVersionRequest.js","sourceRoot":"","sources":["../../src/models/CreateServiceVersionRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAchE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,QAAQ;YACb,KAAK,EAAE,QAAQ;SAChB,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;AAnCD,8EAmCC;AAED,MAAa,2BAA4B,SAAQ,KAAK,CAAC,KAAK;IAc1D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,iCAAiC,EAAE;YAC1E,IAAI,EAAE,QAAQ;SACf,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC;YAC9B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACzC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,kEAsCC"}
1
+ {"version":3,"file":"CreateServiceVersionRequest.js","sourceRoot":"","sources":["../../src/models/CreateServiceVersionRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAmBhE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,QAAQ;YACb,KAAK,EAAE,QAAQ;SAChB,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;AAxCD,8EAwCC;AAED,MAAa,2BAA4B,SAAQ,KAAK,CAAC,KAAK;IAkB1D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,iCAAiC,EAAE;YAC1E,IAAI,EAAE,QAAQ;SACf,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC;YAC9B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACzC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA1CD,kEA0CC"}
@@ -1,16 +1,25 @@
1
1
  import * as $dara from '@darabonba/typescript';
2
2
  export declare class CreateServiceVersionResponseBody extends $dara.Model {
3
3
  /**
4
+ * @remarks
5
+ * The status code.
6
+ *
4
7
  * @example
5
8
  * Ok
6
9
  */
7
10
  code?: string;
8
11
  /**
12
+ * @remarks
13
+ * The message returned.
14
+ *
9
15
  * @example
10
16
  * Success
11
17
  */
12
18
  message?: string;
13
19
  /**
20
+ * @remarks
21
+ * The request ID.
22
+ *
14
23
  * @example
15
24
  * 0B373A13-9BB8-5068-9C94-AD6D39E6BBA2
16
25
  */
@@ -1 +1 @@
1
- {"version":3,"file":"CreateServiceVersionResponseBody.js","sourceRoot":"","sources":["../../src/models/CreateServiceVersionResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAgB/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;SACpB,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;AAvCD,4EAuCC"}
1
+ {"version":3,"file":"CreateServiceVersionResponseBody.js","sourceRoot":"","sources":["../../src/models/CreateServiceVersionResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAyB/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;SACpB,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;AAhDD,4EAgDC"}
@@ -0,0 +1,80 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class CreateSourceRequestK8sSourceConfigAuthorizeSecurityGroupRules extends $dara.Model {
3
+ description?: string;
4
+ portRanges?: string[];
5
+ /**
6
+ * @example
7
+ * sg-bp14w4fa4j***
8
+ */
9
+ securityGroupId?: string;
10
+ static names(): {
11
+ [key: string]: string;
12
+ };
13
+ static types(): {
14
+ [key: string]: any;
15
+ };
16
+ validate(): void;
17
+ constructor(map?: {
18
+ [key: string]: any;
19
+ });
20
+ }
21
+ export declare class CreateSourceRequestK8sSourceConfig extends $dara.Model {
22
+ authorizeSecurityGroupRules?: CreateSourceRequestK8sSourceConfigAuthorizeSecurityGroupRules[];
23
+ /**
24
+ * @example
25
+ * c3fbe6caaaece4062b*****
26
+ */
27
+ clusterId?: 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
+ }
39
+ export declare class CreateSourceRequestNacosSourceConfig extends $dara.Model {
40
+ /**
41
+ * @example
42
+ * mse-cn-0dw3w***
43
+ */
44
+ instanceId?: string;
45
+ static names(): {
46
+ [key: string]: string;
47
+ };
48
+ static types(): {
49
+ [key: string]: any;
50
+ };
51
+ validate(): void;
52
+ constructor(map?: {
53
+ [key: string]: any;
54
+ });
55
+ }
56
+ export declare class CreateSourceRequest extends $dara.Model {
57
+ /**
58
+ * @example
59
+ * gw-cq7l5s5lhtgi6q***
60
+ */
61
+ gatewayId?: string;
62
+ k8sSourceConfig?: CreateSourceRequestK8sSourceConfig;
63
+ nacosSourceConfig?: CreateSourceRequestNacosSourceConfig;
64
+ resourceGroupId?: string;
65
+ /**
66
+ * @example
67
+ * MSE_NACOS
68
+ */
69
+ type?: string;
70
+ static names(): {
71
+ [key: string]: string;
72
+ };
73
+ static types(): {
74
+ [key: string]: any;
75
+ };
76
+ validate(): void;
77
+ constructor(map?: {
78
+ [key: string]: any;
79
+ });
80
+ }
@@ -0,0 +1,141 @@
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.CreateSourceRequest = exports.CreateSourceRequestNacosSourceConfig = exports.CreateSourceRequestK8sSourceConfig = exports.CreateSourceRequestK8sSourceConfigAuthorizeSecurityGroupRules = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class CreateSourceRequestK8sSourceConfigAuthorizeSecurityGroupRules extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ description: 'description',
43
+ portRanges: 'portRanges',
44
+ securityGroupId: 'securityGroupId',
45
+ };
46
+ }
47
+ static types() {
48
+ return {
49
+ description: 'string',
50
+ portRanges: { 'type': 'array', 'itemType': 'string' },
51
+ securityGroupId: 'string',
52
+ };
53
+ }
54
+ validate() {
55
+ if (Array.isArray(this.portRanges)) {
56
+ $dara.Model.validateArray(this.portRanges);
57
+ }
58
+ super.validate();
59
+ }
60
+ constructor(map) {
61
+ super(map);
62
+ }
63
+ }
64
+ exports.CreateSourceRequestK8sSourceConfigAuthorizeSecurityGroupRules = CreateSourceRequestK8sSourceConfigAuthorizeSecurityGroupRules;
65
+ class CreateSourceRequestK8sSourceConfig extends $dara.Model {
66
+ static names() {
67
+ return {
68
+ authorizeSecurityGroupRules: 'authorizeSecurityGroupRules',
69
+ clusterId: 'clusterId',
70
+ };
71
+ }
72
+ static types() {
73
+ return {
74
+ authorizeSecurityGroupRules: { 'type': 'array', 'itemType': CreateSourceRequestK8sSourceConfigAuthorizeSecurityGroupRules },
75
+ clusterId: 'string',
76
+ };
77
+ }
78
+ validate() {
79
+ if (Array.isArray(this.authorizeSecurityGroupRules)) {
80
+ $dara.Model.validateArray(this.authorizeSecurityGroupRules);
81
+ }
82
+ super.validate();
83
+ }
84
+ constructor(map) {
85
+ super(map);
86
+ }
87
+ }
88
+ exports.CreateSourceRequestK8sSourceConfig = CreateSourceRequestK8sSourceConfig;
89
+ class CreateSourceRequestNacosSourceConfig extends $dara.Model {
90
+ static names() {
91
+ return {
92
+ instanceId: 'instanceId',
93
+ };
94
+ }
95
+ static types() {
96
+ return {
97
+ instanceId: 'string',
98
+ };
99
+ }
100
+ validate() {
101
+ super.validate();
102
+ }
103
+ constructor(map) {
104
+ super(map);
105
+ }
106
+ }
107
+ exports.CreateSourceRequestNacosSourceConfig = CreateSourceRequestNacosSourceConfig;
108
+ class CreateSourceRequest extends $dara.Model {
109
+ static names() {
110
+ return {
111
+ gatewayId: 'gatewayId',
112
+ k8sSourceConfig: 'k8sSourceConfig',
113
+ nacosSourceConfig: 'nacosSourceConfig',
114
+ resourceGroupId: 'resourceGroupId',
115
+ type: 'type',
116
+ };
117
+ }
118
+ static types() {
119
+ return {
120
+ gatewayId: 'string',
121
+ k8sSourceConfig: CreateSourceRequestK8sSourceConfig,
122
+ nacosSourceConfig: CreateSourceRequestNacosSourceConfig,
123
+ resourceGroupId: 'string',
124
+ type: 'string',
125
+ };
126
+ }
127
+ validate() {
128
+ if (this.k8sSourceConfig && typeof this.k8sSourceConfig.validate === 'function') {
129
+ this.k8sSourceConfig.validate();
130
+ }
131
+ if (this.nacosSourceConfig && typeof this.nacosSourceConfig.validate === 'function') {
132
+ this.nacosSourceConfig.validate();
133
+ }
134
+ super.validate();
135
+ }
136
+ constructor(map) {
137
+ super(map);
138
+ }
139
+ }
140
+ exports.CreateSourceRequest = CreateSourceRequest;
141
+ //# sourceMappingURL=CreateSourceRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateSourceRequest.js","sourceRoot":"","sources":["../../src/models/CreateSourceRequest.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { CreateSourceResponseBody } from "./CreateSourceResponseBody";
3
+ export declare class CreateSourceResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: CreateSourceResponseBody;
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.CreateSourceResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const CreateSourceResponseBody_1 = require("./CreateSourceResponseBody");
40
+ class CreateSourceResponse 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: CreateSourceResponseBody_1.CreateSourceResponseBody,
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.CreateSourceResponse = CreateSourceResponse;
69
+ //# sourceMappingURL=CreateSourceResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateSourceResponse.js","sourceRoot":"","sources":["../../src/models/CreateSourceResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,yEAAsE;AAGtE,MAAa,oBAAqB,SAAQ,KAAK,CAAC,KAAK;IAInD,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,mDAAwB;SAC/B,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,oDAiCC"}
@@ -0,0 +1,46 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class CreateSourceResponseBodyData extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * src-crdddallhtgt***
6
+ */
7
+ sourceId?: string;
8
+ static names(): {
9
+ [key: string]: string;
10
+ };
11
+ static types(): {
12
+ [key: string]: any;
13
+ };
14
+ validate(): void;
15
+ constructor(map?: {
16
+ [key: string]: any;
17
+ });
18
+ }
19
+ export declare class CreateSourceResponseBody extends $dara.Model {
20
+ /**
21
+ * @example
22
+ * Ok
23
+ */
24
+ code?: string;
25
+ data?: CreateSourceResponseBodyData;
26
+ /**
27
+ * @example
28
+ * success
29
+ */
30
+ message?: string;
31
+ /**
32
+ * @example
33
+ * 393E2630-DBE7-5221-AB35-9E740675491A
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.CreateSourceResponseBody = exports.CreateSourceResponseBodyData = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class CreateSourceResponseBodyData extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ sourceId: 'sourceId',
43
+ };
44
+ }
45
+ static types() {
46
+ return {
47
+ sourceId: 'string',
48
+ };
49
+ }
50
+ validate() {
51
+ super.validate();
52
+ }
53
+ constructor(map) {
54
+ super(map);
55
+ }
56
+ }
57
+ exports.CreateSourceResponseBodyData = CreateSourceResponseBodyData;
58
+ class CreateSourceResponseBody extends $dara.Model {
59
+ static names() {
60
+ return {
61
+ code: 'code',
62
+ data: 'data',
63
+ message: 'message',
64
+ requestId: 'requestId',
65
+ };
66
+ }
67
+ static types() {
68
+ return {
69
+ code: 'string',
70
+ data: CreateSourceResponseBodyData,
71
+ message: 'string',
72
+ requestId: 'string',
73
+ };
74
+ }
75
+ validate() {
76
+ if (this.data && typeof this.data.validate === 'function') {
77
+ this.data.validate();
78
+ }
79
+ super.validate();
80
+ }
81
+ constructor(map) {
82
+ super(map);
83
+ }
84
+ }
85
+ exports.CreateSourceResponseBody = CreateSourceResponseBody;
86
+ //# sourceMappingURL=CreateSourceResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateSourceResponseBody.js","sourceRoot":"","sources":["../../src/models/CreateSourceResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,4BAA6B,SAAQ,KAAK,CAAC,KAAK;IAM3D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,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;AAzBD,oEAyBC;AAED,MAAa,wBAAyB,SAAQ,KAAK,CAAC,KAAK;IAiBvD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,4BAA4B;YAClC,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,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;AA7CD,4DA6CC"}
@@ -1,16 +1,25 @@
1
1
  import * as $dara from '@darabonba/typescript';
2
2
  export declare class DeleteServiceVersionResponseBody extends $dara.Model {
3
3
  /**
4
+ * @remarks
5
+ * The status code returned.
6
+ *
4
7
  * @example
5
8
  * Ok
6
9
  */
7
10
  code?: string;
8
11
  /**
12
+ * @remarks
13
+ * The response message returned.
14
+ *
9
15
  * @example
10
16
  * success
11
17
  */
12
18
  message?: string;
13
19
  /**
20
+ * @remarks
21
+ * The request ID.
22
+ *
14
23
  * @example
15
24
  * A1994B10-C6A8-58FA-8347-6A08B0D4EFDE
16
25
  */
@@ -1 +1 @@
1
- {"version":3,"file":"DeleteServiceVersionResponseBody.js","sourceRoot":"","sources":["../../src/models/DeleteServiceVersionResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAgB/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;SACpB,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;AAvCD,4EAuCC"}
1
+ {"version":3,"file":"DeleteServiceVersionResponseBody.js","sourceRoot":"","sources":["../../src/models/DeleteServiceVersionResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAyB/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;SACpB,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;AAhDD,4EAgDC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { DeleteSourceResponseBody } from "./DeleteSourceResponseBody";
3
+ export declare class DeleteSourceResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: DeleteSourceResponseBody;
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.DeleteSourceResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const DeleteSourceResponseBody_1 = require("./DeleteSourceResponseBody");
40
+ class DeleteSourceResponse 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: DeleteSourceResponseBody_1.DeleteSourceResponseBody,
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.DeleteSourceResponse = DeleteSourceResponse;
69
+ //# sourceMappingURL=DeleteSourceResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DeleteSourceResponse.js","sourceRoot":"","sources":["../../src/models/DeleteSourceResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,yEAAsE;AAGtE,MAAa,oBAAqB,SAAQ,KAAK,CAAC,KAAK;IAInD,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,mDAAwB;SAC/B,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,oDAiCC"}