import * as $dara from '@darabonba/typescript'; export declare class CreateSignatureRequest extends $dara.Model { securityToken?: string; /** * @remarks * The Key value of the key. The value must be 6 to 20 characters in length and can contain letters, digits, and underscores (_). It must start with a letter. * * This parameter is required. * * @example * qwertyuiop */ signatureKey?: string; /** * @remarks * The displayed name of the key. The name must be 4 to 50 characters in length and can contain letters, digits, and underscores (_). It must start with a letter. * * This parameter is required. * * @example * backendsignature */ signatureName?: string; /** * @remarks * The Secret value of the key. The value must be 6 to 30 characters in length and can contain letters, digits, and special characters. Special characters include underscores (_), at signs (@), number signs (#), exclamation points (!), and asterisks (\\*). The value must start with a letter. * * This parameter is required. * * @example * asdfghjkl */ signatureSecret?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }