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.
1.16.16
flytekit.clients.auth.keyring
Directory
Classes
| Class | Description |
|---|---|
Credentials |
Stores the credentials together. |
KeyringStore |
Methods to access Keyring Store. |
flytekit.clients.auth.keyring.Credentials
Stores the credentials together
Parameters
class Credentials(
access_token: str,
refresh_token: typing.Optional[str],
for_endpoint: str,
expires_in: typing.Optional[int],
id_token: typing.Optional[str],
)| Parameter | Type | Description |
|---|---|---|
access_token |
str |
|
refresh_token |
typing.Optional[str] |
|
for_endpoint |
str |
|
expires_in |
typing.Optional[int] |
|
id_token |
typing.Optional[str] |
flytekit.clients.auth.keyring.KeyringStore
Methods to access Keyring Store.
Methods
| Method | Description |
|---|---|
delete() |
|
retrieve() |
|
store() |
delete()
def delete(
for_endpoint: str,
)| Parameter | Type | Description |
|---|---|---|
for_endpoint |
str |
retrieve()
def retrieve(
for_endpoint: str,
) -> typing.Optional[flytekit.clients.auth.keyring.Credentials]| Parameter | Type | Description |
|---|---|---|
for_endpoint |
str |
store()
def store(
credentials: flytekit.clients.auth.keyring.Credentials,
) -> flytekit.clients.auth.keyring.Credentials| Parameter | Type | Description |
|---|---|---|
credentials |
flytekit.clients.auth.keyring.Credentials |