15.4.1.1 Creating a WebGate Template and Mapping WebGates to that Template

Use the createWebgateTemplate and updateWebgateTemplateToWebgateMapping WLST commands to create a WebGate template and map WebGates to that template.

  1. Create a WebGate template by running the createWebgateTemplate WLST command.
    createWebgateTemplate(webgateTemplateName="TemplateA",webgateParamsList="cookieSessionTime,maxConnections",webgateValuesList="24,5")
    
  2. Associate WebGates to this template using the updateWebgateTemplateToWebgateMapping command.
    updateWebgateTemplateToWebgateMapping( webgateTemplateName="TemplateA", webgateIdsList="IAMSuiteAgent", isWebgateIdsListAFilePath = "False")
    
    To use a file containing a list of WebGate Ids, set the isWebgateIdsListAFilePath to true and specify the file path in the isWebgateIdsListAFilePath argument.
    updateWebgateTemplateToWebgateMapping( webgateTemplateName="TemplateA", webgateIdsList="/tmp/test.txt", isWebgateIdsListAFilePath="True", batchSize="20")