import type { GoogleDriveConfig } from './google-drive-config.js'; /** * Representation of the 'GoogleDriveConfigurationStruct' schema. */ export type GoogleDriveConfigurationStruct = { /** * @example "destination-name" */ destination: string; googleDrive: GoogleDriveConfig; /** * Optional cron expression for scheduling pipeline execution. * Must represent an interval greater than 1 hour. * * @example "0 \*\/20 * * *" */ cronExpression?: string; /** * @example "uuid" */ metadataConfigId?: string; } & Record; //# sourceMappingURL=google-drive-configuration-struct.d.ts.map