in deploy/ansible/action_plugins/public_api.py [0:0]
def get_webdisp_ha_deployment_params(self):
return dict(
parameters=(
{
"name": "secondaryInstanceNumber",
"value": self.installationParameterSets.get(
"webDispatcherDeployment"
).get("secondaryInstanceNumber"),
},
{
"name": "secondaryPhysicalHostname",
"value": self.installationParameterSets.get(
"webDispatcherDeployment"
).get("secondaryPhysicalHostname"),
},
{
"name": "secondaryVirtualHostname",
"value": self.installationParameterSets.get(
"webDispatcherDeployment"
).get("secondaryVirtualHostname"),
},
{
"name": "fioriHostname",
"value": self.installationParameterSets.get(
"webDispatcherDeployment"
).get("fioriHostname"),
},
{
"name": "fioriHostPort",
"value": self.installationParameterSets.get(
"webDispatcherDeployment"
).get("fioriHostPort"),
},
{
"name": "productiveClientNumber",
"value": self.installationParameterSets.get(
"webDispatcherDeployment"
).get("productiveClientNumber"),
},
)
)