@alicloud/sae20190506 2.5.7 → 2.5.9
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 +9 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateApplicationRequest.d.ts +2 -0
- package/dist/models/CreateApplicationRequest.js +4 -0
- package/dist/models/CreateApplicationRequest.js.map +1 -1
- package/dist/models/CreateApplicationShrinkRequest.d.ts +2 -0
- package/dist/models/CreateApplicationShrinkRequest.js +4 -0
- package/dist/models/CreateApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DeployApplicationRequest.d.ts +1 -0
- package/dist/models/DeployApplicationRequest.js +2 -0
- package/dist/models/DeployApplicationRequest.js.map +1 -1
- package/dist/models/DeployApplicationShrinkRequest.d.ts +1 -0
- package/dist/models/DeployApplicationShrinkRequest.js +2 -0
- package/dist/models/DeployApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DescribeApplicationConfigResponseBody.d.ts +3 -0
- package/dist/models/DescribeApplicationConfigResponseBody.js +6 -0
- package/dist/models/DescribeApplicationConfigResponseBody.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +12 -0
- package/src/models/CreateApplicationRequest.ts +6 -0
- package/src/models/CreateApplicationShrinkRequest.ts +6 -0
- package/src/models/DeployApplicationRequest.ts +3 -0
- package/src/models/DeployApplicationShrinkRequest.ts +3 -0
- package/src/models/DescribeApplicationConfigResponseBody.ts +9 -0
package/dist/client.js
CHANGED
|
@@ -478,6 +478,12 @@ class Client extends openapi_core_1.default {
|
|
|
478
478
|
if (!$dara.isNull(request.gpuConfig)) {
|
|
479
479
|
query["GpuConfig"] = request.gpuConfig;
|
|
480
480
|
}
|
|
481
|
+
if (!$dara.isNull(request.headlessPvtzDiscoverySvc)) {
|
|
482
|
+
query["HeadlessPvtzDiscoverySvc"] = request.headlessPvtzDiscoverySvc;
|
|
483
|
+
}
|
|
484
|
+
if (!$dara.isNull(request.html)) {
|
|
485
|
+
query["Html"] = request.html;
|
|
486
|
+
}
|
|
481
487
|
if (!$dara.isNull(request.imagePullSecrets)) {
|
|
482
488
|
query["ImagePullSecrets"] = request.imagePullSecrets;
|
|
483
489
|
}
|
|
@@ -2238,6 +2244,9 @@ class Client extends openapi_core_1.default {
|
|
|
2238
2244
|
if (!$dara.isNull(request.gpuConfig)) {
|
|
2239
2245
|
query["GpuConfig"] = request.gpuConfig;
|
|
2240
2246
|
}
|
|
2247
|
+
if (!$dara.isNull(request.html)) {
|
|
2248
|
+
query["Html"] = request.html;
|
|
2249
|
+
}
|
|
2241
2250
|
if (!$dara.isNull(request.imagePullSecrets)) {
|
|
2242
2251
|
query["ImagePullSecrets"] = request.imagePullSecrets;
|
|
2243
2252
|
}
|