def linuxServerGetGlobalLicense(self, linuxServerIp): """ Description Get the global license server details from the Linux API server. Paramters linuxServerIp: (str): The IP address of the Linux API server. Syntax GET: /api/v1/sessions/9999/ixnetworkglobals/license """ staticUrl = 'https://{linuxServerIp}/api/v1/sessions/9999/ixnetworkglobals/license'.format(linuxServerIp=linuxServerIp) self.logInfo('linuxServerGetGlobalLicense: %s ' % linuxServerIp) response = self.get(staticUrl, silentMode=False) licenseServerIp = response.json()['servers'][0] licenseServerMode = response.json()['mode'] licenseServerTier = response.json()['tier'] self.logInfo('linuxServerGetGlobalLicenses:') self.logInfo('\t%s' % licenseServerIp) self.logInfo('\t%s' % licenseServerMode) self.logInfo('\t%s' % licenseServerTier) return licenseServerIp,licenseServerMode,licenseServerTier