Skip to main content

CookieSecret

No description

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

Fields

CookieSecret.createdAt ● ISO8601DateTime! non-null scalar

The date when record was created

CookieSecret.description ● String scalar

An optional description providing details about the secret.

CookieSecret.id ● ID! non-null scalar

The ID scalar type represents a unique identifier

CookieSecret.key ● String! non-null scalar

The key or name of the cookie used for authentication.

CookieSecret.name ● String! non-null scalar

The name of the secret.

CookieSecret.type ● SecretTypeEnum! non-null enum

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

CookieSecret.updatedAt ● ISO8601DateTime! non-null scalar

The date when record was updated

CookieSecret.value ● String! non-null scalar

The value associated with the cookie key used for authentication.

Interfaces

BaseFields interface

SecretInterface interface