import * as $dara from '@darabonba/typescript'; export declare class UpdateSAMLProviderRequest extends $dara.Model { /** * @remarks * The signature algorithm supported by the Alibaba Cloud service provider (SP). Valid values: * * - rsa-sha256 * * - rsa-sha1 * * @example * rsa-sha1 */ authnSignAlgo?: string; /** * @remarks * The new description. * * > Specify at least one of the `NewDescription` and `NewEncodedSAMLMetadataDocument` parameters. * * @example * This is a new provider. */ newDescription?: string; /** * @remarks * The new metadata file. * * > Specify at least one of the `NewDescription` and `NewEncodedSAMLMetadataDocument` parameters. * * @example * PD94bWwgdmVy**** */ newEncodedSAMLMetadataDocument?: string; /** * @remarks * The name of the identity provider to modify. * * This parameter is required. * * @example * test-provider */ SAMLProviderName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }