Secrets Type

SecretsInfo

Attributes:

Unique identifier for the secret.
key: str
Key name of the secret.
tags: Optional[List[TagsObj]]
List of tags associated with the secret.
value_length: int
Length of the secret value.
created_at: datetime
Date and time when the secret was created.
updated_at: datetime
Date and time when the secret was last updated.

SecretsCreate

Attributes:

key: str
Key name for the new secret.
value: str
Value of the secret.
tags: Optional[List[TagsObj]]
List of tags to associate with the secret.

SecretsEdit

Attributes:

value: Optional[str]
New value for the secret.
tags: Optional[List[TagsObj]]
Updated list of tags for the secret.

SecretsFilter

Attributes:

key: str
Key name to filter secrets by.
tags: Optional[List[TagsObj]]
Tags to filter secrets by.

SecretsQuery(Query)

Attributes:

fields: Optional[List[Literal[“id”, “key”, “tags”, “created_at”, “updated_at”]]]
List of fields to include in the query results.
filter: Optional[SecretsFilter]
Filter criteria for the query.