GoodMem
ReferenceClient SDKsPython SDKModels

SecretReference Model

SecretReference Model documentation for Python SDK

Properties

NameTypeDescriptionNotes
uristrURI identifying where the secret can be resolved (e.g., vault://, env://)[optional]
hintsDict[str, str]Optional metadata to help resolvers decode the secret (e.g., {"encoding":"base64"})[optional]

Example

from goodmem_client.models.secret_reference import SecretReference

# TODO update the JSON string below
json = "{}"
# create an instance of SecretReference from a JSON string
secret_reference_instance = SecretReference.from_json(json)
# print the JSON string representation of the object
print(SecretReference.to_json())

# convert the object into a dict
secret_reference_dict = secret_reference_instance.to_dict()
# create an instance of SecretReference from a dict
secret_reference_from_dict = SecretReference.from_dict(secret_reference_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page