import * as $dara from '@darabonba/typescript'; export declare class RemoveClientIdFromOIDCProviderRequest extends $dara.Model { /** * @remarks * The client ID that you want to remove. * * The client ID can contain letters, digits, and special characters and cannot start with the special characters. The special characters are `periods, (.), hyphens (-), underscores (_), colons (:), and forward slashes (/)`.\\`\\` * * The client ID can be up to 128 characters in length. * * @example * 498469743454717**** */ clientId?: string; /** * @remarks * The name of the OIDC IdP. * * @example * TestOIDCProvider */ OIDCProviderName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }