The page you navigated to () does not exist, so we brought you to the closest page to it.
You have switched from the to the variant of this site. There is no equivalent of . We have taken you to the closest page in the variant.
Member
Package: flyteplugins.union.remote
Represents a Union organization member (user or application).
Parameters
class Member(
pb2: EnrichedIdentity,
)| Parameter | Type | Description |
|---|---|---|
pb2 |
EnrichedIdentity |
Properties
| Property | Type | Description |
|---|---|---|
identity_type |
None |
|
is_application |
None |
|
is_user |
None |
|
name |
None |
|
subject |
None |
Methods
| Method | Description |
|---|---|
listall() |
List all members in the organization. |
to_dict() |
Convert the object to a JSON-serializable dictionary. |
to_json() |
Convert the object to a JSON string. |
listall()
Default invocation is sync and will block.
To call it asynchronously, use the function .aio() on the method name itself, e.g.,:
result = await Member.listall.aio().
def listall(
cls,
) -> AsyncIterator[Member]List all members in the organization.
| Parameter | Type | Description |
|---|---|---|
cls |
to_dict()
def to_dict()Convert the object to a JSON-serializable dictionary.
Returns: dict: A dictionary representation of the object.
to_json()
def to_json()Convert the object to a JSON string.
Returns: str: A JSON string representation of the object.