SecretInterface
No description
interface SecretInterface implements BaseFields {
companyId: ID!
createdAt: ISO8601DateTime!
description: String
id: ID!
name: String!
type: SecretTypeEnum!
updatedAt: ISO8601DateTime!
}
Fields
SecretInterface.companyId ● ID! non-null scalar
The company ID that the secret belongs to.
SecretInterface.createdAt ● ISO8601DateTime! non-null scalar
The date when record was created
SecretInterface.description ● String scalar
An optional description providing details about the secret.
SecretInterface.id ● ID! non-null scalar
The ID scalar type represents a unique identifier
SecretInterface.name ● String! non-null scalar
The name of the secret.
SecretInterface.type ● SecretTypeEnum! non-null enum
The type of secret, defining the authentication mechanism (e.g., BASIC_AUTH, BEARER_TOKEN).
SecretInterface.updatedAt ● ISO8601DateTime! non-null scalar
The date when record was updated
Interfaces
BaseFields interface
Returned By
secret query
Member Of
ConvisoDastConfiguration object ● CreateOrUpdateSecretPayload object ● Project object ● SecretInterfaceCollection object
Implemented By
BasicAuthSecret object ● BearerTokenSecret object ● CookieSecret object ● GenericSecret object ● HeaderSecret object ● QueryParamSecret object