@alicloud/apig20240327 6.0.3 → 6.0.5
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/CreateHttpApiRequest.d.ts +6 -0
- package/dist/models/CreateHttpApiRequest.js +6 -0
- package/dist/models/CreateHttpApiRequest.js.map +1 -1
- package/dist/models/DeployHttpApiRequest.d.ts +11 -1
- package/dist/models/DeployHttpApiRequest.js.map +1 -1
- package/dist/models/HttpApiDeployConfig.d.ts +104 -0
- package/dist/models/HttpApiDeployConfig.js +67 -1
- package/dist/models/HttpApiDeployConfig.js.map +1 -1
- package/dist/models/Service.d.ts +29 -0
- package/dist/models/Service.js +51 -1
- package/dist/models/Service.js.map +1 -1
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +32 -24
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +12 -0
- package/src/models/CreateHttpApiRequest.ts +12 -0
- package/src/models/DeployHttpApiRequest.ts +11 -1
- package/src/models/HttpApiDeployConfig.ts +152 -0
- package/src/models/Service.ts +61 -0
- package/src/models/model.ts +4 -0
package/dist/client.js
CHANGED
|
@@ -659,12 +659,18 @@ class Client extends openapi_core_1.default {
|
|
|
659
659
|
if (!$dara.isNull(request.basePath)) {
|
|
660
660
|
body["basePath"] = request.basePath;
|
|
661
661
|
}
|
|
662
|
+
if (!$dara.isNull(request.belongGatewayId)) {
|
|
663
|
+
body["belongGatewayId"] = request.belongGatewayId;
|
|
664
|
+
}
|
|
662
665
|
if (!$dara.isNull(request.deployConfigs)) {
|
|
663
666
|
body["deployConfigs"] = request.deployConfigs;
|
|
664
667
|
}
|
|
665
668
|
if (!$dara.isNull(request.description)) {
|
|
666
669
|
body["description"] = request.description;
|
|
667
670
|
}
|
|
671
|
+
if (!$dara.isNull(request.dryRun)) {
|
|
672
|
+
body["dryRun"] = request.dryRun;
|
|
673
|
+
}
|
|
668
674
|
if (!$dara.isNull(request.enableAuth)) {
|
|
669
675
|
body["enableAuth"] = request.enableAuth;
|
|
670
676
|
}
|
|
@@ -689,6 +695,9 @@ class Client extends openapi_core_1.default {
|
|
|
689
695
|
if (!$dara.isNull(request.resourceGroupId)) {
|
|
690
696
|
body["resourceGroupId"] = request.resourceGroupId;
|
|
691
697
|
}
|
|
698
|
+
if (!$dara.isNull(request.strategy)) {
|
|
699
|
+
body["strategy"] = request.strategy;
|
|
700
|
+
}
|
|
692
701
|
if (!$dara.isNull(request.type)) {
|
|
693
702
|
body["type"] = request.type;
|
|
694
703
|
}
|