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
@@ -129,5 +129,47 @@ module.exports = class Client extends BaseClient {
129
129
  StreamID: "String",
130
130
  },
131
131
  },
132
+ StartLoop: {
133
+ url: "/",
134
+ method: "POST",
135
+ config: {
136
+ query: {
137
+ Version: "2017-01-01",
138
+ Action: "StartLoop",
139
+ },
140
+ headers: {
141
+ "Content-Type": "application/json",
142
+ },
143
+ },
144
+ paramsType: {
145
+ UniqName: "String",
146
+ App: "String",
147
+ Preset: "String",
148
+ StreamID: "String",
149
+ SrcInfo: "Array",
150
+ PubDomain: "String",
151
+ TaskStartTime: "String",
152
+ TaskStopTime: "String",
153
+ LoopTimes: "Int",
154
+ },
155
+ },
156
+ StopLoop: {
157
+ url: "/",
158
+ method: "POST",
159
+ config: {
160
+ query: {
161
+ Version: "2017-01-01",
162
+ Action: "StopLoop",
163
+ },
164
+ headers: {
165
+ "Content-Type": "application/json",
166
+ },
167
+ },
168
+ paramsType: {
169
+ UniqName: "String",
170
+ App: "String",
171
+ StreamID: "String",
172
+ },
173
+ },
132
174
  };
133
175
  };
