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.
0.2.2
flyteplugins.union.remote
Union remote control plane objects.
This module provides remote object classes for Union-specific control plane entities, following the same pattern as flyte.remote objects.
Example: from flyteplugins.union.remote import ApiKey
# List all API keys
keys = ApiKey.listall()
for key in keys:
print(key.client_id)
# Create a new API key
api_key = ApiKey.create(name="my-ci-key")
print(api_key.client_secret)
# Get a specific API key
key = ApiKey.get(client_id="my-client-id")
# Delete an API key
ApiKey.delete(client_id="my-client-id")
Directory
Classes
| Class | Description |
|---|---|
ApiKey |
Represents a Union API Key (OAuth Application). |
Assignment |
Represents role/policy assignments for an identity. |
Cluster |
Represents a Union cluster. |
Member |
Represents a Union organization member (user or application). |
Policy |
Represents a Union RBAC Policy. |
Role |
Represents a Union RBAC Role. |
User |
Represents a Union user. |