Created by: basyskom-dege
The issue #8694 (closed) pointed out that there are some unused variables and that it would be handy to be able to add new servers that are not provided in the OpenAPI file. The variables host
, port
, scheme
and basePath
have been removed since the servers are handled by the ServerConfiguration
class. Furthermore one can add a new ServerConfiguration
for an Operation:
[...]
API api;
//add a new server with port and server variables
int newDefaultServerIndex = api.addServerConfiguration("defaultServer","{server}:{port}","newly added default server",
QMap<QString, PFXServerVariable>{
{"server", PFXServerVariable("No description provided","custom-petstore",
QSet<QString>{ {"custom-petstore"},{"custom-qa-petstore"},{"custom-dev-petstore"} })},
{"port", PFXServerVariable("No description provided","8080",
QSet<QString>{ {"80"},{"8080"} })}, });
//using the new servers
api.setServerIndex("defaultServer",newDefaultServerIndex);
[...]
PR checklist
-
Read the contribution guidelines. -
Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how to validate the work. Missing information here may result in delayed response from the community. -
Run the following to build the project and update samples: ./mvnw clean package ./bin/generate-samples.sh ./bin/utils/export_docs_generators.sh
./bin/generate-samples.sh bin/configs/java*
. For Windows users, please run the script in Git BASH. -
File the PR against the correct branch: master
,5.1.x
,6.0.x
-
If your PR is targeting a particular programming language, @mention the technical committee members, so they are more likely to review the pull request.
PING @wing328 @ravinikam (2017/07) @stkrwork (2017/07) @etherealjoy (2018/02) @MartinDelille (2018/03) @muttleyxd (2019/08)