UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

33 lines 1.15 kB
import { OIDCStatusEnum } from './OIDCStatusEnum'; /** Docker registry OIDC Configuration */ export interface OIDCConfiguration { /** The OIDC Configuration AdminGroup */ adminGroup?: string; /** The OIDC Configuration AutoOnboard */ autoOnboard?: boolean; /** The OIDC Configuration ClientID */ clientId: string; /** The OIDC Configuration Client Secret */ clientSecret?: string; /** The OIDC Configuration creation date */ createdAt: string; /** The OIDC Configuration Endpoint */ endpoint: string; /** The OIDC Configuration GroupsClaim */ groupsClaim?: string; /** The OIDC Configuration ID */ id: string; /** The OIDC Configuration Name */ name: string; /** The OIDC Configuration comma-separated list of Scopes */ scope: string; /** The OIDC Configuration status */ status: OIDCStatusEnum; /** The OIDC Configuration last update date */ updatedAt?: string; /** The OIDC Configuration UserClaim */ userClaim?: string; /** The OIDC Configuration VerifyCert */ verifyCert?: boolean; } //# sourceMappingURL=OIDCConfiguration.d.ts.map