@@ -0,0 +1,51 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "kfw.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: "kfw",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ DescribeCfwAv: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2016-03-04",
25
+ Action: "DescribeCfwAv",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {},
32
+ },
33
+ DeleteBatchCfwAddrbook: {
34
+ url: "/",
35
+ method: "POST",
36
+ config: {
37
+ query: {
38
+ Version: "2016-03-04",
39
+ Action: "DeleteBatchCfwAddrbook",
40
+ },
41
+ headers: {
42
+ "Content-Type": "application/x-www-form-urlencoded",
43
+ },
44
+ },
45
+ paramsType: {
46
+ AddrbookIds: "Array",
47
+ CfwInstanceId: "String",
48
+ },
49
+ },
50
+ };
51
+ };
@@ -0,0 +1,36 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "kingpay.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: "kingpay",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ QueryCashWalletAction: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "V1",
25
+ Action: "QueryCashWalletAction",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ subject: "Int",
33
+ },
34
+ },
35
+ };
36
+ };
@@ -0,0 +1,325 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "knad.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: "knad",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateKnad: {
20
+ url: "/",
21
+ method: "POST",
22
+ config: {
23
+ query: {
24
+ Version: "2023-03-23",
25
+ Action: "CreateKnad",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ ServiceId: "String",
33
+ KnadName: "String",
34
+ Duration: "Int",
35
+ ProjectId: "String",
36
+ Band: "Int",
37
+ MaxBand: "Int",
38
+ IpCount: "Int",
39
+ BillType: "Int",
40
+ IdcBand: "Int",
41
+ },
42
+ },
43
+ ModifyKnad: {
44
+ url: "/",
45
+ method: "POST",
46
+ config: {
47
+ query: {
48
+ Version: "2023-03-23",
49
+ Action: "ModifyKnad",
50
+ },
51
+ headers: {
52
+ "Content-Type": "application/x-www-form-urlencoded",
53
+ },
54
+ },
55
+ paramsType: {
56
+ KnadId: "String",
57
+ ServiceId: "String",
58
+ IpCount: "Int",
59
+ Band: "Int",
60
+ MaxBand: "Int",
61
+ IdcBand: "Int",
62
+ },
63
+ },
64
+ UnbindIpList: {
65
+ url: "/",
66
+ method: "GET",
67
+ config: {
68
+ query: {
69
+ Version: "2023-03-23",
70
+ Action: "UnbindIpList",
71
+ },
72
+ headers: {
73
+ "Content-Type": "application/json",
74
+ },
75
+ },
76
+ paramsType: {},
77
+ },
78
+ AssociateIp: {
79
+ url: "/",
80
+ method: "POST",
81
+ config: {
82
+ query: {
83
+ Version: "2023-03-23",
84
+ Action: "AssociateIp",
85
+ },
86
+ headers: {
87
+ "Content-Type": "application/x-www-form-urlencoded",
88
+ },
89
+ },
90
+ paramsType: {
91
+ KnadId: "String",
92
+ Ip: "Array",
93
+ },
94
+ },
95
+ DisassociateIp: {
96
+ url: "/",
97
+ method: "POST",
98
+ config: {
99
+ query: {
100
+ Version: "2023-03-23",
101
+ Action: "DisassociateIp",
102
+ },
103
+ headers: {
104
+ "Content-Type": "application/x-www-form-urlencoded",
105
+ },
106
+ },
107
+ paramsType: {
108
+ Ip: "Array",
109
+ },
110
+ },
111
+ DescribeKnadIp: {
112
+ url: "/",
113
+ method: "GET",
114
+ config: {
115
+ query: {
116
+ Version: "2023-03-23",
117
+ Action: "DescribeKnadIp",
118
+ },
119
+ headers: {
120
+ "Content-Type": "application/x-www-form-urlencoded",
121
+ },
122
+ },
123
+ paramsType: {
124
+ IpSort: "String",
125
+ IpStatusSort: "String",
126
+ BandSort: "String",
127
+ Ip: "String",
128
+ KnadId: "String",
129
+ ProjectId: "Array",
130
+ PageSize: "Int",
131
+ OffSet: "Int",
132
+ },
133
+ },
134
+ DeleteKnad: {
135
+ url: "/",
136
+ method: "POST",
137
+ config: {
138
+ query: {
139
+ Version: "2023-03-23",
140
+ Action: "DeleteKnad",
141
+ },
142
+ headers: {
143
+ "Content-Type": "application/x-www-form-urlencoded",
144
+ },
145
+ },
146
+ paramsType: {
147
+ KnadId: "String",
148
+ },
149
+ },
150
+ DescribeKnad: {
151
+ url: "/",
152
+ method: "GET",
153
+ config: {
154
+ query: {
155
+ Version: "2023-03-23",
156
+ Action: "DescribeKnad",
157
+ },
158
+ headers: {
159
+ "Content-Type": "application/json",
160
+ },
161
+ },
162
+ paramsType: {
163
+ ProjectId: "Filter",
164
+ KnadId: "Filter",
165
+ },
166
+ },
167
+ GetBWIpList: {
168
+ url: "/",
169
+ method: "GET",
170
+ config: {
171
+ query: {
172
+ Version: "2023-03-23",
173
+ Action: "GetBWIpList",
174
+ },
175
+ headers: {
176
+ "Content-Type": "application/x-www-form-urlencoded",
177
+ },
178
+ },
179
+ paramsType: {
180
+ KnadId: "String",
181
+ type: "Int",
182
+ Ip: "String",
183
+ PageSize: "Int",
184
+ OffSet: "Int",
185
+ },
186
+ },
187
+ DeleteBW: {
188
+ url: "/",
189
+ method: "POST",
190
+ config: {
191
+ query: {
192
+ Version: "2023-03-23",
193
+ Action: "DeleteBW",
194
+ },
195
+ headers: {
196
+ "Content-Type": "application/x-www-form-urlencoded",
197
+ },
198
+ },
199
+ paramsType: {
200
+ KnadId: "String",
201
+ IpId: "Array",
202
+ type: "Int",
203
+ },
204
+ },
205
+ AddBWIpList: {
206
+ url: "/",
207
+ method: "POST",
208
+ config: {
209
+ query: {
210
+ Version: "2023-03-23",
211
+ Action: "AddBWIpList",
212
+ },
213
+ headers: {
214
+ "Content-Type": "application/x-www-form-urlencoded",
215
+ },
216
+ },
217
+ paramsType: {
218
+ KnadId: "String",
219
+ Ip: "Array",
220
+ type: "Int",
221
+ },
222
+ },
223
+ GetZoneList: {
224
+ url: "/",
225
+ method: "GET",
226
+ config: {
227
+ query: {
228
+ Version: "2023-03-23",
229
+ Action: "GetZoneList",
230
+ },
231
+ headers: {
232
+ "Content-Type": "application/json",
233
+ },
234
+ },
235
+ paramsType: {},
236
+ },
237
+ ModifyPolicy: {
238
+ url: "/",
239
+ method: "POST",
240
+ config: {
241
+ query: {
242
+ Version: "2023-03-23",
243
+ Action: "ModifyPolicy",
244
+ },
245
+ headers: {
246
+ "Content-Type": "application/x-www-form-urlencoded",
247
+ },
248
+ },
249
+ paramsType: {
250
+ KnadId: "String",
251
+ TemplateId: "Int",
252
+ UdpBlock: "Int",
253
+ TcpBlock: "Int",
254
+ IcmpBlock: "Int",
255
+ },
256
+ },
257
+ ModifyBlockLocation: {
258
+ url: "/",
259
+ method: "POST",
260
+ config: {
261
+ query: {
262
+ Version: "2023-03-23",
263
+ Action: "ModifyBlockLocation",
264
+ },
265
+ headers: {
266
+ "Content-Type": "application/x-www-form-urlencoded",
267
+ },
268
+ },
269
+ paramsType: {
270
+ KnadId: "String",
271
+ LocationBlock: "Int",
272
+ Location: "Array",
273
+ },
274
+ },
275
+ GetBlockLocations: {
276
+ url: "/",
277
+ method: "GET",
278
+ config: {
279
+ query: {
280
+ Version: "2023-03-23",
281
+ Action: "GetBlockLocations",
282
+ },
283
+ headers: {
284
+ "Content-Type": "application/json",
285
+ },
286
+ },
287
+ paramsType: {
288
+ KnadId: "String",
289
+ },
290
+ },
291
+ GetKnadPolicy: {
292
+ url: "/",
293
+ method: "GET",
294
+ config: {
295
+ query: {
296
+ Version: "2023-03-23",
297
+ Action: "GetKnadPolicy",
298
+ },
299
+ headers: {
300
+ "Content-Type": "application/json",
301
+ },
302
+ },
303
+ paramsType: {
304
+ KnadId: "String",
305
+ },
306
+ },
307
+ InsertEips: {
308
+ url: "/",
309
+ method: "POST",
310
+ config: {
311
+ query: {
312
+ Version: "2023-03-23",
313
+ Action: "InsertEips",
314
+ },
315
+ headers: {
316
+ "Content-Type": "application/x-www-form-urlencoded",
317
+ },
318
+ },
319
+ paramsType: {
320
+ KnadId: "String",
321
+ Ip: "Array",
322
+ },
323
+ },
324
+ };
325
+ };
@@ -0,0 +1,173 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "kpfs.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: "kpfs",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ UpdatePerformanceOnePosixAcl: {
20
+ url: "/",
21
+ method: "POST",
22
+ config: {
23
+ query: {
24
+ Version: "2024-09-30",
25
+ Action: "UpdatePerformanceOnePosixAcl",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/json",
29
+ },
30
+ },
31
+ paramsType: {
32
+ PosixAclId: "String",
33
+ FileSystemList: "Array",
34
+ Ips: "Array",
35
+ AutoMount: "Boolean",
36
+ Desc: "String",
37
+ },
38
+ },
39
+ DescribePerformanceOnePosixAclList: {
40
+ url: "/",
41
+ method: "GET",
42
+ config: {
43
+ query: {
44
+ Version: "2024-09-30",
45
+ Action: "DescribePerformanceOnePosixAclList",
46
+ },
47
+ headers: {
48
+ "Content-Type": "application/json",
49
+ },
50
+ },
51
+ paramsType: {
52
+ PosixAclId: "String",
53
+ FileSystemId: "String",
54
+ FileSystemName: "String",
55
+ Ip: "String",
56
+ PageNum: "Int",
57
+ PageSize: "Int",
58
+ },
59
+ },
60
+ ManageDataFlowTask: {
61
+ url: "/",
62
+ method: "POST",
63
+ config: {
64
+ query: {
65
+ Version: "2024-09-30",
66
+ Action: "ManageDataFlowTask",
67
+ },
68
+ headers: {
69
+ "Content-Type": "application/x-www-form-urlencoded",
70
+ },
71
+ },
72
+ paramsType: {
73
+ FileSystemId: "String",
74
+ },
75
+ },
76
+ CreateDataFlowStrategy: {
77
+ url: "/",
78
+ method: "POST",
79
+ config: {
80
+ query: {
81
+ Version: "2024-09-30",
82
+ Action: "CreateDataFlowStrategy",
83
+ },
84
+ headers: {
85
+ "Content-Type": "application/x-www-form-urlencoded",
86
+ },
87
+ },
88
+ paramsType: {
89
+ FileSystemId: "String",
90
+ },
91
+ },
92
+ ModifyDataFlowTask: {
93
+ url: "/",
94
+ method: "POST",
95
+ config: {
96
+ query: {
97
+ Version: "2024-09-30",
98
+ Action: "ModifyDataFlowTask",
99
+ },
100
+ headers: {
101
+ "Content-Type": "application/x-www-form-urlencoded",
102
+ },
103
+ },
104
+ paramsType: {
105
+ FileSystemId: "String",
106
+ },
107
+ },
108
+ DescribeDataFlowTaskList: {
109
+ url: "/",
110
+ method: "GET",
111
+ config: {
112
+ query: {
113
+ Version: "2024-09-30",
114
+ Action: "DescribeDataFlowTaskList",
115
+ },
116
+ headers: {
117
+ "Content-Type": "application/x-www-form-urlencoded",
118
+ },
119
+ },
120
+ paramsType: {
121
+ FileSystemId: "String",
122
+ },
123
+ },
124
+ ActivateDataFlowTask: {
125
+ url: "/",
126
+ method: "GET",
127
+ config: {
128
+ query: {
129
+ Version: "2024-09-30",
130
+ Action: "ActivateDataFlowTask",
131
+ },
132
+ headers: {
133
+ "Content-Type": "application/x-www-form-urlencoded",
134
+ },
135
+ },
136
+ paramsType: {
137
+ FileSystemId: "String",
138
+ },
139
+ },
140
+ DeleteDataFlowStrategy: {
141
+ url: "/",
142
+ method: "GET",
143
+ config: {
144
+ query: {
145
+ Version: "2024-09-30",
146
+ Action: "DeleteDataFlowStrategy",
147
+ },
148
+ headers: {
149
+ "Content-Type": "application/x-www-form-urlencoded",
150
+ },
151
+ },
152
+ paramsType: {
153
+ FileSystemId: "String",
154
+ },
155
+ },
156
+ DescribeDataFlowStrategyList: {
157
+ url: "/",
158
+ method: "GET",
159
+ config: {
160
+ query: {
161
+ Version: "2024-09-30",
162
+ Action: "DescribeDataFlowStrategyList",
163
+ },
164
+ headers: {
165
+ "Content-Type": "application/x-www-form-urlencoded",
166
+ },
167
+ },
168
+ paramsType: {
169
+ FileSystemId: "String",
170
+ },
171
+ },
172
+ };
173
+ };