Secrets Type¶
SecretsInfo¶
Attributes:
id: GenericIDUnique identifier for the secret.key: strKey name of the secret.tags: Optional[List[TagsObj]]List of tags associated with the secret.value_length: intLength of the secret value.created_at: datetimeDate and time when the secret was created.updated_at: datetimeDate and time when the secret was last updated.
SecretsCreate¶
Attributes:
key: strKey name for the new secret.value: strValue 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: strKey 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.