{
  enabled: 'true', #opt
  pools: [
    {
      name: 'test-pool-1',
      description: 'Our Pool description',
      service: {
        https: {
          algorithm: 'IP_HASH',
          port: 443,
          protocol: 'HTTPS',
        }
      },
      members: [
        { ip_address: '10.10.10.10', },
        { ip_address: '10.10.10.11', },
      ],

    }
  ],
  virtual_servers: [
    {
      name: 'test-vs-1',
      description: 'Our VirtualServer description',
      ip_address: '192.2.0.88',
      network: 'ExternalNetwork',
      pool: 'test-pool-1',
      service_profiles: {
        https: {
          enabled: true,
          port: '443',
          persistence: {
            method: 'SSL_SESSION_ID'
          }
        },
      },
    }
  ]
}