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