@alicloud/esa20240910 2.35.1 → 2.35.2
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.
- package/dist/client.js +18 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateCacheRuleRequest.d.ts +11 -0
- package/dist/models/CreateCacheRuleRequest.js +6 -0
- package/dist/models/CreateCacheRuleRequest.js.map +1 -1
- package/dist/models/GetCacheRuleResponseBody.d.ts +11 -0
- package/dist/models/GetCacheRuleResponseBody.js +6 -0
- package/dist/models/GetCacheRuleResponseBody.js.map +1 -1
- package/dist/models/ListCacheRulesResponseBody.d.ts +11 -0
- package/dist/models/ListCacheRulesResponseBody.js +6 -0
- package/dist/models/ListCacheRulesResponseBody.js.map +1 -1
- package/dist/models/UpdateCacheRuleRequest.d.ts +11 -0
- package/dist/models/UpdateCacheRuleRequest.js +6 -0
- package/dist/models/UpdateCacheRuleRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +24 -0
- package/src/models/CreateCacheRuleRequest.ts +17 -0
- package/src/models/GetCacheRuleResponseBody.ts +17 -0
- package/src/models/ListCacheRulesResponseBody.ts +17 -0
- package/src/models/UpdateCacheRuleRequest.ts +17 -0
package/dist/client.js
CHANGED
|
@@ -1285,6 +1285,15 @@ class Client extends openapi_core_1.default {
|
|
|
1285
1285
|
if (!$dara.isNull(request.includeHeader)) {
|
|
1286
1286
|
query["IncludeHeader"] = request.includeHeader;
|
|
1287
1287
|
}
|
|
1288
|
+
if (!$dara.isNull(request.postBodyCacheKey)) {
|
|
1289
|
+
query["PostBodyCacheKey"] = request.postBodyCacheKey;
|
|
1290
|
+
}
|
|
1291
|
+
if (!$dara.isNull(request.postBodySizeLimit)) {
|
|
1292
|
+
query["PostBodySizeLimit"] = request.postBodySizeLimit;
|
|
1293
|
+
}
|
|
1294
|
+
if (!$dara.isNull(request.postCache)) {
|
|
1295
|
+
query["PostCache"] = request.postCache;
|
|
1296
|
+
}
|
|
1288
1297
|
if (!$dara.isNull(request.queryString)) {
|
|
1289
1298
|
query["QueryString"] = request.queryString;
|
|
1290
1299
|
}
|
|
@@ -14102,6 +14111,15 @@ class Client extends openapi_core_1.default {
|
|
|
14102
14111
|
if (!$dara.isNull(request.includeHeader)) {
|
|
14103
14112
|
query["IncludeHeader"] = request.includeHeader;
|
|
14104
14113
|
}
|
|
14114
|
+
if (!$dara.isNull(request.postBodyCacheKey)) {
|
|
14115
|
+
query["PostBodyCacheKey"] = request.postBodyCacheKey;
|
|
14116
|
+
}
|
|
14117
|
+
if (!$dara.isNull(request.postBodySizeLimit)) {
|
|
14118
|
+
query["PostBodySizeLimit"] = request.postBodySizeLimit;
|
|
14119
|
+
}
|
|
14120
|
+
if (!$dara.isNull(request.postCache)) {
|
|
14121
|
+
query["PostCache"] = request.postCache;
|
|
14122
|
+
}
|
|
14105
14123
|
if (!$dara.isNull(request.queryString)) {
|
|
14106
14124
|
query["QueryString"] = request.queryString;
|
|
14107
14125
|
}
|