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