Skip to main content

HeaderSecret

No description

type HeaderSecret implements BaseFields, SecretInterface {
createdAt: ISO8601DateTime!
description: String
id: ID!
key: String!
name: String!
type: SecretTypeEnum!
updatedAt: ISO8601DateTime!
value: String!
}

Fields

HeaderSecret.createdAt ● ISO8601DateTime! non-null scalar

The date when record was created

HeaderSecret.description ● String scalar

An optional description providing details about the secret.

HeaderSecret.id ● ID! non-null scalar

The ID scalar type represents a unique identifier

HeaderSecret.key ● String! non-null scalar

The key or name of the header used for authentication.

HeaderSecret.name ● String! non-null scalar

The name of the secret.

HeaderSecret.type ● SecretTypeEnum! non-null enum

The type of secret, defining the authentication mechanism (e.g., BASIC_AUTH, BEARER_TOKEN).

HeaderSecret.updatedAt ● ISO8601DateTime! non-null scalar

The date when record was updated

HeaderSecret.value ● String! non-null scalar

The value associated with the header key used for authentication.

Interfaces

BaseFields interface

SecretInterface interface