repo
stringclasses
85 values
path
stringlengths
8
121
func_name
stringlengths
1
82
original_string
stringlengths
112
65.5k
language
stringclasses
1 value
code
stringlengths
112
65.5k
code_tokens
listlengths
20
4.09k
docstring
stringlengths
3
46.3k
docstring_tokens
listlengths
1
564
sha
stringclasses
85 values
url
stringlengths
93
218
partition
stringclasses
1 value
saltstack/salt
salt/modules/gnomedesktop.py
setIdleDelay
def setIdleDelay(delaySeconds, **kwargs): ''' Set the current idle delay setting in seconds CLI Example: .. code-block:: bash salt '*' gnome.setIdleDelay <seconds> user=<username> ''' _gsession = _GSettings(user=kwargs.get('user'), schema='org.gnome.desktop...
python
def setIdleDelay(delaySeconds, **kwargs): ''' Set the current idle delay setting in seconds CLI Example: .. code-block:: bash salt '*' gnome.setIdleDelay <seconds> user=<username> ''' _gsession = _GSettings(user=kwargs.get('user'), schema='org.gnome.desktop...
[ "def", "setIdleDelay", "(", "delaySeconds", ",", "*", "*", "kwargs", ")", ":", "_gsession", "=", "_GSettings", "(", "user", "=", "kwargs", ".", "get", "(", "'user'", ")", ",", "schema", "=", "'org.gnome.desktop.session'", ",", "key", "=", "'idle-delay'", "...
Set the current idle delay setting in seconds CLI Example: .. code-block:: bash salt '*' gnome.setIdleDelay <seconds> user=<username>
[ "Set", "the", "current", "idle", "delay", "setting", "in", "seconds" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/gnomedesktop.py#L144-L158
train
saltstack/salt
salt/modules/gnomedesktop.py
setClockFormat
def setClockFormat(clockFormat, **kwargs): ''' Set the clock format, either 12h or 24h format. CLI Example: .. code-block:: bash salt '*' gnome.setClockFormat <12h|24h> user=<username> ''' if clockFormat != '12h' and clockFormat != '24h': return False _gsession = _GSettin...
python
def setClockFormat(clockFormat, **kwargs): ''' Set the clock format, either 12h or 24h format. CLI Example: .. code-block:: bash salt '*' gnome.setClockFormat <12h|24h> user=<username> ''' if clockFormat != '12h' and clockFormat != '24h': return False _gsession = _GSettin...
[ "def", "setClockFormat", "(", "clockFormat", ",", "*", "*", "kwargs", ")", ":", "if", "clockFormat", "!=", "'12h'", "and", "clockFormat", "!=", "'24h'", ":", "return", "False", "_gsession", "=", "_GSettings", "(", "user", "=", "kwargs", ".", "get", "(", ...
Set the clock format, either 12h or 24h format. CLI Example: .. code-block:: bash salt '*' gnome.setClockFormat <12h|24h> user=<username>
[ "Set", "the", "clock", "format", "either", "12h", "or", "24h", "format", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/gnomedesktop.py#L178-L194
train
saltstack/salt
salt/modules/gnomedesktop.py
setClockShowDate
def setClockShowDate(kvalue, **kwargs): ''' Set whether the date is visible in the clock CLI Example: .. code-block:: bash salt '*' gnome.setClockShowDate <True|False> user=<username> ''' if kvalue is not True and kvalue is not False: return False _gsession = _GSettings(u...
python
def setClockShowDate(kvalue, **kwargs): ''' Set whether the date is visible in the clock CLI Example: .. code-block:: bash salt '*' gnome.setClockShowDate <True|False> user=<username> ''' if kvalue is not True and kvalue is not False: return False _gsession = _GSettings(u...
[ "def", "setClockShowDate", "(", "kvalue", ",", "*", "*", "kwargs", ")", ":", "if", "kvalue", "is", "not", "True", "and", "kvalue", "is", "not", "False", ":", "return", "False", "_gsession", "=", "_GSettings", "(", "user", "=", "kwargs", ".", "get", "("...
Set whether the date is visible in the clock CLI Example: .. code-block:: bash salt '*' gnome.setClockShowDate <True|False> user=<username>
[ "Set", "whether", "the", "date", "is", "visible", "in", "the", "clock" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/gnomedesktop.py#L214-L230
train
saltstack/salt
salt/modules/gnomedesktop.py
getIdleActivation
def getIdleActivation(**kwargs): ''' Get whether the idle activation is enabled CLI Example: .. code-block:: bash salt '*' gnome.getIdleActivation user=<username> ''' _gsession = _GSettings(user=kwargs.get('user'), schema='org.gnome.desktop.screensaver', ...
python
def getIdleActivation(**kwargs): ''' Get whether the idle activation is enabled CLI Example: .. code-block:: bash salt '*' gnome.getIdleActivation user=<username> ''' _gsession = _GSettings(user=kwargs.get('user'), schema='org.gnome.desktop.screensaver', ...
[ "def", "getIdleActivation", "(", "*", "*", "kwargs", ")", ":", "_gsession", "=", "_GSettings", "(", "user", "=", "kwargs", ".", "get", "(", "'user'", ")", ",", "schema", "=", "'org.gnome.desktop.screensaver'", ",", "key", "=", "'idle-activation-enabled'", ")",...
Get whether the idle activation is enabled CLI Example: .. code-block:: bash salt '*' gnome.getIdleActivation user=<username>
[ "Get", "whether", "the", "idle", "activation", "is", "enabled" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/gnomedesktop.py#L233-L247
train
saltstack/salt
salt/modules/gnomedesktop.py
get
def get(schema=None, key=None, user=None, **kwargs): ''' Get key in a particular GNOME schema CLI Example: .. code-block:: bash salt '*' gnome.get user=<username> schema=org.gnome.desktop.screensaver key=idle-activation-enabled ''' _gsession = _GSettings(user=user, schema=schema, key...
python
def get(schema=None, key=None, user=None, **kwargs): ''' Get key in a particular GNOME schema CLI Example: .. code-block:: bash salt '*' gnome.get user=<username> schema=org.gnome.desktop.screensaver key=idle-activation-enabled ''' _gsession = _GSettings(user=user, schema=schema, key...
[ "def", "get", "(", "schema", "=", "None", ",", "key", "=", "None", ",", "user", "=", "None", ",", "*", "*", "kwargs", ")", ":", "_gsession", "=", "_GSettings", "(", "user", "=", "user", ",", "schema", "=", "schema", ",", "key", "=", "key", ")", ...
Get key in a particular GNOME schema CLI Example: .. code-block:: bash salt '*' gnome.get user=<username> schema=org.gnome.desktop.screensaver key=idle-activation-enabled
[ "Get", "key", "in", "a", "particular", "GNOME", "schema" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/gnomedesktop.py#L269-L281
train
saltstack/salt
salt/modules/gnomedesktop.py
set_
def set_(schema=None, key=None, user=None, value=None, **kwargs): ''' Set key in a particular GNOME schema CLI Example: .. code-block:: bash salt '*' gnome.set user=<username> schema=org.gnome.desktop.screensaver key=idle-activation-enabled value=False ''' _gsession = _GSettings(user...
python
def set_(schema=None, key=None, user=None, value=None, **kwargs): ''' Set key in a particular GNOME schema CLI Example: .. code-block:: bash salt '*' gnome.set user=<username> schema=org.gnome.desktop.screensaver key=idle-activation-enabled value=False ''' _gsession = _GSettings(user...
[ "def", "set_", "(", "schema", "=", "None", ",", "key", "=", "None", ",", "user", "=", "None", ",", "value", "=", "None", ",", "*", "*", "kwargs", ")", ":", "_gsession", "=", "_GSettings", "(", "user", "=", "user", ",", "schema", "=", "schema", ",...
Set key in a particular GNOME schema CLI Example: .. code-block:: bash salt '*' gnome.set user=<username> schema=org.gnome.desktop.screensaver key=idle-activation-enabled value=False
[ "Set", "key", "in", "a", "particular", "GNOME", "schema" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/gnomedesktop.py#L284-L296
train
saltstack/salt
salt/modules/gnomedesktop.py
_GSettings._get
def _get(self): ''' get the value for user in gsettings ''' user = self.USER try: uid = pwd.getpwnam(user).pw_uid except KeyError: log.info('User does not exist') return False cmd = self.gsetting_command + ['get', str(self.SCH...
python
def _get(self): ''' get the value for user in gsettings ''' user = self.USER try: uid = pwd.getpwnam(user).pw_uid except KeyError: log.info('User does not exist') return False cmd = self.gsetting_command + ['get', str(self.SCH...
[ "def", "_get", "(", "self", ")", ":", "user", "=", "self", ".", "USER", "try", ":", "uid", "=", "pwd", ".", "getpwnam", "(", "user", ")", ".", "pw_uid", "except", "KeyError", ":", "log", ".", "info", "(", "'User does not exist'", ")", "return", "Fals...
get the value for user in gsettings
[ "get", "the", "value", "for", "user", "in", "gsettings" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/gnomedesktop.py#L66-L89
train
saltstack/salt
salt/modules/gnomedesktop.py
_GSettings._set
def _set(self, value): ''' set the value for user in gsettings ''' user = self.USER try: uid = pwd.getpwnam(user).pw_uid except KeyError: log.info('User does not exist') result = {} result['retcode'] = 1 result[...
python
def _set(self, value): ''' set the value for user in gsettings ''' user = self.USER try: uid = pwd.getpwnam(user).pw_uid except KeyError: log.info('User does not exist') result = {} result['retcode'] = 1 result[...
[ "def", "_set", "(", "self", ",", "value", ")", ":", "user", "=", "self", ".", "USER", "try", ":", "uid", "=", "pwd", ".", "getpwnam", "(", "user", ")", ".", "pw_uid", "except", "KeyError", ":", "log", ".", "info", "(", "'User does not exist'", ")", ...
set the value for user in gsettings
[ "set", "the", "value", "for", "user", "in", "gsettings" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/gnomedesktop.py#L91-L110
train
saltstack/salt
salt/modules/rpm_lowpkg.py
bin_pkg_info
def bin_pkg_info(path, saltenv='base'): ''' .. versionadded:: 2015.8.0 Parses RPM metadata and returns a dictionary of information about the package (name, version, etc.). path Path to the file. Can either be an absolute path to a file on the minion, or a salt fileserver URL (e.g. ...
python
def bin_pkg_info(path, saltenv='base'): ''' .. versionadded:: 2015.8.0 Parses RPM metadata and returns a dictionary of information about the package (name, version, etc.). path Path to the file. Can either be an absolute path to a file on the minion, or a salt fileserver URL (e.g. ...
[ "def", "bin_pkg_info", "(", "path", ",", "saltenv", "=", "'base'", ")", ":", "# If the path is a valid protocol, pull it down using cp.cache_file", "if", "__salt__", "[", "'config.valid_fileproto'", "]", "(", "path", ")", ":", "newpath", "=", "__salt__", "[", "'cp.cac...
.. versionadded:: 2015.8.0 Parses RPM metadata and returns a dictionary of information about the package (name, version, etc.). path Path to the file. Can either be an absolute path to a file on the minion, or a salt fileserver URL (e.g. ``salt://path/to/file.rpm``). If a salt file...
[ "..", "versionadded", "::", "2015", ".", "8", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L65-L128
train
saltstack/salt
salt/modules/rpm_lowpkg.py
list_pkgs
def list_pkgs(*packages, **kwargs): ''' List the packages currently installed in a dict:: {'<package_name>': '<version>'} root use root as top level directory (default: "/") CLI Example: .. code-block:: bash salt '*' lowpkg.list_pkgs ''' pkgs = {} cmd = ['rpm...
python
def list_pkgs(*packages, **kwargs): ''' List the packages currently installed in a dict:: {'<package_name>': '<version>'} root use root as top level directory (default: "/") CLI Example: .. code-block:: bash salt '*' lowpkg.list_pkgs ''' pkgs = {} cmd = ['rpm...
[ "def", "list_pkgs", "(", "*", "packages", ",", "*", "*", "kwargs", ")", ":", "pkgs", "=", "{", "}", "cmd", "=", "[", "'rpm'", "]", "if", "kwargs", ".", "get", "(", "'root'", ")", ":", "cmd", ".", "extend", "(", "[", "'--root'", ",", "kwargs", "...
List the packages currently installed in a dict:: {'<package_name>': '<version>'} root use root as top level directory (default: "/") CLI Example: .. code-block:: bash salt '*' lowpkg.list_pkgs
[ "List", "the", "packages", "currently", "installed", "in", "a", "dict", "::" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L131-L160
train
saltstack/salt
salt/modules/rpm_lowpkg.py
verify
def verify(*packages, **kwargs): ''' Runs an rpm -Va on a system, and returns the results in a dict root use root as top level directory (default: "/") Files with an attribute of config, doc, ghost, license or readme in the package header can be ignored using the ``ignore_types`` keyword a...
python
def verify(*packages, **kwargs): ''' Runs an rpm -Va on a system, and returns the results in a dict root use root as top level directory (default: "/") Files with an attribute of config, doc, ghost, license or readme in the package header can be ignored using the ``ignore_types`` keyword a...
[ "def", "verify", "(", "*", "packages", ",", "*", "*", "kwargs", ")", ":", "ftypes", "=", "{", "'c'", ":", "'config'", ",", "'d'", ":", "'doc'", ",", "'g'", ":", "'ghost'", ",", "'l'", ":", "'license'", ",", "'r'", ":", "'readme'", "}", "ret", "="...
Runs an rpm -Va on a system, and returns the results in a dict root use root as top level directory (default: "/") Files with an attribute of config, doc, ghost, license or readme in the package header can be ignored using the ``ignore_types`` keyword argument CLI Example: .. code-block:...
[ "Runs", "an", "rpm", "-", "Va", "on", "a", "system", "and", "returns", "the", "results", "in", "a", "dict" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L163-L262
train
saltstack/salt
salt/modules/rpm_lowpkg.py
modified
def modified(*packages, **flags): ''' List the modified files that belong to a package. Not specifying any packages will return a list of _all_ modified files on the system's RPM database. .. versionadded:: 2015.5.0 root use root as top level directory (default: "/") CLI examples: ...
python
def modified(*packages, **flags): ''' List the modified files that belong to a package. Not specifying any packages will return a list of _all_ modified files on the system's RPM database. .. versionadded:: 2015.5.0 root use root as top level directory (default: "/") CLI examples: ...
[ "def", "modified", "(", "*", "packages", ",", "*", "*", "flags", ")", ":", "cmd", "=", "[", "'rpm'", "]", "if", "flags", ".", "get", "(", "'root'", ")", ":", "cmd", ".", "extend", "(", "[", "'--root'", ",", "flags", ".", "pop", "(", "'root'", "...
List the modified files that belong to a package. Not specifying any packages will return a list of _all_ modified files on the system's RPM database. .. versionadded:: 2015.5.0 root use root as top level directory (default: "/") CLI examples: .. code-block:: bash salt '*' lowpk...
[ "List", "the", "modified", "files", "that", "belong", "to", "a", "package", ".", "Not", "specifying", "any", "packages", "will", "return", "a", "list", "of", "_all_", "modified", "files", "on", "the", "system", "s", "RPM", "database", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L265-L340
train
saltstack/salt
salt/modules/rpm_lowpkg.py
file_list
def file_list(*packages, **kwargs): ''' List the files that belong to a package. Not specifying any packages will return a list of _every_ file on the system's rpm database (not generally recommended). root use root as top level directory (default: "/") CLI Examples: .. code-block...
python
def file_list(*packages, **kwargs): ''' List the files that belong to a package. Not specifying any packages will return a list of _every_ file on the system's rpm database (not generally recommended). root use root as top level directory (default: "/") CLI Examples: .. code-block...
[ "def", "file_list", "(", "*", "packages", ",", "*", "*", "kwargs", ")", ":", "cmd", "=", "[", "'rpm'", "]", "if", "kwargs", ".", "get", "(", "'root'", ")", ":", "cmd", ".", "extend", "(", "[", "'--root'", ",", "kwargs", "[", "'root'", "]", "]", ...
List the files that belong to a package. Not specifying any packages will return a list of _every_ file on the system's rpm database (not generally recommended). root use root as top level directory (default: "/") CLI Examples: .. code-block:: bash salt '*' lowpkg.file_list httpd...
[ "List", "the", "files", "that", "belong", "to", "a", "package", ".", "Not", "specifying", "any", "packages", "will", "return", "a", "list", "of", "_every_", "file", "on", "the", "system", "s", "rpm", "database", "(", "not", "generally", "recommended", ")",...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L343-L373
train
saltstack/salt
salt/modules/rpm_lowpkg.py
file_dict
def file_dict(*packages, **kwargs): ''' List the files that belong to a package, sorted by group. Not specifying any packages will return a list of _every_ file on the system's rpm database (not generally recommended). root use root as top level directory (default: "/") CLI Examples: ...
python
def file_dict(*packages, **kwargs): ''' List the files that belong to a package, sorted by group. Not specifying any packages will return a list of _every_ file on the system's rpm database (not generally recommended). root use root as top level directory (default: "/") CLI Examples: ...
[ "def", "file_dict", "(", "*", "packages", ",", "*", "*", "kwargs", ")", ":", "errors", "=", "[", "]", "ret", "=", "{", "}", "pkgs", "=", "{", "}", "cmd", "=", "[", "'rpm'", "]", "if", "kwargs", ".", "get", "(", "'root'", ")", ":", "cmd", ".",...
List the files that belong to a package, sorted by group. Not specifying any packages will return a list of _every_ file on the system's rpm database (not generally recommended). root use root as top level directory (default: "/") CLI Examples: .. code-block:: bash salt '*' lowpk...
[ "List", "the", "files", "that", "belong", "to", "a", "package", "sorted", "by", "group", ".", "Not", "specifying", "any", "packages", "will", "return", "a", "list", "of", "_every_", "file", "on", "the", "system", "s", "rpm", "database", "(", "not", "gene...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L376-L420
train
saltstack/salt
salt/modules/rpm_lowpkg.py
owner
def owner(*paths, **kwargs): ''' Return the name of the package that owns the file. Multiple file paths can be passed. If a single path is passed, a string will be returned, and if multiple paths are passed, a dictionary of file/package name pairs will be returned. If the file is not owned by a...
python
def owner(*paths, **kwargs): ''' Return the name of the package that owns the file. Multiple file paths can be passed. If a single path is passed, a string will be returned, and if multiple paths are passed, a dictionary of file/package name pairs will be returned. If the file is not owned by a...
[ "def", "owner", "(", "*", "paths", ",", "*", "*", "kwargs", ")", ":", "if", "not", "paths", ":", "return", "''", "ret", "=", "{", "}", "for", "path", "in", "paths", ":", "cmd", "=", "[", "'rpm'", "]", "if", "kwargs", ".", "get", "(", "'root'", ...
Return the name of the package that owns the file. Multiple file paths can be passed. If a single path is passed, a string will be returned, and if multiple paths are passed, a dictionary of file/package name pairs will be returned. If the file is not owned by a package, or is not present on the minion...
[ "Return", "the", "name", "of", "the", "package", "that", "owns", "the", "file", ".", "Multiple", "file", "paths", "can", "be", "passed", ".", "If", "a", "single", "path", "is", "passed", "a", "string", "will", "be", "returned", "and", "if", "multiple", ...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L423-L458
train
saltstack/salt
salt/modules/rpm_lowpkg.py
diff
def diff(package_path, path): ''' Return a formatted diff between current file and original in a package. NOTE: this function includes all files (configuration and not), but does not work on binary content. :param package: Full pack of the RPM file :param path: Full path to the installed file ...
python
def diff(package_path, path): ''' Return a formatted diff between current file and original in a package. NOTE: this function includes all files (configuration and not), but does not work on binary content. :param package: Full pack of the RPM file :param path: Full path to the installed file ...
[ "def", "diff", "(", "package_path", ",", "path", ")", ":", "cmd", "=", "\"rpm2cpio {0} \"", "\"| cpio -i --quiet --to-stdout .{1} \"", "\"| diff -u --label 'A {1}' --from-file=- --label 'B {1}' {1}\"", "res", "=", "__salt__", "[", "'cmd.shell'", "]", "(", "cmd", ".", "for...
Return a formatted diff between current file and original in a package. NOTE: this function includes all files (configuration and not), but does not work on binary content. :param package: Full pack of the RPM file :param path: Full path to the installed file :return: Difference or empty string. Fo...
[ "Return", "a", "formatted", "diff", "between", "current", "file", "and", "original", "in", "a", "package", ".", "NOTE", ":", "this", "function", "includes", "all", "files", "(", "configuration", "and", "not", ")", "but", "does", "not", "work", "on", "binar...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L464-L490
train
saltstack/salt
salt/modules/rpm_lowpkg.py
info
def info(*packages, **kwargs): ''' Return a detailed package(s) summary information. If no packages specified, all packages will be returned. :param packages: :param attr: Comma-separated package attributes. If no 'attr' is specified, all available attributes returned. Valid attri...
python
def info(*packages, **kwargs): ''' Return a detailed package(s) summary information. If no packages specified, all packages will be returned. :param packages: :param attr: Comma-separated package attributes. If no 'attr' is specified, all available attributes returned. Valid attri...
[ "def", "info", "(", "*", "packages", ",", "*", "*", "kwargs", ")", ":", "all_versions", "=", "kwargs", ".", "get", "(", "'all_versions'", ",", "False", ")", "# LONGSIZE is not a valid tag for all versions of rpm. If LONGSIZE isn't", "# available, then we can just use SIZE...
Return a detailed package(s) summary information. If no packages specified, all packages will be returned. :param packages: :param attr: Comma-separated package attributes. If no 'attr' is specified, all available attributes returned. Valid attributes are: version, vendor, rel...
[ "Return", "a", "detailed", "package", "(", "s", ")", "summary", "information", ".", "If", "no", "packages", "specified", "all", "packages", "will", "be", "returned", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L493-L674
train
saltstack/salt
salt/modules/rpm_lowpkg.py
version_cmp
def version_cmp(ver1, ver2, ignore_epoch=False): ''' .. versionadded:: 2015.8.9 Do a cmp-style comparison on two packages. Return -1 if ver1 < ver2, 0 if ver1 == ver2, and 1 if ver1 > ver2. Return None if there was a problem making the comparison. ignore_epoch : False Set to ``True`` t...
python
def version_cmp(ver1, ver2, ignore_epoch=False): ''' .. versionadded:: 2015.8.9 Do a cmp-style comparison on two packages. Return -1 if ver1 < ver2, 0 if ver1 == ver2, and 1 if ver1 > ver2. Return None if there was a problem making the comparison. ignore_epoch : False Set to ``True`` t...
[ "def", "version_cmp", "(", "ver1", ",", "ver2", ",", "ignore_epoch", "=", "False", ")", ":", "normalize", "=", "lambda", "x", ":", "six", ".", "text_type", "(", "x", ")", ".", "split", "(", "':'", ",", "1", ")", "[", "-", "1", "]", "if", "ignore_...
.. versionadded:: 2015.8.9 Do a cmp-style comparison on two packages. Return -1 if ver1 < ver2, 0 if ver1 == ver2, and 1 if ver1 > ver2. Return None if there was a problem making the comparison. ignore_epoch : False Set to ``True`` to ignore the epoch when comparing versions .. versio...
[ "..", "versionadded", "::", "2015", ".", "8", ".", "9" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L677-L791
train
saltstack/salt
salt/modules/rpm_lowpkg.py
checksum
def checksum(*paths, **kwargs): ''' Return if the signature of a RPM file is valid. root use root as top level directory (default: "/") CLI Example: .. code-block:: bash salt '*' lowpkg.checksum /path/to/package1.rpm salt '*' lowpkg.checksum /path/to/package1.rpm /path/to...
python
def checksum(*paths, **kwargs): ''' Return if the signature of a RPM file is valid. root use root as top level directory (default: "/") CLI Example: .. code-block:: bash salt '*' lowpkg.checksum /path/to/package1.rpm salt '*' lowpkg.checksum /path/to/package1.rpm /path/to...
[ "def", "checksum", "(", "*", "paths", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "dict", "(", ")", "if", "not", "paths", ":", "raise", "CommandExecutionError", "(", "\"No package files has been specified.\"", ")", "cmd", "=", "[", "'rpm'", "]", "if", ...
Return if the signature of a RPM file is valid. root use root as top level directory (default: "/") CLI Example: .. code-block:: bash salt '*' lowpkg.checksum /path/to/package1.rpm salt '*' lowpkg.checksum /path/to/package1.rpm /path/to/package2.rpm
[ "Return", "if", "the", "signature", "of", "a", "RPM", "file", "is", "valid", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/rpm_lowpkg.py#L794-L825
train
saltstack/salt
salt/modules/haproxyconn.py
_get_conn
def _get_conn(socket=DEFAULT_SOCKET_URL): ''' Get connection to haproxy socket. ''' assert os.path.exists(socket), '{0} does not exist.'.format(socket) issock = os.stat(socket).st_mode assert stat.S_ISSOCK(issock), '{0} is not a socket.'.format(socket) ha_conn = haproxy.conn.HaPConn(socket) ...
python
def _get_conn(socket=DEFAULT_SOCKET_URL): ''' Get connection to haproxy socket. ''' assert os.path.exists(socket), '{0} does not exist.'.format(socket) issock = os.stat(socket).st_mode assert stat.S_ISSOCK(issock), '{0} is not a socket.'.format(socket) ha_conn = haproxy.conn.HaPConn(socket) ...
[ "def", "_get_conn", "(", "socket", "=", "DEFAULT_SOCKET_URL", ")", ":", "assert", "os", ".", "path", ".", "exists", "(", "socket", ")", ",", "'{0} does not exist.'", ".", "format", "(", "socket", ")", "issock", "=", "os", ".", "stat", "(", "socket", ")",...
Get connection to haproxy socket.
[ "Get", "connection", "to", "haproxy", "socket", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/haproxyconn.py#L44-L52
train
saltstack/salt
salt/modules/haproxyconn.py
list_servers
def list_servers(backend, socket=DEFAULT_SOCKET_URL, objectify=False): ''' List servers in haproxy backend. backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.list_servers mysql ...
python
def list_servers(backend, socket=DEFAULT_SOCKET_URL, objectify=False): ''' List servers in haproxy backend. backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.list_servers mysql ...
[ "def", "list_servers", "(", "backend", ",", "socket", "=", "DEFAULT_SOCKET_URL", ",", "objectify", "=", "False", ")", ":", "ha_conn", "=", "_get_conn", "(", "socket", ")", "ha_cmd", "=", "haproxy", ".", "cmds", ".", "listServers", "(", "backend", "=", "bac...
List servers in haproxy backend. backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.list_servers mysql
[ "List", "servers", "in", "haproxy", "backend", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/haproxyconn.py#L55-L73
train
saltstack/salt
salt/modules/haproxyconn.py
enable_server
def enable_server(name, backend, socket=DEFAULT_SOCKET_URL): ''' Enable Server in haproxy name Server to enable backend haproxy backend, or all backends if "*" is supplied socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block::...
python
def enable_server(name, backend, socket=DEFAULT_SOCKET_URL): ''' Enable Server in haproxy name Server to enable backend haproxy backend, or all backends if "*" is supplied socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block::...
[ "def", "enable_server", "(", "name", ",", "backend", ",", "socket", "=", "DEFAULT_SOCKET_URL", ")", ":", "if", "backend", "==", "'*'", ":", "backends", "=", "show_backends", "(", "socket", "=", "socket", ")", ".", "split", "(", "'\\n'", ")", "else", ":",...
Enable Server in haproxy name Server to enable backend haproxy backend, or all backends if "*" is supplied socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.enable_server web1.example.com www
[ "Enable", "Server", "in", "haproxy" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/haproxyconn.py#L158-L190
train
saltstack/salt
salt/modules/haproxyconn.py
get_weight
def get_weight(name, backend, socket=DEFAULT_SOCKET_URL): ''' Get server weight name Server name backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.get_weight web1.exa...
python
def get_weight(name, backend, socket=DEFAULT_SOCKET_URL): ''' Get server weight name Server name backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.get_weight web1.exa...
[ "def", "get_weight", "(", "name", ",", "backend", ",", "socket", "=", "DEFAULT_SOCKET_URL", ")", ":", "ha_conn", "=", "_get_conn", "(", "socket", ")", "ha_cmd", "=", "haproxy", ".", "cmds", ".", "getWeight", "(", "server", "=", "name", ",", "backend", "=...
Get server weight name Server name backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.get_weight web1.example.com www
[ "Get", "server", "weight" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/haproxyconn.py#L228-L249
train
saltstack/salt
salt/modules/haproxyconn.py
set_state
def set_state(name, backend, state, socket=DEFAULT_SOCKET_URL): ''' Force a server's administrative state to a new state. This can be useful to disable load balancing and/or any traffic to a server. Setting the state to "ready" puts the server in normal mode, and the command is the equivalent of the...
python
def set_state(name, backend, state, socket=DEFAULT_SOCKET_URL): ''' Force a server's administrative state to a new state. This can be useful to disable load balancing and/or any traffic to a server. Setting the state to "ready" puts the server in normal mode, and the command is the equivalent of the...
[ "def", "set_state", "(", "name", ",", "backend", ",", "state", ",", "socket", "=", "DEFAULT_SOCKET_URL", ")", ":", "# Pulling this in from the latest 0.5 release which is not yet in PyPi.", "# https://github.com/neurogeek/haproxyctl", "class", "setServerState", "(", "haproxy", ...
Force a server's administrative state to a new state. This can be useful to disable load balancing and/or any traffic to a server. Setting the state to "ready" puts the server in normal mode, and the command is the equivalent of the "enable server" command. Setting the state to "maint" disables any traffic ...
[ "Force", "a", "server", "s", "administrative", "state", "to", "a", "new", "state", ".", "This", "can", "be", "useful", "to", "disable", "load", "balancing", "and", "/", "or", "any", "traffic", "to", "a", "server", ".", "Setting", "the", "state", "to", ...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/haproxyconn.py#L280-L320
train
saltstack/salt
salt/modules/haproxyconn.py
show_frontends
def show_frontends(socket=DEFAULT_SOCKET_URL): ''' Show HaProxy frontends socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.show_frontends ''' ha_conn = _get_conn(socket) ha_cmd = haproxy.cmds.showFronten...
python
def show_frontends(socket=DEFAULT_SOCKET_URL): ''' Show HaProxy frontends socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.show_frontends ''' ha_conn = _get_conn(socket) ha_cmd = haproxy.cmds.showFronten...
[ "def", "show_frontends", "(", "socket", "=", "DEFAULT_SOCKET_URL", ")", ":", "ha_conn", "=", "_get_conn", "(", "socket", ")", "ha_cmd", "=", "haproxy", ".", "cmds", ".", "showFrontends", "(", ")", "return", "ha_conn", ".", "sendCmd", "(", "ha_cmd", ")" ]
Show HaProxy frontends socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.show_frontends
[ "Show", "HaProxy", "frontends" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/haproxyconn.py#L323-L338
train
saltstack/salt
salt/modules/haproxyconn.py
show_backends
def show_backends(socket=DEFAULT_SOCKET_URL): ''' Show HaProxy Backends socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.show_backends ''' ha_conn = _get_conn(socket) ha_cmd = haproxy.cmds.showBackends()...
python
def show_backends(socket=DEFAULT_SOCKET_URL): ''' Show HaProxy Backends socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.show_backends ''' ha_conn = _get_conn(socket) ha_cmd = haproxy.cmds.showBackends()...
[ "def", "show_backends", "(", "socket", "=", "DEFAULT_SOCKET_URL", ")", ":", "ha_conn", "=", "_get_conn", "(", "socket", ")", "ha_cmd", "=", "haproxy", ".", "cmds", ".", "showBackends", "(", ")", "return", "ha_conn", ".", "sendCmd", "(", "ha_cmd", ")" ]
Show HaProxy Backends socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.show_backends
[ "Show", "HaProxy", "Backends" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/haproxyconn.py#L358-L373
train
saltstack/salt
salt/modules/haproxyconn.py
get_sessions
def get_sessions(name, backend, socket=DEFAULT_SOCKET_URL): ''' .. versionadded:: 2016.11.0 Get number of current sessions on server in backend (scur) name Server name backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Exam...
python
def get_sessions(name, backend, socket=DEFAULT_SOCKET_URL): ''' .. versionadded:: 2016.11.0 Get number of current sessions on server in backend (scur) name Server name backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Exam...
[ "def", "get_sessions", "(", "name", ",", "backend", ",", "socket", "=", "DEFAULT_SOCKET_URL", ")", ":", "class", "getStats", "(", "haproxy", ".", "cmds", ".", "Cmd", ")", ":", "p_args", "=", "[", "\"backend\"", ",", "\"server\"", "]", "cmdTxt", "=", "\"s...
.. versionadded:: 2016.11.0 Get number of current sessions on server in backend (scur) name Server name backend haproxy backend socket haproxy stats socket, default ``/var/run/haproxy.sock`` CLI Example: .. code-block:: bash salt '*' haproxy.get_sessions we...
[ "..", "versionadded", "::", "2016", ".", "11", ".", "0" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/haproxyconn.py#L402-L435
train
saltstack/salt
salt/states/beacon.py
present
def present(name, save=False, **kwargs): ''' Ensure beacon is configured with the included beacon data. Args: name (str): The name of the beacon ensure is configured. save (bool): ``True`` updates the beacons.conf. Default is ``False``. ...
python
def present(name, save=False, **kwargs): ''' Ensure beacon is configured with the included beacon data. Args: name (str): The name of the beacon ensure is configured. save (bool): ``True`` updates the beacons.conf. Default is ``False``. ...
[ "def", "present", "(", "name", ",", "save", "=", "False", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "True", ",", "'changes'", ":", "{", "}", ",", "'comment'", ":", "[", "]", "}", "current_bea...
Ensure beacon is configured with the included beacon data. Args: name (str): The name of the beacon ensure is configured. save (bool): ``True`` updates the beacons.conf. Default is ``False``. Returns: dict: A dictionary of information about the results of the ...
[ "Ensure", "beacon", "is", "configured", "with", "the", "included", "beacon", "data", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/beacon.py#L80-L160
train
saltstack/salt
salt/modules/netscaler.py
_connect
def _connect(**kwargs): ''' Initialise netscaler connection ''' connargs = dict() # Shamelessy ripped from the mysql module def __connarg(name, key=None, default=None): ''' Add key to connargs, only if name exists in our kwargs or as netscaler.<name> in __opts__ or __pil...
python
def _connect(**kwargs): ''' Initialise netscaler connection ''' connargs = dict() # Shamelessy ripped from the mysql module def __connarg(name, key=None, default=None): ''' Add key to connargs, only if name exists in our kwargs or as netscaler.<name> in __opts__ or __pil...
[ "def", "_connect", "(", "*", "*", "kwargs", ")", ":", "connargs", "=", "dict", "(", ")", "# Shamelessy ripped from the mysql module", "def", "__connarg", "(", "name", ",", "key", "=", "None", ",", "default", "=", "None", ")", ":", "'''\n Add key to conn...
Initialise netscaler connection
[ "Initialise", "netscaler", "connection" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L89-L132
train
saltstack/salt
salt/modules/netscaler.py
_servicegroup_get
def _servicegroup_get(sg_name, **connection_args): ''' Return a service group ressource or None ''' nitro = _connect(**connection_args) if nitro is None: return None sg = NSServiceGroup() sg.set_servicegroupname(sg_name) try: sg = NSServiceGroup.get(nitro, sg) except ...
python
def _servicegroup_get(sg_name, **connection_args): ''' Return a service group ressource or None ''' nitro = _connect(**connection_args) if nitro is None: return None sg = NSServiceGroup() sg.set_servicegroupname(sg_name) try: sg = NSServiceGroup.get(nitro, sg) except ...
[ "def", "_servicegroup_get", "(", "sg_name", ",", "*", "*", "connection_args", ")", ":", "nitro", "=", "_connect", "(", "*", "*", "connection_args", ")", "if", "nitro", "is", "None", ":", "return", "None", "sg", "=", "NSServiceGroup", "(", ")", "sg", ".",...
Return a service group ressource or None
[ "Return", "a", "service", "group", "ressource", "or", "None" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L144-L159
train
saltstack/salt
salt/modules/netscaler.py
_servicegroup_get_servers
def _servicegroup_get_servers(sg_name, **connection_args): ''' Returns a list of members of a servicegroup or None ''' nitro = _connect(**connection_args) if nitro is None: return None sg = NSServiceGroup() sg.set_servicegroupname(sg_name) try: sg = NSServiceGroup.get_ser...
python
def _servicegroup_get_servers(sg_name, **connection_args): ''' Returns a list of members of a servicegroup or None ''' nitro = _connect(**connection_args) if nitro is None: return None sg = NSServiceGroup() sg.set_servicegroupname(sg_name) try: sg = NSServiceGroup.get_ser...
[ "def", "_servicegroup_get_servers", "(", "sg_name", ",", "*", "*", "connection_args", ")", ":", "nitro", "=", "_connect", "(", "*", "*", "connection_args", ")", "if", "nitro", "is", "None", ":", "return", "None", "sg", "=", "NSServiceGroup", "(", ")", "sg"...
Returns a list of members of a servicegroup or None
[ "Returns", "a", "list", "of", "members", "of", "a", "servicegroup", "or", "None" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L162-L177
train
saltstack/salt
salt/modules/netscaler.py
_servicegroup_get_server
def _servicegroup_get_server(sg_name, s_name, s_port=None, **connection_args): ''' Returns a member of a service group or None ''' ret = None servers = _servicegroup_get_servers(sg_name, **connection_args) if servers is None: return None for server in servers: if server.get_s...
python
def _servicegroup_get_server(sg_name, s_name, s_port=None, **connection_args): ''' Returns a member of a service group or None ''' ret = None servers = _servicegroup_get_servers(sg_name, **connection_args) if servers is None: return None for server in servers: if server.get_s...
[ "def", "_servicegroup_get_server", "(", "sg_name", ",", "s_name", ",", "s_port", "=", "None", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "None", "servers", "=", "_servicegroup_get_servers", "(", "sg_name", ",", "*", "*", "connection_args", ")", ...
Returns a member of a service group or None
[ "Returns", "a", "member", "of", "a", "service", "group", "or", "None" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L180-L193
train
saltstack/salt
salt/modules/netscaler.py
servicegroup_exists
def servicegroup_exists(sg_name, sg_type=None, **connection_args): ''' Checks if a service group exists CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_exists 'serviceGroupName' ''' sg = _servicegroup_get(sg_name, **connection_args) if sg is None: return ...
python
def servicegroup_exists(sg_name, sg_type=None, **connection_args): ''' Checks if a service group exists CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_exists 'serviceGroupName' ''' sg = _servicegroup_get(sg_name, **connection_args) if sg is None: return ...
[ "def", "servicegroup_exists", "(", "sg_name", ",", "sg_type", "=", "None", ",", "*", "*", "connection_args", ")", ":", "sg", "=", "_servicegroup_get", "(", "sg_name", ",", "*", "*", "connection_args", ")", "if", "sg", "is", "None", ":", "return", "False", ...
Checks if a service group exists CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_exists 'serviceGroupName'
[ "Checks", "if", "a", "service", "group", "exists" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L196-L211
train
saltstack/salt
salt/modules/netscaler.py
servicegroup_add
def servicegroup_add(sg_name, sg_type='HTTP', **connection_args): ''' Add a new service group If no service type is specified, HTTP will be used. Most common service types: HTTP, SSL, and SSL_BRIDGE CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_add 'serviceGroupNam...
python
def servicegroup_add(sg_name, sg_type='HTTP', **connection_args): ''' Add a new service group If no service type is specified, HTTP will be used. Most common service types: HTTP, SSL, and SSL_BRIDGE CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_add 'serviceGroupNam...
[ "def", "servicegroup_add", "(", "sg_name", ",", "sg_type", "=", "'HTTP'", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "if", "servicegroup_exists", "(", "sg_name", ")", ":", "return", "False", "nitro", "=", "_connect", "(", "*", "*", "...
Add a new service group If no service type is specified, HTTP will be used. Most common service types: HTTP, SSL, and SSL_BRIDGE CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_add 'serviceGroupName' salt '*' netscaler.servicegroup_add 'serviceGroupName' 'serviceGrou...
[ "Add", "a", "new", "service", "group", "If", "no", "service", "type", "is", "specified", "HTTP", "will", "be", "used", ".", "Most", "common", "service", "types", ":", "HTTP", "SSL", "and", "SSL_BRIDGE" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L214-L242
train
saltstack/salt
salt/modules/netscaler.py
servicegroup_delete
def servicegroup_delete(sg_name, **connection_args): ''' Delete a new service group CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_delete 'serviceGroupName' ''' ret = True sg = _servicegroup_get(sg_name, **connection_args) if sg is None: return False...
python
def servicegroup_delete(sg_name, **connection_args): ''' Delete a new service group CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_delete 'serviceGroupName' ''' ret = True sg = _servicegroup_get(sg_name, **connection_args) if sg is None: return False...
[ "def", "servicegroup_delete", "(", "sg_name", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "sg", "=", "_servicegroup_get", "(", "sg_name", ",", "*", "*", "connection_args", ")", "if", "sg", "is", "None", ":", "return", "False", "nitro", ...
Delete a new service group CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_delete 'serviceGroupName'
[ "Delete", "a", "new", "service", "group" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L245-L268
train
saltstack/salt
salt/modules/netscaler.py
servicegroup_server_exists
def servicegroup_server_exists(sg_name, s_name, s_port=None, **connection_args): ''' Check if a server:port combination is a member of a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_exists 'serviceGroupName' 'serverName' 'serverPort' ''' return...
python
def servicegroup_server_exists(sg_name, s_name, s_port=None, **connection_args): ''' Check if a server:port combination is a member of a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_exists 'serviceGroupName' 'serverName' 'serverPort' ''' return...
[ "def", "servicegroup_server_exists", "(", "sg_name", ",", "s_name", ",", "s_port", "=", "None", ",", "*", "*", "connection_args", ")", ":", "return", "_servicegroup_get_server", "(", "sg_name", ",", "s_name", ",", "s_port", ",", "*", "*", "connection_args", ")...
Check if a server:port combination is a member of a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_exists 'serviceGroupName' 'serverName' 'serverPort'
[ "Check", "if", "a", "server", ":", "port", "combination", "is", "a", "member", "of", "a", "servicegroup" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L271-L281
train
saltstack/salt
salt/modules/netscaler.py
servicegroup_server_up
def servicegroup_server_up(sg_name, s_name, s_port, **connection_args): ''' Check if a server:port combination is in state UP in a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_up 'serviceGroupName' 'serverName' 'serverPort' ''' server = _servic...
python
def servicegroup_server_up(sg_name, s_name, s_port, **connection_args): ''' Check if a server:port combination is in state UP in a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_up 'serviceGroupName' 'serverName' 'serverPort' ''' server = _servic...
[ "def", "servicegroup_server_up", "(", "sg_name", ",", "s_name", ",", "s_port", ",", "*", "*", "connection_args", ")", ":", "server", "=", "_servicegroup_get_server", "(", "sg_name", ",", "s_name", ",", "s_port", ",", "*", "*", "connection_args", ")", "return",...
Check if a server:port combination is in state UP in a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_up 'serviceGroupName' 'serverName' 'serverPort'
[ "Check", "if", "a", "server", ":", "port", "combination", "is", "in", "state", "UP", "in", "a", "servicegroup" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L284-L295
train
saltstack/salt
salt/modules/netscaler.py
servicegroup_server_enable
def servicegroup_server_enable(sg_name, s_name, s_port, **connection_args): ''' Enable a server:port member of a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_enable 'serviceGroupName' 'serverName' 'serverPort' ''' ret = True server = _servi...
python
def servicegroup_server_enable(sg_name, s_name, s_port, **connection_args): ''' Enable a server:port member of a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_enable 'serviceGroupName' 'serverName' 'serverPort' ''' ret = True server = _servi...
[ "def", "servicegroup_server_enable", "(", "sg_name", ",", "s_name", ",", "s_port", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "server", "=", "_servicegroup_get_server", "(", "sg_name", ",", "s_name", ",", "s_port", ",", "*", "*", "connec...
Enable a server:port member of a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_enable 'serviceGroupName' 'serverName' 'serverPort'
[ "Enable", "a", "server", ":", "port", "member", "of", "a", "servicegroup" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L298-L321
train
saltstack/salt
salt/modules/netscaler.py
servicegroup_server_add
def servicegroup_server_add(sg_name, s_name, s_port, **connection_args): ''' Add a server:port member to a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_add 'serviceGroupName' 'serverName' 'serverPort' ''' # Nitro will throw an error if the serv...
python
def servicegroup_server_add(sg_name, s_name, s_port, **connection_args): ''' Add a server:port member to a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_add 'serviceGroupName' 'serverName' 'serverPort' ''' # Nitro will throw an error if the serv...
[ "def", "servicegroup_server_add", "(", "sg_name", ",", "s_name", ",", "s_port", ",", "*", "*", "connection_args", ")", ":", "# Nitro will throw an error if the server is already present", "ret", "=", "True", "server", "=", "_servicegroup_get_server", "(", "sg_name", ","...
Add a server:port member to a servicegroup CLI Example: .. code-block:: bash salt '*' netscaler.servicegroup_server_add 'serviceGroupName' 'serverName' 'serverPort'
[ "Add", "a", "server", ":", "port", "member", "to", "a", "servicegroup" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L350-L378
train
saltstack/salt
salt/modules/netscaler.py
_service_get
def _service_get(s_name, **connection_args): ''' Returns a service ressource or None ''' nitro = _connect(**connection_args) if nitro is None: return None service = NSService() service.set_name(s_name) try: service = NSService.get(nitro, service) except NSNitroError a...
python
def _service_get(s_name, **connection_args): ''' Returns a service ressource or None ''' nitro = _connect(**connection_args) if nitro is None: return None service = NSService() service.set_name(s_name) try: service = NSService.get(nitro, service) except NSNitroError a...
[ "def", "_service_get", "(", "s_name", ",", "*", "*", "connection_args", ")", ":", "nitro", "=", "_connect", "(", "*", "*", "connection_args", ")", "if", "nitro", "is", "None", ":", "return", "None", "service", "=", "NSService", "(", ")", "service", ".", ...
Returns a service ressource or None
[ "Returns", "a", "service", "ressource", "or", "None" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L412-L427
train
saltstack/salt
salt/modules/netscaler.py
service_up
def service_up(s_name, **connection_args): ''' Checks if a service is UP CLI Example: .. code-block:: bash salt '*' netscaler.service_up 'serviceName' ''' service = _service_get(s_name, **connection_args) return service is not None and service.get_svrstate() == 'UP'
python
def service_up(s_name, **connection_args): ''' Checks if a service is UP CLI Example: .. code-block:: bash salt '*' netscaler.service_up 'serviceName' ''' service = _service_get(s_name, **connection_args) return service is not None and service.get_svrstate() == 'UP'
[ "def", "service_up", "(", "s_name", ",", "*", "*", "connection_args", ")", ":", "service", "=", "_service_get", "(", "s_name", ",", "*", "*", "connection_args", ")", "return", "service", "is", "not", "None", "and", "service", ".", "get_svrstate", "(", ")",...
Checks if a service is UP CLI Example: .. code-block:: bash salt '*' netscaler.service_up 'serviceName'
[ "Checks", "if", "a", "service", "is", "UP" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L443-L454
train
saltstack/salt
salt/modules/netscaler.py
service_enable
def service_enable(s_name, **connection_args): ''' Enable a service CLI Example: .. code-block:: bash salt '*' netscaler.service_enable 'serviceName' ''' ret = True service = _service_get(s_name, **connection_args) if service is None: return False nitro = _connect...
python
def service_enable(s_name, **connection_args): ''' Enable a service CLI Example: .. code-block:: bash salt '*' netscaler.service_enable 'serviceName' ''' ret = True service = _service_get(s_name, **connection_args) if service is None: return False nitro = _connect...
[ "def", "service_enable", "(", "s_name", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "service", "=", "_service_get", "(", "s_name", ",", "*", "*", "connection_args", ")", "if", "service", "is", "None", ":", "return", "False", "nitro", ...
Enable a service CLI Example: .. code-block:: bash salt '*' netscaler.service_enable 'serviceName'
[ "Enable", "a", "service" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L457-L481
train
saltstack/salt
salt/modules/netscaler.py
service_disable
def service_disable(s_name, s_delay=None, **connection_args): ''' Disable a service CLI Example: .. code-block:: bash salt '*' netscaler.service_disable 'serviceName' salt '*' netscaler.service_disable 'serviceName' 'delayInSeconds' ''' ret = True service = _service_get(s_...
python
def service_disable(s_name, s_delay=None, **connection_args): ''' Disable a service CLI Example: .. code-block:: bash salt '*' netscaler.service_disable 'serviceName' salt '*' netscaler.service_disable 'serviceName' 'delayInSeconds' ''' ret = True service = _service_get(s_...
[ "def", "service_disable", "(", "s_name", ",", "s_delay", "=", "None", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "service", "=", "_service_get", "(", "s_name", ",", "*", "*", "connection_args", ")", "if", "service", "is", "None", ":"...
Disable a service CLI Example: .. code-block:: bash salt '*' netscaler.service_disable 'serviceName' salt '*' netscaler.service_disable 'serviceName' 'delayInSeconds'
[ "Disable", "a", "service" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L484-L510
train
saltstack/salt
salt/modules/netscaler.py
server_exists
def server_exists(s_name, ip=None, s_state=None, **connection_args): ''' Checks if a server exists CLI Example: .. code-block:: bash salt '*' netscaler.server_exists 'serverName' ''' server = _server_get(s_name, **connection_args) if server is None: return False if ip ...
python
def server_exists(s_name, ip=None, s_state=None, **connection_args): ''' Checks if a server exists CLI Example: .. code-block:: bash salt '*' netscaler.server_exists 'serverName' ''' server = _server_get(s_name, **connection_args) if server is None: return False if ip ...
[ "def", "server_exists", "(", "s_name", ",", "ip", "=", "None", ",", "s_state", "=", "None", ",", "*", "*", "connection_args", ")", ":", "server", "=", "_server_get", "(", "s_name", ",", "*", "*", "connection_args", ")", "if", "server", "is", "None", ":...
Checks if a server exists CLI Example: .. code-block:: bash salt '*' netscaler.server_exists 'serverName'
[ "Checks", "if", "a", "server", "exists" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L528-L545
train
saltstack/salt
salt/modules/netscaler.py
server_add
def server_add(s_name, s_ip, s_state=None, **connection_args): ''' Add a server Note: The default server state is ENABLED CLI Example: .. code-block:: bash salt '*' netscaler.server_add 'serverName' 'serverIpAddress' salt '*' netscaler.server_add 'serverName' 'serverIpAddress' 'se...
python
def server_add(s_name, s_ip, s_state=None, **connection_args): ''' Add a server Note: The default server state is ENABLED CLI Example: .. code-block:: bash salt '*' netscaler.server_add 'serverName' 'serverIpAddress' salt '*' netscaler.server_add 'serverName' 'serverIpAddress' 'se...
[ "def", "server_add", "(", "s_name", ",", "s_ip", ",", "s_state", "=", "None", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "if", "server_exists", "(", "s_name", ",", "*", "*", "connection_args", ")", ":", "return", "False", "nitro", ...
Add a server Note: The default server state is ENABLED CLI Example: .. code-block:: bash salt '*' netscaler.server_add 'serverName' 'serverIpAddress' salt '*' netscaler.server_add 'serverName' 'serverIpAddress' 'serverState'
[ "Add", "a", "server", "Note", ":", "The", "default", "server", "state", "is", "ENABLED" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L548-L577
train
saltstack/salt
salt/modules/netscaler.py
server_delete
def server_delete(s_name, **connection_args): ''' Delete a server CLI Example: .. code-block:: bash salt '*' netscaler.server_delete 'serverName' ''' ret = True server = _server_get(s_name, **connection_args) if server is None: return False nitro = _connect(**conne...
python
def server_delete(s_name, **connection_args): ''' Delete a server CLI Example: .. code-block:: bash salt '*' netscaler.server_delete 'serverName' ''' ret = True server = _server_get(s_name, **connection_args) if server is None: return False nitro = _connect(**conne...
[ "def", "server_delete", "(", "s_name", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "server", "=", "_server_get", "(", "s_name", ",", "*", "*", "connection_args", ")", "if", "server", "is", "None", ":", "return", "False", "nitro", "=",...
Delete a server CLI Example: .. code-block:: bash salt '*' netscaler.server_delete 'serverName'
[ "Delete", "a", "server" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L580-L603
train
saltstack/salt
salt/modules/netscaler.py
server_update
def server_update(s_name, s_ip, **connection_args): ''' Update a server's attributes CLI Example: .. code-block:: bash salt '*' netscaler.server_update 'serverName' 'serverIP' ''' altered = False cur_server = _server_get(s_name, **connection_args) if cur_server is None: ...
python
def server_update(s_name, s_ip, **connection_args): ''' Update a server's attributes CLI Example: .. code-block:: bash salt '*' netscaler.server_update 'serverName' 'serverIP' ''' altered = False cur_server = _server_get(s_name, **connection_args) if cur_server is None: ...
[ "def", "server_update", "(", "s_name", ",", "s_ip", ",", "*", "*", "connection_args", ")", ":", "altered", "=", "False", "cur_server", "=", "_server_get", "(", "s_name", ",", "*", "*", "connection_args", ")", "if", "cur_server", "is", "None", ":", "return"...
Update a server's attributes CLI Example: .. code-block:: bash salt '*' netscaler.server_update 'serverName' 'serverIP'
[ "Update", "a", "server", "s", "attributes" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L606-L639
train
saltstack/salt
salt/modules/netscaler.py
server_enabled
def server_enabled(s_name, **connection_args): ''' Check if a server is enabled globally CLI Example: .. code-block:: bash salt '*' netscaler.server_enabled 'serverName' ''' server = _server_get(s_name, **connection_args) return server is not None and server.get_state() == 'ENABLE...
python
def server_enabled(s_name, **connection_args): ''' Check if a server is enabled globally CLI Example: .. code-block:: bash salt '*' netscaler.server_enabled 'serverName' ''' server = _server_get(s_name, **connection_args) return server is not None and server.get_state() == 'ENABLE...
[ "def", "server_enabled", "(", "s_name", ",", "*", "*", "connection_args", ")", ":", "server", "=", "_server_get", "(", "s_name", ",", "*", "*", "connection_args", ")", "return", "server", "is", "not", "None", "and", "server", ".", "get_state", "(", ")", ...
Check if a server is enabled globally CLI Example: .. code-block:: bash salt '*' netscaler.server_enabled 'serverName'
[ "Check", "if", "a", "server", "is", "enabled", "globally" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L642-L653
train
saltstack/salt
salt/modules/netscaler.py
server_enable
def server_enable(s_name, **connection_args): ''' Enables a server globally CLI Example: .. code-block:: bash salt '*' netscaler.server_enable 'serverName' ''' ret = True server = _server_get(s_name, **connection_args) if server is None: return False if server.get_...
python
def server_enable(s_name, **connection_args): ''' Enables a server globally CLI Example: .. code-block:: bash salt '*' netscaler.server_enable 'serverName' ''' ret = True server = _server_get(s_name, **connection_args) if server is None: return False if server.get_...
[ "def", "server_enable", "(", "s_name", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "server", "=", "_server_get", "(", "s_name", ",", "*", "*", "connection_args", ")", "if", "server", "is", "None", ":", "return", "False", "if", "server...
Enables a server globally CLI Example: .. code-block:: bash salt '*' netscaler.server_enable 'serverName'
[ "Enables", "a", "server", "globally" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L656-L681
train
saltstack/salt
salt/modules/netscaler.py
vserver_exists
def vserver_exists(v_name, v_ip=None, v_port=None, v_type=None, **connection_args): ''' Checks if a vserver exists CLI Example: .. code-block:: bash salt '*' netscaler.vserver_exists 'vserverName' ''' vserver = _vserver_get(v_name, **connection_args) if vserver is None: re...
python
def vserver_exists(v_name, v_ip=None, v_port=None, v_type=None, **connection_args): ''' Checks if a vserver exists CLI Example: .. code-block:: bash salt '*' netscaler.vserver_exists 'vserverName' ''' vserver = _vserver_get(v_name, **connection_args) if vserver is None: re...
[ "def", "vserver_exists", "(", "v_name", ",", "v_ip", "=", "None", ",", "v_port", "=", "None", ",", "v_type", "=", "None", ",", "*", "*", "connection_args", ")", ":", "vserver", "=", "_vserver_get", "(", "v_name", ",", "*", "*", "connection_args", ")", ...
Checks if a vserver exists CLI Example: .. code-block:: bash salt '*' netscaler.vserver_exists 'vserverName'
[ "Checks", "if", "a", "vserver", "exists" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L727-L746
train
saltstack/salt
salt/modules/netscaler.py
vserver_add
def vserver_add(v_name, v_ip, v_port, v_type, **connection_args): ''' Add a new lb vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_add 'vserverName' 'vserverIP' 'vserverPort' 'vserverType' salt '*' netscaler.vserver_add 'alex.patate.chaude.443' '1.2.3.4' '443' 'SS...
python
def vserver_add(v_name, v_ip, v_port, v_type, **connection_args): ''' Add a new lb vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_add 'vserverName' 'vserverIP' 'vserverPort' 'vserverType' salt '*' netscaler.vserver_add 'alex.patate.chaude.443' '1.2.3.4' '443' 'SS...
[ "def", "vserver_add", "(", "v_name", ",", "v_ip", ",", "v_port", ",", "v_type", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "if", "vserver_exists", "(", "v_name", ",", "*", "*", "connection_args", ")", ":", "return", "False", "nitro",...
Add a new lb vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_add 'vserverName' 'vserverIP' 'vserverPort' 'vserverType' salt '*' netscaler.vserver_add 'alex.patate.chaude.443' '1.2.3.4' '443' 'SSL'
[ "Add", "a", "new", "lb", "vserver" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L749-L777
train
saltstack/salt
salt/modules/netscaler.py
vserver_delete
def vserver_delete(v_name, **connection_args): ''' Delete a lb vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_delete 'vserverName' ''' ret = True vserver = _vserver_get(v_name, **connection_args) if vserver is None: return False nitro = _conne...
python
def vserver_delete(v_name, **connection_args): ''' Delete a lb vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_delete 'vserverName' ''' ret = True vserver = _vserver_get(v_name, **connection_args) if vserver is None: return False nitro = _conne...
[ "def", "vserver_delete", "(", "v_name", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "vserver", "=", "_vserver_get", "(", "v_name", ",", "*", "*", "connection_args", ")", "if", "vserver", "is", "None", ":", "return", "False", "nitro", ...
Delete a lb vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_delete 'vserverName'
[ "Delete", "a", "lb", "vserver" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L780-L803
train
saltstack/salt
salt/modules/netscaler.py
vserver_servicegroup_add
def vserver_servicegroup_add(v_name, sg_name, **connection_args): ''' Bind a servicegroup to a vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_servicegroup_add 'vserverName' 'serviceGroupName' ''' ret = True if vserver_servicegroup_exists(v_name, sg_name, **co...
python
def vserver_servicegroup_add(v_name, sg_name, **connection_args): ''' Bind a servicegroup to a vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_servicegroup_add 'vserverName' 'serviceGroupName' ''' ret = True if vserver_servicegroup_exists(v_name, sg_name, **co...
[ "def", "vserver_servicegroup_add", "(", "v_name", ",", "sg_name", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "if", "vserver_servicegroup_exists", "(", "v_name", ",", "sg_name", ",", "*", "*", "connection_args", ")", ":", "return", "False",...
Bind a servicegroup to a vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_servicegroup_add 'vserverName' 'serviceGroupName'
[ "Bind", "a", "servicegroup", "to", "a", "vserver" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L838-L863
train
saltstack/salt
salt/modules/netscaler.py
vserver_sslcert_add
def vserver_sslcert_add(v_name, sc_name, **connection_args): ''' Binds a SSL certificate to a vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_sslcert_add 'vserverName' 'sslCertificateName' ''' ret = True if vserver_sslcert_exists(v_name, sc_name, **connection_...
python
def vserver_sslcert_add(v_name, sc_name, **connection_args): ''' Binds a SSL certificate to a vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_sslcert_add 'vserverName' 'sslCertificateName' ''' ret = True if vserver_sslcert_exists(v_name, sc_name, **connection_...
[ "def", "vserver_sslcert_add", "(", "v_name", ",", "sc_name", ",", "*", "*", "connection_args", ")", ":", "ret", "=", "True", "if", "vserver_sslcert_exists", "(", "v_name", ",", "sc_name", ",", "*", "*", "connection_args", ")", ":", "return", "False", "nitro"...
Binds a SSL certificate to a vserver CLI Example: .. code-block:: bash salt '*' netscaler.vserver_sslcert_add 'vserverName' 'sslCertificateName'
[ "Binds", "a", "SSL", "certificate", "to", "a", "vserver" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/netscaler.py#L925-L950
train
saltstack/salt
salt/modules/libcloud_dns.py
list_zones
def list_zones(profile): ''' List zones for the given profile :param profile: The profile key :type profile: ``str`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.list_zones profile1 ''' conn = _get_driver(profile=profile) return [_simple_zone(zone) for zo...
python
def list_zones(profile): ''' List zones for the given profile :param profile: The profile key :type profile: ``str`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.list_zones profile1 ''' conn = _get_driver(profile=profile) return [_simple_zone(zone) for zo...
[ "def", "list_zones", "(", "profile", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "return", "[", "_simple_zone", "(", "zone", ")", "for", "zone", "in", "conn", ".", "list_zones", "(", ")", "]" ]
List zones for the given profile :param profile: The profile key :type profile: ``str`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.list_zones profile1
[ "List", "zones", "for", "the", "given", "profile" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L103-L117
train
saltstack/salt
salt/modules/libcloud_dns.py
list_records
def list_records(zone_id, profile, type=None): ''' List records for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :param type: The record type, e.g. A, NS :type type: ``str`` ...
python
def list_records(zone_id, profile, type=None): ''' List records for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :param type: The record type, e.g. A, NS :type type: ``str`` ...
[ "def", "list_records", "(", "zone_id", ",", "profile", ",", "type", "=", "None", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "zone", "=", "conn", ".", "get_zone", "(", "zone_id", ")", "if", "type", "is", "not", "None", ...
List records for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :param type: The record type, e.g. A, NS :type type: ``str`` CLI Example: .. code-block:: bash salt mymin...
[ "List", "records", "for", "the", "given", "zone_id", "on", "the", "given", "profile" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L120-L144
train
saltstack/salt
salt/modules/libcloud_dns.py
get_zone
def get_zone(zone_id, profile): ''' Get zone information for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.ge...
python
def get_zone(zone_id, profile): ''' Get zone information for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.ge...
[ "def", "get_zone", "(", "zone_id", ",", "profile", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "return", "_simple_zone", "(", "conn", ".", "get_zone", "(", "zone_id", ")", ")" ]
Get zone information for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.get_zone google.com profile1
[ "Get", "zone", "information", "for", "the", "given", "zone_id", "on", "the", "given", "profile" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L147-L164
train
saltstack/salt
salt/modules/libcloud_dns.py
get_record
def get_record(zone_id, record_id, profile): ''' Get record information for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param record_id: Record to delete. :type record_id: ``str`` :param profile: The profile key :type profile: ``st...
python
def get_record(zone_id, record_id, profile): ''' Get record information for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param record_id: Record to delete. :type record_id: ``str`` :param profile: The profile key :type profile: ``st...
[ "def", "get_record", "(", "zone_id", ",", "record_id", ",", "profile", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "return", "_simple_record", "(", "conn", ".", "get_record", "(", "zone_id", ",", "record_id", ")", ")" ]
Get record information for the given zone_id on the given profile :param zone_id: Zone to export. :type zone_id: ``str`` :param record_id: Record to delete. :type record_id: ``str`` :param profile: The profile key :type profile: ``str`` CLI Example: .. code-block:: bash ...
[ "Get", "record", "information", "for", "the", "given", "zone_id", "on", "the", "given", "profile" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L167-L187
train
saltstack/salt
salt/modules/libcloud_dns.py
create_zone
def create_zone(domain, profile, type='master', ttl=None): ''' Create a new zone. :param domain: Zone domain name (e.g. example.com) :type domain: ``str`` :param profile: The profile key :type profile: ``str`` :param type: Zone type (master / slave). :type type: ``str`` :param ...
python
def create_zone(domain, profile, type='master', ttl=None): ''' Create a new zone. :param domain: Zone domain name (e.g. example.com) :type domain: ``str`` :param profile: The profile key :type profile: ``str`` :param type: Zone type (master / slave). :type type: ``str`` :param ...
[ "def", "create_zone", "(", "domain", ",", "profile", ",", "type", "=", "'master'", ",", "ttl", "=", "None", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "zone", "=", "conn", ".", "create_record", "(", "domain", ",", "type"...
Create a new zone. :param domain: Zone domain name (e.g. example.com) :type domain: ``str`` :param profile: The profile key :type profile: ``str`` :param type: Zone type (master / slave). :type type: ``str`` :param ttl: TTL for new records. (optional) :type ttl: ``int`` CLI E...
[ "Create", "a", "new", "zone", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L190-L214
train
saltstack/salt
salt/modules/libcloud_dns.py
update_zone
def update_zone(zone_id, domain, profile, type='master', ttl=None): ''' Update an existing zone. :param zone_id: Zone ID to update. :type zone_id: ``str`` :param domain: Zone domain name (e.g. example.com) :type domain: ``str`` :param profile: The profile key :type profile: ``str``...
python
def update_zone(zone_id, domain, profile, type='master', ttl=None): ''' Update an existing zone. :param zone_id: Zone ID to update. :type zone_id: ``str`` :param domain: Zone domain name (e.g. example.com) :type domain: ``str`` :param profile: The profile key :type profile: ``str``...
[ "def", "update_zone", "(", "zone_id", ",", "domain", ",", "profile", ",", "type", "=", "'master'", ",", "ttl", "=", "None", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "zone", "=", "conn", ".", "get_zone", "(", "zone_id",...
Update an existing zone. :param zone_id: Zone ID to update. :type zone_id: ``str`` :param domain: Zone domain name (e.g. example.com) :type domain: ``str`` :param profile: The profile key :type profile: ``str`` :param type: Zone type (master / slave). :type type: ``str`` :pa...
[ "Update", "an", "existing", "zone", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L217-L244
train
saltstack/salt
salt/modules/libcloud_dns.py
create_record
def create_record(name, zone_id, type, data, profile): ''' Create a new record. :param name: Record name without the domain name (e.g. www). Note: If you want to create a record for a base domain name, you should specify empty string ('') for this argument...
python
def create_record(name, zone_id, type, data, profile): ''' Create a new record. :param name: Record name without the domain name (e.g. www). Note: If you want to create a record for a base domain name, you should specify empty string ('') for this argument...
[ "def", "create_record", "(", "name", ",", "zone_id", ",", "type", ",", "data", ",", "profile", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "record_type", "=", "_string_to_record_type", "(", "type", ")", "zone", "=", "conn", ...
Create a new record. :param name: Record name without the domain name (e.g. www). Note: If you want to create a record for a base domain name, you should specify empty string ('') for this argument. :type name: ``str`` :param zone_id: Zone where the requ...
[ "Create", "a", "new", "record", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L247-L278
train
saltstack/salt
salt/modules/libcloud_dns.py
delete_zone
def delete_zone(zone_id, profile): ''' Delete a zone. :param zone_id: Zone to delete. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :rtype: ``bool`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.delete_zone google.com pro...
python
def delete_zone(zone_id, profile): ''' Delete a zone. :param zone_id: Zone to delete. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :rtype: ``bool`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.delete_zone google.com pro...
[ "def", "delete_zone", "(", "zone_id", ",", "profile", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "zone", "=", "conn", ".", "get_zone", "(", "zone_id", "=", "zone_id", ")", "return", "conn", ".", "delete_zone", "(", "zone",...
Delete a zone. :param zone_id: Zone to delete. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :rtype: ``bool`` CLI Example: .. code-block:: bash salt myminion libcloud_dns.delete_zone google.com profile1
[ "Delete", "a", "zone", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L281-L301
train
saltstack/salt
salt/modules/libcloud_dns.py
delete_record
def delete_record(zone_id, record_id, profile): ''' Delete a record. :param zone_id: Zone to delete. :type zone_id: ``str`` :param record_id: Record to delete. :type record_id: ``str`` :param profile: The profile key :type profile: ``str`` :rtype: ``bool`` CLI Example: ...
python
def delete_record(zone_id, record_id, profile): ''' Delete a record. :param zone_id: Zone to delete. :type zone_id: ``str`` :param record_id: Record to delete. :type record_id: ``str`` :param profile: The profile key :type profile: ``str`` :rtype: ``bool`` CLI Example: ...
[ "def", "delete_record", "(", "zone_id", ",", "record_id", ",", "profile", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "record", "=", "conn", ".", "get_record", "(", "zone_id", "=", "zone_id", ",", "record_id", "=", "record_id...
Delete a record. :param zone_id: Zone to delete. :type zone_id: ``str`` :param record_id: Record to delete. :type record_id: ``str`` :param profile: The profile key :type profile: ``str`` :rtype: ``bool`` CLI Example: .. code-block:: bash salt myminion libcloud_dns....
[ "Delete", "a", "record", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L304-L327
train
saltstack/salt
salt/modules/libcloud_dns.py
get_bind_data
def get_bind_data(zone_id, profile): ''' Export Zone to the BIND compatible format. :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :return: Zone data in BIND compatible format. :rtype: ``str`` CLI Example: .. c...
python
def get_bind_data(zone_id, profile): ''' Export Zone to the BIND compatible format. :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :return: Zone data in BIND compatible format. :rtype: ``str`` CLI Example: .. c...
[ "def", "get_bind_data", "(", "zone_id", ",", "profile", ")", ":", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "zone", "=", "conn", ".", "get_zone", "(", "zone_id", ")", "return", "conn", ".", "export_zone_to_bind_format", "(", "zone", ...
Export Zone to the BIND compatible format. :param zone_id: Zone to export. :type zone_id: ``str`` :param profile: The profile key :type profile: ``str`` :return: Zone data in BIND compatible format. :rtype: ``str`` CLI Example: .. code-block:: bash salt myminion libcloud_...
[ "Export", "Zone", "to", "the", "BIND", "compatible", "format", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L330-L351
train
saltstack/salt
salt/modules/libcloud_dns.py
extra
def extra(method, profile, **libcloud_kwargs): ''' Call an extended method on the driver :param method: Driver's method name :type method: ``str`` :param profile: The profile key :type profile: ``str`` :param libcloud_kwargs: Extra arguments for the driver's delete_container method ...
python
def extra(method, profile, **libcloud_kwargs): ''' Call an extended method on the driver :param method: Driver's method name :type method: ``str`` :param profile: The profile key :type profile: ``str`` :param libcloud_kwargs: Extra arguments for the driver's delete_container method ...
[ "def", "extra", "(", "method", ",", "profile", ",", "*", "*", "libcloud_kwargs", ")", ":", "_sanitize_kwargs", "(", "libcloud_kwargs", ")", "conn", "=", "_get_driver", "(", "profile", "=", "profile", ")", "connection_method", "=", "getattr", "(", "conn", ","...
Call an extended method on the driver :param method: Driver's method name :type method: ``str`` :param profile: The profile key :type profile: ``str`` :param libcloud_kwargs: Extra arguments for the driver's delete_container method :type libcloud_kwargs: ``dict`` CLI Example: .. ...
[ "Call", "an", "extended", "method", "on", "the", "driver" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L354-L376
train
saltstack/salt
salt/modules/libcloud_dns.py
_string_to_record_type
def _string_to_record_type(string): ''' Return a string representation of a DNS record type to a libcloud RecordType ENUM. :param string: A record type, e.g. A, TXT, NS :type string: ``str`` :rtype: :class:`RecordType` ''' string = string.upper() record_type = getattr(RecordType, ...
python
def _string_to_record_type(string): ''' Return a string representation of a DNS record type to a libcloud RecordType ENUM. :param string: A record type, e.g. A, TXT, NS :type string: ``str`` :rtype: :class:`RecordType` ''' string = string.upper() record_type = getattr(RecordType, ...
[ "def", "_string_to_record_type", "(", "string", ")", ":", "string", "=", "string", ".", "upper", "(", ")", "record_type", "=", "getattr", "(", "RecordType", ",", "string", ")", "return", "record_type" ]
Return a string representation of a DNS record type to a libcloud RecordType ENUM. :param string: A record type, e.g. A, TXT, NS :type string: ``str`` :rtype: :class:`RecordType`
[ "Return", "a", "string", "representation", "of", "a", "DNS", "record", "type", "to", "a", "libcloud", "RecordType", "ENUM", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/libcloud_dns.py#L379-L391
train
saltstack/salt
salt/modules/ifttt.py
_query
def _query(event=None, method='GET', args=None, header_dict=None, data=None): ''' Make a web call to IFTTT. ''' secret_key = __salt__['config.get']('ifttt.secret_key') or \ __salt__['config.get']('ifttt:secret_key') path = 'https://maker.ifttt.com/...
python
def _query(event=None, method='GET', args=None, header_dict=None, data=None): ''' Make a web call to IFTTT. ''' secret_key = __salt__['config.get']('ifttt.secret_key') or \ __salt__['config.get']('ifttt:secret_key') path = 'https://maker.ifttt.com/...
[ "def", "_query", "(", "event", "=", "None", ",", "method", "=", "'GET'", ",", "args", "=", "None", ",", "header_dict", "=", "None", ",", "data", "=", "None", ")", ":", "secret_key", "=", "__salt__", "[", "'config.get'", "]", "(", "'ifttt.secret_key'", ...
Make a web call to IFTTT.
[ "Make", "a", "web", "call", "to", "IFTTT", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/ifttt.py#L37-L70
train
saltstack/salt
salt/modules/ifttt.py
trigger_event
def trigger_event(event=None, **kwargs): ''' Trigger a configured event in IFTTT. :param event: The name of the event to trigger. :return: A dictionary with status, text, and error if result was failure. ''' res = {'result': False, 'message': 'Something went wrong'} data = {} ...
python
def trigger_event(event=None, **kwargs): ''' Trigger a configured event in IFTTT. :param event: The name of the event to trigger. :return: A dictionary with status, text, and error if result was failure. ''' res = {'result': False, 'message': 'Something went wrong'} data = {} ...
[ "def", "trigger_event", "(", "event", "=", "None", ",", "*", "*", "kwargs", ")", ":", "res", "=", "{", "'result'", ":", "False", ",", "'message'", ":", "'Something went wrong'", "}", "data", "=", "{", "}", "for", "value", "in", "(", "'value1'", ",", ...
Trigger a configured event in IFTTT. :param event: The name of the event to trigger. :return: A dictionary with status, text, and error if result was failure.
[ "Trigger", "a", "configured", "event", "in", "IFTTT", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/ifttt.py#L73-L101
train
saltstack/salt
salt/proxy/napalm.py
init
def init(opts): ''' Opens the connection with the network device. ''' NETWORK_DEVICE.update(salt.utils.napalm.get_device(opts)) DETAILS['initialized'] = True return True
python
def init(opts): ''' Opens the connection with the network device. ''' NETWORK_DEVICE.update(salt.utils.napalm.get_device(opts)) DETAILS['initialized'] = True return True
[ "def", "init", "(", "opts", ")", ":", "NETWORK_DEVICE", ".", "update", "(", "salt", ".", "utils", ".", "napalm", ".", "get_device", "(", "opts", ")", ")", "DETAILS", "[", "'initialized'", "]", "=", "True", "return", "True" ]
Opens the connection with the network device.
[ "Opens", "the", "connection", "with", "the", "network", "device", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/proxy/napalm.py#L202-L208
train
saltstack/salt
salt/proxy/napalm.py
alive
def alive(opts): ''' Return the connection status with the remote device. .. versionadded:: 2017.7.0 ''' if salt.utils.napalm.not_always_alive(opts): return True # don't force reconnection for not-always alive proxies # or regular minion is_alive_ret = call('is_alive', **{}) ...
python
def alive(opts): ''' Return the connection status with the remote device. .. versionadded:: 2017.7.0 ''' if salt.utils.napalm.not_always_alive(opts): return True # don't force reconnection for not-always alive proxies # or regular minion is_alive_ret = call('is_alive', **{}) ...
[ "def", "alive", "(", "opts", ")", ":", "if", "salt", ".", "utils", ".", "napalm", ".", "not_always_alive", "(", "opts", ")", ":", "return", "True", "# don't force reconnection for not-always alive proxies", "# or regular minion", "is_alive_ret", "=", "call", "(", ...
Return the connection status with the remote device. .. versionadded:: 2017.7.0
[ "Return", "the", "connection", "status", "with", "the", "remote", "device", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/proxy/napalm.py#L211-L234
train
saltstack/salt
salt/proxy/napalm.py
shutdown
def shutdown(opts): ''' Closes connection with the device. ''' try: if not NETWORK_DEVICE.get('UP', False): raise Exception('not connected!') NETWORK_DEVICE.get('DRIVER').close() except Exception as error: port = NETWORK_DEVICE.get('OPTIONAL_ARGS', {}).get('port')...
python
def shutdown(opts): ''' Closes connection with the device. ''' try: if not NETWORK_DEVICE.get('UP', False): raise Exception('not connected!') NETWORK_DEVICE.get('DRIVER').close() except Exception as error: port = NETWORK_DEVICE.get('OPTIONAL_ARGS', {}).get('port')...
[ "def", "shutdown", "(", "opts", ")", ":", "try", ":", "if", "not", "NETWORK_DEVICE", ".", "get", "(", "'UP'", ",", "False", ")", ":", "raise", "Exception", "(", "'not connected!'", ")", "NETWORK_DEVICE", ".", "get", "(", "'DRIVER'", ")", ".", "close", ...
Closes connection with the device.
[ "Closes", "connection", "with", "the", "device", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/proxy/napalm.py#L282-L299
train
saltstack/salt
salt/proxy/napalm.py
call
def call(method, *args, **kwargs): ''' Calls a specific method from the network driver instance. Please check the readthedocs_ page for the updated list of getters. .. _readthedocs: http://napalm.readthedocs.org/en/latest/support/index.html#getters-support-matrix :param method: specifies the name ...
python
def call(method, *args, **kwargs): ''' Calls a specific method from the network driver instance. Please check the readthedocs_ page for the updated list of getters. .. _readthedocs: http://napalm.readthedocs.org/en/latest/support/index.html#getters-support-matrix :param method: specifies the name ...
[ "def", "call", "(", "method", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "kwargs_copy", "=", "{", "}", "kwargs_copy", ".", "update", "(", "kwargs", ")", "for", "karg", ",", "warg", "in", "six", ".", "iteritems", "(", "kwargs_copy", ")", "...
Calls a specific method from the network driver instance. Please check the readthedocs_ page for the updated list of getters. .. _readthedocs: http://napalm.readthedocs.org/en/latest/support/index.html#getters-support-matrix :param method: specifies the name of the method to be called :param params: c...
[ "Calls", "a", "specific", "method", "from", "the", "network", "driver", "instance", ".", "Please", "check", "the", "readthedocs_", "page", "for", "the", "updated", "list", "of", "getters", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/proxy/napalm.py#L306-L346
train
saltstack/salt
salt/modules/win_license.py
info
def info(): ''' Return information about the license, if the license is not correctly activated this will return None. CLI Example: .. code-block:: bash salt '*' license.info ''' cmd = r'cscript C:\Windows\System32\slmgr.vbs /dli' out = __salt__['cmd.run'](cmd) match = re...
python
def info(): ''' Return information about the license, if the license is not correctly activated this will return None. CLI Example: .. code-block:: bash salt '*' license.info ''' cmd = r'cscript C:\Windows\System32\slmgr.vbs /dli' out = __salt__['cmd.run'](cmd) match = re...
[ "def", "info", "(", ")", ":", "cmd", "=", "r'cscript C:\\Windows\\System32\\slmgr.vbs /dli'", "out", "=", "__salt__", "[", "'cmd.run'", "]", "(", "cmd", ")", "match", "=", "re", ".", "search", "(", "r'Name: (.*)\\r\\nDescription: (.*)\\r\\nPartial Product Key: (.*)\\r\\...
Return information about the license, if the license is not correctly activated this will return None. CLI Example: .. code-block:: bash salt '*' license.info
[ "Return", "information", "about", "the", "license", "if", "the", "license", "is", "not", "correctly", "activated", "this", "will", "return", "None", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/modules/win_license.py#L106-L132
train
saltstack/salt
salt/states/boto_apigateway.py
present
def present(name, api_name, swagger_file, stage_name, api_key_required, lambda_integration_role, lambda_region=None, stage_variables=None, region=None, key=None, keyid=None, profile=None, lambda_funcname_format='{stage}_{api}_{resource}_{method}', authorization_type='NONE...
python
def present(name, api_name, swagger_file, stage_name, api_key_required, lambda_integration_role, lambda_region=None, stage_variables=None, region=None, key=None, keyid=None, profile=None, lambda_funcname_format='{stage}_{api}_{resource}_{method}', authorization_type='NONE...
[ "def", "present", "(", "name", ",", "api_name", ",", "swagger_file", ",", "stage_name", ",", "api_key_required", ",", "lambda_integration_role", ",", "lambda_region", "=", "None", ",", "stage_variables", "=", "None", ",", "region", "=", "None", ",", "key", "="...
Ensure the spcified api_name with the corresponding swaggerfile is deployed to the given stage_name in AWS ApiGateway. this state currently only supports ApiGateway integration with AWS Lambda, and CORS support is handled through a Mock integration. There may be multiple deployments for the API object...
[ "Ensure", "the", "spcified", "api_name", "with", "the", "corresponding", "swaggerfile", "is", "deployed", "to", "the", "given", "stage_name", "in", "AWS", "ApiGateway", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L79-L339
train
saltstack/salt
salt/states/boto_apigateway.py
_get_stage_variables
def _get_stage_variables(stage_variables): ''' Helper function to retrieve stage variables from pillars/options, if the input is a string ''' ret = dict() if stage_variables is None: return ret if isinstance(stage_variables, six.string_types): if stage_variables in __opts__:...
python
def _get_stage_variables(stage_variables): ''' Helper function to retrieve stage variables from pillars/options, if the input is a string ''' ret = dict() if stage_variables is None: return ret if isinstance(stage_variables, six.string_types): if stage_variables in __opts__:...
[ "def", "_get_stage_variables", "(", "stage_variables", ")", ":", "ret", "=", "dict", "(", ")", "if", "stage_variables", "is", "None", ":", "return", "ret", "if", "isinstance", "(", "stage_variables", ",", "six", ".", "string_types", ")", ":", "if", "stage_va...
Helper function to retrieve stage variables from pillars/options, if the input is a string
[ "Helper", "function", "to", "retrieve", "stage", "variables", "from", "pillars", "/", "options", "if", "the", "input", "is", "a", "string" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L342-L365
train
saltstack/salt
salt/states/boto_apigateway.py
absent
def absent(name, api_name, stage_name, nuke_api=False, region=None, key=None, keyid=None, profile=None): ''' Ensure the stage_name associated with the given api_name deployed by boto_apigateway's present state is removed. If the currently associated deployment to the given stage_name has no other stage...
python
def absent(name, api_name, stage_name, nuke_api=False, region=None, key=None, keyid=None, profile=None): ''' Ensure the stage_name associated with the given api_name deployed by boto_apigateway's present state is removed. If the currently associated deployment to the given stage_name has no other stage...
[ "def", "absent", "(", "name", ",", "api_name", ",", "stage_name", ",", "nuke_api", "=", "False", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", ...
Ensure the stage_name associated with the given api_name deployed by boto_apigateway's present state is removed. If the currently associated deployment to the given stage_name has no other stages associated with it, the deployment will also be removed. name Name of the swagger file in YAML format ...
[ "Ensure", "the", "stage_name", "associated", "with", "the", "given", "api_name", "deployed", "by", "boto_apigateway", "s", "present", "state", "is", "removed", ".", "If", "the", "currently", "associated", "deployment", "to", "the", "given", "stage_name", "has", ...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L368-L443
train
saltstack/salt
salt/states/boto_apigateway.py
_gen_md5_filehash
def _gen_md5_filehash(fname, *args): ''' helper function to generate a md5 hash of the swagger definition file any extra argument passed to the function is converted to a string and participates in the hash calculation ''' _hash = hashlib.md5() with salt.utils.files.fopen(fname, 'rb') as f: ...
python
def _gen_md5_filehash(fname, *args): ''' helper function to generate a md5 hash of the swagger definition file any extra argument passed to the function is converted to a string and participates in the hash calculation ''' _hash = hashlib.md5() with salt.utils.files.fopen(fname, 'rb') as f: ...
[ "def", "_gen_md5_filehash", "(", "fname", ",", "*", "args", ")", ":", "_hash", "=", "hashlib", ".", "md5", "(", ")", "with", "salt", ".", "utils", ".", "files", ".", "fopen", "(", "fname", ",", "'rb'", ")", "as", "f", ":", "for", "chunk", "in", "...
helper function to generate a md5 hash of the swagger definition file any extra argument passed to the function is converted to a string and participates in the hash calculation
[ "helper", "function", "to", "generate", "a", "md5", "hash", "of", "the", "swagger", "definition", "file", "any", "extra", "argument", "passed", "to", "the", "function", "is", "converted", "to", "a", "string", "and", "participates", "in", "the", "hash", "calc...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L447-L460
train
saltstack/salt
salt/states/boto_apigateway.py
_dict_to_json_pretty
def _dict_to_json_pretty(d, sort_keys=True): ''' helper function to generate pretty printed json output ''' return salt.utils.json.dumps(d, indent=4, separators=(',', ': '), sort_keys=sort_keys)
python
def _dict_to_json_pretty(d, sort_keys=True): ''' helper function to generate pretty printed json output ''' return salt.utils.json.dumps(d, indent=4, separators=(',', ': '), sort_keys=sort_keys)
[ "def", "_dict_to_json_pretty", "(", "d", ",", "sort_keys", "=", "True", ")", ":", "return", "salt", ".", "utils", ".", "json", ".", "dumps", "(", "d", ",", "indent", "=", "4", ",", "separators", "=", "(", "','", ",", "': '", ")", ",", "sort_keys", ...
helper function to generate pretty printed json output
[ "helper", "function", "to", "generate", "pretty", "printed", "json", "output" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L463-L467
train
saltstack/salt
salt/states/boto_apigateway.py
_name_matches
def _name_matches(name, matches): ''' Helper function to see if given name has any of the patterns in given matches ''' for m in matches: if name.endswith(m): return True if name.lower().endswith('_' + m.lower()): return True if name.lower() == m.lower(): ...
python
def _name_matches(name, matches): ''' Helper function to see if given name has any of the patterns in given matches ''' for m in matches: if name.endswith(m): return True if name.lower().endswith('_' + m.lower()): return True if name.lower() == m.lower(): ...
[ "def", "_name_matches", "(", "name", ",", "matches", ")", ":", "for", "m", "in", "matches", ":", "if", "name", ".", "endswith", "(", "m", ")", ":", "return", "True", "if", "name", ".", "lower", "(", ")", ".", "endswith", "(", "'_'", "+", "m", "."...
Helper function to see if given name has any of the patterns in given matches
[ "Helper", "function", "to", "see", "if", "given", "name", "has", "any", "of", "the", "patterns", "in", "given", "matches" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L472-L483
train
saltstack/salt
salt/states/boto_apigateway.py
_object_reducer
def _object_reducer(o, names=('id', 'name', 'path', 'httpMethod', 'statusCode', 'Created', 'Deleted', 'Updated', 'Flushed', 'Associated', 'Disassociated')): ''' Helper function to reduce the amount of information that will be kept in the change log ...
python
def _object_reducer(o, names=('id', 'name', 'path', 'httpMethod', 'statusCode', 'Created', 'Deleted', 'Updated', 'Flushed', 'Associated', 'Disassociated')): ''' Helper function to reduce the amount of information that will be kept in the change log ...
[ "def", "_object_reducer", "(", "o", ",", "names", "=", "(", "'id'", ",", "'name'", ",", "'path'", ",", "'httpMethod'", ",", "'statusCode'", ",", "'Created'", ",", "'Deleted'", ",", "'Updated'", ",", "'Flushed'", ",", "'Associated'", ",", "'Disassociated'", "...
Helper function to reduce the amount of information that will be kept in the change log for API GW related return values
[ "Helper", "function", "to", "reduce", "the", "amount", "of", "information", "that", "will", "be", "kept", "in", "the", "change", "log", "for", "API", "GW", "related", "return", "values" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L486-L511
train
saltstack/salt
salt/states/boto_apigateway.py
_log_changes
def _log_changes(ret, changekey, changevalue): ''' For logging create/update/delete operations to AWS ApiGateway ''' cl = ret['changes'].get('new', []) cl.append({changekey: _object_reducer(changevalue)}) ret['changes']['new'] = cl return ret
python
def _log_changes(ret, changekey, changevalue): ''' For logging create/update/delete operations to AWS ApiGateway ''' cl = ret['changes'].get('new', []) cl.append({changekey: _object_reducer(changevalue)}) ret['changes']['new'] = cl return ret
[ "def", "_log_changes", "(", "ret", ",", "changekey", ",", "changevalue", ")", ":", "cl", "=", "ret", "[", "'changes'", "]", ".", "get", "(", "'new'", ",", "[", "]", ")", "cl", ".", "append", "(", "{", "changekey", ":", "_object_reducer", "(", "change...
For logging create/update/delete operations to AWS ApiGateway
[ "For", "logging", "create", "/", "update", "/", "delete", "operations", "to", "AWS", "ApiGateway" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L514-L521
train
saltstack/salt
salt/states/boto_apigateway.py
_log_error_and_abort
def _log_error_and_abort(ret, obj): ''' helper function to update errors in the return structure ''' ret['result'] = False ret['abort'] = True if 'error' in obj: ret['comment'] = '{0}'.format(obj.get('error')) return ret
python
def _log_error_and_abort(ret, obj): ''' helper function to update errors in the return structure ''' ret['result'] = False ret['abort'] = True if 'error' in obj: ret['comment'] = '{0}'.format(obj.get('error')) return ret
[ "def", "_log_error_and_abort", "(", "ret", ",", "obj", ")", ":", "ret", "[", "'result'", "]", "=", "False", "ret", "[", "'abort'", "]", "=", "True", "if", "'error'", "in", "obj", ":", "ret", "[", "'comment'", "]", "=", "'{0}'", ".", "format", "(", ...
helper function to update errors in the return structure
[ "helper", "function", "to", "update", "errors", "in", "the", "return", "structure" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L524-L532
train
saltstack/salt
salt/states/boto_apigateway.py
usage_plan_present
def usage_plan_present(name, plan_name, description=None, throttle=None, quota=None, region=None, key=None, keyid=None, profile=None): ''' Ensure the spcifieda usage plan with the corresponding metrics is deployed .. versionadded:: 2017.7.0 name name of the state pl...
python
def usage_plan_present(name, plan_name, description=None, throttle=None, quota=None, region=None, key=None, keyid=None, profile=None): ''' Ensure the spcifieda usage plan with the corresponding metrics is deployed .. versionadded:: 2017.7.0 name name of the state pl...
[ "def", "usage_plan_present", "(", "name", ",", "plan_name", ",", "description", "=", "None", ",", "throttle", "=", "None", ",", "quota", "=", "None", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", ...
Ensure the spcifieda usage plan with the corresponding metrics is deployed .. versionadded:: 2017.7.0 name name of the state plan_name [Required] name of the usage plan throttle [Optional] throttling parameters expressed as a dictionary. If provided, at least one of t...
[ "Ensure", "the", "spcifieda", "usage", "plan", "with", "the", "corresponding", "metrics", "is", "deployed" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1688-L1826
train
saltstack/salt
salt/states/boto_apigateway.py
usage_plan_absent
def usage_plan_absent(name, plan_name, region=None, key=None, keyid=None, profile=None): ''' Ensures usage plan identified by name is no longer present .. versionadded:: 2017.7.0 name name of the state plan_name name of the plan to remove .. code-block:: yaml usage p...
python
def usage_plan_absent(name, plan_name, region=None, key=None, keyid=None, profile=None): ''' Ensures usage plan identified by name is no longer present .. versionadded:: 2017.7.0 name name of the state plan_name name of the plan to remove .. code-block:: yaml usage p...
[ "def", "usage_plan_absent", "(", "name", ",", "plan_name", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",", "'result'", ":", "True", ...
Ensures usage plan identified by name is no longer present .. versionadded:: 2017.7.0 name name of the state plan_name name of the plan to remove .. code-block:: yaml usage plan absent: boto_apigateway.usage_plan_absent: - plan_name: my_usage_plan ...
[ "Ensures", "usage", "plan", "identified", "by", "name", "is", "no", "longer", "present" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1829-L1892
train
saltstack/salt
salt/states/boto_apigateway.py
usage_plan_association_present
def usage_plan_association_present(name, plan_name, api_stages, region=None, key=None, keyid=None, profile=None): ''' Ensures usage plan identified by name is added to provided api_stages .. versionadded:: 2017.7.0 name name of the state plan_name name of the plan to use api_...
python
def usage_plan_association_present(name, plan_name, api_stages, region=None, key=None, keyid=None, profile=None): ''' Ensures usage plan identified by name is added to provided api_stages .. versionadded:: 2017.7.0 name name of the state plan_name name of the plan to use api_...
[ "def", "usage_plan_association_present", "(", "name", ",", "plan_name", ",", "api_stages", ",", "region", "=", "None", ",", "key", "=", "None", ",", "keyid", "=", "None", ",", "profile", "=", "None", ")", ":", "ret", "=", "{", "'name'", ":", "name", ",...
Ensures usage plan identified by name is added to provided api_stages .. versionadded:: 2017.7.0 name name of the state plan_name name of the plan to use api_stages list of dictionaries, where each dictionary consists of the following keys: apiId apiId of...
[ "Ensures", "usage", "plan", "identified", "by", "name", "is", "added", "to", "provided", "api_stages" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1895-L1985
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._validate_error_response_model
def _validate_error_response_model(self, paths, mods): ''' Helper function to help validate the convention established in the swagger file on how to handle response code mapping/integration ''' for path, ops in paths: for opname, opobj in six.iteritems(ops): ...
python
def _validate_error_response_model(self, paths, mods): ''' Helper function to help validate the convention established in the swagger file on how to handle response code mapping/integration ''' for path, ops in paths: for opname, opobj in six.iteritems(ops): ...
[ "def", "_validate_error_response_model", "(", "self", ",", "paths", ",", "mods", ")", ":", "for", "path", ",", "ops", "in", "paths", ":", "for", "opname", ",", "opobj", "in", "six", ".", "iteritems", "(", "ops", ")", ":", "if", "opname", "not", "in", ...
Helper function to help validate the convention established in the swagger file on how to handle response code mapping/integration
[ "Helper", "function", "to", "help", "validate", "the", "convention", "established", "in", "the", "swagger", "file", "on", "how", "to", "handle", "response", "code", "mapping", "/", "integration" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L754-L796
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._validate_lambda_funcname_format
def _validate_lambda_funcname_format(self): ''' Checks if the lambda function name format contains only known elements :return: True on success, ValueError raised on error ''' try: if self._lambda_funcname_format: known_kwargs = dict(stage='', ...
python
def _validate_lambda_funcname_format(self): ''' Checks if the lambda function name format contains only known elements :return: True on success, ValueError raised on error ''' try: if self._lambda_funcname_format: known_kwargs = dict(stage='', ...
[ "def", "_validate_lambda_funcname_format", "(", "self", ")", ":", "try", ":", "if", "self", ".", "_lambda_funcname_format", ":", "known_kwargs", "=", "dict", "(", "stage", "=", "''", ",", "api", "=", "''", ",", "resource", "=", "''", ",", "method", "=", ...
Checks if the lambda function name format contains only known elements :return: True on success, ValueError raised on error
[ "Checks", "if", "the", "lambda", "function", "name", "format", "contains", "only", "known", "elements", ":", "return", ":", "True", "on", "success", "ValueError", "raised", "on", "error" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L798-L813
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._validate_swagger_file
def _validate_swagger_file(self): ''' High level check/validation of the input swagger file based on https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md This is not a full schema compliance check, but rather make sure that the input file (YAML or JSON) can be...
python
def _validate_swagger_file(self): ''' High level check/validation of the input swagger file based on https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md This is not a full schema compliance check, but rather make sure that the input file (YAML or JSON) can be...
[ "def", "_validate_swagger_file", "(", "self", ")", ":", "# check for any invalid fields for Swagger Object V2", "for", "field", "in", "self", ".", "_cfg", ":", "if", "(", "field", "not", "in", "_Swagger", ".", "SWAGGER_OBJ_V2_FIELDS", "and", "not", "_Swagger", ".", ...
High level check/validation of the input swagger file based on https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md This is not a full schema compliance check, but rather make sure that the input file (YAML or JSON) can be read into a dictionary, and we check for the content ...
[ "High", "level", "check", "/", "validation", "of", "the", "input", "swagger", "file", "based", "on", "https", ":", "//", "github", ".", "com", "/", "swagger", "-", "api", "/", "swagger", "-", "spec", "/", "blob", "/", "master", "/", "versions", "/", ...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L815-L844
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger.models
def models(self): ''' generator to return the tuple of model and its schema to create on aws. ''' model_dict = self._build_all_dependencies() while True: model = self._get_model_without_dependencies(model_dict) if not model: break ...
python
def models(self): ''' generator to return the tuple of model and its schema to create on aws. ''' model_dict = self._build_all_dependencies() while True: model = self._get_model_without_dependencies(model_dict) if not model: break ...
[ "def", "models", "(", "self", ")", ":", "model_dict", "=", "self", ".", "_build_all_dependencies", "(", ")", "while", "True", ":", "model", "=", "self", ".", "_get_model_without_dependencies", "(", "model_dict", ")", "if", "not", "model", ":", "break", "yiel...
generator to return the tuple of model and its schema to create on aws.
[ "generator", "to", "return", "the", "tuple", "of", "model", "and", "its", "schema", "to", "create", "on", "aws", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L898-L907
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger.paths
def paths(self): ''' returns an iterator for the relative resource paths specified in the swagger file ''' paths = self._cfg.get('paths') if not paths: raise ValueError('Paths Object has no values, You need to define them in your swagger file') for path in pat...
python
def paths(self): ''' returns an iterator for the relative resource paths specified in the swagger file ''' paths = self._cfg.get('paths') if not paths: raise ValueError('Paths Object has no values, You need to define them in your swagger file') for path in pat...
[ "def", "paths", "(", "self", ")", ":", "paths", "=", "self", ".", "_cfg", ".", "get", "(", "'paths'", ")", "if", "not", "paths", ":", "raise", "ValueError", "(", "'Paths Object has no values, You need to define them in your swagger file'", ")", "for", "path", "i...
returns an iterator for the relative resource paths specified in the swagger file
[ "returns", "an", "iterator", "for", "the", "relative", "resource", "paths", "specified", "in", "the", "swagger", "file" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L910-L920
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger.deployment_label
def deployment_label(self): ''' this property returns the deployment label dictionary (mainly used by stage description) ''' label = dict() label['swagger_info_object'] = self.info label['api_name'] = self.rest_api_name label['swagger_file'] = os.path.bas...
python
def deployment_label(self): ''' this property returns the deployment label dictionary (mainly used by stage description) ''' label = dict() label['swagger_info_object'] = self.info label['api_name'] = self.rest_api_name label['swagger_file'] = os.path.bas...
[ "def", "deployment_label", "(", "self", ")", ":", "label", "=", "dict", "(", ")", "label", "[", "'swagger_info_object'", "]", "=", "self", ".", "info", "label", "[", "'api_name'", "]", "=", "self", ".", "rest_api_name", "label", "[", "'swagger_file'", "]",...
this property returns the deployment label dictionary (mainly used by stage description)
[ "this", "property", "returns", "the", "deployment", "label", "dictionary", "(", "mainly", "used", "by", "stage", "description", ")" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L953-L965
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._one_or_more_stages_remain
def _one_or_more_stages_remain(self, deploymentId): ''' Helper function to find whether there are other stages still associated with a deployment ''' stages = __salt__['boto_apigateway.describe_api_stages'](restApiId=self.restApiId, ...
python
def _one_or_more_stages_remain(self, deploymentId): ''' Helper function to find whether there are other stages still associated with a deployment ''' stages = __salt__['boto_apigateway.describe_api_stages'](restApiId=self.restApiId, ...
[ "def", "_one_or_more_stages_remain", "(", "self", ",", "deploymentId", ")", ":", "stages", "=", "__salt__", "[", "'boto_apigateway.describe_api_stages'", "]", "(", "restApiId", "=", "self", ".", "restApiId", ",", "deploymentId", "=", "deploymentId", ",", "*", "*",...
Helper function to find whether there are other stages still associated with a deployment
[ "Helper", "function", "to", "find", "whether", "there", "are", "other", "stages", "still", "associated", "with", "a", "deployment" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L968-L975
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger.no_more_deployments_remain
def no_more_deployments_remain(self): ''' Helper function to find whether there are deployments left with stages associated ''' no_more_deployments = True deployments = __salt__['boto_apigateway.describe_api_deployments'](restApiId=self.restApiId, ...
python
def no_more_deployments_remain(self): ''' Helper function to find whether there are deployments left with stages associated ''' no_more_deployments = True deployments = __salt__['boto_apigateway.describe_api_deployments'](restApiId=self.restApiId, ...
[ "def", "no_more_deployments_remain", "(", "self", ")", ":", "no_more_deployments", "=", "True", "deployments", "=", "__salt__", "[", "'boto_apigateway.describe_api_deployments'", "]", "(", "restApiId", "=", "self", ".", "restApiId", ",", "*", "*", "self", ".", "_c...
Helper function to find whether there are deployments left with stages associated
[ "Helper", "function", "to", "find", "whether", "there", "are", "deployments", "left", "with", "stages", "associated" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L977-L994
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._get_current_deployment_id
def _get_current_deployment_id(self): ''' Helper method to find the deployment id that the stage name is currently assocaited with. ''' deploymentId = '' stage = __salt__['boto_apigateway.describe_api_stage'](restApiId=self.restApiId, ...
python
def _get_current_deployment_id(self): ''' Helper method to find the deployment id that the stage name is currently assocaited with. ''' deploymentId = '' stage = __salt__['boto_apigateway.describe_api_stage'](restApiId=self.restApiId, ...
[ "def", "_get_current_deployment_id", "(", "self", ")", ":", "deploymentId", "=", "''", "stage", "=", "__salt__", "[", "'boto_apigateway.describe_api_stage'", "]", "(", "restApiId", "=", "self", ".", "restApiId", ",", "stageName", "=", "self", ".", "_stage_name", ...
Helper method to find the deployment id that the stage name is currently assocaited with.
[ "Helper", "method", "to", "find", "the", "deployment", "id", "that", "the", "stage", "name", "is", "currently", "assocaited", "with", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L996-L1006
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._get_current_deployment_label
def _get_current_deployment_label(self): ''' Helper method to find the deployment label that the stage_name is currently associated with. ''' deploymentId = self._get_current_deployment_id() deployment = __salt__['boto_apigateway.describe_api_deployment'](restApiId=self.restApiId...
python
def _get_current_deployment_label(self): ''' Helper method to find the deployment label that the stage_name is currently associated with. ''' deploymentId = self._get_current_deployment_id() deployment = __salt__['boto_apigateway.describe_api_deployment'](restApiId=self.restApiId...
[ "def", "_get_current_deployment_label", "(", "self", ")", ":", "deploymentId", "=", "self", ".", "_get_current_deployment_id", "(", ")", "deployment", "=", "__salt__", "[", "'boto_apigateway.describe_api_deployment'", "]", "(", "restApiId", "=", "self", ".", "restApiI...
Helper method to find the deployment label that the stage_name is currently associated with.
[ "Helper", "method", "to", "find", "the", "deployment", "label", "that", "the", "stage_name", "is", "currently", "associated", "with", "." ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1008-L1018
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._get_desired_deployment_id
def _get_desired_deployment_id(self): ''' Helper method to return the deployment id matching the desired deployment label for this Swagger object based on the given api_name, swagger_file ''' deployments = __salt__['boto_apigateway.describe_api_deployments'](restApiId=self.restAp...
python
def _get_desired_deployment_id(self): ''' Helper method to return the deployment id matching the desired deployment label for this Swagger object based on the given api_name, swagger_file ''' deployments = __salt__['boto_apigateway.describe_api_deployments'](restApiId=self.restAp...
[ "def", "_get_desired_deployment_id", "(", "self", ")", ":", "deployments", "=", "__salt__", "[", "'boto_apigateway.describe_api_deployments'", "]", "(", "restApiId", "=", "self", ".", "restApiId", ",", "*", "*", "self", ".", "_common_aws_args", ")", ".", "get", ...
Helper method to return the deployment id matching the desired deployment label for this Swagger object based on the given api_name, swagger_file
[ "Helper", "method", "to", "return", "the", "deployment", "id", "matching", "the", "desired", "deployment", "label", "for", "this", "Swagger", "object", "based", "on", "the", "given", "api_name", "swagger_file" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1020-L1031
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger.overwrite_stage_variables
def overwrite_stage_variables(self, ret, stage_variables): ''' overwrite the given stage_name's stage variables with the given stage_variables ''' res = __salt__['boto_apigateway.overwrite_api_stage_variables'](restApiId=self.restApiId, ...
python
def overwrite_stage_variables(self, ret, stage_variables): ''' overwrite the given stage_name's stage variables with the given stage_variables ''' res = __salt__['boto_apigateway.overwrite_api_stage_variables'](restApiId=self.restApiId, ...
[ "def", "overwrite_stage_variables", "(", "self", ",", "ret", ",", "stage_variables", ")", ":", "res", "=", "__salt__", "[", "'boto_apigateway.overwrite_api_stage_variables'", "]", "(", "restApiId", "=", "self", ".", "restApiId", ",", "stageName", "=", "self", ".",...
overwrite the given stage_name's stage variables with the given stage_variables
[ "overwrite", "the", "given", "stage_name", "s", "stage", "variables", "with", "the", "given", "stage_variables" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1033-L1050
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._set_current_deployment
def _set_current_deployment(self, stage_desc_json, stage_variables): ''' Helper method to associate the stage_name to the given deploymentId and make this current ''' stage = __salt__['boto_apigateway.describe_api_stage'](restApiId=self.restApiId, ...
python
def _set_current_deployment(self, stage_desc_json, stage_variables): ''' Helper method to associate the stage_name to the given deploymentId and make this current ''' stage = __salt__['boto_apigateway.describe_api_stage'](restApiId=self.restApiId, ...
[ "def", "_set_current_deployment", "(", "self", ",", "stage_desc_json", ",", "stage_variables", ")", ":", "stage", "=", "__salt__", "[", "'boto_apigateway.describe_api_stage'", "]", "(", "restApiId", "=", "self", ".", "restApiId", ",", "stageName", "=", "self", "."...
Helper method to associate the stage_name to the given deploymentId and make this current
[ "Helper", "method", "to", "associate", "the", "stage_name", "to", "the", "given", "deploymentId", "and", "make", "this", "current" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1052-L1080
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger._resolve_api_id
def _resolve_api_id(self): ''' returns an Api Id that matches the given api_name and the hardcoded _Swagger.AWS_API_DESCRIPTION as the api description ''' apis = __salt__['boto_apigateway.describe_apis'](name=self.rest_api_name, ...
python
def _resolve_api_id(self): ''' returns an Api Id that matches the given api_name and the hardcoded _Swagger.AWS_API_DESCRIPTION as the api description ''' apis = __salt__['boto_apigateway.describe_apis'](name=self.rest_api_name, ...
[ "def", "_resolve_api_id", "(", "self", ")", ":", "apis", "=", "__salt__", "[", "'boto_apigateway.describe_apis'", "]", "(", "name", "=", "self", ".", "rest_api_name", ",", "description", "=", "_Swagger", ".", "AWS_API_DESCRIPTION", ",", "*", "*", "self", ".", ...
returns an Api Id that matches the given api_name and the hardcoded _Swagger.AWS_API_DESCRIPTION as the api description
[ "returns", "an", "Api", "Id", "that", "matches", "the", "given", "api_name", "and", "the", "hardcoded", "_Swagger", ".", "AWS_API_DESCRIPTION", "as", "the", "api", "description" ]
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1082-L1095
train
saltstack/salt
salt/states/boto_apigateway.py
_Swagger.delete_stage
def delete_stage(self, ret): ''' Method to delete the given stage_name. If the current deployment tied to the given stage_name has no other stages associated with it, the deployment will be removed as well ''' deploymentId = self._get_current_deployment_id() if d...
python
def delete_stage(self, ret): ''' Method to delete the given stage_name. If the current deployment tied to the given stage_name has no other stages associated with it, the deployment will be removed as well ''' deploymentId = self._get_current_deployment_id() if d...
[ "def", "delete_stage", "(", "self", ",", "ret", ")", ":", "deploymentId", "=", "self", ".", "_get_current_deployment_id", "(", ")", "if", "deploymentId", ":", "result", "=", "__salt__", "[", "'boto_apigateway.delete_api_stage'", "]", "(", "restApiId", "=", "self...
Method to delete the given stage_name. If the current deployment tied to the given stage_name has no other stages associated with it, the deployment will be removed as well
[ "Method", "to", "delete", "the", "given", "stage_name", ".", "If", "the", "current", "deployment", "tied", "to", "the", "given", "stage_name", "has", "no", "other", "stages", "associated", "with", "it", "the", "deployment", "will", "be", "removed", "as", "we...
e8541fd6e744ab0df786c0f76102e41631f45d46
https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/states/boto_apigateway.py#L1097-L1128
train