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,305 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "kce2.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: "kce2",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateCluster: {
20
+ url: "/",
21
+ method: "POST",
22
+ config: {
23
+ query: {
24
+ Version: "2023-01-01",
25
+ Action: "CreateCluster",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/json",
29
+ },
30
+ },
31
+ paramsType: {
32
+ ClusterName: "String",
33
+ ClusterDesc: "String",
34
+ ClusterManageMode: "String",
35
+ ProjectId: "String",
36
+ KubernetesVersion: "String",
37
+ Network: "Object",
38
+ NodeInstanceSet: "Array",
39
+ Addons: "Array",
40
+ },
41
+ },
42
+ DescribeClusters: {
43
+ url: "/",
44
+ method: "GET",
45
+ config: {
46
+ query: {
47
+ Version: "2023-01-01",
48
+ Action: "DescribeClusters",
49
+ },
50
+ headers: {
51
+ "Content-Type": "application/json",
52
+ },
53
+ },
54
+ paramsType: {
55
+ ClusterIds: "Array",
56
+ MaxResults: "Int",
57
+ Marker: "Int",
58
+ },
59
+ },
60
+ DeleteCluster: {
61
+ url: "/",
62
+ method: "POST",
63
+ config: {
64
+ query: {
65
+ Version: "2023-01-01",
66
+ Action: "DeleteCluster",
67
+ },
68
+ headers: {
69
+ "Content-Type": "application/x-www-form-urlencoded",
70
+ },
71
+ },
72
+ paramsType: {
73
+ ClusterId: "String",
74
+ InstanceDelete: "Boolean",
75
+ SecurityGroupDelete: "Boolean",
76
+ PrivateLbDelete: "Boolean",
77
+ PublicLbDelete: "Boolean",
78
+ },
79
+ },
80
+ ModifyCluster: {
81
+ url: "/",
82
+ method: "POST",
83
+ config: {
84
+ query: {
85
+ Version: "2023-01-01",
86
+ Action: "ModifyCluster",
87
+ },
88
+ headers: {
89
+ "Content-Type": "application/x-www-form-urlencoded",
90
+ },
91
+ },
92
+ paramsType: {
93
+ ClusterId: "String",
94
+ ClusterDesc: "String",
95
+ SANs: "Array",
96
+ PublicApiServer: "Object",
97
+ VpcCNI: "Object",
98
+ },
99
+ },
100
+ DescribeNodes: {
101
+ url: "/",
102
+ method: "POST",
103
+ config: {
104
+ query: {
105
+ Version: "2023-01-01",
106
+ Action: "DescribeNodes",
107
+ },
108
+ headers: {
109
+ "Content-Type": "application/x-www-form-urlencoded",
110
+ },
111
+ },
112
+ paramsType: {
113
+ ClusterId: "String",
114
+ KceNodeIds: "Array",
115
+ Marker: "Int",
116
+ MaxResults: "Int",
117
+ InstanceIds: "Array",
118
+ },
119
+ },
120
+ DeleteNode: {
121
+ url: "/",
122
+ method: "POST",
123
+ config: {
124
+ query: {
125
+ Version: "2023-01-01",
126
+ Action: "DeleteNode",
127
+ },
128
+ headers: {
129
+ "Content-Type": "application/x-www-form-urlencoded",
130
+ },
131
+ },
132
+ paramsType: {
133
+ ClusterId: "String",
134
+ NodeIds: "Array",
135
+ InstanceDelete: "Boolean",
136
+ KceNodeIds: "String",
137
+ InstanceIds: "Array",
138
+ },
139
+ },
140
+ ModifyNode: {
141
+ url: "/",
142
+ method: "POST",
143
+ config: {
144
+ query: {
145
+ Version: "2023-01-01",
146
+ Action: "ModifyNode",
147
+ },
148
+ headers: {
149
+ "Content-Type": "application/x-www-form-urlencoded",
150
+ },
151
+ },
152
+ paramsType: {
153
+ ClusteId: "String",
154
+ KceNodeId: "String",
155
+ InstanceId: "String",
156
+ Components: "Array",
157
+ },
158
+ },
159
+ DescribeComponentList: {
160
+ url: "/",
161
+ method: "GET",
162
+ config: {
163
+ query: {
164
+ Version: "2023-01-01",
165
+ Action: "DescribeComponentList",
166
+ },
167
+ headers: {
168
+ "Content-Type": "application/x-www-form-urlencoded",
169
+ },
170
+ },
171
+ paramsType: {
172
+ K8sVersion: "String",
173
+ },
174
+ },
175
+ DescribeNodeComponents: {
176
+ url: "/",
177
+ method: "POST",
178
+ config: {
179
+ query: {
180
+ Version: "2023-01-01",
181
+ Action: "DescribeNodeComponents",
182
+ },
183
+ headers: {
184
+ "Content-Type": "application/x-www-form-urlencoded",
185
+ },
186
+ },
187
+ paramsType: {
188
+ ClusterId: "String",
189
+ ClusterName: "String",
190
+ NodeNames: "Array",
191
+ NodeIds: "String",
192
+ Marker: "Int",
193
+ MaxResults: "Int",
194
+ },
195
+ },
196
+ DescribeNetwork: {
197
+ url: "/",
198
+ method: "POST",
199
+ config: {
200
+ query: {
201
+ Version: "2023-01-01",
202
+ Action: "DescribeNetwork",
203
+ },
204
+ headers: {
205
+ "Content-Type": "application/x-www-form-urlencoded",
206
+ },
207
+ },
208
+ paramsType: {
209
+ ClusterId: "String",
210
+ ClusterName: "String",
211
+ },
212
+ },
213
+ DescribeComponentParams: {
214
+ url: "/",
215
+ method: "POST",
216
+ config: {
217
+ query: {
218
+ Version: "2023-01-01",
219
+ Action: "DescribeComponentParams",
220
+ },
221
+ headers: {
222
+ "Content-Type": "application/x-www-form-urlencoded",
223
+ },
224
+ },
225
+ paramsType: {
226
+ ClusterId: "String",
227
+ Components: "Array",
228
+ Marker: "Int",
229
+ MaxResults: "Int",
230
+ },
231
+ },
232
+ DescribeEventLogs: {
233
+ url: "/",
234
+ method: "POST",
235
+ config: {
236
+ query: {
237
+ Version: "2023-01-01",
238
+ Action: "DescribeEventLogs",
239
+ },
240
+ headers: {
241
+ "Content-Type": "application/x-www-form-urlencoded",
242
+ },
243
+ },
244
+ paramsType: {
245
+ ClusterId: "String",
246
+ ClusterName: "String",
247
+ NodeId: "String",
248
+ NodeName: "String",
249
+ Inner: "Boolean",
250
+ Marker: "Int",
251
+ MaxResults: "Int",
252
+ },
253
+ },
254
+ DescribeClusterVersionList: {
255
+ url: "/",
256
+ method: "POST",
257
+ config: {
258
+ query: {
259
+ Version: "2023-01-01",
260
+ Action: "DescribeClusterVersionList",
261
+ },
262
+ headers: {
263
+ "Content-Type": "application/x-www-form-urlencoded",
264
+ },
265
+ },
266
+ paramsType: {
267
+ K8sVersion: "String",
268
+ },
269
+ },
270
+ AddKecNodes: {
271
+ url: "/",
272
+ method: "POST",
273
+ config: {
274
+ query: {
275
+ Version: "2023-01-01",
276
+ Action: "AddKecNodes",
277
+ },
278
+ headers: {
279
+ "Content-Type": "application/x-www-form-urlencoded",
280
+ },
281
+ },
282
+ paramsType: {
283
+ ClusterId: "String",
284
+ NodeInstanceSet: "Object",
285
+ },
286
+ },
287
+ AddEpcNodes: {
288
+ url: "/",
289
+ method: "POST",
290
+ config: {
291
+ query: {
292
+ Version: "2023-01-01",
293
+ Action: "AddEpcNodes",
294
+ },
295
+ headers: {
296
+ "Content-Type": "application/x-www-form-urlencoded",
297
+ },
298
+ },
299
+ paramsType: {
300
+ ClusterId: "String",
301
+ NodeInstanceSet: "Array",
302
+ },
303
+ },
304
+ };
305
+ };
@@ -0,0 +1,328 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "kci.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: "kci",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateContainerGroup: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2020-07-02",
25
+ Action: "CreateContainerGroup",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ ContainerGroupName: "String",
33
+ SubnetId: "String",
34
+ MultiSubnetId: "Filter",
35
+ SecurityGroupId: "Filter",
36
+ KciType: "String",
37
+ InstanceType: "String",
38
+ InstanceFamily: "String",
39
+ ChargeType: "String",
40
+ SpotStrategy: "String",
41
+ ProjectId: "Int",
42
+ Cpu: "Double",
43
+ Memory: "Double",
44
+ Gpu: "Double",
45
+ KubeConfig: "String",
46
+ RetainIp: "Boolean",
47
+ RetainIpHours: "Int",
48
+ EipAllocationId: "String",
49
+ MultiEipAllocationId: "Filter",
50
+ AutoMatchImageCache: "Boolean",
51
+ ImageCacheId: "String",
52
+ AdvanceSettings: "Object",
53
+ MachineDnsConfig: "Object",
54
+ MachineHostAliase: "Filter",
55
+ RestartPolicy: "String",
56
+ ImageRegistryCredential: "Filter",
57
+ Volume: "Filter",
58
+ Container: "Filter",
59
+ DnsConfig: "Object",
60
+ HostAliase: "Filter",
61
+ ClusterDns: "String",
62
+ ClusterDomain: "String",
63
+ Label: "Filter",
64
+ KubeProxy: "Object",
65
+ KlogEnabled: "Boolean",
66
+ DataDisk: "Filter",
67
+ ContainerSpec: "Filter",
68
+ },
69
+ },
70
+ DescribeContainerGroup: {
71
+ url: "/",
72
+ method: "GET",
73
+ config: {
74
+ query: {
75
+ Version: "2020-07-02",
76
+ Action: "DescribeContainerGroup",
77
+ },
78
+ headers: {
79
+ "Content-Type": "application/x-www-form-urlencoded",
80
+ },
81
+ },
82
+ paramsType: {
83
+ ContainerGroupId: "Filter",
84
+ MaxResults: "Int",
85
+ Marker: "Int",
86
+ ProjectId: "Filter",
87
+ Search: "String",
88
+ Filter: "Filter",
89
+ },
90
+ },
91
+ DeleteContainerGroup: {
92
+ url: "/",
93
+ method: "GET",
94
+ config: {
95
+ query: {
96
+ Version: "2020-07-02",
97
+ Action: "DeleteContainerGroup",
98
+ },
99
+ headers: {
100
+ "Content-Type": "application/x-www-form-urlencoded",
101
+ },
102
+ },
103
+ paramsType: {
104
+ ContainerGroupId: "String",
105
+ },
106
+ },
107
+ DescribeContainerLog: {
108
+ url: "/",
109
+ method: "GET",
110
+ config: {
111
+ query: {
112
+ Version: "2020-07-02",
113
+ Action: "DescribeContainerLog",
114
+ },
115
+ headers: {
116
+ "Content-Type": "application/x-www-form-urlencoded",
117
+ },
118
+ },
119
+ paramsType: {
120
+ ContainerGroupId: "String",
121
+ ContainerName: "String",
122
+ Tail: "Int",
123
+ },
124
+ },
125
+ DescribeRegions: {
126
+ url: "/",
127
+ method: "GET",
128
+ config: {
129
+ query: {
130
+ Version: "2020-07-02",
131
+ Action: "DescribeRegions",
132
+ },
133
+ headers: {
134
+ "Content-Type": "application/x-www-form-urlencoded",
135
+ },
136
+ },
137
+ paramsType: {
138
+ Action: "String",
139
+ },
140
+ },
141
+ ExecContainerCommand: {
142
+ url: "/",
143
+ method: "GET",
144
+ config: {
145
+ query: {
146
+ Version: "2020-07-02",
147
+ Action: "ExecContainerCommand",
148
+ },
149
+ headers: {
150
+ "Content-Type": "application/x-www-form-urlencoded",
151
+ },
152
+ },
153
+ paramsType: {
154
+ ContainerGroupId: "String",
155
+ ContainerName: "String",
156
+ Command: "Filter",
157
+ TTY: "Boolean",
158
+ },
159
+ },
160
+ DescribeContainerGroupCount: {
161
+ url: "/",
162
+ method: "GET",
163
+ config: {
164
+ query: {
165
+ Version: "2020-07-02",
166
+ Action: "DescribeContainerGroupCount",
167
+ },
168
+ headers: {
169
+ "Content-Type": "application/x-www-form-urlencoded",
170
+ },
171
+ },
172
+ paramsType: {
173
+ Label: "Object",
174
+ },
175
+ },
176
+ DescribeContainerGroupEvents: {
177
+ url: "/",
178
+ method: "GET",
179
+ config: {
180
+ query: {
181
+ Version: "2020-07-02",
182
+ Action: "DescribeContainerGroupEvents",
183
+ },
184
+ headers: {
185
+ "Content-Type": "application/x-www-form-urlencoded",
186
+ },
187
+ },
188
+ paramsType: {
189
+ ContainerGroupId: "String",
190
+ },
191
+ },
192
+ DescribeKciPackages: {
193
+ url: "/",
194
+ method: "GET",
195
+ config: {
196
+ query: {
197
+ Version: "2020-07-02",
198
+ Action: "DescribeKciPackages",
199
+ },
200
+ headers: {
201
+ "Content-Type": "application/x-www-form-urlencoded",
202
+ },
203
+ },
204
+ paramsType: {
205
+ ChargeType: "String",
206
+ AvailabilityZone: "String",
207
+ KciType: "String",
208
+ },
209
+ },
210
+ CreateImageCache: {
211
+ url: "/",
212
+ method: "GET",
213
+ config: {
214
+ query: {
215
+ Version: "2020-07-02",
216
+ Action: "CreateImageCache",
217
+ },
218
+ headers: {
219
+ "Content-Type": "application/x-www-form-urlencoded",
220
+ },
221
+ },
222
+ paramsType: {
223
+ ImageCacheName: "String",
224
+ SubnetId: "String",
225
+ SecurityGroupId: "String",
226
+ ImageCacheSize: "Int",
227
+ RetentionDays: "Int",
228
+ Image: "Filter",
229
+ ImageRegistryCredential: "Filter",
230
+ ImageCacheType: "String",
231
+ EnableWarm: "Boolean",
232
+ },
233
+ },
234
+ DeleteImageCache: {
235
+ url: "/",
236
+ method: "GET",
237
+ config: {
238
+ query: {
239
+ Version: "2020-07-02",
240
+ Action: "DeleteImageCache",
241
+ },
242
+ headers: {
243
+ "Content-Type": "application/x-www-form-urlencoded",
244
+ },
245
+ },
246
+ paramsType: {
247
+ ImageCacheId: "String",
248
+ },
249
+ },
250
+ DescribeImageCache: {
251
+ url: "/",
252
+ method: "GET",
253
+ config: {
254
+ query: {
255
+ Version: "2020-07-02",
256
+ Action: "DescribeImageCache",
257
+ },
258
+ headers: {
259
+ "Content-Type": "application/x-www-form-urlencoded",
260
+ },
261
+ },
262
+ paramsType: {
263
+ ImageCacheId: "Filter",
264
+ ImageCacheName: "String",
265
+ Image: "String",
266
+ Marker: "Int",
267
+ MaxResults: "Int",
268
+ },
269
+ },
270
+ MatchImageCache: {
271
+ url: "/",
272
+ method: "GET",
273
+ config: {
274
+ query: {
275
+ Version: "2020-07-02",
276
+ Action: "MatchImageCache",
277
+ },
278
+ headers: {
279
+ "Content-Type": "application/x-www-form-urlencoded",
280
+ },
281
+ },
282
+ paramsType: {
283
+ Image: "Filter",
284
+ },
285
+ },
286
+ DescribeImageCacheEvent: {
287
+ url: "/",
288
+ method: "GET",
289
+ config: {
290
+ query: {
291
+ Version: "2020-07-02",
292
+ Action: "DescribeImageCacheEvent",
293
+ },
294
+ headers: {
295
+ "Content-Type": "application/x-www-form-urlencoded",
296
+ },
297
+ },
298
+ paramsType: {
299
+ ImageCacheId: "String",
300
+ },
301
+ },
302
+ UpdateImageCache: {
303
+ url: "/",
304
+ method: "GET",
305
+ config: {
306
+ query: {
307
+ Version: "2020-07-02",
308
+ Action: "UpdateImageCache",
309
+ },
310
+ headers: {
311
+ "Content-Type": "application/x-www-form-urlencoded",
312
+ },
313
+ },
314
+ paramsType: {
315
+ ImageCacheId: "String",
316
+ ImageCacheName: "String",
317
+ SubnetId: "String",
318
+ SecurityGroupId: "String",
319
+ ImageCacheSize: "Int",
320
+ RetentionDays: "Int",
321
+ Image: "Filter",
322
+ ImageCacheType: "String",
323
+ EnableWarm: "Boolean",
324
+ ImageRegistryCredential: "Filter",
325
+ },
326
+ },
327
+ };
328
+ };