ksyun-sdk-node 1.4.9 → 1.5.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 (108) hide show
  1. package/dist/service/Aicp/v20240612/index.js +24 -0
  2. package/dist/service/Bws/v20160304/index.js +3 -0
  3. package/dist/service/Cdn/v20250503/index.js +0 -333
  4. package/dist/service/Cdn/v3/index.js +600 -0
  5. package/dist/service/Cen/v20160304/index.js +147 -103
  6. package/dist/service/Clickhouse/v20210101/index.js +204 -19
  7. package/dist/service/Cloud_advisor/v20250610/index.js +81 -0
  8. package/dist/service/Dmp/v20240101/index.js +362 -0
  9. package/dist/service/Dts/v20180108/index.js +386 -0
  10. package/dist/service/Ebs/v20160304/index.js +197 -34
  11. package/dist/service/Eip/v20160304/index.js +79 -1
  12. package/dist/service/Influxdb/v20191010/index.js +504 -0
  13. package/dist/service/Kad/v20161122/index.js +32 -0
  14. package/dist/service/Kce/v20190806/index.js +234 -43
  15. package/dist/service/Kce/v20201231/index.js +2 -2
  16. package/dist/service/Kce/v20230101/index.js +193 -0
  17. package/dist/service/Kce/v20230306/index.js +434 -0
  18. package/dist/service/Kce/v20231115/index.js +65 -0
  19. package/dist/service/Kce2/v20230101/index.js +313 -0
  20. package/dist/service/Kci/v20200702/index.js +336 -0
  21. package/dist/service/Kcm/v20160304/index.js +113 -3
  22. package/dist/service/Kcrs/v20211109/index.js +88 -92
  23. package/dist/service/Kcs/v20160701/index.js +165 -23
  24. package/dist/service/Kcs/v20170401/index.js +1 -36
  25. package/dist/service/Kcs/v20240701/index.js +45 -0
  26. package/dist/service/Kead/v20200101/index.js +37 -8
  27. package/dist/service/Ked/v1/index.js +805 -0
  28. package/dist/service/Ket/v20170101/index.js +42 -0
  29. package/dist/service/Kfw/v20160304/index.js +59 -0
  30. package/dist/service/Kingpay/v1/index.js +44 -0
  31. package/dist/service/Knad/v20230323/index.js +333 -0
  32. package/dist/service/Kpfs/v20240930/index.js +181 -0
  33. package/dist/service/Krds/v20160701/index.js +505 -96
  34. package/dist/service/Krds/v20200825/index.js +48 -8
  35. package/dist/service/Milvus/v20231010/index.js +366 -0
  36. package/dist/service/Mongodb/v20170101/index.js +163 -13
  37. package/dist/service/Mongodb/v20250101/index.js +44 -0
  38. package/dist/service/Pdns/v20160304/index.js +636 -0
  39. package/dist/service/Postgresql/v20181225/index.js +950 -0
  40. package/dist/service/Rabbitmq/v20191017/index.js +107 -6
  41. package/dist/service/Relyt/v20240117/index.js +45 -0
  42. package/dist/service/Sks/v20151101/index.js +2 -1
  43. package/dist/service/Slb/v20160304/index.js +426 -53
  44. package/dist/service/Slb/v20250430/index.js +750 -0
  45. package/dist/service/Sqlserver/v20190425/index.js +872 -0
  46. package/dist/service/Sts/v20151101/index.js +19 -0
  47. package/dist/service/Tagv2/v20200901/index.js +42 -6
  48. package/dist/service/Ter/v20240415/index.js +114 -0
  49. package/dist/service/Tidb/v20210520/index.js +415 -21
  50. package/dist/service/Trade/v20250220/index.js +97 -0
  51. package/dist/service/Trade/v20250321/index.js +93 -0
  52. package/dist/service/Trade/v20250828/index.js +56 -0
  53. package/dist/service/Vpc/v20160304/index.js +32 -0
  54. package/dist/service/Waf/v20200707/index.js +188 -5
  55. package/package.json +1 -1
  56. package/src/service/Aicp/v20240612/index.js +24 -0
  57. package/src/service/Bws/v20160304/index.js +3 -0
  58. package/src/service/Cdn/{v20250503 → v3}/index.js +196 -0
  59. package/src/service/Cen/v20160304/index.js +144 -100
  60. package/src/service/Clickhouse/v20210101/index.js +203 -18
  61. package/src/service/Cloud_advisor/v20250610/index.js +73 -0
  62. package/src/service/Dmp/v20240101/index.js +354 -0
  63. package/src/service/Dts/v20180108/index.js +378 -0
  64. package/src/service/Ebs/v20160304/index.js +194 -31
  65. package/src/service/Eip/v20160304/index.js +79 -1
  66. package/src/service/Influxdb/v20191010/index.js +496 -0
  67. package/src/service/Kad/v20161122/index.js +32 -0
  68. package/src/service/Kce/v20190806/index.js +233 -42
  69. package/src/service/Kce/v20201231/index.js +2 -2
  70. package/src/service/Kce/v20230101/index.js +185 -0
  71. package/src/service/Kce/v20230306/index.js +426 -0
  72. package/src/service/Kce/v20231115/index.js +57 -0
  73. package/src/service/Kce2/v20230101/index.js +305 -0
  74. package/src/service/Kci/v20200702/index.js +328 -0
  75. package/src/service/Kcm/v20160304/index.js +110 -0
  76. package/src/service/Kcrs/v20211109/index.js +87 -91
  77. package/src/service/Kcs/v20160701/index.js +164 -22
  78. package/src/service/Kcs/v20170401/index.js +1 -36
  79. package/src/service/Kcs/v20240701/index.js +37 -0
  80. package/src/service/Kead/v20200101/index.js +37 -8
  81. package/src/service/Ked/v1/index.js +797 -0
  82. package/src/service/Ket/v20170101/index.js +42 -0
  83. package/src/service/Kfw/v20160304/index.js +51 -0
  84. package/src/service/Kingpay/v1/index.js +36 -0
  85. package/src/service/Knad/v20230323/index.js +325 -0
  86. package/src/service/Kpfs/v20240930/index.js +173 -0
  87. package/src/service/Krds/v20160701/index.js +502 -93
  88. package/src/service/Krds/v20200825/index.js +48 -8
  89. package/src/service/Milvus/v20231010/index.js +358 -0
  90. package/src/service/Mongodb/v20170101/index.js +162 -12
  91. package/src/service/Mongodb/v20250101/index.js +36 -0
  92. package/src/service/Pdns/v20160304/index.js +628 -0
  93. package/src/service/Postgresql/v20181225/index.js +942 -0
  94. package/src/service/Rabbitmq/v20191017/index.js +107 -6
  95. package/src/service/Relyt/v20240117/index.js +37 -0
  96. package/src/service/Sks/v20151101/index.js +1 -0
  97. package/src/service/Slb/v20160304/index.js +416 -43
  98. package/src/service/Slb/v20250430/index.js +742 -0
  99. package/src/service/Sqlserver/v20190425/index.js +864 -0
  100. package/src/service/Sts/v20151101/index.js +19 -0
  101. package/src/service/Tagv2/v20200901/index.js +42 -6
  102. package/src/service/Ter/v20240415/index.js +106 -0
  103. package/src/service/Tidb/v20210520/index.js +412 -18
  104. package/src/service/Trade/v20250220/index.js +89 -0
  105. package/src/service/Trade/v20250321/index.js +85 -0
  106. package/src/service/Trade/v20250828/index.js +48 -0
  107. package/src/service/Vpc/v20160304/index.js +32 -0
  108. package/src/service/Waf/v20200707/index.js +187 -4
