Home
last modified time | relevance | path

Searched refs:trust_id (Results 1 – 25 of 78) sorted by relevance

1234

/dports/devel/py-castellan/castellan-3.10.0/castellan/tests/unit/credentials/
H A Dtest_keystone_token.py29 trust_id=self.trust_id,
100 trust_id=self.trust_id,
122 trust_id=self.trust_id,
139 trust_id=other_trust_id,
156 trust_id=self.trust_id,
173 trust_id=self.trust_id,
190 trust_id=self.trust_id,
207 trust_id=self.trust_id,
224 trust_id=self.trust_id,
241 trust_id=self.trust_id,
[all …]
H A Dtest_keystone_password.py33 trust_id=self.trust_id,
128 trust_id=self.trust_id,
154 trust_id=self.trust_id,
175 trust_id=self.trust_id,
196 trust_id=self.trust_id,
217 trust_id=self.trust_id,
238 trust_id=self.trust_id,
280 trust_id=self.trust_id,
301 trust_id=self.trust_id,
322 trust_id=self.trust_id,
[all …]
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/identity/
H A Dv2.py38 trust_id=None, argument
45 self.trust_id = trust_id
58 if self.trust_id:
59 params['auth']['trust_id'] = self.trust_id
88 return self.tenant_id or self.tenant_name or self.trust_id
146 'trust_id': self.trust_id}
175 'trust_id': self.trust_id}
/dports/net/py-python-openstackclient/python-openstackclient-5.2.1/openstackclient/tests/unit/identity/v3/
H A Dtest_trust.py113 identity_fakes.trust_id,
141 identity_fakes.trust_id,
144 ('trust', [identity_fakes.trust_id])
151 identity_fakes.trust_id,
160 identity_fakes.trust_id,
180 identity_fakes.trust_id)
215 identity_fakes.trust_id,
241 identity_fakes.trust_id,
244 ('trust', identity_fakes.trust_id),
253 self.trusts_mock.get.assert_called_with(identity_fakes.trust_id)
[all …]
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/tests/unit/
H A Dtest_fixtures.py37 self.assertIsNone(token.trust_id)
51 self.assertIsNone(token.trust_id)
54 trust_id = uuid.uuid4().hex
57 token = fixture.V2Token(trust_id=trust_id,
61 self.assertEqual(trust_id, token.trust_id)
62 self.assertEqual(trust_id, trust['id'])
186 trust_id = uuid.uuid4().hex
191 token = fixture.V3Token(trust_id=trust_id,
197 self.assertEqual(trust_id, token.trust_id)
198 self.assertEqual(trust_id, trust['id'])
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/tests/unit/auth/
H A Dtest_conf.py45 trust_id = uuid.uuid4().hex
57 trust_id=trust_id,
65 self.assertEqual(trust_id, a.trust_id)
71 trust_id = uuid.uuid4().hex
83 trust_id=trust_id,
91 self.assertEqual(trust_id, a.trust_id)
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/auth/identity/v3/
H A Dbase.py50 trust_id=None, argument
61 self._trust_id = trust_id
71 def trust_id(self): member in BaseAuth
75 @trust_id.setter
76 def trust_id(self, value): member in BaseAuth
154 bool(self.trust_id),
176 elif self.trust_id:
177 body['auth']['scope'] = {'OS-TRUST:trust': {'id': self.trust_id}}
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/identity/v3/
H A Dbase.py48 trust_id=None, argument
60 self.trust_id = trust_id
84 self.trust_id or self.system_scope)
139 bool(self.trust_id),
162 elif self.trust_id:
163 body['auth']['scope'] = {'OS-TRUST:trust': {'id': self.trust_id}}
213 'trust_id': self.trust_id}
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/tests/unit/loading/
H A Dtest_conf.py45 trust_id = uuid.uuid4().hex
59 trust_id=trust_id,
69 self.assertEqual(trust_id, a.trust_id)
76 trust_id = uuid.uuid4().hex
90 trust_id=trust_id,
99 self.assertEqual(trust_id, a.trust_id)
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/auth/identity/
H A Dv2.py52 trust_id=None, argument
59 self._trust_id = trust_id
64 def trust_id(self): member in Auth
68 @trust_id.setter
69 def trust_id(self, value): member in Auth
82 if self.trust_id:
83 params['auth']['trust_id'] = self.trust_id
H A Dbase.py46 trust_id=None, argument
66 self._trust_id = trust_id
141 def trust_id(self): member in BaseIdentityPlugin
152 @trust_id.setter
153 def trust_id(self, value): member in BaseIdentityPlugin
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/tests/unit/
H A Dtest_fixtures.py36 self.assertIsNone(token.trust_id)
50 self.assertIsNone(token.trust_id)
53 trust_id = uuid.uuid4().hex
56 token = fixture.V2Token(trust_id=trust_id,
60 self.assertEqual(trust_id, token.trust_id)
61 self.assertEqual(trust_id, trust['id'])
229 trust_id = uuid.uuid4().hex
234 token = fixture.V3Token(trust_id=trust_id,
240 self.assertEqual(trust_id, token.trust_id)
241 self.assertEqual(trust_id, trust['id'])
/dports/devel/py-keystonemiddleware/keystonemiddleware-9.3.0/keystonemiddleware/tests/unit/auth_token/
H A Dtest_user_auth_plugin.py48 trust_id = token.trust_id
50 trust_id = None
51 self.assertEqual(trust_id, token_data.trust_id)
157 self.assertEqual(token.trust_id, plugin.user.trust_id)
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/
H A Dhttpclient.py250 trust_id=None, session=None, service_name=None, argument
271 self.trust_id = None
295 self.trust_id = self.auth_ref.trust_id
347 if trust_id:
348 self.trust_id = trust_id
494 project_domain_name=None, trust_id=None, argument
554 trust_id = trust_id or self.trust_id
576 'trust_id': trust_id,
707 trust_id=None): argument
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/auth/identity/generic/
H A Dbase.py62 trust_id=None): argument
71 self._trust_id = trust_id
76 def trust_id(self): member in BaseGenericPlugin
80 @trust_id.setter
81 def trust_id(self, value): member in BaseGenericPlugin
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/fixture/
H A Dv2.py46 user_name=None, trust_id=None, trustee_user_id=None, argument
75 if trust_id or trustee_user_id:
78 self.set_trust(id=trust_id,
173 def trust_id(self): member in Token
176 @trust_id.setter
177 def trust_id(self, value): member in Token
248 self.trust_id = id or uuid.uuid4().hex
H A Dv3.py63 trust_id=None, trust_impersonation=None, trustee_user_id=None, argument
110 if (trust_id or (trust_impersonation is not None) or
112 self.set_trust_scope(id=trust_id,
283 def trust_id(self): member in Token
286 @trust_id.setter
287 def trust_id(self, value): member in Token
466 self.trust_id = id or uuid.uuid4().hex
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/tests/unit/access/
H A Dtest_v2_access.py190 trust_id = uuid.uuid4().hex
192 token = fixture.V2Token(user_id=user_id, trust_id=trust_id)
199 self.assertEqual(trust_id, auth_ref.trust_id)
202 self.assertEqual(trust_id, token['access']['trust']['id'])
/dports/devel/py-castellan/castellan-3.10.0/castellan/common/
H A Dutils.py140 trust_id=conf.key_manager.trust_id,
160 trust_id=conf.key_manager.trust_id,
/dports/devel/py-castellan/castellan-3.10.0/castellan/common/credentials/
H A Dkeystone_token.py26 def __init__(self, token, auth_url=None, trust_id=None, domain_id=None, argument
47 self._trust_id = trust_id
64 def trust_id(self): member in KeystoneToken
H A Dkeystone_password.py27 user_domain_id=None, user_domain_name=None, trust_id=None, argument
54 self._trust_id = trust_id
87 def trust_id(self): member in KeystonePassword
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/tests/unit/v2_0/
H A Dtest_access.py171 trust_id = uuid.uuid4().hex
173 token = fixture.V2Token(user_id=user_id, trust_id=trust_id)
179 self.assertEqual(trust_id, auth_ref.trust_id)
182 self.assertEqual(trust_id, token['access']['trust']['id'])
/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/tests/unit/identity/
H A Dtest_identity_v2.py188 password=self.TEST_PASS, trust_id='trust')
311 trust_id = uuid.uuid4().hex
316 trust_id=trust_id)
321 trust_id=trust_id)
331 tenant_id=trust_id) # same value different param
/dports/devel/py-glance-store/glance_store-2.7.0/glance_store/_drivers/swift/
H A Dconnection_manager.py194 if self._client and self.client.trust_id:
196 LOG.info(_LI("Revoking trust %s"), self.client.trust_id)
197 self.client.trusts.delete(self.client.trust_id)
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/v3/contrib/
H A Dtrusts.py98 return super(TrustManager, self).get(trust_id=base.getid(trust))
102 return super(TrustManager, self).delete(trust_id=base.getid(trust))

1234