def __init__(self, api_key): VultrBase.__init__(self, api_key) self.account = VultrAccount(api_key) self.app = VultrApp(api_key) self.backup = VultrBackup(api_key) self.dns = VultrDNS(api_key) self.iso = VultrISO(api_key) self.os = VultrOS(api_key) self.plans = VultrPlans(api_key) self.regions = VultrRegions(api_key) self.server = VultrServer(api_key) self.snapshot = VultrSnapshot(api_key) self.sshkey = VultrSSHKey(api_key) self.startupscript = VultrStartupScript(api_key)
def __init__(self, api_key): VultrBase.__init__(self, api_key)
def __init__(self, api_key): VultrBase.__init__(self, api_key) self.ipv4 = VultrServerIPv4(api_key) self.ipv6 = VultrServerIPv6(api_key)