We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a193944 commit 42a0398Copy full SHA for 42a0398
src/databricks/labs/pytester/fixtures/iam.py
@@ -240,6 +240,11 @@ def application_id(self) -> str:
240
assert self._service_principal.application_id is not None
241
return self._service_principal.application_id
242
243
+ @property
244
+ def id(self) -> str:
245
+ assert self._service_principal.id is not None
246
+ return self._service_principal.id
247
+
248
def __repr__(self):
249
return f'RunAs({self.display_name})'
250
0 commit comments