@@ -0,0 +1,354 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "dmp.api.ksyun.com",
7
+ config: {
8
+ timeout: 60, //设置timeout
9
+ headers: {
10
+ Accept: "application/json",
11
+ },
12
+ credentials: {
13
+ region: "cn-shanghai-3",
14
+ service: "dmp",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ DescribeDefaultMonitorItems: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2024-01-01",
25
+ Action: "DescribeDefaultMonitorItems",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ PanelType: "String",
33
+ },
34
+ },
35
+ DeleteMonitorPanel: {
36
+ url: "/",
37
+ method: "POST",
38
+ config: {
39
+ query: {
40
+ Version: "2024-01-01",
41
+ Action: "DeleteMonitorPanel",
42
+ },
43
+ headers: {
44
+ "Content-Type": "application/json",
45
+ },
46
+ },
47
+ paramsType: {
48
+ PanelId: "String",
49
+ },
50
+ },
51
+ OperateMonitorPanel: {
52
+ url: "/",
53
+ method: "POST",
54
+ config: {
55
+ query: {
56
+ Version: "2024-01-01",
57
+ Action: "OperateMonitorPanel",
58
+ },
59
+ headers: {
60
+ "Content-Type": "application/json",
61
+ },
62
+ },
63
+ paramsType: {
64
+ AddInstanceIds: "Array",
65
+ RemoveInstanceIds: "Array",
66
+ AddMonitorItems: "Array",
67
+ RemoveMonitorItems: "Array",
68
+ PanelId: "String",
69
+ },
70
+ },
71
+ DescribeMonitorPanel: {
72
+ url: "/",
73
+ method: "GET",
74
+ config: {
75
+ query: {
76
+ Version: "2024-01-01",
77
+ Action: "DescribeMonitorPanel",
78
+ },
79
+ headers: {
80
+ "Content-Type": "application/x-www-form-urlencoded",
81
+ },
82
+ },
83
+ paramsType: {
84
+ PanelId: "String",
85
+ },
86
+ },
87
+ ModifyMonitorPanelInfo: {
88
+ url: "/",
89
+ method: "POST",
90
+ config: {
91
+ query: {
92
+ Version: "2024-01-01",
93
+ Action: "ModifyMonitorPanelInfo",
94
+ },
95
+ headers: {
96
+ "Content-Type": "application/json",
97
+ },
98
+ },
99
+ paramsType: {
100
+ PanelId: "String",
101
+ PanelName: "String",
102
+ },
103
+ },
104
+ CreateMonitorPanel: {
105
+ url: "/",
106
+ method: "POST",
107
+ config: {
108
+ query: {
109
+ Version: "2024-01-01",
110
+ Action: "CreateMonitorPanel",
111
+ },
112
+ headers: {
113
+ "Content-Type": "application/json",
114
+ },
115
+ },
116
+ paramsType: {
117
+ PanelName: "String",
118
+ PanelType: "String",
119
+ },
120
+ },
121
+ DeleteBatchInstances: {
122
+ url: "/",
123
+ method: "POST",
124
+ config: {
125
+ query: {
126
+ Version: "2024-01-01",
127
+ Action: "DeleteBatchInstances",
128
+ },
129
+ headers: {
130
+ "Content-Type": "application/json",
131
+ },
132
+ },
133
+ paramsType: {
134
+ InstanceIds: "Array",
135
+ },
136
+ },
137
+ InstanceStatistics: {
138
+ url: "/",
139
+ method: "GET",
140
+ config: {
141
+ query: {
142
+ Version: "2024-01-01",
143
+ Action: "InstanceStatistics",
144
+ },
145
+ headers: {
146
+ "Content-Type": "application/x-www-form-urlencoded",
147
+ },
148
+ },
149
+ paramsType: {},
150
+ },
151
+ DescribeMonitorPanelList: {
152
+ url: "/",
153
+ method: "GET",
154
+ config: {
155
+ query: {
156
+ Version: "2024-01-01",
157
+ Action: "DescribeMonitorPanelList",
158
+ },
159
+ headers: {
160
+ "Content-Type": "application/x-www-form-urlencoded",
161
+ },
162
+ },
163
+ paramsType: {
164
+ PanelIds: "String",
165
+ PanelType: "String",
166
+ Page: "Int",
167
+ PageSize: "Int",
168
+ },
169
+ },
170
+ DescribeInstanceList: {
171
+ url: "/",
172
+ method: "GET",
173
+ config: {
174
+ query: {
175
+ Version: "2024-01-01",
176
+ Action: "DescribeInstanceList",
177
+ },
178
+ headers: {
179
+ "Content-Type": "application/json",
180
+ },
181
+ },
182
+ paramsType: {
183
+ InstanceId: "String",
184
+ DatabaseType: "String",
185
+ InstanceRegion: "String",
186
+ InstanceName: "String",
187
+ Ip: "String",
188
+ Search: "String",
189
+ Page: "Int",
190
+ PageSize: "Int",
191
+ },
192
+ },
193
+ ImportInstanceToDmp: {
194
+ url: "/",
195
+ method: "POST",
196
+ config: {
197
+ query: {
198
+ Version: "2024-01-01",
199
+ Action: "ImportInstanceToDmp",
200
+ },
201
+ headers: {
202
+ "Content-Type": "application/json",
203
+ },
204
+ },
205
+ paramsType: {
206
+ InstanceRegion: "String",
207
+ DatabaseType: "String",
208
+ InstanceId: "String",
209
+ },
210
+ },
211
+ DescribeDedicatedClusters: {
212
+ url: "/",
213
+ method: "GET",
214
+ config: {
215
+ query: {
216
+ Version: "2024-01-01",
217
+ Action: "DescribeDedicatedClusters",
218
+ },
219
+ headers: {
220
+ "Content-Type": "application/json",
221
+ },
222
+ },
223
+ paramsType: {},
224
+ },
225
+ DescribeDedicatedHosts: {
226
+ url: "/",
227
+ method: "GET",
228
+ config: {
229
+ query: {
230
+ Version: "2024-01-01",
231
+ Action: "DescribeDedicatedHosts",
232
+ },
233
+ headers: {
234
+ "Content-Type": "application/x-www-form-urlencoded",
235
+ },
236
+ },
237
+ paramsType: {},
238
+ },
239
+ DescribeDatabaseSchema: {
240
+ url: "/",
241
+ method: "GET",
242
+ config: {
243
+ query: {
244
+ Version: "2024-01-01",
245
+ Action: "DescribeDatabaseSchema",
246
+ },
247
+ headers: {
248
+ "Content-Type": "application/x-www-form-urlencoded",
249
+ },
250
+ },
251
+ paramsType: {
252
+ DatabaseId: "Int",
253
+ },
254
+ },
255
+ DescribeDatabaseList: {
256
+ url: "/",
257
+ method: "GET",
258
+ config: {
259
+ query: {
260
+ Version: "2024-01-01",
261
+ Action: "DescribeDatabaseList",
262
+ },
263
+ headers: {
264
+ "Content-Type": "application/x-www-form-urlencoded",
265
+ },
266
+ },
267
+ paramsType: {},
268
+ },
269
+ DescribeHistorySQL: {
270
+ url: "/",
271
+ method: "GET",
272
+ config: {
273
+ query: {
274
+ Version: "2024-01-01",
275
+ Action: "DescribeHistorySQL",
276
+ },
277
+ headers: {
278
+ "Content-Type": "application/x-www-form-urlencoded",
279
+ },
280
+ },
281
+ paramsType: {},
282
+ },
283
+ StartExecuteSQL: {
284
+ url: "/",
285
+ method: "POST",
286
+ config: {
287
+ query: {
288
+ Version: "2024-01-01",
289
+ Action: "StartExecuteSQL",
290
+ },
291
+ headers: {
292
+ "Content-Type": "application/x-www-form-urlencoded",
293
+ },
294
+ },
295
+ paramsType: {
296
+ DatabaseName: "String",
297
+ Statement: "String",
298
+ },
299
+ },
300
+ UpdateInstanceDatabase: {
301
+ url: "/",
302
+ method: "POST",
303
+ config: {
304
+ query: {
305
+ Version: "2024-01-01",
306
+ Action: "UpdateInstanceDatabase",
307
+ },
308
+ headers: {
309
+ "Content-Type": "application/x-www-form-urlencoded",
310
+ },
311
+ },
312
+ paramsType: {
313
+ InstanceId: "String",
314
+ },
315
+ },
316
+ UpdateDatabaseTable: {
317
+ url: "/",
318
+ method: "POST",
319
+ config: {
320
+ query: {
321
+ Version: "2024-01-01",
322
+ Action: "UpdateDatabaseTable",
323
+ },
324
+ headers: {
325
+ "Content-Type": "application/x-www-form-urlencoded",
326
+ },
327
+ },
328
+ paramsType: {
329
+ DatabaseId: "String",
330
+ },
331
+ },
332
+ TestInstanceConnection: {
333
+ url: "/",
334
+ method: "POST",
335
+ config: {
336
+ query: {
337
+ Version: "2024-01-01",
338
+ Action: "TestInstanceConnection",
339
+ },
340
+ headers: {
341
+ "Content-Type": "application/x-www-form-urlencoded",
342
+ },
343
+ },
344
+ paramsType: {
345
+ InstanceId: "String",
346
+ DatabaseType: "String",
347
+ DatabaseVersion: "String",
348
+ Username: "String",
349
+ Password: "String",
350
+ UseSourceUser: "Boolean",
351
+ },
352
+ },
353
+ };
354
+ };
@@ -0,0 +1,378 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "dts.api.ksyun.com",
7
+ config: {
8
+ timeout: 60, //设置timeout
9
+ headers: {
10
+ Accept: "application/json",
11
+ },
12
+ credentials: {
13
+ region: "cn-shanghai-3",
14
+ service: "dts",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ SchemaStruct: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2018-01-08",
25
+ Action: "SchemaStruct",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ SourceInstanceId: "String",
33
+ SourceType: "String",
34
+ SourceUsername: "String",
35
+ SourcePassword: "String",
36
+ SourceRegion: "String",
37
+ },
38
+ },
39
+ ConnectivityCheck: {
40
+ url: "/",
41
+ method: "GET",
42
+ config: {
43
+ query: {
44
+ Version: "2018-01-08",
45
+ Action: "ConnectivityCheck",
46
+ },
47
+ headers: {
48
+ "Content-Type": "application/x-www-form-urlencoded",
49
+ },
50
+ },
51
+ paramsType: {},
52
+ },
53
+ CreatePrecheck: {
54
+ url: "/",
55
+ method: "POST",
56
+ config: {
57
+ query: {
58
+ Version: "2018-01-08",
59
+ Action: "CreatePrecheck",
60
+ },
61
+ headers: {
62
+ "Content-Type": "application/json",
63
+ },
64
+ },
65
+ paramsType: {
66
+ SourceType: "String",
67
+ TargetType: "String",
68
+ TargetRegion: "String",
69
+ SourceRegion: "String",
70
+ DbSchema: "String",
71
+ SubTasks: "String",
72
+ SourceInstanceId: "String",
73
+ TargetInstanceId: "String",
74
+ SourceUsername: "String",
75
+ SourcePassword: "String",
76
+ Type: "String",
77
+ DTSParameter: "Filter",
78
+ SourceUser: "Filter",
79
+ },
80
+ },
81
+ CreateTask: {
82
+ url: "/",
83
+ method: "GET",
84
+ config: {
85
+ query: {
86
+ Version: "2018-01-08",
87
+ Action: "CreateTask",
88
+ },
89
+ headers: {
90
+ "Content-Type": "application/x-www-form-urlencoded",
91
+ },
92
+ },
93
+ paramsType: {
94
+ TaskName: "String",
95
+ SubTask: "String",
96
+ TaskType: "String",
97
+ PrecheckId: "String",
98
+ BillType: "Int",
99
+ Duration: "Int",
100
+ },
101
+ },
102
+ DescribeTask: {
103
+ url: "/",
104
+ method: "GET",
105
+ config: {
106
+ query: {
107
+ Version: "2018-01-08",
108
+ Action: "DescribeTask",
109
+ },
110
+ headers: {
111
+ "Content-Type": "application/json",
112
+ },
113
+ },
114
+ paramsType: {
115
+ TaskId: "String",
116
+ TargetType: "String",
117
+ TaskType: "String",
118
+ TaskStatus: "Filter",
119
+ TaskName: "String",
120
+ TargetInstanceId: "String",
121
+ SourceInstanceId: "String",
122
+ OrderByType: "String",
123
+ Marker: "Int",
124
+ MaxRecords: "Int",
125
+ },
126
+ },
127
+ OperateTask: {
128
+ url: "/",
129
+ method: "GET",
130
+ config: {
131
+ query: {
132
+ Version: "2018-01-08",
133
+ Action: "OperateTask",
134
+ },
135
+ headers: {
136
+ "Content-Type": "application/x-www-form-urlencoded",
137
+ },
138
+ },
139
+ paramsType: {
140
+ TaskId: "String",
141
+ ActionName: "String",
142
+ TaskType: "String",
143
+ ErrSkip: "Int",
144
+ },
145
+ },
146
+ DescribeConnConfig: {
147
+ url: "/",
148
+ method: "GET",
149
+ config: {
150
+ query: {
151
+ Version: "2018-01-08",
152
+ Action: "DescribeConnConfig",
153
+ },
154
+ headers: {
155
+ "Content-Type": "application/x-www-form-urlencoded",
156
+ },
157
+ },
158
+ paramsType: {
159
+ ConnConfigId: "String",
160
+ },
161
+ },
162
+ DescribePrecheck: {
163
+ url: "/",
164
+ method: "GET",
165
+ config: {
166
+ query: {
167
+ Version: "2018-01-08",
168
+ Action: "DescribePrecheck",
169
+ },
170
+ headers: {
171
+ "Content-Type": "application/x-www-form-urlencoded",
172
+ },
173
+ },
174
+ paramsType: {
175
+ PrecheckId: "String",
176
+ },
177
+ },
178
+ DescribeSourceUserConfig: {
179
+ url: "/",
180
+ method: "GET",
181
+ config: {
182
+ query: {
183
+ Version: "2018-01-08",
184
+ Action: "DescribeSourceUserConfig",
185
+ },
186
+ headers: {
187
+ "Content-Type": "application/json",
188
+ },
189
+ },
190
+ paramsType: {
191
+ TaskId: "String",
192
+ },
193
+ },
194
+ SetConsistencyCheck: {
195
+ url: "/",
196
+ method: "GET",
197
+ config: {
198
+ query: {
199
+ Version: "2018-01-08",
200
+ Action: "SetConsistencyCheck",
201
+ },
202
+ headers: {
203
+ "Content-Type": "application/json",
204
+ },
205
+ },
206
+ paramsType: {
207
+ TaskId: "String",
208
+ ConsistencyCheckAuto: "Boolean",
209
+ ConsistencyCheckCycle: "Int",
210
+ ConsistencyCheckFixedTime: "String",
211
+ },
212
+ },
213
+ DescribeConsistencyCheck: {
214
+ url: "/",
215
+ method: "GET",
216
+ config: {
217
+ query: {
218
+ Version: "2018-01-08",
219
+ Action: "DescribeConsistencyCheck",
220
+ },
221
+ headers: {
222
+ "Content-Type": "application/json",
223
+ },
224
+ },
225
+ paramsType: {
226
+ TaskId: "String",
227
+ },
228
+ },
229
+ DescribeDTSParameter: {
230
+ url: "/",
231
+ method: "GET",
232
+ config: {
233
+ query: {
234
+ Version: "2018-01-08",
235
+ Action: "DescribeDTSParameter",
236
+ },
237
+ headers: {
238
+ "Content-Type": "application/json",
239
+ },
240
+ },
241
+ paramsType: {
242
+ SourceType: "String",
243
+ TargetType: "String",
244
+ TargetInstanceId: "String",
245
+ TargetRegion: "String",
246
+ SourceInstanceId: "String",
247
+ SourceHost: "String",
248
+ SourcePort: "String",
249
+ SourceUsername: "String",
250
+ SourcePassword: "String",
251
+ SourceRegion: "String",
252
+ },
253
+ },
254
+ DescribeDTSParameterConfig: {
255
+ url: "/",
256
+ method: "GET",
257
+ config: {
258
+ query: {
259
+ Version: "2018-01-08",
260
+ Action: "DescribeDTSParameterConfig",
261
+ },
262
+ headers: {
263
+ "Content-Type": "application/json",
264
+ },
265
+ },
266
+ paramsType: {
267
+ TaskId: "String",
268
+ },
269
+ },
270
+ DescribeSourceUser: {
271
+ url: "/",
272
+ method: "GET",
273
+ config: {
274
+ query: {
275
+ Version: "2018-01-08",
276
+ Action: "DescribeSourceUser",
277
+ },
278
+ headers: {
279
+ "Content-Type": "application/json",
280
+ },
281
+ },
282
+ paramsType: {
283
+ SourceInstanceId: "String",
284
+ SourceType: "String",
285
+ SourceUsername: "String",
286
+ SourcePassword: "String",
287
+ SourceRegion: "String",
288
+ TargetType: "String",
289
+ TargetInstanceId: "String",
290
+ TargetRegion: "String",
291
+ },
292
+ },
293
+ DescribeSubTask: {
294
+ url: "/",
295
+ method: "GET",
296
+ config: {
297
+ query: {
298
+ Version: "2018-01-08",
299
+ Action: "DescribeSubTask",
300
+ },
301
+ headers: {
302
+ "Content-Type": "application/json",
303
+ },
304
+ },
305
+ paramsType: {
306
+ TaskId: "String",
307
+ SubTaskId: "String",
308
+ SubTaskName: "String",
309
+ OrderByType: "String",
310
+ ObjectStatus: "String",
311
+ Marker: "Int",
312
+ MaxRecords: "Int",
313
+ },
314
+ },
315
+ CreateConsistencyCheck: {
316
+ url: "/",
317
+ method: "GET",
318
+ config: {
319
+ query: {
320
+ Version: "2018-01-08",
321
+ Action: "CreateConsistencyCheck",
322
+ },
323
+ headers: {
324
+ "Content-Type": "application/json",
325
+ },
326
+ },
327
+ paramsType: {
328
+ TaskId: "String",
329
+ },
330
+ },
331
+ StopConsistencyCheck: {
332
+ url: "/",
333
+ method: "GET",
334
+ config: {
335
+ query: {
336
+ Version: "2018-01-08",
337
+ Action: "StopConsistencyCheck",
338
+ },
339
+ headers: {
340
+ "Content-Type": "application/json",
341
+ },
342
+ },
343
+ paramsType: {
344
+ TaskId: "String",
345
+ },
346
+ },
347
+ DescribeRegionConfig: {
348
+ url: "/",
349
+ method: "GET",
350
+ config: {
351
+ query: {
352
+ Version: "2018-01-08",
353
+ Action: "DescribeRegionConfig",
354
+ },
355
+ headers: {
356
+ "Content-Type": "application/x-www-form-urlencoded",
357
+ },
358
+ },
359
+ paramsType: {},
360
+ },
361
+ TaskBirdView: {
362
+ url: "/",
363
+ method: "GET",
364
+ config: {
365
+ query: {
366
+ Version: "2018-01-08",
367
+ Action: "TaskBirdView",
368
+ },
369
+ headers: {
370
+ "Content-Type": "application/json",
371
+ },
372
+ },
373
+ paramsType: {
374
+ taskType: "String",
375
+ },
376
+ },
377
+ };
378
+ };