Repository URL to install this package:
Version:
4.0.115 ▾
|
contego
/
home
/
tvault
/
.virtenv
/
lib
/
python2.7
/
site-packages
/
keystoneclient
/
auth
/
conf.pyc
|
---|
ó ӍEYc @ s d d l m Z d d l m Z d d l m Z e j d d d Z d Z e j d d e Z e j d d d d d d d Z e j d d d d d d d Z e j d d d d d d d Z e j d d d d d d d Z d S( iÿÿÿÿ( t removals( t cfg( t baset auth_plugint helps Name of the plugin to loads9 Config Section from which to load plugin specific optionst auth_sectiont messages= keystoneclient auth plugins are deprecated. Use keystoneauth.t versions 2.1.0t removal_versions 3.0.0c C s t t g S( s Get the oslo_config options common for all auth plugins. These may be useful without being registered for config file generation or to manipulate the options before registering them yourself. The options that are set are: :auth_plugin: The name of the plugin to load. :auth_section: The config file section to load options from. :returns: A list of oslo_config options. ( t _AUTH_PLUGIN_OPTt _AUTH_SECTION_OPT( ( ( sM /home/tvault/.virtenv/lib/python2.7/site-packages/keystoneclient/auth/conf.pyt get_common_conf_options s c C s t j | j S( sÍ Get the oslo_config options for a specific plugin. This will be the list of config options that is registered and loaded by the specified plugin. :returns: A list of oslo_config options. ( R t get_plugin_classt get_options( t name( ( sM /home/tvault/.virtenv/lib/python2.7/site-packages/keystoneclient/auth/conf.pyt get_plugin_options, s c C sG | j t d | | | j r0 | | j } n | j t d | d S( sÑ Register the oslo_config options that are needed for a plugin. This only registers the basic options shared by all plugins. Options that are specific to a plugin are loaded just before they are read. The defined options are: - auth_plugin: the name of the auth plugin that will be used for authentication. - auth_section: the group from which further auth plugin options should be taken. If section is not provided then the auth plugin options will be taken from the same group as provided in the parameters. :param conf: config object to register with. :type conf: oslo_config.cfg.ConfigOpts :param string group: The ini group to register options in. t groupN( t register_optR R R ( t confR ( ( sM /home/tvault/.virtenv/lib/python2.7/site-packages/keystoneclient/auth/conf.pyt register_conf_options<