Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
Dtest_gce.py31 from oauth2client.gce import AppAssertionCredentials
42 c = AppAssertionCredentials(scope=['http://example.com/a',
57 c = AppAssertionCredentials(scope=['http://example.com/a',
62 c = AppAssertionCredentials(scope=['http://example.com/a',
70 credentials = AppAssertionCredentials([])
74 credentials = AppAssertionCredentials(['dummy_scope'])
78 credentials = AppAssertionCredentials([])
81 self.assertTrue(isinstance(new_credentials, AppAssertionCredentials))
90 credentials = AppAssertionCredentials(['dummy_scope'])
104 credentials = AppAssertionCredentials([])
Dtest_appengine.py53 from oauth2client.appengine import AppAssertionCredentials
162 credentials = AppAssertionCredentials(scope)
177 credentials = AppAssertionCredentials(scope)
189 credentials = AppAssertionCredentials(scope)
204 credentials = AppAssertionCredentials(
215 credentials = AppAssertionCredentials([])
219 credentials = AppAssertionCredentials(['dummy_scope'])
223 credentials = AppAssertionCredentials([])
226 self.assertTrue(isinstance(new_credentials, AppAssertionCredentials))
237 credentials = AppAssertionCredentials(['dummy_scope'])
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
Dgce.py37 class AppAssertionCredentials(AssertionCredentials): class
62 super(AppAssertionCredentials, self).__init__(None)
67 return AppAssertionCredentials(data['scope'])
105 return AppAssertionCredentials(scopes, **self.kwargs)
Dappengine.py141 class AppAssertionCredentials(AssertionCredentials): class
170 super(AppAssertionCredentials, self).__init__(None)
175 return AppAssertionCredentials(data['scope'])
207 return AppAssertionCredentials(scopes, **self._kwargs)
Dclient.py1376 from oauth2client.appengine import AppAssertionCredentials
1378 return AppAssertionCredentials([])
1382 from oauth2client.gce import AppAssertionCredentials
1384 return AppAssertionCredentials([])
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
Dcredentials_lib.py161 class GceAssertionCredentials(oauth2client.gce.AppAssertionCredentials):