@alicloud/dms-enterprise20181101 2.3.0 → 2.4.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.
@@ -0,0 +1,48 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class SearchTableKnowledgeRequest extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * This parameter is required.
9
+ *
10
+ * @example
11
+ * 1***
12
+ */
13
+ dbId?: string;
14
+ /**
15
+ * @example
16
+ * qwen-plus
17
+ */
18
+ model?: string;
19
+ /**
20
+ * @example
21
+ * 查看当前的灰度情况
22
+ */
23
+ query?: string;
24
+ static names(): { [key: string]: string } {
25
+ return {
26
+ dbId: 'DbId',
27
+ model: 'Model',
28
+ query: 'Query',
29
+ };
30
+ }
31
+
32
+ static types(): { [key: string]: any } {
33
+ return {
34
+ dbId: 'string',
35
+ model: 'string',
36
+ query: 'string',
37
+ };
38
+ }
39
+
40
+ validate() {
41
+ super.validate();
42
+ }
43
+
44
+ constructor(map?: { [key: string]: any }) {
45
+ super(map);
46
+ }
47
+ }
48
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { SearchTableKnowledgeResponseBody } from "./SearchTableKnowledgeResponseBody";
4
+
5
+
6
+ export class SearchTableKnowledgeResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: SearchTableKnowledgeResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: SearchTableKnowledgeResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,95 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class SearchTableKnowledgeResponseBodyData extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * SQL修复结果...
9
+ */
10
+ content?: string;
11
+ /**
12
+ * @example
13
+ * f63a6eed-0e3c-4564-8533-b1295db8d6ff
14
+ */
15
+ sessionId?: string;
16
+ static names(): { [key: string]: string } {
17
+ return {
18
+ content: 'Content',
19
+ sessionId: 'SessionId',
20
+ };
21
+ }
22
+
23
+ static types(): { [key: string]: any } {
24
+ return {
25
+ content: 'string',
26
+ sessionId: 'string',
27
+ };
28
+ }
29
+
30
+ validate() {
31
+ super.validate();
32
+ }
33
+
34
+ constructor(map?: { [key: string]: any }) {
35
+ super(map);
36
+ }
37
+ }
38
+
39
+ export class SearchTableKnowledgeResponseBody extends $dara.Model {
40
+ data?: SearchTableKnowledgeResponseBodyData;
41
+ /**
42
+ * @example
43
+ * UnknownError
44
+ */
45
+ errorCode?: string;
46
+ /**
47
+ * @example
48
+ * UnknownError
49
+ */
50
+ errorMessage?: string;
51
+ /**
52
+ * @remarks
53
+ * Id of the request
54
+ *
55
+ * @example
56
+ * 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
57
+ */
58
+ requestId?: string;
59
+ /**
60
+ * @example
61
+ * true
62
+ */
63
+ success?: boolean;
64
+ static names(): { [key: string]: string } {
65
+ return {
66
+ data: 'Data',
67
+ errorCode: 'ErrorCode',
68
+ errorMessage: 'ErrorMessage',
69
+ requestId: 'RequestId',
70
+ success: 'Success',
71
+ };
72
+ }
73
+
74
+ static types(): { [key: string]: any } {
75
+ return {
76
+ data: SearchTableKnowledgeResponseBodyData,
77
+ errorCode: 'string',
78
+ errorMessage: 'string',
79
+ requestId: 'string',
80
+ success: 'boolean',
81
+ };
82
+ }
83
+
84
+ validate() {
85
+ if(this.data && typeof (this.data as any).validate === 'function') {
86
+ (this.data as any).validate();
87
+ }
88
+ super.validate();
89
+ }
90
+
91
+ constructor(map?: { [key: string]: any }) {
92
+ super(map);
93
+ }
94
+ }
95
+
@@ -364,6 +364,7 @@ export { SearchTableResponseBodySearchTableListSearchTableOwnerIdList } from './
364
364
  export { SearchTableResponseBodySearchTableListSearchTableOwnerNameList } from './SearchTableResponseBody';
365
365
  export { SearchTableResponseBodySearchTableListSearchTable } from './SearchTableResponseBody';
366
366
  export { SearchTableResponseBodySearchTableList } from './SearchTableResponseBody';
367
+ export { SearchTableKnowledgeResponseBodyData } from './SearchTableKnowledgeResponseBody';
367
368
  export { SimplyAddInstanceResponseBodyInstance } from './SimplyAddInstanceResponseBody';
368
369
  export { UpdateAuthorityTemplateResponseBodyAuthorityTemplateView } from './UpdateAuthorityTemplateResponseBody';
369
370
  export { UpdateSLARulesRequestSlaRuleList } from './UpdateSlarulesRequest';
@@ -1248,6 +1249,9 @@ export { SearchDatabaseResponse } from './SearchDatabaseResponse';
1248
1249
  export { SearchTableRequest } from './SearchTableRequest';
1249
1250
  export { SearchTableResponseBody } from './SearchTableResponseBody';
1250
1251
  export { SearchTableResponse } from './SearchTableResponse';
1252
+ export { SearchTableKnowledgeRequest } from './SearchTableKnowledgeRequest';
1253
+ export { SearchTableKnowledgeResponseBody } from './SearchTableKnowledgeResponseBody';
1254
+ export { SearchTableKnowledgeResponse } from './SearchTableKnowledgeResponse';
1251
1255
  export { SetOwnersRequest } from './SetOwnersRequest';
1252
1256
  export { SetOwnersResponseBody } from './SetOwnersResponseBody';
1253
1257
  export { SetOwnersResponse } from './SetOwnersResponse';