import type { MetaData } from './meta-data.js'; import type { GoogleDriveConfigurationStruct } from './google-drive-configuration-struct.js'; /** * Representation of the 'GoogleDrivePipelineCreateRequest' schema. */ export type GoogleDrivePipelineCreateRequest = { type: 'GoogleDrive'; metadata?: MetaData; configuration: GoogleDriveConfigurationStruct; } & Record; //# sourceMappingURL=google-drive-pipeline-create-request.d.ts.map