EndpointAuthentication Type
EndpointAuthentication Type documentation for Python SDK
Structured credential payload describing how GoodMem should authenticate with an upstream provider.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| kind | CredentialKind | ||
| api_key | ApiKeyAuth | [optional] | |
| gcp_adc | GcpAdcAuth | [optional] | |
| labels | Dict[str, str] | Optional annotations to aid operators (e.g., "owner=vertex") | [optional] |
Example
from goodmem_client.models.endpoint_authentication import EndpointAuthentication
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointAuthentication from a JSON string
endpoint_authentication_instance = EndpointAuthentication.from_json(json)
# print the JSON string representation of the object
print(EndpointAuthentication.to_json())
# convert the object into a dict
endpoint_authentication_dict = endpoint_authentication_instance.to_dict()
# create an instance of EndpointAuthentication from a dict
endpoint_authentication_from_dict = EndpointAuthentication.from_dict(endpoint_authentication_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK