GenericSecret
No description
type GenericSecret implements BaseFields, SecretInterface {
companyId: ID!
createdAt: ISO8601DateTime!
description: String
id: ID!
key: String!
name: String!
type: SecretTypeEnum!
updatedAt: ISO8601DateTime!
value: String!
}
Fields
GenericSecret.companyId
● ID!
non-null scalar
The company ID that the secret belongs to.
GenericSecret.createdAt
● ISO8601DateTime!
non-null scalar
The date when record was created
GenericSecret.description
● String
scalar
An optional description providing details about the secret.
GenericSecret.id
● ID!
non-null scalar
The ID scalar type represents a unique identifier
GenericSecret.key
● String!
non-null scalar
The key or name of the generic secret used for authentication.
GenericSecret.name
● String!
non-null scalar
The name of the secret.
GenericSecret.type
● SecretTypeEnum!
non-null enum
The type of secret, defining the authentication mechanism (e.g., BASIC_AUTH, BEARER_TOKEN).
GenericSecret.updatedAt
● ISO8601DateTime!
non-null scalar
The date when record was updated
GenericSecret.value
● String!
non-null scalar
The value associated with the generic secret key used for authentication.