import * as $dara from '@darabonba/typescript'; export declare class CreateBackendRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * @example * key */ key?: string; /** * @remarks * The value of the tag. * * @example * 123 */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateBackendRequest extends $dara.Model { /** * @remarks * The name of the backend service. * * This parameter is required. * * @example * testBackendService */ backendName?: string; /** * @remarks * The type of the backend service. * * This parameter is required. * * @example * HTTP */ backendType?: string; /** * @remarks * Specifies to create a EventBridge service-linked role. * * @example * true */ createEventBridgeServiceLinkedRole?: boolean; /** * @remarks * Specifies to create a service-linked role. * * @example * true */ createSlr?: boolean; /** * @remarks * The description. * * @example * release data api 411055691504981 */ description?: string; securityToken?: string; /** * @remarks * The tag of objects that match the rule. You can specify multiple tags. */ tag?: CreateBackendRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }