@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
24 lines • 816 B
TypeScript
/** Docker registry Put OIDC Configuration */
export interface OIDCPut {
/** 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 Endpoint */
endpoint?: string;
/** The OIDC Configuration GroupsClaim */
groupsClaim?: string;
/** The OIDC Configuration Name */
name?: string;
/** The OIDC Configuration comma-separated list of Scopes */
scope?: string;
/** The OIDC Configuration UserClaim */
userClaim?: string;
/** The OIDC Configuration VerifyCert */
verifyCert?: boolean;
}
//# sourceMappingURL=OIDCPut.d.ts.map