Home
last modified time | relevance | path

Searched refs:AppAssertionCredentials (Results 1 – 10 of 10) sorted by relevance

/external/python/oauth2client/tests/contrib/
Dtest_gce.py41 credentials = gce.AppAssertionCredentials()
51 credentials = gce.AppAssertionCredentials(scopes=scopes)
57 credentials = gce.AppAssertionCredentials()
63 gce.AppAssertionCredentials.from_json({})
73 credentials = gce.AppAssertionCredentials()
95 credentials = gce.AppAssertionCredentials()
102 credentials = gce.AppAssertionCredentials()
107 credentials = gce.AppAssertionCredentials()
111 credentials = gce.AppAssertionCredentials([])
120 credentials = gce.AppAssertionCredentials()
[all …]
Dtest_appengine.py141 credentials = appengine.AppAssertionCredentials(scope)
157 credentials = appengine.AppAssertionCredentials(scope)
170 credentials = appengine.AppAssertionCredentials(scope)
185 credentials = appengine.AppAssertionCredentials(
196 credentials = appengine.AppAssertionCredentials([])
200 credentials = appengine.AppAssertionCredentials(['dummy_scope'])
204 credentials = appengine.AppAssertionCredentials([])
208 new_credentials, appengine.AppAssertionCredentials)
219 credentials = appengine.AppAssertionCredentials([])
233 credentials = appengine.AppAssertionCredentials([])
[all …]
/external/python/oauth2client/scripts/
Drun_gce_system_tests.py24 from oauth2client.contrib.gce import AppAssertionCredentials
31 self.assertIsInstance(default_creds, AppAssertionCredentials)
34 credentials = AppAssertionCredentials([])
/external/python/google-api-python-client/samples/storage_serviceaccount_appengine/
Dmain.py48 from oauth2client.contrib.appengine import AppAssertionCredentials
55 credentials = AppAssertionCredentials(
/external/python/oauth2client/oauth2client/contrib/
Dgce.py41 class AppAssertionCredentials(client.AssertionCredentials): class
73 super(AppAssertionCredentials, self).__init__(None, *args, **kwargs)
Dappengine.py121 class AppAssertionCredentials(client.AssertionCredentials): class
153 super(AppAssertionCredentials, self).__init__(None)
158 return AppAssertionCredentials(data['scope'])
192 return AppAssertionCredentials(scopes, **self._kwargs)
/external/python/oauth2client/oauth2client/
Dclient.py1450 from oauth2client.contrib.appengine import AppAssertionCredentials
1452 return AppAssertionCredentials([])
1456 from oauth2client.contrib.gce import AppAssertionCredentials
1458 return AppAssertionCredentials()
/external/python/apitools/apitools/base/py/
Dcredentials_lib.py230 class GceAssertionCredentials(gce.AppAssertionCredentials):
/external/python/oauth2client/
DCHANGELOG.md43 * Making scopes optional on Google Compute Engine `AppAssertionCredentials`
/external/python/oauth2client/tests/
Dtest_client.py2274 gae_mod.AppAssertionCredentials = creds_kls = mock.Mock()
2287 gce_mod.AppAssertionCredentials = creds_kls = mock.Mock()