コード例 #1
0
ファイル: client.py プロジェクト: devcamcar/heat
 def make_auth_plugin(self, creds):
     """
     Returns an instantiated authentication plugin.
     """
     strategy = creds.get("strategy", "noauth")
     plugin = auth.get_plugin_from_strategy(strategy, creds)
     return plugin
コード例 #2
0
ファイル: client.py プロジェクト: kraman/heat
 def make_auth_plugin(self, creds):
     """
     Returns an instantiated authentication plugin.
     """
     strategy = creds.get('strategy', 'noauth')
     plugin = auth.get_plugin_from_strategy(strategy,
                                            creds, self.service_type)
     return plugin
コード例 #3
0
ファイル: client.py プロジェクト: jordant/heat
 def make_auth_plugin(self, creds):
     """
     Returns an instantiated authentication plugin.
     """
     strategy = creds.get('strategy', 'noauth')
     plugin = auth.get_plugin_from_strategy(strategy, creds,
                                            self.service_type)
     return plugin