omics.d.ts 169 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410
  1. import {Request} from '../lib/request';
  2. import {Response} from '../lib/response';
  3. import {AWSError} from '../lib/error';
  4. import {Service} from '../lib/service';
  5. import {WaiterConfiguration} from '../lib/service';
  6. import {ServiceConfigurationOptions} from '../lib/service';
  7. import {ConfigBase as Config} from '../lib/config-base';
  8. import {Readable} from 'stream';
  9. interface Blob {}
  10. declare class Omics extends Service {
  11. /**
  12. * Constructs a service object. This object has one method for each API operation.
  13. */
  14. constructor(options?: Omics.Types.ClientConfiguration)
  15. config: Config & Omics.Types.ClientConfiguration;
  16. /**
  17. * Stops a multipart upload.
  18. */
  19. abortMultipartReadSetUpload(params: Omics.Types.AbortMultipartReadSetUploadRequest, callback?: (err: AWSError, data: Omics.Types.AbortMultipartReadSetUploadResponse) => void): Request<Omics.Types.AbortMultipartReadSetUploadResponse, AWSError>;
  20. /**
  21. * Stops a multipart upload.
  22. */
  23. abortMultipartReadSetUpload(callback?: (err: AWSError, data: Omics.Types.AbortMultipartReadSetUploadResponse) => void): Request<Omics.Types.AbortMultipartReadSetUploadResponse, AWSError>;
  24. /**
  25. * Accept a resource share request.
  26. */
  27. acceptShare(params: Omics.Types.AcceptShareRequest, callback?: (err: AWSError, data: Omics.Types.AcceptShareResponse) => void): Request<Omics.Types.AcceptShareResponse, AWSError>;
  28. /**
  29. * Accept a resource share request.
  30. */
  31. acceptShare(callback?: (err: AWSError, data: Omics.Types.AcceptShareResponse) => void): Request<Omics.Types.AcceptShareResponse, AWSError>;
  32. /**
  33. * Deletes one or more read sets.
  34. */
  35. batchDeleteReadSet(params: Omics.Types.BatchDeleteReadSetRequest, callback?: (err: AWSError, data: Omics.Types.BatchDeleteReadSetResponse) => void): Request<Omics.Types.BatchDeleteReadSetResponse, AWSError>;
  36. /**
  37. * Deletes one or more read sets.
  38. */
  39. batchDeleteReadSet(callback?: (err: AWSError, data: Omics.Types.BatchDeleteReadSetResponse) => void): Request<Omics.Types.BatchDeleteReadSetResponse, AWSError>;
  40. /**
  41. * Cancels an annotation import job.
  42. */
  43. cancelAnnotationImportJob(params: Omics.Types.CancelAnnotationImportRequest, callback?: (err: AWSError, data: Omics.Types.CancelAnnotationImportResponse) => void): Request<Omics.Types.CancelAnnotationImportResponse, AWSError>;
  44. /**
  45. * Cancels an annotation import job.
  46. */
  47. cancelAnnotationImportJob(callback?: (err: AWSError, data: Omics.Types.CancelAnnotationImportResponse) => void): Request<Omics.Types.CancelAnnotationImportResponse, AWSError>;
  48. /**
  49. * Cancels a run.
  50. */
  51. cancelRun(params: Omics.Types.CancelRunRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  52. /**
  53. * Cancels a run.
  54. */
  55. cancelRun(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  56. /**
  57. * Cancels a variant import job.
  58. */
  59. cancelVariantImportJob(params: Omics.Types.CancelVariantImportRequest, callback?: (err: AWSError, data: Omics.Types.CancelVariantImportResponse) => void): Request<Omics.Types.CancelVariantImportResponse, AWSError>;
  60. /**
  61. * Cancels a variant import job.
  62. */
  63. cancelVariantImportJob(callback?: (err: AWSError, data: Omics.Types.CancelVariantImportResponse) => void): Request<Omics.Types.CancelVariantImportResponse, AWSError>;
  64. /**
  65. * Concludes a multipart upload once you have uploaded all the components.
  66. */
  67. completeMultipartReadSetUpload(params: Omics.Types.CompleteMultipartReadSetUploadRequest, callback?: (err: AWSError, data: Omics.Types.CompleteMultipartReadSetUploadResponse) => void): Request<Omics.Types.CompleteMultipartReadSetUploadResponse, AWSError>;
  68. /**
  69. * Concludes a multipart upload once you have uploaded all the components.
  70. */
  71. completeMultipartReadSetUpload(callback?: (err: AWSError, data: Omics.Types.CompleteMultipartReadSetUploadResponse) => void): Request<Omics.Types.CompleteMultipartReadSetUploadResponse, AWSError>;
  72. /**
  73. * Creates an annotation store.
  74. */
  75. createAnnotationStore(params: Omics.Types.CreateAnnotationStoreRequest, callback?: (err: AWSError, data: Omics.Types.CreateAnnotationStoreResponse) => void): Request<Omics.Types.CreateAnnotationStoreResponse, AWSError>;
  76. /**
  77. * Creates an annotation store.
  78. */
  79. createAnnotationStore(callback?: (err: AWSError, data: Omics.Types.CreateAnnotationStoreResponse) => void): Request<Omics.Types.CreateAnnotationStoreResponse, AWSError>;
  80. /**
  81. * Creates a new version of an annotation store.
  82. */
  83. createAnnotationStoreVersion(params: Omics.Types.CreateAnnotationStoreVersionRequest, callback?: (err: AWSError, data: Omics.Types.CreateAnnotationStoreVersionResponse) => void): Request<Omics.Types.CreateAnnotationStoreVersionResponse, AWSError>;
  84. /**
  85. * Creates a new version of an annotation store.
  86. */
  87. createAnnotationStoreVersion(callback?: (err: AWSError, data: Omics.Types.CreateAnnotationStoreVersionResponse) => void): Request<Omics.Types.CreateAnnotationStoreVersionResponse, AWSError>;
  88. /**
  89. * Begins a multipart read set upload.
  90. */
  91. createMultipartReadSetUpload(params: Omics.Types.CreateMultipartReadSetUploadRequest, callback?: (err: AWSError, data: Omics.Types.CreateMultipartReadSetUploadResponse) => void): Request<Omics.Types.CreateMultipartReadSetUploadResponse, AWSError>;
  92. /**
  93. * Begins a multipart read set upload.
  94. */
  95. createMultipartReadSetUpload(callback?: (err: AWSError, data: Omics.Types.CreateMultipartReadSetUploadResponse) => void): Request<Omics.Types.CreateMultipartReadSetUploadResponse, AWSError>;
  96. /**
  97. * Creates a reference store.
  98. */
  99. createReferenceStore(params: Omics.Types.CreateReferenceStoreRequest, callback?: (err: AWSError, data: Omics.Types.CreateReferenceStoreResponse) => void): Request<Omics.Types.CreateReferenceStoreResponse, AWSError>;
  100. /**
  101. * Creates a reference store.
  102. */
  103. createReferenceStore(callback?: (err: AWSError, data: Omics.Types.CreateReferenceStoreResponse) => void): Request<Omics.Types.CreateReferenceStoreResponse, AWSError>;
  104. /**
  105. * Creates a run group.
  106. */
  107. createRunGroup(params: Omics.Types.CreateRunGroupRequest, callback?: (err: AWSError, data: Omics.Types.CreateRunGroupResponse) => void): Request<Omics.Types.CreateRunGroupResponse, AWSError>;
  108. /**
  109. * Creates a run group.
  110. */
  111. createRunGroup(callback?: (err: AWSError, data: Omics.Types.CreateRunGroupResponse) => void): Request<Omics.Types.CreateRunGroupResponse, AWSError>;
  112. /**
  113. * Creates a sequence store.
  114. */
  115. createSequenceStore(params: Omics.Types.CreateSequenceStoreRequest, callback?: (err: AWSError, data: Omics.Types.CreateSequenceStoreResponse) => void): Request<Omics.Types.CreateSequenceStoreResponse, AWSError>;
  116. /**
  117. * Creates a sequence store.
  118. */
  119. createSequenceStore(callback?: (err: AWSError, data: Omics.Types.CreateSequenceStoreResponse) => void): Request<Omics.Types.CreateSequenceStoreResponse, AWSError>;
  120. /**
  121. * Creates a cross-account shared resource. The resource owner makes an offer to share the resource with the principal subscriber (an AWS user with a different account than the resource owner). The following resources support cross-account sharing: Healthomics variant stores Healthomics annotation stores Private workflows
  122. */
  123. createShare(params: Omics.Types.CreateShareRequest, callback?: (err: AWSError, data: Omics.Types.CreateShareResponse) => void): Request<Omics.Types.CreateShareResponse, AWSError>;
  124. /**
  125. * Creates a cross-account shared resource. The resource owner makes an offer to share the resource with the principal subscriber (an AWS user with a different account than the resource owner). The following resources support cross-account sharing: Healthomics variant stores Healthomics annotation stores Private workflows
  126. */
  127. createShare(callback?: (err: AWSError, data: Omics.Types.CreateShareResponse) => void): Request<Omics.Types.CreateShareResponse, AWSError>;
  128. /**
  129. * Creates a variant store.
  130. */
  131. createVariantStore(params: Omics.Types.CreateVariantStoreRequest, callback?: (err: AWSError, data: Omics.Types.CreateVariantStoreResponse) => void): Request<Omics.Types.CreateVariantStoreResponse, AWSError>;
  132. /**
  133. * Creates a variant store.
  134. */
  135. createVariantStore(callback?: (err: AWSError, data: Omics.Types.CreateVariantStoreResponse) => void): Request<Omics.Types.CreateVariantStoreResponse, AWSError>;
  136. /**
  137. * Creates a workflow.
  138. */
  139. createWorkflow(params: Omics.Types.CreateWorkflowRequest, callback?: (err: AWSError, data: Omics.Types.CreateWorkflowResponse) => void): Request<Omics.Types.CreateWorkflowResponse, AWSError>;
  140. /**
  141. * Creates a workflow.
  142. */
  143. createWorkflow(callback?: (err: AWSError, data: Omics.Types.CreateWorkflowResponse) => void): Request<Omics.Types.CreateWorkflowResponse, AWSError>;
  144. /**
  145. * Deletes an annotation store.
  146. */
  147. deleteAnnotationStore(params: Omics.Types.DeleteAnnotationStoreRequest, callback?: (err: AWSError, data: Omics.Types.DeleteAnnotationStoreResponse) => void): Request<Omics.Types.DeleteAnnotationStoreResponse, AWSError>;
  148. /**
  149. * Deletes an annotation store.
  150. */
  151. deleteAnnotationStore(callback?: (err: AWSError, data: Omics.Types.DeleteAnnotationStoreResponse) => void): Request<Omics.Types.DeleteAnnotationStoreResponse, AWSError>;
  152. /**
  153. * Deletes one or multiple versions of an annotation store.
  154. */
  155. deleteAnnotationStoreVersions(params: Omics.Types.DeleteAnnotationStoreVersionsRequest, callback?: (err: AWSError, data: Omics.Types.DeleteAnnotationStoreVersionsResponse) => void): Request<Omics.Types.DeleteAnnotationStoreVersionsResponse, AWSError>;
  156. /**
  157. * Deletes one or multiple versions of an annotation store.
  158. */
  159. deleteAnnotationStoreVersions(callback?: (err: AWSError, data: Omics.Types.DeleteAnnotationStoreVersionsResponse) => void): Request<Omics.Types.DeleteAnnotationStoreVersionsResponse, AWSError>;
  160. /**
  161. * Deletes a genome reference.
  162. */
  163. deleteReference(params: Omics.Types.DeleteReferenceRequest, callback?: (err: AWSError, data: Omics.Types.DeleteReferenceResponse) => void): Request<Omics.Types.DeleteReferenceResponse, AWSError>;
  164. /**
  165. * Deletes a genome reference.
  166. */
  167. deleteReference(callback?: (err: AWSError, data: Omics.Types.DeleteReferenceResponse) => void): Request<Omics.Types.DeleteReferenceResponse, AWSError>;
  168. /**
  169. * Deletes a genome reference store.
  170. */
  171. deleteReferenceStore(params: Omics.Types.DeleteReferenceStoreRequest, callback?: (err: AWSError, data: Omics.Types.DeleteReferenceStoreResponse) => void): Request<Omics.Types.DeleteReferenceStoreResponse, AWSError>;
  172. /**
  173. * Deletes a genome reference store.
  174. */
  175. deleteReferenceStore(callback?: (err: AWSError, data: Omics.Types.DeleteReferenceStoreResponse) => void): Request<Omics.Types.DeleteReferenceStoreResponse, AWSError>;
  176. /**
  177. * Deletes a workflow run.
  178. */
  179. deleteRun(params: Omics.Types.DeleteRunRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  180. /**
  181. * Deletes a workflow run.
  182. */
  183. deleteRun(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  184. /**
  185. * Deletes a workflow run group.
  186. */
  187. deleteRunGroup(params: Omics.Types.DeleteRunGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  188. /**
  189. * Deletes a workflow run group.
  190. */
  191. deleteRunGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  192. /**
  193. * Deletes a sequence store.
  194. */
  195. deleteSequenceStore(params: Omics.Types.DeleteSequenceStoreRequest, callback?: (err: AWSError, data: Omics.Types.DeleteSequenceStoreResponse) => void): Request<Omics.Types.DeleteSequenceStoreResponse, AWSError>;
  196. /**
  197. * Deletes a sequence store.
  198. */
  199. deleteSequenceStore(callback?: (err: AWSError, data: Omics.Types.DeleteSequenceStoreResponse) => void): Request<Omics.Types.DeleteSequenceStoreResponse, AWSError>;
  200. /**
  201. * Deletes a resource share. If you are the resource owner, the subscriber will no longer have access to the shared resource. If you are the subscriber, this operation deletes your access to the share.
  202. */
  203. deleteShare(params: Omics.Types.DeleteShareRequest, callback?: (err: AWSError, data: Omics.Types.DeleteShareResponse) => void): Request<Omics.Types.DeleteShareResponse, AWSError>;
  204. /**
  205. * Deletes a resource share. If you are the resource owner, the subscriber will no longer have access to the shared resource. If you are the subscriber, this operation deletes your access to the share.
  206. */
  207. deleteShare(callback?: (err: AWSError, data: Omics.Types.DeleteShareResponse) => void): Request<Omics.Types.DeleteShareResponse, AWSError>;
  208. /**
  209. * Deletes a variant store.
  210. */
  211. deleteVariantStore(params: Omics.Types.DeleteVariantStoreRequest, callback?: (err: AWSError, data: Omics.Types.DeleteVariantStoreResponse) => void): Request<Omics.Types.DeleteVariantStoreResponse, AWSError>;
  212. /**
  213. * Deletes a variant store.
  214. */
  215. deleteVariantStore(callback?: (err: AWSError, data: Omics.Types.DeleteVariantStoreResponse) => void): Request<Omics.Types.DeleteVariantStoreResponse, AWSError>;
  216. /**
  217. * Deletes a workflow.
  218. */
  219. deleteWorkflow(params: Omics.Types.DeleteWorkflowRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  220. /**
  221. * Deletes a workflow.
  222. */
  223. deleteWorkflow(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  224. /**
  225. * Gets information about an annotation import job.
  226. */
  227. getAnnotationImportJob(params: Omics.Types.GetAnnotationImportRequest, callback?: (err: AWSError, data: Omics.Types.GetAnnotationImportResponse) => void): Request<Omics.Types.GetAnnotationImportResponse, AWSError>;
  228. /**
  229. * Gets information about an annotation import job.
  230. */
  231. getAnnotationImportJob(callback?: (err: AWSError, data: Omics.Types.GetAnnotationImportResponse) => void): Request<Omics.Types.GetAnnotationImportResponse, AWSError>;
  232. /**
  233. * Gets information about an annotation store.
  234. */
  235. getAnnotationStore(params: Omics.Types.GetAnnotationStoreRequest, callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreResponse) => void): Request<Omics.Types.GetAnnotationStoreResponse, AWSError>;
  236. /**
  237. * Gets information about an annotation store.
  238. */
  239. getAnnotationStore(callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreResponse) => void): Request<Omics.Types.GetAnnotationStoreResponse, AWSError>;
  240. /**
  241. * Retrieves the metadata for an annotation store version.
  242. */
  243. getAnnotationStoreVersion(params: Omics.Types.GetAnnotationStoreVersionRequest, callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreVersionResponse) => void): Request<Omics.Types.GetAnnotationStoreVersionResponse, AWSError>;
  244. /**
  245. * Retrieves the metadata for an annotation store version.
  246. */
  247. getAnnotationStoreVersion(callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreVersionResponse) => void): Request<Omics.Types.GetAnnotationStoreVersionResponse, AWSError>;
  248. /**
  249. * Gets a file from a read set.
  250. */
  251. getReadSet(params: Omics.Types.GetReadSetRequest, callback?: (err: AWSError, data: Omics.Types.GetReadSetResponse) => void): Request<Omics.Types.GetReadSetResponse, AWSError>;
  252. /**
  253. * Gets a file from a read set.
  254. */
  255. getReadSet(callback?: (err: AWSError, data: Omics.Types.GetReadSetResponse) => void): Request<Omics.Types.GetReadSetResponse, AWSError>;
  256. /**
  257. * Gets information about a read set activation job.
  258. */
  259. getReadSetActivationJob(params: Omics.Types.GetReadSetActivationJobRequest, callback?: (err: AWSError, data: Omics.Types.GetReadSetActivationJobResponse) => void): Request<Omics.Types.GetReadSetActivationJobResponse, AWSError>;
  260. /**
  261. * Gets information about a read set activation job.
  262. */
  263. getReadSetActivationJob(callback?: (err: AWSError, data: Omics.Types.GetReadSetActivationJobResponse) => void): Request<Omics.Types.GetReadSetActivationJobResponse, AWSError>;
  264. /**
  265. * Gets information about a read set export job.
  266. */
  267. getReadSetExportJob(params: Omics.Types.GetReadSetExportJobRequest, callback?: (err: AWSError, data: Omics.Types.GetReadSetExportJobResponse) => void): Request<Omics.Types.GetReadSetExportJobResponse, AWSError>;
  268. /**
  269. * Gets information about a read set export job.
  270. */
  271. getReadSetExportJob(callback?: (err: AWSError, data: Omics.Types.GetReadSetExportJobResponse) => void): Request<Omics.Types.GetReadSetExportJobResponse, AWSError>;
  272. /**
  273. * Gets information about a read set import job.
  274. */
  275. getReadSetImportJob(params: Omics.Types.GetReadSetImportJobRequest, callback?: (err: AWSError, data: Omics.Types.GetReadSetImportJobResponse) => void): Request<Omics.Types.GetReadSetImportJobResponse, AWSError>;
  276. /**
  277. * Gets information about a read set import job.
  278. */
  279. getReadSetImportJob(callback?: (err: AWSError, data: Omics.Types.GetReadSetImportJobResponse) => void): Request<Omics.Types.GetReadSetImportJobResponse, AWSError>;
  280. /**
  281. * Gets details about a read set.
  282. */
  283. getReadSetMetadata(params: Omics.Types.GetReadSetMetadataRequest, callback?: (err: AWSError, data: Omics.Types.GetReadSetMetadataResponse) => void): Request<Omics.Types.GetReadSetMetadataResponse, AWSError>;
  284. /**
  285. * Gets details about a read set.
  286. */
  287. getReadSetMetadata(callback?: (err: AWSError, data: Omics.Types.GetReadSetMetadataResponse) => void): Request<Omics.Types.GetReadSetMetadataResponse, AWSError>;
  288. /**
  289. * Gets a reference file.
  290. */
  291. getReference(params: Omics.Types.GetReferenceRequest, callback?: (err: AWSError, data: Omics.Types.GetReferenceResponse) => void): Request<Omics.Types.GetReferenceResponse, AWSError>;
  292. /**
  293. * Gets a reference file.
  294. */
  295. getReference(callback?: (err: AWSError, data: Omics.Types.GetReferenceResponse) => void): Request<Omics.Types.GetReferenceResponse, AWSError>;
  296. /**
  297. * Gets information about a reference import job.
  298. */
  299. getReferenceImportJob(params: Omics.Types.GetReferenceImportJobRequest, callback?: (err: AWSError, data: Omics.Types.GetReferenceImportJobResponse) => void): Request<Omics.Types.GetReferenceImportJobResponse, AWSError>;
  300. /**
  301. * Gets information about a reference import job.
  302. */
  303. getReferenceImportJob(callback?: (err: AWSError, data: Omics.Types.GetReferenceImportJobResponse) => void): Request<Omics.Types.GetReferenceImportJobResponse, AWSError>;
  304. /**
  305. * Gets information about a genome reference's metadata.
  306. */
  307. getReferenceMetadata(params: Omics.Types.GetReferenceMetadataRequest, callback?: (err: AWSError, data: Omics.Types.GetReferenceMetadataResponse) => void): Request<Omics.Types.GetReferenceMetadataResponse, AWSError>;
  308. /**
  309. * Gets information about a genome reference's metadata.
  310. */
  311. getReferenceMetadata(callback?: (err: AWSError, data: Omics.Types.GetReferenceMetadataResponse) => void): Request<Omics.Types.GetReferenceMetadataResponse, AWSError>;
  312. /**
  313. * Gets information about a reference store.
  314. */
  315. getReferenceStore(params: Omics.Types.GetReferenceStoreRequest, callback?: (err: AWSError, data: Omics.Types.GetReferenceStoreResponse) => void): Request<Omics.Types.GetReferenceStoreResponse, AWSError>;
  316. /**
  317. * Gets information about a reference store.
  318. */
  319. getReferenceStore(callback?: (err: AWSError, data: Omics.Types.GetReferenceStoreResponse) => void): Request<Omics.Types.GetReferenceStoreResponse, AWSError>;
  320. /**
  321. * Gets information about a workflow run. If a workflow is shared with you, you cannot export information about the run.
  322. */
  323. getRun(params: Omics.Types.GetRunRequest, callback?: (err: AWSError, data: Omics.Types.GetRunResponse) => void): Request<Omics.Types.GetRunResponse, AWSError>;
  324. /**
  325. * Gets information about a workflow run. If a workflow is shared with you, you cannot export information about the run.
  326. */
  327. getRun(callback?: (err: AWSError, data: Omics.Types.GetRunResponse) => void): Request<Omics.Types.GetRunResponse, AWSError>;
  328. /**
  329. * Gets information about a workflow run group.
  330. */
  331. getRunGroup(params: Omics.Types.GetRunGroupRequest, callback?: (err: AWSError, data: Omics.Types.GetRunGroupResponse) => void): Request<Omics.Types.GetRunGroupResponse, AWSError>;
  332. /**
  333. * Gets information about a workflow run group.
  334. */
  335. getRunGroup(callback?: (err: AWSError, data: Omics.Types.GetRunGroupResponse) => void): Request<Omics.Types.GetRunGroupResponse, AWSError>;
  336. /**
  337. * Gets information about a workflow run task.
  338. */
  339. getRunTask(params: Omics.Types.GetRunTaskRequest, callback?: (err: AWSError, data: Omics.Types.GetRunTaskResponse) => void): Request<Omics.Types.GetRunTaskResponse, AWSError>;
  340. /**
  341. * Gets information about a workflow run task.
  342. */
  343. getRunTask(callback?: (err: AWSError, data: Omics.Types.GetRunTaskResponse) => void): Request<Omics.Types.GetRunTaskResponse, AWSError>;
  344. /**
  345. * Gets information about a sequence store.
  346. */
  347. getSequenceStore(params: Omics.Types.GetSequenceStoreRequest, callback?: (err: AWSError, data: Omics.Types.GetSequenceStoreResponse) => void): Request<Omics.Types.GetSequenceStoreResponse, AWSError>;
  348. /**
  349. * Gets information about a sequence store.
  350. */
  351. getSequenceStore(callback?: (err: AWSError, data: Omics.Types.GetSequenceStoreResponse) => void): Request<Omics.Types.GetSequenceStoreResponse, AWSError>;
  352. /**
  353. * Retrieves the metadata for the specified resource share.
  354. */
  355. getShare(params: Omics.Types.GetShareRequest, callback?: (err: AWSError, data: Omics.Types.GetShareResponse) => void): Request<Omics.Types.GetShareResponse, AWSError>;
  356. /**
  357. * Retrieves the metadata for the specified resource share.
  358. */
  359. getShare(callback?: (err: AWSError, data: Omics.Types.GetShareResponse) => void): Request<Omics.Types.GetShareResponse, AWSError>;
  360. /**
  361. * Gets information about a variant import job.
  362. */
  363. getVariantImportJob(params: Omics.Types.GetVariantImportRequest, callback?: (err: AWSError, data: Omics.Types.GetVariantImportResponse) => void): Request<Omics.Types.GetVariantImportResponse, AWSError>;
  364. /**
  365. * Gets information about a variant import job.
  366. */
  367. getVariantImportJob(callback?: (err: AWSError, data: Omics.Types.GetVariantImportResponse) => void): Request<Omics.Types.GetVariantImportResponse, AWSError>;
  368. /**
  369. * Gets information about a variant store.
  370. */
  371. getVariantStore(params: Omics.Types.GetVariantStoreRequest, callback?: (err: AWSError, data: Omics.Types.GetVariantStoreResponse) => void): Request<Omics.Types.GetVariantStoreResponse, AWSError>;
  372. /**
  373. * Gets information about a variant store.
  374. */
  375. getVariantStore(callback?: (err: AWSError, data: Omics.Types.GetVariantStoreResponse) => void): Request<Omics.Types.GetVariantStoreResponse, AWSError>;
  376. /**
  377. * Gets information about a workflow. If a workflow is shared with you, you cannot export the workflow.
  378. */
  379. getWorkflow(params: Omics.Types.GetWorkflowRequest, callback?: (err: AWSError, data: Omics.Types.GetWorkflowResponse) => void): Request<Omics.Types.GetWorkflowResponse, AWSError>;
  380. /**
  381. * Gets information about a workflow. If a workflow is shared with you, you cannot export the workflow.
  382. */
  383. getWorkflow(callback?: (err: AWSError, data: Omics.Types.GetWorkflowResponse) => void): Request<Omics.Types.GetWorkflowResponse, AWSError>;
  384. /**
  385. * Retrieves a list of annotation import jobs.
  386. */
  387. listAnnotationImportJobs(params: Omics.Types.ListAnnotationImportJobsRequest, callback?: (err: AWSError, data: Omics.Types.ListAnnotationImportJobsResponse) => void): Request<Omics.Types.ListAnnotationImportJobsResponse, AWSError>;
  388. /**
  389. * Retrieves a list of annotation import jobs.
  390. */
  391. listAnnotationImportJobs(callback?: (err: AWSError, data: Omics.Types.ListAnnotationImportJobsResponse) => void): Request<Omics.Types.ListAnnotationImportJobsResponse, AWSError>;
  392. /**
  393. * Lists the versions of an annotation store.
  394. */
  395. listAnnotationStoreVersions(params: Omics.Types.ListAnnotationStoreVersionsRequest, callback?: (err: AWSError, data: Omics.Types.ListAnnotationStoreVersionsResponse) => void): Request<Omics.Types.ListAnnotationStoreVersionsResponse, AWSError>;
  396. /**
  397. * Lists the versions of an annotation store.
  398. */
  399. listAnnotationStoreVersions(callback?: (err: AWSError, data: Omics.Types.ListAnnotationStoreVersionsResponse) => void): Request<Omics.Types.ListAnnotationStoreVersionsResponse, AWSError>;
  400. /**
  401. * Retrieves a list of annotation stores.
  402. */
  403. listAnnotationStores(params: Omics.Types.ListAnnotationStoresRequest, callback?: (err: AWSError, data: Omics.Types.ListAnnotationStoresResponse) => void): Request<Omics.Types.ListAnnotationStoresResponse, AWSError>;
  404. /**
  405. * Retrieves a list of annotation stores.
  406. */
  407. listAnnotationStores(callback?: (err: AWSError, data: Omics.Types.ListAnnotationStoresResponse) => void): Request<Omics.Types.ListAnnotationStoresResponse, AWSError>;
  408. /**
  409. * Lists multipart read set uploads and for in progress uploads. Once the upload is completed, a read set is created and the upload will no longer be returned in the response.
  410. */
  411. listMultipartReadSetUploads(params: Omics.Types.ListMultipartReadSetUploadsRequest, callback?: (err: AWSError, data: Omics.Types.ListMultipartReadSetUploadsResponse) => void): Request<Omics.Types.ListMultipartReadSetUploadsResponse, AWSError>;
  412. /**
  413. * Lists multipart read set uploads and for in progress uploads. Once the upload is completed, a read set is created and the upload will no longer be returned in the response.
  414. */
  415. listMultipartReadSetUploads(callback?: (err: AWSError, data: Omics.Types.ListMultipartReadSetUploadsResponse) => void): Request<Omics.Types.ListMultipartReadSetUploadsResponse, AWSError>;
  416. /**
  417. * Retrieves a list of read set activation jobs.
  418. */
  419. listReadSetActivationJobs(params: Omics.Types.ListReadSetActivationJobsRequest, callback?: (err: AWSError, data: Omics.Types.ListReadSetActivationJobsResponse) => void): Request<Omics.Types.ListReadSetActivationJobsResponse, AWSError>;
  420. /**
  421. * Retrieves a list of read set activation jobs.
  422. */
  423. listReadSetActivationJobs(callback?: (err: AWSError, data: Omics.Types.ListReadSetActivationJobsResponse) => void): Request<Omics.Types.ListReadSetActivationJobsResponse, AWSError>;
  424. /**
  425. * Retrieves a list of read set export jobs.
  426. */
  427. listReadSetExportJobs(params: Omics.Types.ListReadSetExportJobsRequest, callback?: (err: AWSError, data: Omics.Types.ListReadSetExportJobsResponse) => void): Request<Omics.Types.ListReadSetExportJobsResponse, AWSError>;
  428. /**
  429. * Retrieves a list of read set export jobs.
  430. */
  431. listReadSetExportJobs(callback?: (err: AWSError, data: Omics.Types.ListReadSetExportJobsResponse) => void): Request<Omics.Types.ListReadSetExportJobsResponse, AWSError>;
  432. /**
  433. * Retrieves a list of read set import jobs.
  434. */
  435. listReadSetImportJobs(params: Omics.Types.ListReadSetImportJobsRequest, callback?: (err: AWSError, data: Omics.Types.ListReadSetImportJobsResponse) => void): Request<Omics.Types.ListReadSetImportJobsResponse, AWSError>;
  436. /**
  437. * Retrieves a list of read set import jobs.
  438. */
  439. listReadSetImportJobs(callback?: (err: AWSError, data: Omics.Types.ListReadSetImportJobsResponse) => void): Request<Omics.Types.ListReadSetImportJobsResponse, AWSError>;
  440. /**
  441. * This operation will list all parts in a requested multipart upload for a sequence store.
  442. */
  443. listReadSetUploadParts(params: Omics.Types.ListReadSetUploadPartsRequest, callback?: (err: AWSError, data: Omics.Types.ListReadSetUploadPartsResponse) => void): Request<Omics.Types.ListReadSetUploadPartsResponse, AWSError>;
  444. /**
  445. * This operation will list all parts in a requested multipart upload for a sequence store.
  446. */
  447. listReadSetUploadParts(callback?: (err: AWSError, data: Omics.Types.ListReadSetUploadPartsResponse) => void): Request<Omics.Types.ListReadSetUploadPartsResponse, AWSError>;
  448. /**
  449. * Retrieves a list of read sets.
  450. */
  451. listReadSets(params: Omics.Types.ListReadSetsRequest, callback?: (err: AWSError, data: Omics.Types.ListReadSetsResponse) => void): Request<Omics.Types.ListReadSetsResponse, AWSError>;
  452. /**
  453. * Retrieves a list of read sets.
  454. */
  455. listReadSets(callback?: (err: AWSError, data: Omics.Types.ListReadSetsResponse) => void): Request<Omics.Types.ListReadSetsResponse, AWSError>;
  456. /**
  457. * Retrieves a list of reference import jobs.
  458. */
  459. listReferenceImportJobs(params: Omics.Types.ListReferenceImportJobsRequest, callback?: (err: AWSError, data: Omics.Types.ListReferenceImportJobsResponse) => void): Request<Omics.Types.ListReferenceImportJobsResponse, AWSError>;
  460. /**
  461. * Retrieves a list of reference import jobs.
  462. */
  463. listReferenceImportJobs(callback?: (err: AWSError, data: Omics.Types.ListReferenceImportJobsResponse) => void): Request<Omics.Types.ListReferenceImportJobsResponse, AWSError>;
  464. /**
  465. * Retrieves a list of reference stores.
  466. */
  467. listReferenceStores(params: Omics.Types.ListReferenceStoresRequest, callback?: (err: AWSError, data: Omics.Types.ListReferenceStoresResponse) => void): Request<Omics.Types.ListReferenceStoresResponse, AWSError>;
  468. /**
  469. * Retrieves a list of reference stores.
  470. */
  471. listReferenceStores(callback?: (err: AWSError, data: Omics.Types.ListReferenceStoresResponse) => void): Request<Omics.Types.ListReferenceStoresResponse, AWSError>;
  472. /**
  473. * Retrieves a list of references.
  474. */
  475. listReferences(params: Omics.Types.ListReferencesRequest, callback?: (err: AWSError, data: Omics.Types.ListReferencesResponse) => void): Request<Omics.Types.ListReferencesResponse, AWSError>;
  476. /**
  477. * Retrieves a list of references.
  478. */
  479. listReferences(callback?: (err: AWSError, data: Omics.Types.ListReferencesResponse) => void): Request<Omics.Types.ListReferencesResponse, AWSError>;
  480. /**
  481. * Retrieves a list of run groups.
  482. */
  483. listRunGroups(params: Omics.Types.ListRunGroupsRequest, callback?: (err: AWSError, data: Omics.Types.ListRunGroupsResponse) => void): Request<Omics.Types.ListRunGroupsResponse, AWSError>;
  484. /**
  485. * Retrieves a list of run groups.
  486. */
  487. listRunGroups(callback?: (err: AWSError, data: Omics.Types.ListRunGroupsResponse) => void): Request<Omics.Types.ListRunGroupsResponse, AWSError>;
  488. /**
  489. * Retrieves a list of tasks for a run.
  490. */
  491. listRunTasks(params: Omics.Types.ListRunTasksRequest, callback?: (err: AWSError, data: Omics.Types.ListRunTasksResponse) => void): Request<Omics.Types.ListRunTasksResponse, AWSError>;
  492. /**
  493. * Retrieves a list of tasks for a run.
  494. */
  495. listRunTasks(callback?: (err: AWSError, data: Omics.Types.ListRunTasksResponse) => void): Request<Omics.Types.ListRunTasksResponse, AWSError>;
  496. /**
  497. * Retrieves a list of runs.
  498. */
  499. listRuns(params: Omics.Types.ListRunsRequest, callback?: (err: AWSError, data: Omics.Types.ListRunsResponse) => void): Request<Omics.Types.ListRunsResponse, AWSError>;
  500. /**
  501. * Retrieves a list of runs.
  502. */
  503. listRuns(callback?: (err: AWSError, data: Omics.Types.ListRunsResponse) => void): Request<Omics.Types.ListRunsResponse, AWSError>;
  504. /**
  505. * Retrieves a list of sequence stores.
  506. */
  507. listSequenceStores(params: Omics.Types.ListSequenceStoresRequest, callback?: (err: AWSError, data: Omics.Types.ListSequenceStoresResponse) => void): Request<Omics.Types.ListSequenceStoresResponse, AWSError>;
  508. /**
  509. * Retrieves a list of sequence stores.
  510. */
  511. listSequenceStores(callback?: (err: AWSError, data: Omics.Types.ListSequenceStoresResponse) => void): Request<Omics.Types.ListSequenceStoresResponse, AWSError>;
  512. /**
  513. * Retrieves the resource shares associated with an account. Use the filter parameter to retrieve a specific subset of the shares.
  514. */
  515. listShares(params: Omics.Types.ListSharesRequest, callback?: (err: AWSError, data: Omics.Types.ListSharesResponse) => void): Request<Omics.Types.ListSharesResponse, AWSError>;
  516. /**
  517. * Retrieves the resource shares associated with an account. Use the filter parameter to retrieve a specific subset of the shares.
  518. */
  519. listShares(callback?: (err: AWSError, data: Omics.Types.ListSharesResponse) => void): Request<Omics.Types.ListSharesResponse, AWSError>;
  520. /**
  521. * Retrieves a list of tags for a resource.
  522. */
  523. listTagsForResource(params: Omics.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Omics.Types.ListTagsForResourceResponse) => void): Request<Omics.Types.ListTagsForResourceResponse, AWSError>;
  524. /**
  525. * Retrieves a list of tags for a resource.
  526. */
  527. listTagsForResource(callback?: (err: AWSError, data: Omics.Types.ListTagsForResourceResponse) => void): Request<Omics.Types.ListTagsForResourceResponse, AWSError>;
  528. /**
  529. * Retrieves a list of variant import jobs.
  530. */
  531. listVariantImportJobs(params: Omics.Types.ListVariantImportJobsRequest, callback?: (err: AWSError, data: Omics.Types.ListVariantImportJobsResponse) => void): Request<Omics.Types.ListVariantImportJobsResponse, AWSError>;
  532. /**
  533. * Retrieves a list of variant import jobs.
  534. */
  535. listVariantImportJobs(callback?: (err: AWSError, data: Omics.Types.ListVariantImportJobsResponse) => void): Request<Omics.Types.ListVariantImportJobsResponse, AWSError>;
  536. /**
  537. * Retrieves a list of variant stores.
  538. */
  539. listVariantStores(params: Omics.Types.ListVariantStoresRequest, callback?: (err: AWSError, data: Omics.Types.ListVariantStoresResponse) => void): Request<Omics.Types.ListVariantStoresResponse, AWSError>;
  540. /**
  541. * Retrieves a list of variant stores.
  542. */
  543. listVariantStores(callback?: (err: AWSError, data: Omics.Types.ListVariantStoresResponse) => void): Request<Omics.Types.ListVariantStoresResponse, AWSError>;
  544. /**
  545. * Retrieves a list of workflows.
  546. */
  547. listWorkflows(params: Omics.Types.ListWorkflowsRequest, callback?: (err: AWSError, data: Omics.Types.ListWorkflowsResponse) => void): Request<Omics.Types.ListWorkflowsResponse, AWSError>;
  548. /**
  549. * Retrieves a list of workflows.
  550. */
  551. listWorkflows(callback?: (err: AWSError, data: Omics.Types.ListWorkflowsResponse) => void): Request<Omics.Types.ListWorkflowsResponse, AWSError>;
  552. /**
  553. * Starts an annotation import job.
  554. */
  555. startAnnotationImportJob(params: Omics.Types.StartAnnotationImportRequest, callback?: (err: AWSError, data: Omics.Types.StartAnnotationImportResponse) => void): Request<Omics.Types.StartAnnotationImportResponse, AWSError>;
  556. /**
  557. * Starts an annotation import job.
  558. */
  559. startAnnotationImportJob(callback?: (err: AWSError, data: Omics.Types.StartAnnotationImportResponse) => void): Request<Omics.Types.StartAnnotationImportResponse, AWSError>;
  560. /**
  561. * Activates an archived read set. To reduce storage charges, Amazon Omics archives unused read sets after 30 days.
  562. */
  563. startReadSetActivationJob(params: Omics.Types.StartReadSetActivationJobRequest, callback?: (err: AWSError, data: Omics.Types.StartReadSetActivationJobResponse) => void): Request<Omics.Types.StartReadSetActivationJobResponse, AWSError>;
  564. /**
  565. * Activates an archived read set. To reduce storage charges, Amazon Omics archives unused read sets after 30 days.
  566. */
  567. startReadSetActivationJob(callback?: (err: AWSError, data: Omics.Types.StartReadSetActivationJobResponse) => void): Request<Omics.Types.StartReadSetActivationJobResponse, AWSError>;
  568. /**
  569. * Exports a read set to Amazon S3.
  570. */
  571. startReadSetExportJob(params: Omics.Types.StartReadSetExportJobRequest, callback?: (err: AWSError, data: Omics.Types.StartReadSetExportJobResponse) => void): Request<Omics.Types.StartReadSetExportJobResponse, AWSError>;
  572. /**
  573. * Exports a read set to Amazon S3.
  574. */
  575. startReadSetExportJob(callback?: (err: AWSError, data: Omics.Types.StartReadSetExportJobResponse) => void): Request<Omics.Types.StartReadSetExportJobResponse, AWSError>;
  576. /**
  577. * Starts a read set import job.
  578. */
  579. startReadSetImportJob(params: Omics.Types.StartReadSetImportJobRequest, callback?: (err: AWSError, data: Omics.Types.StartReadSetImportJobResponse) => void): Request<Omics.Types.StartReadSetImportJobResponse, AWSError>;
  580. /**
  581. * Starts a read set import job.
  582. */
  583. startReadSetImportJob(callback?: (err: AWSError, data: Omics.Types.StartReadSetImportJobResponse) => void): Request<Omics.Types.StartReadSetImportJobResponse, AWSError>;
  584. /**
  585. * Starts a reference import job.
  586. */
  587. startReferenceImportJob(params: Omics.Types.StartReferenceImportJobRequest, callback?: (err: AWSError, data: Omics.Types.StartReferenceImportJobResponse) => void): Request<Omics.Types.StartReferenceImportJobResponse, AWSError>;
  588. /**
  589. * Starts a reference import job.
  590. */
  591. startReferenceImportJob(callback?: (err: AWSError, data: Omics.Types.StartReferenceImportJobResponse) => void): Request<Omics.Types.StartReferenceImportJobResponse, AWSError>;
  592. /**
  593. * Starts a workflow run. To duplicate a run, specify the run's ID and a role ARN. The remaining parameters are copied from the previous run. StartRun will not support re-run for a workflow that is shared with you. The total number of runs in your account is subject to a quota per Region. To avoid needing to delete runs manually, you can set the retention mode to REMOVE. Runs with this setting are deleted automatically when the run quoata is exceeded. By default, the run uses STATIC storage. For STATIC storage, set the storageCapacity field. You can set the storage type to DYNAMIC. You do not set storageCapacity, because HealthOmics dynamically scales the storage up or down as required. For more information about static and dynamic storage, see Running workflows in the AWS HealthOmics User Guide.
  594. */
  595. startRun(params: Omics.Types.StartRunRequest, callback?: (err: AWSError, data: Omics.Types.StartRunResponse) => void): Request<Omics.Types.StartRunResponse, AWSError>;
  596. /**
  597. * Starts a workflow run. To duplicate a run, specify the run's ID and a role ARN. The remaining parameters are copied from the previous run. StartRun will not support re-run for a workflow that is shared with you. The total number of runs in your account is subject to a quota per Region. To avoid needing to delete runs manually, you can set the retention mode to REMOVE. Runs with this setting are deleted automatically when the run quoata is exceeded. By default, the run uses STATIC storage. For STATIC storage, set the storageCapacity field. You can set the storage type to DYNAMIC. You do not set storageCapacity, because HealthOmics dynamically scales the storage up or down as required. For more information about static and dynamic storage, see Running workflows in the AWS HealthOmics User Guide.
  598. */
  599. startRun(callback?: (err: AWSError, data: Omics.Types.StartRunResponse) => void): Request<Omics.Types.StartRunResponse, AWSError>;
  600. /**
  601. * Starts a variant import job.
  602. */
  603. startVariantImportJob(params: Omics.Types.StartVariantImportRequest, callback?: (err: AWSError, data: Omics.Types.StartVariantImportResponse) => void): Request<Omics.Types.StartVariantImportResponse, AWSError>;
  604. /**
  605. * Starts a variant import job.
  606. */
  607. startVariantImportJob(callback?: (err: AWSError, data: Omics.Types.StartVariantImportResponse) => void): Request<Omics.Types.StartVariantImportResponse, AWSError>;
  608. /**
  609. * Tags a resource.
  610. */
  611. tagResource(params: Omics.Types.TagResourceRequest, callback?: (err: AWSError, data: Omics.Types.TagResourceResponse) => void): Request<Omics.Types.TagResourceResponse, AWSError>;
  612. /**
  613. * Tags a resource.
  614. */
  615. tagResource(callback?: (err: AWSError, data: Omics.Types.TagResourceResponse) => void): Request<Omics.Types.TagResourceResponse, AWSError>;
  616. /**
  617. * Removes tags from a resource.
  618. */
  619. untagResource(params: Omics.Types.UntagResourceRequest, callback?: (err: AWSError, data: Omics.Types.UntagResourceResponse) => void): Request<Omics.Types.UntagResourceResponse, AWSError>;
  620. /**
  621. * Removes tags from a resource.
  622. */
  623. untagResource(callback?: (err: AWSError, data: Omics.Types.UntagResourceResponse) => void): Request<Omics.Types.UntagResourceResponse, AWSError>;
  624. /**
  625. * Updates an annotation store.
  626. */
  627. updateAnnotationStore(params: Omics.Types.UpdateAnnotationStoreRequest, callback?: (err: AWSError, data: Omics.Types.UpdateAnnotationStoreResponse) => void): Request<Omics.Types.UpdateAnnotationStoreResponse, AWSError>;
  628. /**
  629. * Updates an annotation store.
  630. */
  631. updateAnnotationStore(callback?: (err: AWSError, data: Omics.Types.UpdateAnnotationStoreResponse) => void): Request<Omics.Types.UpdateAnnotationStoreResponse, AWSError>;
  632. /**
  633. * Updates the description of an annotation store version.
  634. */
  635. updateAnnotationStoreVersion(params: Omics.Types.UpdateAnnotationStoreVersionRequest, callback?: (err: AWSError, data: Omics.Types.UpdateAnnotationStoreVersionResponse) => void): Request<Omics.Types.UpdateAnnotationStoreVersionResponse, AWSError>;
  636. /**
  637. * Updates the description of an annotation store version.
  638. */
  639. updateAnnotationStoreVersion(callback?: (err: AWSError, data: Omics.Types.UpdateAnnotationStoreVersionResponse) => void): Request<Omics.Types.UpdateAnnotationStoreVersionResponse, AWSError>;
  640. /**
  641. * Updates a run group.
  642. */
  643. updateRunGroup(params: Omics.Types.UpdateRunGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  644. /**
  645. * Updates a run group.
  646. */
  647. updateRunGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  648. /**
  649. * Updates a variant store.
  650. */
  651. updateVariantStore(params: Omics.Types.UpdateVariantStoreRequest, callback?: (err: AWSError, data: Omics.Types.UpdateVariantStoreResponse) => void): Request<Omics.Types.UpdateVariantStoreResponse, AWSError>;
  652. /**
  653. * Updates a variant store.
  654. */
  655. updateVariantStore(callback?: (err: AWSError, data: Omics.Types.UpdateVariantStoreResponse) => void): Request<Omics.Types.UpdateVariantStoreResponse, AWSError>;
  656. /**
  657. * Updates a workflow.
  658. */
  659. updateWorkflow(params: Omics.Types.UpdateWorkflowRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  660. /**
  661. * Updates a workflow.
  662. */
  663. updateWorkflow(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  664. /**
  665. * This operation uploads a specific part of a read set. If you upload a new part using a previously used part number, the previously uploaded part will be overwritten.
  666. */
  667. uploadReadSetPart(params: Omics.Types.UploadReadSetPartRequest, callback?: (err: AWSError, data: Omics.Types.UploadReadSetPartResponse) => void): Request<Omics.Types.UploadReadSetPartResponse, AWSError>;
  668. /**
  669. * This operation uploads a specific part of a read set. If you upload a new part using a previously used part number, the previously uploaded part will be overwritten.
  670. */
  671. uploadReadSetPart(callback?: (err: AWSError, data: Omics.Types.UploadReadSetPartResponse) => void): Request<Omics.Types.UploadReadSetPartResponse, AWSError>;
  672. /**
  673. * Waits for the annotationImportJobCreated state by periodically calling the underlying Omics.getAnnotationImportJoboperation every 30 seconds (at most 20 times). Wait until an annotation import is completed
  674. */
  675. waitFor(state: "annotationImportJobCreated", params: Omics.Types.GetAnnotationImportRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetAnnotationImportResponse) => void): Request<Omics.Types.GetAnnotationImportResponse, AWSError>;
  676. /**
  677. * Waits for the annotationImportJobCreated state by periodically calling the underlying Omics.getAnnotationImportJoboperation every 30 seconds (at most 20 times). Wait until an annotation import is completed
  678. */
  679. waitFor(state: "annotationImportJobCreated", callback?: (err: AWSError, data: Omics.Types.GetAnnotationImportResponse) => void): Request<Omics.Types.GetAnnotationImportResponse, AWSError>;
  680. /**
  681. * Waits for the annotationStoreCreated state by periodically calling the underlying Omics.getAnnotationStoreoperation every 30 seconds (at most 20 times). Wait until an annotation store is created
  682. */
  683. waitFor(state: "annotationStoreCreated", params: Omics.Types.GetAnnotationStoreRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreResponse) => void): Request<Omics.Types.GetAnnotationStoreResponse, AWSError>;
  684. /**
  685. * Waits for the annotationStoreCreated state by periodically calling the underlying Omics.getAnnotationStoreoperation every 30 seconds (at most 20 times). Wait until an annotation store is created
  686. */
  687. waitFor(state: "annotationStoreCreated", callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreResponse) => void): Request<Omics.Types.GetAnnotationStoreResponse, AWSError>;
  688. /**
  689. * Waits for the annotationStoreDeleted state by periodically calling the underlying Omics.getAnnotationStoreoperation every 30 seconds (at most 20 times). Wait until an annotation store is deleted.
  690. */
  691. waitFor(state: "annotationStoreDeleted", params: Omics.Types.GetAnnotationStoreRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreResponse) => void): Request<Omics.Types.GetAnnotationStoreResponse, AWSError>;
  692. /**
  693. * Waits for the annotationStoreDeleted state by periodically calling the underlying Omics.getAnnotationStoreoperation every 30 seconds (at most 20 times). Wait until an annotation store is deleted.
  694. */
  695. waitFor(state: "annotationStoreDeleted", callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreResponse) => void): Request<Omics.Types.GetAnnotationStoreResponse, AWSError>;
  696. /**
  697. * Waits for the annotationStoreVersionCreated state by periodically calling the underlying Omics.getAnnotationStoreVersionoperation every 30 seconds (at most 20 times). Wait until an annotation store version is created
  698. */
  699. waitFor(state: "annotationStoreVersionCreated", params: Omics.Types.GetAnnotationStoreVersionRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreVersionResponse) => void): Request<Omics.Types.GetAnnotationStoreVersionResponse, AWSError>;
  700. /**
  701. * Waits for the annotationStoreVersionCreated state by periodically calling the underlying Omics.getAnnotationStoreVersionoperation every 30 seconds (at most 20 times). Wait until an annotation store version is created
  702. */
  703. waitFor(state: "annotationStoreVersionCreated", callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreVersionResponse) => void): Request<Omics.Types.GetAnnotationStoreVersionResponse, AWSError>;
  704. /**
  705. * Waits for the annotationStoreVersionDeleted state by periodically calling the underlying Omics.getAnnotationStoreVersionoperation every 30 seconds (at most 20 times). Wait until an annotation store version is deleted.
  706. */
  707. waitFor(state: "annotationStoreVersionDeleted", params: Omics.Types.GetAnnotationStoreVersionRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreVersionResponse) => void): Request<Omics.Types.GetAnnotationStoreVersionResponse, AWSError>;
  708. /**
  709. * Waits for the annotationStoreVersionDeleted state by periodically calling the underlying Omics.getAnnotationStoreVersionoperation every 30 seconds (at most 20 times). Wait until an annotation store version is deleted.
  710. */
  711. waitFor(state: "annotationStoreVersionDeleted", callback?: (err: AWSError, data: Omics.Types.GetAnnotationStoreVersionResponse) => void): Request<Omics.Types.GetAnnotationStoreVersionResponse, AWSError>;
  712. /**
  713. * Waits for the readSetActivationJobCompleted state by periodically calling the underlying Omics.getReadSetActivationJoboperation every 30 seconds (at most 20 times). Wait until a job is completed.
  714. */
  715. waitFor(state: "readSetActivationJobCompleted", params: Omics.Types.GetReadSetActivationJobRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetReadSetActivationJobResponse) => void): Request<Omics.Types.GetReadSetActivationJobResponse, AWSError>;
  716. /**
  717. * Waits for the readSetActivationJobCompleted state by periodically calling the underlying Omics.getReadSetActivationJoboperation every 30 seconds (at most 20 times). Wait until a job is completed.
  718. */
  719. waitFor(state: "readSetActivationJobCompleted", callback?: (err: AWSError, data: Omics.Types.GetReadSetActivationJobResponse) => void): Request<Omics.Types.GetReadSetActivationJobResponse, AWSError>;
  720. /**
  721. * Waits for the readSetExportJobCompleted state by periodically calling the underlying Omics.getReadSetExportJoboperation every 30 seconds (at most 20 times). Wait until a job is completed.
  722. */
  723. waitFor(state: "readSetExportJobCompleted", params: Omics.Types.GetReadSetExportJobRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetReadSetExportJobResponse) => void): Request<Omics.Types.GetReadSetExportJobResponse, AWSError>;
  724. /**
  725. * Waits for the readSetExportJobCompleted state by periodically calling the underlying Omics.getReadSetExportJoboperation every 30 seconds (at most 20 times). Wait until a job is completed.
  726. */
  727. waitFor(state: "readSetExportJobCompleted", callback?: (err: AWSError, data: Omics.Types.GetReadSetExportJobResponse) => void): Request<Omics.Types.GetReadSetExportJobResponse, AWSError>;
  728. /**
  729. * Waits for the readSetImportJobCompleted state by periodically calling the underlying Omics.getReadSetImportJoboperation every 30 seconds (at most 20 times). Wait until a job is completed.
  730. */
  731. waitFor(state: "readSetImportJobCompleted", params: Omics.Types.GetReadSetImportJobRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetReadSetImportJobResponse) => void): Request<Omics.Types.GetReadSetImportJobResponse, AWSError>;
  732. /**
  733. * Waits for the readSetImportJobCompleted state by periodically calling the underlying Omics.getReadSetImportJoboperation every 30 seconds (at most 20 times). Wait until a job is completed.
  734. */
  735. waitFor(state: "readSetImportJobCompleted", callback?: (err: AWSError, data: Omics.Types.GetReadSetImportJobResponse) => void): Request<Omics.Types.GetReadSetImportJobResponse, AWSError>;
  736. /**
  737. * Waits for the referenceImportJobCompleted state by periodically calling the underlying Omics.getReferenceImportJoboperation every 30 seconds (at most 20 times). Wait until a job is completed.
  738. */
  739. waitFor(state: "referenceImportJobCompleted", params: Omics.Types.GetReferenceImportJobRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetReferenceImportJobResponse) => void): Request<Omics.Types.GetReferenceImportJobResponse, AWSError>;
  740. /**
  741. * Waits for the referenceImportJobCompleted state by periodically calling the underlying Omics.getReferenceImportJoboperation every 30 seconds (at most 20 times). Wait until a job is completed.
  742. */
  743. waitFor(state: "referenceImportJobCompleted", callback?: (err: AWSError, data: Omics.Types.GetReferenceImportJobResponse) => void): Request<Omics.Types.GetReferenceImportJobResponse, AWSError>;
  744. /**
  745. * Waits for the runCompleted state by periodically calling the underlying Omics.getRunoperation every 30 seconds (at most 20 times). Wait until a run is completed.
  746. */
  747. waitFor(state: "runCompleted", params: Omics.Types.GetRunRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetRunResponse) => void): Request<Omics.Types.GetRunResponse, AWSError>;
  748. /**
  749. * Waits for the runCompleted state by periodically calling the underlying Omics.getRunoperation every 30 seconds (at most 20 times). Wait until a run is completed.
  750. */
  751. waitFor(state: "runCompleted", callback?: (err: AWSError, data: Omics.Types.GetRunResponse) => void): Request<Omics.Types.GetRunResponse, AWSError>;
  752. /**
  753. * Waits for the runRunning state by periodically calling the underlying Omics.getRunoperation every 30 seconds (at most 20 times). Wait until a run is running.
  754. */
  755. waitFor(state: "runRunning", params: Omics.Types.GetRunRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetRunResponse) => void): Request<Omics.Types.GetRunResponse, AWSError>;
  756. /**
  757. * Waits for the runRunning state by periodically calling the underlying Omics.getRunoperation every 30 seconds (at most 20 times). Wait until a run is running.
  758. */
  759. waitFor(state: "runRunning", callback?: (err: AWSError, data: Omics.Types.GetRunResponse) => void): Request<Omics.Types.GetRunResponse, AWSError>;
  760. /**
  761. * Waits for the taskCompleted state by periodically calling the underlying Omics.getRunTaskoperation every 30 seconds (at most 20 times). Wait until a task is completed.
  762. */
  763. waitFor(state: "taskCompleted", params: Omics.Types.GetRunTaskRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetRunTaskResponse) => void): Request<Omics.Types.GetRunTaskResponse, AWSError>;
  764. /**
  765. * Waits for the taskCompleted state by periodically calling the underlying Omics.getRunTaskoperation every 30 seconds (at most 20 times). Wait until a task is completed.
  766. */
  767. waitFor(state: "taskCompleted", callback?: (err: AWSError, data: Omics.Types.GetRunTaskResponse) => void): Request<Omics.Types.GetRunTaskResponse, AWSError>;
  768. /**
  769. * Waits for the taskRunning state by periodically calling the underlying Omics.getRunTaskoperation every 30 seconds (at most 20 times). Wait until a task is running.
  770. */
  771. waitFor(state: "taskRunning", params: Omics.Types.GetRunTaskRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetRunTaskResponse) => void): Request<Omics.Types.GetRunTaskResponse, AWSError>;
  772. /**
  773. * Waits for the taskRunning state by periodically calling the underlying Omics.getRunTaskoperation every 30 seconds (at most 20 times). Wait until a task is running.
  774. */
  775. waitFor(state: "taskRunning", callback?: (err: AWSError, data: Omics.Types.GetRunTaskResponse) => void): Request<Omics.Types.GetRunTaskResponse, AWSError>;
  776. /**
  777. * Waits for the variantImportJobCreated state by periodically calling the underlying Omics.getVariantImportJoboperation every 30 seconds (at most 20 times). Wait until variant import is completed
  778. */
  779. waitFor(state: "variantImportJobCreated", params: Omics.Types.GetVariantImportRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetVariantImportResponse) => void): Request<Omics.Types.GetVariantImportResponse, AWSError>;
  780. /**
  781. * Waits for the variantImportJobCreated state by periodically calling the underlying Omics.getVariantImportJoboperation every 30 seconds (at most 20 times). Wait until variant import is completed
  782. */
  783. waitFor(state: "variantImportJobCreated", callback?: (err: AWSError, data: Omics.Types.GetVariantImportResponse) => void): Request<Omics.Types.GetVariantImportResponse, AWSError>;
  784. /**
  785. * Waits for the variantStoreCreated state by periodically calling the underlying Omics.getVariantStoreoperation every 30 seconds (at most 20 times). Wait until a variant store is created
  786. */
  787. waitFor(state: "variantStoreCreated", params: Omics.Types.GetVariantStoreRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetVariantStoreResponse) => void): Request<Omics.Types.GetVariantStoreResponse, AWSError>;
  788. /**
  789. * Waits for the variantStoreCreated state by periodically calling the underlying Omics.getVariantStoreoperation every 30 seconds (at most 20 times). Wait until a variant store is created
  790. */
  791. waitFor(state: "variantStoreCreated", callback?: (err: AWSError, data: Omics.Types.GetVariantStoreResponse) => void): Request<Omics.Types.GetVariantStoreResponse, AWSError>;
  792. /**
  793. * Waits for the variantStoreDeleted state by periodically calling the underlying Omics.getVariantStoreoperation every 30 seconds (at most 20 times). Wait until a variant store is deleted.
  794. */
  795. waitFor(state: "variantStoreDeleted", params: Omics.Types.GetVariantStoreRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetVariantStoreResponse) => void): Request<Omics.Types.GetVariantStoreResponse, AWSError>;
  796. /**
  797. * Waits for the variantStoreDeleted state by periodically calling the underlying Omics.getVariantStoreoperation every 30 seconds (at most 20 times). Wait until a variant store is deleted.
  798. */
  799. waitFor(state: "variantStoreDeleted", callback?: (err: AWSError, data: Omics.Types.GetVariantStoreResponse) => void): Request<Omics.Types.GetVariantStoreResponse, AWSError>;
  800. /**
  801. * Waits for the workflowActive state by periodically calling the underlying Omics.getWorkflowoperation every 3 seconds (at most 10 times). Wait until a workflow is active.
  802. */
  803. waitFor(state: "workflowActive", params: Omics.Types.GetWorkflowRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: Omics.Types.GetWorkflowResponse) => void): Request<Omics.Types.GetWorkflowResponse, AWSError>;
  804. /**
  805. * Waits for the workflowActive state by periodically calling the underlying Omics.getWorkflowoperation every 3 seconds (at most 10 times). Wait until a workflow is active.
  806. */
  807. waitFor(state: "workflowActive", callback?: (err: AWSError, data: Omics.Types.GetWorkflowResponse) => void): Request<Omics.Types.GetWorkflowResponse, AWSError>;
  808. }
  809. declare namespace Omics {
  810. export interface AbortMultipartReadSetUploadRequest {
  811. /**
  812. * The sequence store ID for the store involved in the multipart upload.
  813. */
  814. sequenceStoreId: SequenceStoreId;
  815. /**
  816. * The ID for the multipart upload.
  817. */
  818. uploadId: UploadId;
  819. }
  820. export interface AbortMultipartReadSetUploadResponse {
  821. }
  822. export type Accelerators = "GPU"|string;
  823. export interface AcceptShareRequest {
  824. /**
  825. * The ID of the resource share.
  826. */
  827. shareId: String;
  828. }
  829. export interface AcceptShareResponse {
  830. /**
  831. * The status of the resource share.
  832. */
  833. status?: ShareStatus;
  834. }
  835. export interface ActivateReadSetFilter {
  836. /**
  837. * The filter's status.
  838. */
  839. status?: ReadSetActivationJobStatus;
  840. /**
  841. * The filter's start date.
  842. */
  843. createdAfter?: SyntheticTimestamp_date_time;
  844. /**
  845. * The filter's end date.
  846. */
  847. createdBefore?: SyntheticTimestamp_date_time;
  848. }
  849. export interface ActivateReadSetJobItem {
  850. /**
  851. * The job's ID.
  852. */
  853. id: ActivationJobId;
  854. /**
  855. * The job's sequence store ID.
  856. */
  857. sequenceStoreId: SequenceStoreId;
  858. /**
  859. * The job's status.
  860. */
  861. status: ReadSetActivationJobStatus;
  862. /**
  863. * When the job was created.
  864. */
  865. creationTime: SyntheticTimestamp_date_time;
  866. /**
  867. * When the job completed.
  868. */
  869. completionTime?: SyntheticTimestamp_date_time;
  870. }
  871. export type ActivateReadSetJobList = ActivateReadSetJobItem[];
  872. export interface ActivateReadSetSourceItem {
  873. /**
  874. * The source's read set ID.
  875. */
  876. readSetId: ReadSetId;
  877. /**
  878. * The source's status.
  879. */
  880. status: ReadSetActivationJobItemStatus;
  881. /**
  882. * The source's status message.
  883. */
  884. statusMessage?: JobStatusMessage;
  885. }
  886. export type ActivateReadSetSourceList = ActivateReadSetSourceItem[];
  887. export type ActivationJobId = string;
  888. export type AnnotationFieldMap = {[key: string]: AnnotationFieldMapValueString};
  889. export type AnnotationFieldMapKeyString = string;
  890. export type AnnotationFieldMapValueString = string;
  891. export interface AnnotationImportItemDetail {
  892. /**
  893. * The source file's location in Amazon S3.
  894. */
  895. source: S3Uri;
  896. /**
  897. * The item's job status.
  898. */
  899. jobStatus: JobStatus;
  900. }
  901. export type AnnotationImportItemDetails = AnnotationImportItemDetail[];
  902. export interface AnnotationImportItemSource {
  903. /**
  904. * The source file's location in Amazon S3.
  905. */
  906. source: S3Uri;
  907. }
  908. export type AnnotationImportItemSources = AnnotationImportItemSource[];
  909. export interface AnnotationImportJobItem {
  910. /**
  911. * The job's ID.
  912. */
  913. id: String;
  914. /**
  915. * The job's destination annotation store.
  916. */
  917. destinationName: String;
  918. /**
  919. * The name of the annotation store version.
  920. */
  921. versionName: VersionName;
  922. /**
  923. * The job's service role ARN.
  924. */
  925. roleArn: Arn;
  926. /**
  927. * The job's status.
  928. */
  929. status: JobStatus;
  930. /**
  931. * When the job was created.
  932. */
  933. creationTime: CreationTime;
  934. /**
  935. * When the job was updated.
  936. */
  937. updateTime: UpdateTime;
  938. /**
  939. * When the job completed.
  940. */
  941. completionTime?: CompletionTime;
  942. /**
  943. * The job's left normalization setting.
  944. */
  945. runLeftNormalization?: RunLeftNormalization;
  946. /**
  947. * The annotation schema generated by the parsed annotation data.
  948. */
  949. annotationFields?: AnnotationFieldMap;
  950. }
  951. export type AnnotationImportJobItems = AnnotationImportJobItem[];
  952. export interface AnnotationStoreItem {
  953. /**
  954. * The store's ID.
  955. */
  956. id: ResourceId;
  957. /**
  958. * The store's genome reference.
  959. */
  960. reference: ReferenceItem;
  961. /**
  962. * The store's status.
  963. */
  964. status: StoreStatus;
  965. /**
  966. * The store's ARN.
  967. */
  968. storeArn: Arn;
  969. /**
  970. * The store's name.
  971. */
  972. name: String;
  973. /**
  974. * The store's file format.
  975. */
  976. storeFormat: StoreFormat;
  977. /**
  978. * The store's description.
  979. */
  980. description: Description;
  981. /**
  982. * The store's server-side encryption (SSE) settings.
  983. */
  984. sseConfig: SseConfig;
  985. /**
  986. * The store's creation time.
  987. */
  988. creationTime: CreationTime;
  989. /**
  990. * When the store was updated.
  991. */
  992. updateTime: UpdateTime;
  993. /**
  994. * The store's status message.
  995. */
  996. statusMessage: StatusMessage;
  997. /**
  998. * The store's size in bytes.
  999. */
  1000. storeSizeBytes: Long;
  1001. }
  1002. export type AnnotationStoreItems = AnnotationStoreItem[];
  1003. export interface AnnotationStoreVersionItem {
  1004. /**
  1005. * The store ID for an annotation store version.
  1006. */
  1007. storeId: ResourceId;
  1008. /**
  1009. * The annotation store version ID.
  1010. */
  1011. id: ResourceId;
  1012. /**
  1013. * The status of an annotation store version.
  1014. */
  1015. status: VersionStatus;
  1016. /**
  1017. * The Arn for an annotation store version.
  1018. */
  1019. versionArn: Arn;
  1020. /**
  1021. * A name given to an annotation store version to distinguish it from others.
  1022. */
  1023. name: StoreName;
  1024. /**
  1025. * The name of an annotation store version.
  1026. */
  1027. versionName: VersionName;
  1028. /**
  1029. * The description of an annotation store version.
  1030. */
  1031. description: Description;
  1032. /**
  1033. * The time stamp for when an annotation store version was created.
  1034. */
  1035. creationTime: CreationTime;
  1036. /**
  1037. * The time stamp for when an annotation store version was updated.
  1038. */
  1039. updateTime: UpdateTime;
  1040. /**
  1041. * The status of an annotation store version.
  1042. */
  1043. statusMessage: StatusMessage;
  1044. /**
  1045. * The size of an annotation store version in Bytes.
  1046. */
  1047. versionSizeBytes: Long;
  1048. }
  1049. export type AnnotationStoreVersionItems = AnnotationStoreVersionItem[];
  1050. export type AnnotationType = "GENERIC"|"CHR_POS"|"CHR_POS_REF_ALT"|"CHR_START_END_ONE_BASE"|"CHR_START_END_REF_ALT_ONE_BASE"|"CHR_START_END_ZERO_BASE"|"CHR_START_END_REF_ALT_ZERO_BASE"|string;
  1051. export type Arn = string;
  1052. export type ArnList = String[];
  1053. export interface BatchDeleteReadSetRequest {
  1054. /**
  1055. * The read sets' IDs.
  1056. */
  1057. ids: ReadSetIdList;
  1058. /**
  1059. * The read sets' sequence store ID.
  1060. */
  1061. sequenceStoreId: SequenceStoreId;
  1062. }
  1063. export interface BatchDeleteReadSetResponse {
  1064. /**
  1065. * Errors returned by individual delete operations.
  1066. */
  1067. errors?: ReadSetBatchErrorList;
  1068. }
  1069. export type _Blob = Buffer|Uint8Array|Blob|string;
  1070. export type Boolean = boolean;
  1071. export interface CancelAnnotationImportRequest {
  1072. /**
  1073. * The job's ID.
  1074. */
  1075. jobId: ResourceId;
  1076. }
  1077. export interface CancelAnnotationImportResponse {
  1078. }
  1079. export interface CancelRunRequest {
  1080. /**
  1081. * The run's ID.
  1082. */
  1083. id: RunId;
  1084. }
  1085. export interface CancelVariantImportRequest {
  1086. /**
  1087. * The job's ID.
  1088. */
  1089. jobId: ResourceId;
  1090. }
  1091. export interface CancelVariantImportResponse {
  1092. }
  1093. export type ClientToken = string;
  1094. export type CommentChar = string;
  1095. export interface CompleteMultipartReadSetUploadRequest {
  1096. /**
  1097. * The sequence store ID for the store involved in the multipart upload.
  1098. */
  1099. sequenceStoreId: SequenceStoreId;
  1100. /**
  1101. * The ID for the multipart upload.
  1102. */
  1103. uploadId: UploadId;
  1104. /**
  1105. * The individual uploads or parts of a multipart upload.
  1106. */
  1107. parts: CompleteReadSetUploadPartList;
  1108. }
  1109. export interface CompleteMultipartReadSetUploadResponse {
  1110. /**
  1111. * The read set ID created for an uploaded read set.
  1112. */
  1113. readSetId: ReadSetId;
  1114. }
  1115. export type CompleteReadSetUploadPartList = CompleteReadSetUploadPartListItem[];
  1116. export interface CompleteReadSetUploadPartListItem {
  1117. /**
  1118. * A number identifying the part in a read set upload.
  1119. */
  1120. partNumber: CompleteReadSetUploadPartListItemPartNumberInteger;
  1121. /**
  1122. * The source file of the part being uploaded.
  1123. */
  1124. partSource: ReadSetPartSource;
  1125. /**
  1126. * A unique identifier used to confirm that parts are being added to the correct upload.
  1127. */
  1128. checksum: CompleteReadSetUploadPartListItemChecksumString;
  1129. }
  1130. export type CompleteReadSetUploadPartListItemChecksumString = string;
  1131. export type CompleteReadSetUploadPartListItemPartNumberInteger = number;
  1132. export type CompletionTime = Date;
  1133. export interface CreateAnnotationStoreRequest {
  1134. /**
  1135. * The genome reference for the store's annotations.
  1136. */
  1137. reference?: ReferenceItem;
  1138. /**
  1139. * A name for the store.
  1140. */
  1141. name?: StoreName;
  1142. /**
  1143. * A description for the store.
  1144. */
  1145. description?: Description;
  1146. /**
  1147. * Tags for the store.
  1148. */
  1149. tags?: TagMap;
  1150. /**
  1151. * The name given to an annotation store version to distinguish it from other versions.
  1152. */
  1153. versionName?: VersionName;
  1154. /**
  1155. * Server-side encryption (SSE) settings for the store.
  1156. */
  1157. sseConfig?: SseConfig;
  1158. /**
  1159. * The annotation file format of the store.
  1160. */
  1161. storeFormat: StoreFormat;
  1162. /**
  1163. * File parsing options for the annotation store.
  1164. */
  1165. storeOptions?: StoreOptions;
  1166. }
  1167. export interface CreateAnnotationStoreResponse {
  1168. /**
  1169. * The store's ID.
  1170. */
  1171. id: ResourceId;
  1172. /**
  1173. * The store's genome reference. Required for all stores except TSV format with generic annotations.
  1174. */
  1175. reference?: ReferenceItem;
  1176. /**
  1177. * The annotation file format of the store.
  1178. */
  1179. storeFormat?: StoreFormat;
  1180. /**
  1181. * The store's file parsing options.
  1182. */
  1183. storeOptions?: StoreOptions;
  1184. /**
  1185. * The store's status.
  1186. */
  1187. status: StoreStatus;
  1188. /**
  1189. * The store's name.
  1190. */
  1191. name: String;
  1192. /**
  1193. * The name given to an annotation store version to distinguish it from other versions.
  1194. */
  1195. versionName: VersionName;
  1196. /**
  1197. * When the store was created.
  1198. */
  1199. creationTime: CreationTime;
  1200. }
  1201. export interface CreateAnnotationStoreVersionRequest {
  1202. /**
  1203. * The name of an annotation store version from which versions are being created.
  1204. */
  1205. name: StoreName;
  1206. /**
  1207. * The name given to an annotation store version to distinguish it from other versions.
  1208. */
  1209. versionName: VersionName;
  1210. /**
  1211. * The description of an annotation store version.
  1212. */
  1213. description?: Description;
  1214. /**
  1215. * The options for an annotation store version.
  1216. */
  1217. versionOptions?: VersionOptions;
  1218. /**
  1219. * Any tags added to annotation store version.
  1220. */
  1221. tags?: TagMap;
  1222. }
  1223. export interface CreateAnnotationStoreVersionResponse {
  1224. /**
  1225. * A generated ID for the annotation store
  1226. */
  1227. id: ResourceId;
  1228. /**
  1229. * The name given to an annotation store version to distinguish it from other versions.
  1230. */
  1231. versionName: VersionName;
  1232. /**
  1233. * The ID for the annotation store from which new versions are being created.
  1234. */
  1235. storeId: ResourceId;
  1236. /**
  1237. * The options for an annotation store version.
  1238. */
  1239. versionOptions?: VersionOptions;
  1240. /**
  1241. * The name given to an annotation store version to distinguish it from other versions.
  1242. */
  1243. name: StoreName;
  1244. /**
  1245. * The status of a annotation store version.
  1246. */
  1247. status: VersionStatus;
  1248. /**
  1249. * The time stamp for the creation of an annotation store version.
  1250. */
  1251. creationTime: CreationTime;
  1252. }
  1253. export interface CreateMultipartReadSetUploadRequest {
  1254. /**
  1255. * The sequence store ID for the store that is the destination of the multipart uploads.
  1256. */
  1257. sequenceStoreId: SequenceStoreId;
  1258. /**
  1259. * An idempotency token that can be used to avoid triggering multiple multipart uploads.
  1260. */
  1261. clientToken?: ClientToken;
  1262. /**
  1263. * The type of file being uploaded.
  1264. */
  1265. sourceFileType: FileType;
  1266. /**
  1267. * The source's subject ID.
  1268. */
  1269. subjectId: SubjectId;
  1270. /**
  1271. * The source's sample ID.
  1272. */
  1273. sampleId: SampleId;
  1274. /**
  1275. * Where the source originated.
  1276. */
  1277. generatedFrom?: GeneratedFrom;
  1278. /**
  1279. * The ARN of the reference.
  1280. */
  1281. referenceArn?: ReferenceArn;
  1282. /**
  1283. * The name of the read set.
  1284. */
  1285. name: ReadSetName;
  1286. /**
  1287. * The description of the read set.
  1288. */
  1289. description?: ReadSetDescription;
  1290. /**
  1291. * Any tags to add to the read set.
  1292. */
  1293. tags?: TagMap;
  1294. }
  1295. export interface CreateMultipartReadSetUploadResponse {
  1296. /**
  1297. * The sequence store ID for the store that the read set will be created in.
  1298. */
  1299. sequenceStoreId: SequenceStoreId;
  1300. /**
  1301. * The ID for the initiated multipart upload.
  1302. */
  1303. uploadId: UploadId;
  1304. /**
  1305. * The file type of the read set source.
  1306. */
  1307. sourceFileType: FileType;
  1308. /**
  1309. * The source's subject ID.
  1310. */
  1311. subjectId: SubjectId;
  1312. /**
  1313. * The source's sample ID.
  1314. */
  1315. sampleId: SampleId;
  1316. /**
  1317. * The source of the read set.
  1318. */
  1319. generatedFrom?: GeneratedFrom;
  1320. /**
  1321. * The read set source's reference ARN.
  1322. */
  1323. referenceArn: ReferenceArn;
  1324. /**
  1325. * The name of the read set.
  1326. */
  1327. name?: ReadSetName;
  1328. /**
  1329. * The description of the read set.
  1330. */
  1331. description?: ReadSetDescription;
  1332. /**
  1333. * The tags to add to the read set.
  1334. */
  1335. tags?: TagMap;
  1336. /**
  1337. * The creation time of the multipart upload.
  1338. */
  1339. creationTime: SyntheticTimestamp_date_time;
  1340. }
  1341. export interface CreateReferenceStoreRequest {
  1342. /**
  1343. * A name for the store.
  1344. */
  1345. name: ReferenceStoreName;
  1346. /**
  1347. * A description for the store.
  1348. */
  1349. description?: ReferenceStoreDescription;
  1350. /**
  1351. * Server-side encryption (SSE) settings for the store.
  1352. */
  1353. sseConfig?: SseConfig;
  1354. /**
  1355. * Tags for the store.
  1356. */
  1357. tags?: TagMap;
  1358. /**
  1359. * To ensure that requests don't run multiple times, specify a unique token for each request.
  1360. */
  1361. clientToken?: ClientToken;
  1362. }
  1363. export interface CreateReferenceStoreResponse {
  1364. /**
  1365. * The store's ID.
  1366. */
  1367. id: ReferenceStoreId;
  1368. /**
  1369. * The store's ARN.
  1370. */
  1371. arn: ReferenceStoreArn;
  1372. /**
  1373. * The store's name.
  1374. */
  1375. name?: ReferenceStoreName;
  1376. /**
  1377. * The store's description.
  1378. */
  1379. description?: ReferenceStoreDescription;
  1380. /**
  1381. * The store's SSE settings.
  1382. */
  1383. sseConfig?: SseConfig;
  1384. /**
  1385. * When the store was created.
  1386. */
  1387. creationTime: SyntheticTimestamp_date_time;
  1388. }
  1389. export interface CreateRunGroupRequest {
  1390. /**
  1391. * A name for the group.
  1392. */
  1393. name?: RunGroupName;
  1394. /**
  1395. * The maximum number of CPUs to use in the group.
  1396. */
  1397. maxCpus?: CreateRunGroupRequestMaxCpusInteger;
  1398. /**
  1399. * The maximum number of concurrent runs for the group.
  1400. */
  1401. maxRuns?: CreateRunGroupRequestMaxRunsInteger;
  1402. /**
  1403. * A maximum run time for the group in minutes.
  1404. */
  1405. maxDuration?: CreateRunGroupRequestMaxDurationInteger;
  1406. /**
  1407. * Tags for the group.
  1408. */
  1409. tags?: TagMap;
  1410. /**
  1411. * To ensure that requests don't run multiple times, specify a unique ID for each request.
  1412. */
  1413. requestId: RunGroupRequestId;
  1414. /**
  1415. * The maximum GPUs that can be used by a run group.
  1416. */
  1417. maxGpus?: CreateRunGroupRequestMaxGpusInteger;
  1418. }
  1419. export type CreateRunGroupRequestMaxCpusInteger = number;
  1420. export type CreateRunGroupRequestMaxDurationInteger = number;
  1421. export type CreateRunGroupRequestMaxGpusInteger = number;
  1422. export type CreateRunGroupRequestMaxRunsInteger = number;
  1423. export interface CreateRunGroupResponse {
  1424. /**
  1425. * The group's ARN.
  1426. */
  1427. arn?: RunGroupArn;
  1428. /**
  1429. * The group's ID.
  1430. */
  1431. id?: RunGroupId;
  1432. /**
  1433. * Tags for the run group.
  1434. */
  1435. tags?: TagMap;
  1436. }
  1437. export interface CreateSequenceStoreRequest {
  1438. /**
  1439. * A name for the store.
  1440. */
  1441. name: SequenceStoreName;
  1442. /**
  1443. * A description for the store.
  1444. */
  1445. description?: SequenceStoreDescription;
  1446. /**
  1447. * Server-side encryption (SSE) settings for the store.
  1448. */
  1449. sseConfig?: SseConfig;
  1450. /**
  1451. * Tags for the store.
  1452. */
  1453. tags?: TagMap;
  1454. /**
  1455. * To ensure that requests don't run multiple times, specify a unique token for each request.
  1456. */
  1457. clientToken?: ClientToken;
  1458. /**
  1459. * An S3 location that is used to store files that have failed a direct upload.
  1460. */
  1461. fallbackLocation?: S3Destination;
  1462. /**
  1463. * The ETag algorithm family to use for ingested read sets.
  1464. */
  1465. eTagAlgorithmFamily?: ETagAlgorithmFamily;
  1466. }
  1467. export interface CreateSequenceStoreResponse {
  1468. /**
  1469. * The store's ID.
  1470. */
  1471. id: SequenceStoreId;
  1472. /**
  1473. * The store's ARN.
  1474. */
  1475. arn: SequenceStoreArn;
  1476. /**
  1477. * The store's name.
  1478. */
  1479. name?: SequenceStoreName;
  1480. /**
  1481. * The store's description.
  1482. */
  1483. description?: SequenceStoreDescription;
  1484. /**
  1485. * The store's SSE settings.
  1486. */
  1487. sseConfig?: SseConfig;
  1488. /**
  1489. * When the store was created.
  1490. */
  1491. creationTime: SyntheticTimestamp_date_time;
  1492. /**
  1493. * An S3 location that is used to store files that have failed a direct upload.
  1494. */
  1495. fallbackLocation?: S3Destination;
  1496. /**
  1497. * The algorithm family of the ETag.
  1498. */
  1499. eTagAlgorithmFamily?: ETagAlgorithmFamily;
  1500. }
  1501. export interface CreateShareRequest {
  1502. /**
  1503. * The ARN of the resource to be shared.
  1504. */
  1505. resourceArn: String;
  1506. /**
  1507. * The principal subscriber is the account being offered shared access to the resource.
  1508. */
  1509. principalSubscriber: String;
  1510. /**
  1511. * A name that the owner defines for the share.
  1512. */
  1513. shareName?: ShareName;
  1514. }
  1515. export interface CreateShareResponse {
  1516. /**
  1517. * The ID that HealthOmics generates for the share.
  1518. */
  1519. shareId?: String;
  1520. /**
  1521. * The status of the share.
  1522. */
  1523. status?: ShareStatus;
  1524. /**
  1525. * The name of the share.
  1526. */
  1527. shareName?: ShareName;
  1528. }
  1529. export interface CreateVariantStoreRequest {
  1530. /**
  1531. * The genome reference for the store's variants.
  1532. */
  1533. reference: ReferenceItem;
  1534. /**
  1535. * A name for the store.
  1536. */
  1537. name?: StoreName;
  1538. /**
  1539. * A description for the store.
  1540. */
  1541. description?: Description;
  1542. /**
  1543. * Tags for the store.
  1544. */
  1545. tags?: TagMap;
  1546. /**
  1547. * Server-side encryption (SSE) settings for the store.
  1548. */
  1549. sseConfig?: SseConfig;
  1550. }
  1551. export interface CreateVariantStoreResponse {
  1552. /**
  1553. * The store's ID.
  1554. */
  1555. id: ResourceId;
  1556. /**
  1557. * The store's genome reference.
  1558. */
  1559. reference?: ReferenceItem;
  1560. /**
  1561. * The store's status.
  1562. */
  1563. status: StoreStatus;
  1564. /**
  1565. * The store's name.
  1566. */
  1567. name: String;
  1568. /**
  1569. * When the store was created.
  1570. */
  1571. creationTime: CreationTime;
  1572. }
  1573. export interface CreateWorkflowRequest {
  1574. /**
  1575. * A name for the workflow.
  1576. */
  1577. name?: WorkflowName;
  1578. /**
  1579. * A description for the workflow.
  1580. */
  1581. description?: WorkflowDescription;
  1582. /**
  1583. * An engine for the workflow.
  1584. */
  1585. engine?: WorkflowEngine;
  1586. /**
  1587. * A ZIP archive for the workflow.
  1588. */
  1589. definitionZip?: _Blob;
  1590. /**
  1591. * The URI of a definition for the workflow.
  1592. */
  1593. definitionUri?: WorkflowDefinition;
  1594. /**
  1595. * The path of the main definition file for the workflow.
  1596. */
  1597. main?: WorkflowMain;
  1598. /**
  1599. * A parameter template for the workflow.
  1600. */
  1601. parameterTemplate?: WorkflowParameterTemplate;
  1602. /**
  1603. * The storage capacity for the workflow in gibibytes.
  1604. */
  1605. storageCapacity?: CreateWorkflowRequestStorageCapacityInteger;
  1606. /**
  1607. * Tags for the workflow.
  1608. */
  1609. tags?: TagMap;
  1610. /**
  1611. * To ensure that requests don't run multiple times, specify a unique ID for each request.
  1612. */
  1613. requestId: WorkflowRequestId;
  1614. /**
  1615. * The computational accelerator specified to run the workflow.
  1616. */
  1617. accelerators?: Accelerators;
  1618. }
  1619. export type CreateWorkflowRequestStorageCapacityInteger = number;
  1620. export interface CreateWorkflowResponse {
  1621. /**
  1622. * The workflow's ARN.
  1623. */
  1624. arn?: WorkflowArn;
  1625. /**
  1626. * The workflow's ID.
  1627. */
  1628. id?: WorkflowId;
  1629. /**
  1630. * The workflow's status.
  1631. */
  1632. status?: WorkflowStatus;
  1633. /**
  1634. * The workflow's tags.
  1635. */
  1636. tags?: TagMap;
  1637. }
  1638. export type CreationTime = Date;
  1639. export type CreationType = "IMPORT"|"UPLOAD"|string;
  1640. export interface DeleteAnnotationStoreRequest {
  1641. /**
  1642. * The store's name.
  1643. */
  1644. name: String;
  1645. /**
  1646. * Whether to force deletion.
  1647. */
  1648. force?: PrimitiveBoolean;
  1649. }
  1650. export interface DeleteAnnotationStoreResponse {
  1651. /**
  1652. * The store's status.
  1653. */
  1654. status: StoreStatus;
  1655. }
  1656. export interface DeleteAnnotationStoreVersionsRequest {
  1657. /**
  1658. * The name of the annotation store from which versions are being deleted.
  1659. */
  1660. name: String;
  1661. /**
  1662. * The versions of an annotation store to be deleted.
  1663. */
  1664. versions: VersionList;
  1665. /**
  1666. * Forces the deletion of an annotation store version when imports are in-progress..
  1667. */
  1668. force?: PrimitiveBoolean;
  1669. }
  1670. export interface DeleteAnnotationStoreVersionsResponse {
  1671. /**
  1672. * Any errors that occur when attempting to delete an annotation store version.
  1673. */
  1674. errors?: VersionDeleteErrorList;
  1675. }
  1676. export interface DeleteReferenceRequest {
  1677. /**
  1678. * The reference's ID.
  1679. */
  1680. id: ReferenceId;
  1681. /**
  1682. * The reference's store ID.
  1683. */
  1684. referenceStoreId: ReferenceStoreId;
  1685. }
  1686. export interface DeleteReferenceResponse {
  1687. }
  1688. export interface DeleteReferenceStoreRequest {
  1689. /**
  1690. * The store's ID.
  1691. */
  1692. id: ReferenceStoreId;
  1693. }
  1694. export interface DeleteReferenceStoreResponse {
  1695. }
  1696. export interface DeleteRunGroupRequest {
  1697. /**
  1698. * The run group's ID.
  1699. */
  1700. id: RunGroupId;
  1701. }
  1702. export interface DeleteRunRequest {
  1703. /**
  1704. * The run's ID.
  1705. */
  1706. id: RunId;
  1707. }
  1708. export interface DeleteSequenceStoreRequest {
  1709. /**
  1710. * The sequence store's ID.
  1711. */
  1712. id: SequenceStoreId;
  1713. }
  1714. export interface DeleteSequenceStoreResponse {
  1715. }
  1716. export interface DeleteShareRequest {
  1717. /**
  1718. * The ID for the resource share to be deleted.
  1719. */
  1720. shareId: String;
  1721. }
  1722. export interface DeleteShareResponse {
  1723. /**
  1724. * The status of the share being deleted.
  1725. */
  1726. status?: ShareStatus;
  1727. }
  1728. export interface DeleteVariantStoreRequest {
  1729. /**
  1730. * The store's name.
  1731. */
  1732. name: String;
  1733. /**
  1734. * Whether to force deletion.
  1735. */
  1736. force?: PrimitiveBoolean;
  1737. }
  1738. export interface DeleteVariantStoreResponse {
  1739. /**
  1740. * The store's status.
  1741. */
  1742. status: StoreStatus;
  1743. }
  1744. export interface DeleteWorkflowRequest {
  1745. /**
  1746. * The workflow's ID.
  1747. */
  1748. id: WorkflowId;
  1749. }
  1750. export type Description = string;
  1751. export interface ETag {
  1752. /**
  1753. * The algorithm used to calculate the read set’s ETag(s).
  1754. */
  1755. algorithm?: ETagAlgorithm;
  1756. /**
  1757. * The ETag hash calculated on Source1 of the read set.
  1758. */
  1759. source1?: String;
  1760. /**
  1761. * The ETag hash calculated on Source2 of the read set.
  1762. */
  1763. source2?: String;
  1764. }
  1765. export type ETagAlgorithm = "FASTQ_MD5up"|"BAM_MD5up"|"CRAM_MD5up"|"FASTQ_SHA256up"|"BAM_SHA256up"|"CRAM_SHA256up"|"FASTQ_SHA512up"|"BAM_SHA512up"|"CRAM_SHA512up"|string;
  1766. export type ETagAlgorithmFamily = "MD5up"|"SHA256up"|"SHA512up"|string;
  1767. export type Encoding = string;
  1768. export type EncryptionType = "KMS"|string;
  1769. export type EngineLogStream = string;
  1770. export type EscapeChar = string;
  1771. export type EscapeQuotes = boolean;
  1772. export type ExportJobId = string;
  1773. export interface ExportReadSet {
  1774. /**
  1775. * The set's ID.
  1776. */
  1777. readSetId: ReadSetId;
  1778. }
  1779. export interface ExportReadSetDetail {
  1780. /**
  1781. * The set's ID.
  1782. */
  1783. id: ReadSetId;
  1784. /**
  1785. * The set's status.
  1786. */
  1787. status: ReadSetExportJobItemStatus;
  1788. /**
  1789. * The set's status message.
  1790. */
  1791. statusMessage?: JobStatusMessage;
  1792. }
  1793. export type ExportReadSetDetailList = ExportReadSetDetail[];
  1794. export interface ExportReadSetFilter {
  1795. /**
  1796. * A status to filter on.
  1797. */
  1798. status?: ReadSetExportJobStatus;
  1799. /**
  1800. * The filter's start date.
  1801. */
  1802. createdAfter?: SyntheticTimestamp_date_time;
  1803. /**
  1804. * The filter's end date.
  1805. */
  1806. createdBefore?: SyntheticTimestamp_date_time;
  1807. }
  1808. export interface ExportReadSetJobDetail {
  1809. /**
  1810. * The job's ID.
  1811. */
  1812. id: ExportJobId;
  1813. /**
  1814. * The job's sequence store ID.
  1815. */
  1816. sequenceStoreId: SequenceStoreId;
  1817. /**
  1818. * The job's destination in Amazon S3.
  1819. */
  1820. destination: S3Destination;
  1821. /**
  1822. * The job's status.
  1823. */
  1824. status: ReadSetExportJobStatus;
  1825. /**
  1826. * When the job was created.
  1827. */
  1828. creationTime: SyntheticTimestamp_date_time;
  1829. /**
  1830. * When the job completed.
  1831. */
  1832. completionTime?: SyntheticTimestamp_date_time;
  1833. }
  1834. export type ExportReadSetJobDetailList = ExportReadSetJobDetail[];
  1835. export interface FileInformation {
  1836. /**
  1837. * The file's total parts.
  1838. */
  1839. totalParts?: FileInformationTotalPartsInteger;
  1840. /**
  1841. * The file's part size.
  1842. */
  1843. partSize?: FileInformationPartSizeLong;
  1844. /**
  1845. * The file's content length.
  1846. */
  1847. contentLength?: FileInformationContentLengthLong;
  1848. /**
  1849. * The S3 URI metadata of a sequence store.
  1850. */
  1851. s3Access?: ReadSetS3Access;
  1852. }
  1853. export type FileInformationContentLengthLong = number;
  1854. export type FileInformationPartSizeLong = number;
  1855. export type FileInformationTotalPartsInteger = number;
  1856. export type FileType = "FASTQ"|"BAM"|"CRAM"|"UBAM"|string;
  1857. export interface Filter {
  1858. /**
  1859. * Filter based on the Amazon Resource Number (ARN) of the resource. You can specify up to 10 values.
  1860. */
  1861. resourceArns?: ArnList;
  1862. /**
  1863. * Filter based on the resource status. You can specify up to 10 values.
  1864. */
  1865. status?: StatusList;
  1866. /**
  1867. * The type of resources to be filtered. You can specify one or more of the resource types.
  1868. */
  1869. type?: TypeList;
  1870. }
  1871. export interface FormatOptions {
  1872. /**
  1873. * Options for a TSV file.
  1874. */
  1875. tsvOptions?: TsvOptions;
  1876. /**
  1877. * Options for a VCF file.
  1878. */
  1879. vcfOptions?: VcfOptions;
  1880. }
  1881. export type FormatToHeader = {[key: string]: FormatToHeaderValueString};
  1882. export type FormatToHeaderKey = "CHR"|"START"|"END"|"REF"|"ALT"|"POS"|string;
  1883. export type FormatToHeaderValueString = string;
  1884. export type GeneratedFrom = string;
  1885. export interface GetAnnotationImportRequest {
  1886. /**
  1887. * The job's ID.
  1888. */
  1889. jobId: ResourceId;
  1890. }
  1891. export interface GetAnnotationImportResponse {
  1892. /**
  1893. * The job's ID.
  1894. */
  1895. id: ResourceId;
  1896. /**
  1897. * The job's destination annotation store.
  1898. */
  1899. destinationName: StoreName;
  1900. /**
  1901. * The name of the annotation store version.
  1902. */
  1903. versionName: VersionName;
  1904. /**
  1905. * The job's service role ARN.
  1906. */
  1907. roleArn: Arn;
  1908. /**
  1909. * The job's status.
  1910. */
  1911. status: JobStatus;
  1912. /**
  1913. * The job's status message.
  1914. */
  1915. statusMessage: JobStatusMsg;
  1916. /**
  1917. * When the job was created.
  1918. */
  1919. creationTime: CreationTime;
  1920. /**
  1921. * When the job was updated.
  1922. */
  1923. updateTime: UpdateTime;
  1924. /**
  1925. * When the job completed.
  1926. */
  1927. completionTime: CompletionTime;
  1928. /**
  1929. * The job's imported items.
  1930. */
  1931. items: AnnotationImportItemDetails;
  1932. /**
  1933. * The job's left normalization setting.
  1934. */
  1935. runLeftNormalization: RunLeftNormalization;
  1936. formatOptions: FormatOptions;
  1937. /**
  1938. * The annotation schema generated by the parsed annotation data.
  1939. */
  1940. annotationFields?: AnnotationFieldMap;
  1941. }
  1942. export interface GetAnnotationStoreRequest {
  1943. /**
  1944. * The store's name.
  1945. */
  1946. name: String;
  1947. }
  1948. export interface GetAnnotationStoreResponse {
  1949. /**
  1950. * The store's ID.
  1951. */
  1952. id: ResourceId;
  1953. /**
  1954. * The store's genome reference.
  1955. */
  1956. reference: ReferenceItem;
  1957. /**
  1958. * The store's status.
  1959. */
  1960. status: StoreStatus;
  1961. /**
  1962. * The store's ARN.
  1963. */
  1964. storeArn: Arn;
  1965. /**
  1966. * The store's name.
  1967. */
  1968. name: String;
  1969. /**
  1970. * The store's description.
  1971. */
  1972. description: Description;
  1973. /**
  1974. * The store's server-side encryption (SSE) settings.
  1975. */
  1976. sseConfig: SseConfig;
  1977. /**
  1978. * When the store was created.
  1979. */
  1980. creationTime: CreationTime;
  1981. /**
  1982. * When the store was updated.
  1983. */
  1984. updateTime: UpdateTime;
  1985. /**
  1986. * The store's tags.
  1987. */
  1988. tags: TagMap;
  1989. /**
  1990. * The store's parsing options.
  1991. */
  1992. storeOptions?: StoreOptions;
  1993. /**
  1994. * The store's annotation file format.
  1995. */
  1996. storeFormat?: StoreFormat;
  1997. /**
  1998. * A status message.
  1999. */
  2000. statusMessage: StatusMessage;
  2001. /**
  2002. * The store's size in bytes.
  2003. */
  2004. storeSizeBytes: Long;
  2005. /**
  2006. * An integer indicating how many versions of an annotation store exist.
  2007. */
  2008. numVersions: Integer;
  2009. }
  2010. export interface GetAnnotationStoreVersionRequest {
  2011. /**
  2012. * The name given to an annotation store version to distinguish it from others.
  2013. */
  2014. name: String;
  2015. /**
  2016. * The name given to an annotation store version to distinguish it from others.
  2017. */
  2018. versionName: String;
  2019. }
  2020. export interface GetAnnotationStoreVersionResponse {
  2021. /**
  2022. * The store ID for annotation store version.
  2023. */
  2024. storeId: ResourceId;
  2025. /**
  2026. * The annotation store version ID.
  2027. */
  2028. id: ResourceId;
  2029. /**
  2030. * The status of an annotation store version.
  2031. */
  2032. status: VersionStatus;
  2033. /**
  2034. * The Arn for the annotation store.
  2035. */
  2036. versionArn: Arn;
  2037. /**
  2038. * The name of the annotation store.
  2039. */
  2040. name: StoreName;
  2041. /**
  2042. * The name given to an annotation store version to distinguish it from others.
  2043. */
  2044. versionName: VersionName;
  2045. /**
  2046. * The description for an annotation store version.
  2047. */
  2048. description: Description;
  2049. /**
  2050. * The time stamp for when an annotation store version was created.
  2051. */
  2052. creationTime: CreationTime;
  2053. /**
  2054. * The time stamp for when an annotation store version was updated.
  2055. */
  2056. updateTime: UpdateTime;
  2057. /**
  2058. * Any tags associated with an annotation store version.
  2059. */
  2060. tags: TagMap;
  2061. /**
  2062. * The options for an annotation store version.
  2063. */
  2064. versionOptions?: VersionOptions;
  2065. /**
  2066. * The status of an annotation store version.
  2067. */
  2068. statusMessage: StatusMessage;
  2069. /**
  2070. * The size of the annotation store version in Bytes.
  2071. */
  2072. versionSizeBytes: Long;
  2073. }
  2074. export interface GetReadSetActivationJobRequest {
  2075. /**
  2076. * The job's ID.
  2077. */
  2078. id: ActivationJobId;
  2079. /**
  2080. * The job's sequence store ID.
  2081. */
  2082. sequenceStoreId: SequenceStoreId;
  2083. }
  2084. export interface GetReadSetActivationJobResponse {
  2085. /**
  2086. * The job's ID.
  2087. */
  2088. id: ActivationJobId;
  2089. /**
  2090. * The job's sequence store ID.
  2091. */
  2092. sequenceStoreId: SequenceStoreId;
  2093. /**
  2094. * The job's status.
  2095. */
  2096. status: ReadSetActivationJobStatus;
  2097. /**
  2098. * The job's status message.
  2099. */
  2100. statusMessage?: JobStatusMessage;
  2101. /**
  2102. * When the job was created.
  2103. */
  2104. creationTime: SyntheticTimestamp_date_time;
  2105. /**
  2106. * When the job completed.
  2107. */
  2108. completionTime?: SyntheticTimestamp_date_time;
  2109. /**
  2110. * The job's source files.
  2111. */
  2112. sources?: ActivateReadSetSourceList;
  2113. }
  2114. export interface GetReadSetExportJobRequest {
  2115. /**
  2116. * The job's sequence store ID.
  2117. */
  2118. sequenceStoreId: SequenceStoreId;
  2119. /**
  2120. * The job's ID.
  2121. */
  2122. id: ExportJobId;
  2123. }
  2124. export interface GetReadSetExportJobResponse {
  2125. /**
  2126. * The job's ID.
  2127. */
  2128. id: ExportJobId;
  2129. /**
  2130. * The job's sequence store ID.
  2131. */
  2132. sequenceStoreId: SequenceStoreId;
  2133. /**
  2134. * The job's destination in Amazon S3.
  2135. */
  2136. destination: S3Destination;
  2137. /**
  2138. * The job's status.
  2139. */
  2140. status: ReadSetExportJobStatus;
  2141. /**
  2142. * The job's status message.
  2143. */
  2144. statusMessage?: JobStatusMessage;
  2145. /**
  2146. * When the job was created.
  2147. */
  2148. creationTime: SyntheticTimestamp_date_time;
  2149. /**
  2150. * When the job completed.
  2151. */
  2152. completionTime?: SyntheticTimestamp_date_time;
  2153. /**
  2154. * The job's read sets.
  2155. */
  2156. readSets?: ExportReadSetDetailList;
  2157. }
  2158. export interface GetReadSetImportJobRequest {
  2159. /**
  2160. * The job's ID.
  2161. */
  2162. id: ImportJobId;
  2163. /**
  2164. * The job's sequence store ID.
  2165. */
  2166. sequenceStoreId: SequenceStoreId;
  2167. }
  2168. export interface GetReadSetImportJobResponse {
  2169. /**
  2170. * The job's ID.
  2171. */
  2172. id: ImportJobId;
  2173. /**
  2174. * The job's sequence store ID.
  2175. */
  2176. sequenceStoreId: SequenceStoreId;
  2177. /**
  2178. * The job's service role ARN.
  2179. */
  2180. roleArn: RoleArn;
  2181. /**
  2182. * The job's status.
  2183. */
  2184. status: ReadSetImportJobStatus;
  2185. /**
  2186. * The job's status message.
  2187. */
  2188. statusMessage?: JobStatusMessage;
  2189. /**
  2190. * When the job was created.
  2191. */
  2192. creationTime: SyntheticTimestamp_date_time;
  2193. /**
  2194. * When the job completed.
  2195. */
  2196. completionTime?: SyntheticTimestamp_date_time;
  2197. /**
  2198. * The job's source files.
  2199. */
  2200. sources: ImportReadSetSourceList;
  2201. }
  2202. export interface GetReadSetMetadataRequest {
  2203. /**
  2204. * The read set's ID.
  2205. */
  2206. id: ReadSetId;
  2207. /**
  2208. * The read set's sequence store ID.
  2209. */
  2210. sequenceStoreId: SequenceStoreId;
  2211. }
  2212. export interface GetReadSetMetadataResponse {
  2213. /**
  2214. * The read set's ID.
  2215. */
  2216. id: ReadSetId;
  2217. /**
  2218. * The read set's ARN.
  2219. */
  2220. arn: ReadSetArn;
  2221. /**
  2222. * The read set's sequence store ID.
  2223. */
  2224. sequenceStoreId: SequenceStoreId;
  2225. /**
  2226. * The read set's subject ID.
  2227. */
  2228. subjectId?: SubjectId;
  2229. /**
  2230. * The read set's sample ID.
  2231. */
  2232. sampleId?: SampleId;
  2233. /**
  2234. * The read set's status.
  2235. */
  2236. status: ReadSetStatus;
  2237. /**
  2238. * The read set's name.
  2239. */
  2240. name?: ReadSetName;
  2241. /**
  2242. * The read set's description.
  2243. */
  2244. description?: ReadSetDescription;
  2245. /**
  2246. * The read set's file type.
  2247. */
  2248. fileType: FileType;
  2249. /**
  2250. * When the read set was created.
  2251. */
  2252. creationTime: SyntheticTimestamp_date_time;
  2253. /**
  2254. * The read set's sequence information.
  2255. */
  2256. sequenceInformation?: SequenceInformation;
  2257. /**
  2258. * The read set's genome reference ARN.
  2259. */
  2260. referenceArn?: ReferenceArn;
  2261. /**
  2262. * The read set's files.
  2263. */
  2264. files?: ReadSetFiles;
  2265. /**
  2266. * The status message for a read set. It provides more detail as to why the read set has a status.
  2267. */
  2268. statusMessage?: ReadSetStatusMessage;
  2269. /**
  2270. * The creation type of the read set.
  2271. */
  2272. creationType?: CreationType;
  2273. /**
  2274. * The entity tag (ETag) is a hash of the object meant to represent its semantic content.
  2275. */
  2276. etag?: ETag;
  2277. }
  2278. export interface GetReadSetRequest {
  2279. /**
  2280. * The read set's ID.
  2281. */
  2282. id: ReadSetId;
  2283. /**
  2284. * The read set's sequence store ID.
  2285. */
  2286. sequenceStoreId: SequenceStoreId;
  2287. /**
  2288. * The file to retrieve.
  2289. */
  2290. file?: ReadSetFile;
  2291. /**
  2292. * The part number to retrieve.
  2293. */
  2294. partNumber: GetReadSetRequestPartNumberInteger;
  2295. }
  2296. export type GetReadSetRequestPartNumberInteger = number;
  2297. export interface GetReadSetResponse {
  2298. /**
  2299. * The read set file payload.
  2300. */
  2301. payload?: ReadSetStreamingBlob;
  2302. }
  2303. export interface GetReferenceImportJobRequest {
  2304. /**
  2305. * The job's ID.
  2306. */
  2307. id: ImportJobId;
  2308. /**
  2309. * The job's reference store ID.
  2310. */
  2311. referenceStoreId: ReferenceStoreId;
  2312. }
  2313. export interface GetReferenceImportJobResponse {
  2314. /**
  2315. * The job's ID.
  2316. */
  2317. id: ImportJobId;
  2318. /**
  2319. * The job's reference store ID.
  2320. */
  2321. referenceStoreId: ReferenceStoreId;
  2322. /**
  2323. * The job's service role ARN.
  2324. */
  2325. roleArn: RoleArn;
  2326. /**
  2327. * The job's status.
  2328. */
  2329. status: ReferenceImportJobStatus;
  2330. /**
  2331. * The job's status message.
  2332. */
  2333. statusMessage?: JobStatusMessage;
  2334. /**
  2335. * When the job was created.
  2336. */
  2337. creationTime: SyntheticTimestamp_date_time;
  2338. /**
  2339. * When the job completed.
  2340. */
  2341. completionTime?: SyntheticTimestamp_date_time;
  2342. /**
  2343. * The job's source files.
  2344. */
  2345. sources: ImportReferenceSourceList;
  2346. }
  2347. export interface GetReferenceMetadataRequest {
  2348. /**
  2349. * The reference's ID.
  2350. */
  2351. id: ReferenceId;
  2352. /**
  2353. * The reference's reference store ID.
  2354. */
  2355. referenceStoreId: ReferenceStoreId;
  2356. }
  2357. export interface GetReferenceMetadataResponse {
  2358. /**
  2359. * The reference's ID.
  2360. */
  2361. id: ReferenceId;
  2362. /**
  2363. * The reference's ARN.
  2364. */
  2365. arn: ReferenceArn;
  2366. /**
  2367. * The reference's reference store ID.
  2368. */
  2369. referenceStoreId: ReferenceStoreId;
  2370. /**
  2371. * The reference's MD5 checksum.
  2372. */
  2373. md5: Md5;
  2374. /**
  2375. * The reference's status.
  2376. */
  2377. status?: ReferenceStatus;
  2378. /**
  2379. * The reference's name.
  2380. */
  2381. name?: ReferenceName;
  2382. /**
  2383. * The reference's description.
  2384. */
  2385. description?: ReferenceDescription;
  2386. /**
  2387. * When the reference was created.
  2388. */
  2389. creationTime: SyntheticTimestamp_date_time;
  2390. /**
  2391. * When the reference was updated.
  2392. */
  2393. updateTime: SyntheticTimestamp_date_time;
  2394. /**
  2395. * The reference's files.
  2396. */
  2397. files?: ReferenceFiles;
  2398. }
  2399. export interface GetReferenceRequest {
  2400. /**
  2401. * The reference's ID.
  2402. */
  2403. id: ReferenceId;
  2404. /**
  2405. * The reference's store ID.
  2406. */
  2407. referenceStoreId: ReferenceStoreId;
  2408. /**
  2409. * The range to retrieve.
  2410. */
  2411. range?: Range;
  2412. /**
  2413. * The part number to retrieve.
  2414. */
  2415. partNumber: GetReferenceRequestPartNumberInteger;
  2416. /**
  2417. * The file to retrieve.
  2418. */
  2419. file?: ReferenceFile;
  2420. }
  2421. export type GetReferenceRequestPartNumberInteger = number;
  2422. export interface GetReferenceResponse {
  2423. /**
  2424. * The reference file payload.
  2425. */
  2426. payload?: ReferenceStreamingBlob;
  2427. }
  2428. export interface GetReferenceStoreRequest {
  2429. /**
  2430. * The store's ID.
  2431. */
  2432. id: ReferenceStoreId;
  2433. }
  2434. export interface GetReferenceStoreResponse {
  2435. /**
  2436. * The store's ID.
  2437. */
  2438. id: ReferenceStoreId;
  2439. /**
  2440. * The store's ARN.
  2441. */
  2442. arn: ReferenceStoreArn;
  2443. /**
  2444. * The store's name.
  2445. */
  2446. name?: ReferenceStoreName;
  2447. /**
  2448. * The store's description.
  2449. */
  2450. description?: ReferenceStoreDescription;
  2451. /**
  2452. * The store's server-side encryption (SSE) settings.
  2453. */
  2454. sseConfig?: SseConfig;
  2455. /**
  2456. * When the store was created.
  2457. */
  2458. creationTime: SyntheticTimestamp_date_time;
  2459. }
  2460. export interface GetRunGroupRequest {
  2461. /**
  2462. * The group's ID.
  2463. */
  2464. id: RunGroupId;
  2465. }
  2466. export interface GetRunGroupResponse {
  2467. /**
  2468. * The group's ARN.
  2469. */
  2470. arn?: RunGroupArn;
  2471. /**
  2472. * The group's ID.
  2473. */
  2474. id?: RunGroupId;
  2475. /**
  2476. * The group's name.
  2477. */
  2478. name?: RunGroupName;
  2479. /**
  2480. * The group's maximum number of CPUs to use.
  2481. */
  2482. maxCpus?: GetRunGroupResponseMaxCpusInteger;
  2483. /**
  2484. * The maximum number of concurrent runs for the group.
  2485. */
  2486. maxRuns?: GetRunGroupResponseMaxRunsInteger;
  2487. /**
  2488. * The group's maximum run time in minutes.
  2489. */
  2490. maxDuration?: GetRunGroupResponseMaxDurationInteger;
  2491. /**
  2492. * When the group was created.
  2493. */
  2494. creationTime?: RunGroupTimestamp;
  2495. /**
  2496. * The group's tags.
  2497. */
  2498. tags?: TagMap;
  2499. /**
  2500. * The maximum GPUs that can be used by a run group.
  2501. */
  2502. maxGpus?: GetRunGroupResponseMaxGpusInteger;
  2503. }
  2504. export type GetRunGroupResponseMaxCpusInteger = number;
  2505. export type GetRunGroupResponseMaxDurationInteger = number;
  2506. export type GetRunGroupResponseMaxGpusInteger = number;
  2507. export type GetRunGroupResponseMaxRunsInteger = number;
  2508. export interface GetRunRequest {
  2509. /**
  2510. * The run's ID.
  2511. */
  2512. id: RunId;
  2513. /**
  2514. * The run's export format.
  2515. */
  2516. export?: RunExportList;
  2517. }
  2518. export interface GetRunResponse {
  2519. /**
  2520. * The run's ARN.
  2521. */
  2522. arn?: RunArn;
  2523. /**
  2524. * The run's ID.
  2525. */
  2526. id?: RunId;
  2527. /**
  2528. * The run's status.
  2529. */
  2530. status?: RunStatus;
  2531. /**
  2532. * The run's workflow ID.
  2533. */
  2534. workflowId?: WorkflowId;
  2535. /**
  2536. * The run's workflow type.
  2537. */
  2538. workflowType?: WorkflowType;
  2539. /**
  2540. * The run's ID.
  2541. */
  2542. runId?: RunId;
  2543. /**
  2544. * The run's service role ARN.
  2545. */
  2546. roleArn?: RunRoleArn;
  2547. /**
  2548. * The run's name.
  2549. */
  2550. name?: RunName;
  2551. /**
  2552. * The run's group ID.
  2553. */
  2554. runGroupId?: RunGroupId;
  2555. /**
  2556. * The run's priority.
  2557. */
  2558. priority?: GetRunResponsePriorityInteger;
  2559. /**
  2560. * The run's definition.
  2561. */
  2562. definition?: WorkflowDefinition;
  2563. /**
  2564. * The run's digest.
  2565. */
  2566. digest?: WorkflowDigest;
  2567. /**
  2568. * The run's parameters.
  2569. */
  2570. parameters?: RunParameters;
  2571. /**
  2572. * The run's storage capacity in gibibytes. For dynamic storage, after the run has completed, this value is the maximum amount of storage used during the run.
  2573. */
  2574. storageCapacity?: GetRunResponseStorageCapacityInteger;
  2575. /**
  2576. * The run's output URI.
  2577. */
  2578. outputUri?: RunOutputUri;
  2579. /**
  2580. * The run's log level.
  2581. */
  2582. logLevel?: RunLogLevel;
  2583. /**
  2584. * The run's resource digests.
  2585. */
  2586. resourceDigests?: RunResourceDigests;
  2587. /**
  2588. * Who started the run.
  2589. */
  2590. startedBy?: RunStartedBy;
  2591. /**
  2592. * When the run was created.
  2593. */
  2594. creationTime?: RunTimestamp;
  2595. /**
  2596. * When the run started.
  2597. */
  2598. startTime?: RunTimestamp;
  2599. /**
  2600. * The run's stop time.
  2601. */
  2602. stopTime?: RunTimestamp;
  2603. /**
  2604. * The run's status message.
  2605. */
  2606. statusMessage?: RunStatusMessage;
  2607. /**
  2608. * The run's tags.
  2609. */
  2610. tags?: TagMap;
  2611. /**
  2612. * The computational accelerator used to run the workflow.
  2613. */
  2614. accelerators?: Accelerators;
  2615. /**
  2616. * The run's retention mode.
  2617. */
  2618. retentionMode?: RunRetentionMode;
  2619. /**
  2620. * The reason a run has failed.
  2621. */
  2622. failureReason?: RunFailureReason;
  2623. /**
  2624. * The location of the run log.
  2625. */
  2626. logLocation?: RunLogLocation;
  2627. /**
  2628. * The universally unique identifier for a run.
  2629. */
  2630. uuid?: RunUuid;
  2631. /**
  2632. * The destination for workflow outputs.
  2633. */
  2634. runOutputUri?: RunOutputUri;
  2635. /**
  2636. * The run's storage type.
  2637. */
  2638. storageType?: StorageType;
  2639. /**
  2640. * The ID of the workflow owner.
  2641. */
  2642. workflowOwnerId?: WorkflowOwnerId;
  2643. }
  2644. export type GetRunResponsePriorityInteger = number;
  2645. export type GetRunResponseStorageCapacityInteger = number;
  2646. export interface GetRunTaskRequest {
  2647. /**
  2648. * The workflow run ID.
  2649. */
  2650. id: RunId;
  2651. /**
  2652. * The task's ID.
  2653. */
  2654. taskId: TaskId;
  2655. }
  2656. export interface GetRunTaskResponse {
  2657. /**
  2658. * The task's ID.
  2659. */
  2660. taskId?: TaskId;
  2661. /**
  2662. * The task's status.
  2663. */
  2664. status?: TaskStatus;
  2665. /**
  2666. * The task's name.
  2667. */
  2668. name?: TaskName;
  2669. /**
  2670. * The task's CPU usage.
  2671. */
  2672. cpus?: GetRunTaskResponseCpusInteger;
  2673. /**
  2674. * The task's memory use in gigabytes.
  2675. */
  2676. memory?: GetRunTaskResponseMemoryInteger;
  2677. /**
  2678. * When the task was created.
  2679. */
  2680. creationTime?: TaskTimestamp;
  2681. /**
  2682. * The task's start time.
  2683. */
  2684. startTime?: TaskTimestamp;
  2685. /**
  2686. * The task's stop time.
  2687. */
  2688. stopTime?: TaskTimestamp;
  2689. /**
  2690. * The task's status message.
  2691. */
  2692. statusMessage?: TaskStatusMessage;
  2693. /**
  2694. * The task's log stream.
  2695. */
  2696. logStream?: TaskLogStream;
  2697. /**
  2698. * The number of Graphics Processing Units (GPU) specified in the task.
  2699. */
  2700. gpus?: GetRunTaskResponseGpusInteger;
  2701. /**
  2702. * The instance type for a task.
  2703. */
  2704. instanceType?: TaskInstanceType;
  2705. /**
  2706. * The reason a task has failed.
  2707. */
  2708. failureReason?: TaskFailureReason;
  2709. }
  2710. export type GetRunTaskResponseCpusInteger = number;
  2711. export type GetRunTaskResponseGpusInteger = number;
  2712. export type GetRunTaskResponseMemoryInteger = number;
  2713. export interface GetSequenceStoreRequest {
  2714. /**
  2715. * The store's ID.
  2716. */
  2717. id: SequenceStoreId;
  2718. }
  2719. export interface GetSequenceStoreResponse {
  2720. /**
  2721. * The store's ID.
  2722. */
  2723. id: SequenceStoreId;
  2724. /**
  2725. * The store's ARN.
  2726. */
  2727. arn: SequenceStoreArn;
  2728. /**
  2729. * The store's name.
  2730. */
  2731. name?: SequenceStoreName;
  2732. /**
  2733. * The store's description.
  2734. */
  2735. description?: SequenceStoreDescription;
  2736. /**
  2737. * The store's server-side encryption (SSE) settings.
  2738. */
  2739. sseConfig?: SseConfig;
  2740. /**
  2741. * When the store was created.
  2742. */
  2743. creationTime: SyntheticTimestamp_date_time;
  2744. /**
  2745. * An S3 location that is used to store files that have failed a direct upload.
  2746. */
  2747. fallbackLocation?: S3Destination;
  2748. /**
  2749. * The S3 metadata of a sequence store, including the ARN and S3 URI of the S3 bucket.
  2750. */
  2751. s3Access?: SequenceStoreS3Access;
  2752. /**
  2753. * The algorithm family of the ETag.
  2754. */
  2755. eTagAlgorithmFamily?: ETagAlgorithmFamily;
  2756. }
  2757. export interface GetShareRequest {
  2758. /**
  2759. * The ID of the share.
  2760. */
  2761. shareId: String;
  2762. }
  2763. export interface GetShareResponse {
  2764. /**
  2765. * A resource share details object. The object includes the status, the resourceArn, and ownerId.
  2766. */
  2767. share?: ShareDetails;
  2768. }
  2769. export interface GetVariantImportRequest {
  2770. /**
  2771. * The job's ID.
  2772. */
  2773. jobId: ResourceId;
  2774. }
  2775. export interface GetVariantImportResponse {
  2776. /**
  2777. * The job's ID.
  2778. */
  2779. id: ResourceId;
  2780. /**
  2781. * The job's destination variant store.
  2782. */
  2783. destinationName: StoreName;
  2784. /**
  2785. * The job's service role ARN.
  2786. */
  2787. roleArn: Arn;
  2788. /**
  2789. * The job's status.
  2790. */
  2791. status: JobStatus;
  2792. /**
  2793. * The job's status message.
  2794. */
  2795. statusMessage: JobStatusMsg;
  2796. /**
  2797. * When the job was created.
  2798. */
  2799. creationTime: CreationTime;
  2800. /**
  2801. * When the job was updated.
  2802. */
  2803. updateTime: UpdateTime;
  2804. /**
  2805. * When the job completed.
  2806. */
  2807. completionTime?: CompletionTime;
  2808. /**
  2809. * The job's items.
  2810. */
  2811. items: VariantImportItemDetails;
  2812. /**
  2813. * The job's left normalization setting.
  2814. */
  2815. runLeftNormalization: RunLeftNormalization;
  2816. /**
  2817. * The annotation schema generated by the parsed annotation data.
  2818. */
  2819. annotationFields?: AnnotationFieldMap;
  2820. }
  2821. export interface GetVariantStoreRequest {
  2822. /**
  2823. * The store's name.
  2824. */
  2825. name: String;
  2826. }
  2827. export interface GetVariantStoreResponse {
  2828. /**
  2829. * The store's ID.
  2830. */
  2831. id: ResourceId;
  2832. /**
  2833. * The store's genome reference.
  2834. */
  2835. reference: ReferenceItem;
  2836. /**
  2837. * The store's status.
  2838. */
  2839. status: StoreStatus;
  2840. /**
  2841. * The store's ARN.
  2842. */
  2843. storeArn: Arn;
  2844. /**
  2845. * The store's name.
  2846. */
  2847. name: String;
  2848. /**
  2849. * The store's description.
  2850. */
  2851. description: Description;
  2852. /**
  2853. * The store's server-side encryption (SSE) settings.
  2854. */
  2855. sseConfig: SseConfig;
  2856. /**
  2857. * When the store was created.
  2858. */
  2859. creationTime: CreationTime;
  2860. /**
  2861. * When the store was updated.
  2862. */
  2863. updateTime: UpdateTime;
  2864. /**
  2865. * The store's tags.
  2866. */
  2867. tags: TagMap;
  2868. /**
  2869. * The store's status message.
  2870. */
  2871. statusMessage: StatusMessage;
  2872. /**
  2873. * The store's size in bytes.
  2874. */
  2875. storeSizeBytes: Long;
  2876. }
  2877. export interface GetWorkflowRequest {
  2878. /**
  2879. * The workflow's ID.
  2880. */
  2881. id: WorkflowId;
  2882. /**
  2883. * The workflow's type.
  2884. */
  2885. type?: WorkflowType;
  2886. /**
  2887. * The export format for the workflow.
  2888. */
  2889. export?: WorkflowExportList;
  2890. /**
  2891. * The ID of the workflow owner.
  2892. */
  2893. workflowOwnerId?: WorkflowOwnerId;
  2894. }
  2895. export interface GetWorkflowResponse {
  2896. /**
  2897. * The workflow's ARN.
  2898. */
  2899. arn?: WorkflowArn;
  2900. /**
  2901. * The workflow's ID.
  2902. */
  2903. id?: WorkflowId;
  2904. /**
  2905. * The workflow's status.
  2906. */
  2907. status?: WorkflowStatus;
  2908. /**
  2909. * The workflow's type.
  2910. */
  2911. type?: WorkflowType;
  2912. /**
  2913. * The workflow's name.
  2914. */
  2915. name?: WorkflowName;
  2916. /**
  2917. * The workflow's description.
  2918. */
  2919. description?: WorkflowDescription;
  2920. /**
  2921. * The workflow's engine.
  2922. */
  2923. engine?: WorkflowEngine;
  2924. /**
  2925. * The workflow's definition.
  2926. */
  2927. definition?: WorkflowDefinition;
  2928. /**
  2929. * The path of the main definition file for the workflow.
  2930. */
  2931. main?: WorkflowMain;
  2932. /**
  2933. * The workflow's digest.
  2934. */
  2935. digest?: WorkflowDigest;
  2936. /**
  2937. * The workflow's parameter template.
  2938. */
  2939. parameterTemplate?: WorkflowParameterTemplate;
  2940. /**
  2941. * The workflow's storage capacity in gibibytes.
  2942. */
  2943. storageCapacity?: GetWorkflowResponseStorageCapacityInteger;
  2944. /**
  2945. * When the workflow was created.
  2946. */
  2947. creationTime?: WorkflowTimestamp;
  2948. /**
  2949. * The workflow's status message.
  2950. */
  2951. statusMessage?: WorkflowStatusMessage;
  2952. /**
  2953. * The workflow's tags.
  2954. */
  2955. tags?: TagMap;
  2956. /**
  2957. * Gets metadata for workflow.
  2958. */
  2959. metadata?: WorkflowMetadata;
  2960. /**
  2961. * The computational accelerator specified to run the workflow.
  2962. */
  2963. accelerators?: Accelerators;
  2964. }
  2965. export type GetWorkflowResponseStorageCapacityInteger = number;
  2966. export type Header = boolean;
  2967. export type ImportJobId = string;
  2968. export interface ImportReadSetFilter {
  2969. /**
  2970. * A status to filter on.
  2971. */
  2972. status?: ReadSetImportJobStatus;
  2973. /**
  2974. * The filter's start date.
  2975. */
  2976. createdAfter?: SyntheticTimestamp_date_time;
  2977. /**
  2978. * The filter's end date.
  2979. */
  2980. createdBefore?: SyntheticTimestamp_date_time;
  2981. }
  2982. export interface ImportReadSetJobItem {
  2983. /**
  2984. * The job's ID.
  2985. */
  2986. id: ImportJobId;
  2987. /**
  2988. * The job's sequence store ID.
  2989. */
  2990. sequenceStoreId: SequenceStoreId;
  2991. /**
  2992. * The job's service role ARN.
  2993. */
  2994. roleArn: RoleArn;
  2995. /**
  2996. * The job's status.
  2997. */
  2998. status: ReadSetImportJobStatus;
  2999. /**
  3000. * When the job was created.
  3001. */
  3002. creationTime: SyntheticTimestamp_date_time;
  3003. /**
  3004. * When the job completed.
  3005. */
  3006. completionTime?: SyntheticTimestamp_date_time;
  3007. }
  3008. export type ImportReadSetJobList = ImportReadSetJobItem[];
  3009. export interface ImportReadSetSourceItem {
  3010. /**
  3011. * The source files' location in Amazon S3.
  3012. */
  3013. sourceFiles: SourceFiles;
  3014. /**
  3015. * The source's file type.
  3016. */
  3017. sourceFileType: FileType;
  3018. /**
  3019. * The source's status.
  3020. */
  3021. status: ReadSetImportJobItemStatus;
  3022. /**
  3023. * The source's status message.
  3024. */
  3025. statusMessage?: JobStatusMessage;
  3026. /**
  3027. * The source's subject ID.
  3028. */
  3029. subjectId: SubjectId;
  3030. /**
  3031. * The source's sample ID.
  3032. */
  3033. sampleId: SampleId;
  3034. /**
  3035. * Where the source originated.
  3036. */
  3037. generatedFrom?: GeneratedFrom;
  3038. /**
  3039. * The source's genome reference ARN.
  3040. */
  3041. referenceArn?: ReferenceArn;
  3042. /**
  3043. * The source's name.
  3044. */
  3045. name?: ReadSetName;
  3046. /**
  3047. * The source's description.
  3048. */
  3049. description?: ReadSetDescription;
  3050. /**
  3051. * The source's tags.
  3052. */
  3053. tags?: TagMap;
  3054. }
  3055. export type ImportReadSetSourceList = ImportReadSetSourceItem[];
  3056. export interface ImportReferenceFilter {
  3057. /**
  3058. * A status to filter on.
  3059. */
  3060. status?: ReferenceImportJobStatus;
  3061. /**
  3062. * The filter's start date.
  3063. */
  3064. createdAfter?: SyntheticTimestamp_date_time;
  3065. /**
  3066. * The filter's end date.
  3067. */
  3068. createdBefore?: SyntheticTimestamp_date_time;
  3069. }
  3070. export interface ImportReferenceJobItem {
  3071. /**
  3072. * The job's ID.
  3073. */
  3074. id: ImportJobId;
  3075. /**
  3076. * The job's reference store ID.
  3077. */
  3078. referenceStoreId: ReferenceStoreId;
  3079. /**
  3080. * The job's service role ARN.
  3081. */
  3082. roleArn: RoleArn;
  3083. /**
  3084. * The job's status.
  3085. */
  3086. status: ReferenceImportJobStatus;
  3087. /**
  3088. * When the job was created.
  3089. */
  3090. creationTime: SyntheticTimestamp_date_time;
  3091. /**
  3092. * When the job completed.
  3093. */
  3094. completionTime?: SyntheticTimestamp_date_time;
  3095. }
  3096. export type ImportReferenceJobList = ImportReferenceJobItem[];
  3097. export interface ImportReferenceSourceItem {
  3098. /**
  3099. * The source file's location in Amazon S3.
  3100. */
  3101. sourceFile?: S3Uri;
  3102. /**
  3103. * The source's status.
  3104. */
  3105. status: ReferenceImportJobItemStatus;
  3106. /**
  3107. * The source's status message.
  3108. */
  3109. statusMessage?: JobStatusMessage;
  3110. /**
  3111. * The source's name.
  3112. */
  3113. name?: ReferenceName;
  3114. /**
  3115. * The source's description.
  3116. */
  3117. description?: ReferenceDescription;
  3118. /**
  3119. * The source's tags.
  3120. */
  3121. tags?: TagMap;
  3122. }
  3123. export type ImportReferenceSourceList = ImportReferenceSourceItem[];
  3124. export type Integer = number;
  3125. export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"CANCELLED"|"COMPLETED"|"FAILED"|"COMPLETED_WITH_FAILURES"|string;
  3126. export type JobStatusMessage = string;
  3127. export type JobStatusMsg = string;
  3128. export type LineSep = string;
  3129. export interface ListAnnotationImportJobsFilter {
  3130. /**
  3131. * A status to filter on.
  3132. */
  3133. status?: JobStatus;
  3134. /**
  3135. * A store name to filter on.
  3136. */
  3137. storeName?: String;
  3138. }
  3139. export interface ListAnnotationImportJobsRequest {
  3140. /**
  3141. * The maximum number of jobs to return in one page of results.
  3142. */
  3143. maxResults?: ListAnnotationImportJobsRequestMaxResultsInteger;
  3144. /**
  3145. * IDs of annotation import jobs to retrieve.
  3146. */
  3147. ids?: ListAnnotationImportJobsRequestIdsList;
  3148. /**
  3149. * Specifies the pagination token from a previous request to retrieve the next page of results.
  3150. */
  3151. nextToken?: ListAnnotationImportJobsRequestNextTokenString;
  3152. /**
  3153. * A filter to apply to the list.
  3154. */
  3155. filter?: ListAnnotationImportJobsFilter;
  3156. }
  3157. export type ListAnnotationImportJobsRequestIdsList = ResourceIdentifier[];
  3158. export type ListAnnotationImportJobsRequestMaxResultsInteger = number;
  3159. export type ListAnnotationImportJobsRequestNextTokenString = string;
  3160. export interface ListAnnotationImportJobsResponse {
  3161. /**
  3162. * A list of jobs.
  3163. */
  3164. annotationImportJobs?: AnnotationImportJobItems;
  3165. /**
  3166. * Specifies the pagination token from a previous request to retrieve the next page of results.
  3167. */
  3168. nextToken?: String;
  3169. }
  3170. export interface ListAnnotationStoreVersionsFilter {
  3171. /**
  3172. * The status of an annotation store version.
  3173. */
  3174. status?: VersionStatus;
  3175. }
  3176. export interface ListAnnotationStoreVersionsRequest {
  3177. /**
  3178. * The name of an annotation store.
  3179. */
  3180. name: String;
  3181. /**
  3182. * The maximum number of annotation store versions to return in one page of results.
  3183. */
  3184. maxResults?: ListAnnotationStoreVersionsRequestMaxResultsInteger;
  3185. /**
  3186. * Specifies the pagination token from a previous request to retrieve the next page of results.
  3187. */
  3188. nextToken?: ListAnnotationStoreVersionsRequestNextTokenString;
  3189. /**
  3190. * A filter to apply to the list of annotation store versions.
  3191. */
  3192. filter?: ListAnnotationStoreVersionsFilter;
  3193. }
  3194. export type ListAnnotationStoreVersionsRequestMaxResultsInteger = number;
  3195. export type ListAnnotationStoreVersionsRequestNextTokenString = string;
  3196. export interface ListAnnotationStoreVersionsResponse {
  3197. /**
  3198. * Lists all versions of an annotation store.
  3199. */
  3200. annotationStoreVersions?: AnnotationStoreVersionItems;
  3201. /**
  3202. * Specifies the pagination token from a previous request to retrieve the next page of results.
  3203. */
  3204. nextToken?: String;
  3205. }
  3206. export interface ListAnnotationStoresFilter {
  3207. /**
  3208. * A status to filter on.
  3209. */
  3210. status?: StoreStatus;
  3211. }
  3212. export interface ListAnnotationStoresRequest {
  3213. /**
  3214. * IDs of stores to list.
  3215. */
  3216. ids?: ListAnnotationStoresRequestIdsList;
  3217. /**
  3218. * The maximum number of stores to return in one page of results.
  3219. */
  3220. maxResults?: ListAnnotationStoresRequestMaxResultsInteger;
  3221. /**
  3222. * Specify the pagination token from a previous request to retrieve the next page of results.
  3223. */
  3224. nextToken?: ListAnnotationStoresRequestNextTokenString;
  3225. /**
  3226. * A filter to apply to the list.
  3227. */
  3228. filter?: ListAnnotationStoresFilter;
  3229. }
  3230. export type ListAnnotationStoresRequestIdsList = ResourceIdentifier[];
  3231. export type ListAnnotationStoresRequestMaxResultsInteger = number;
  3232. export type ListAnnotationStoresRequestNextTokenString = string;
  3233. export interface ListAnnotationStoresResponse {
  3234. /**
  3235. * A list of stores.
  3236. */
  3237. annotationStores?: AnnotationStoreItems;
  3238. /**
  3239. * A pagination token that's included if more results are available.
  3240. */
  3241. nextToken?: String;
  3242. }
  3243. export interface ListMultipartReadSetUploadsRequest {
  3244. /**
  3245. * The Sequence Store ID used for the multipart uploads.
  3246. */
  3247. sequenceStoreId: SequenceStoreId;
  3248. /**
  3249. * The maximum number of multipart uploads returned in a page.
  3250. */
  3251. maxResults?: ListMultipartReadSetUploadsRequestMaxResultsInteger;
  3252. /**
  3253. * Next token returned in the response of a previous ListMultipartReadSetUploads call. Used to get the next page of results.
  3254. */
  3255. nextToken?: NextToken;
  3256. }
  3257. export type ListMultipartReadSetUploadsRequestMaxResultsInteger = number;
  3258. export interface ListMultipartReadSetUploadsResponse {
  3259. /**
  3260. * Next token returned in the response of a previous ListMultipartReadSetUploads call. Used to get the next page of results.
  3261. */
  3262. nextToken?: NextToken;
  3263. /**
  3264. * An array of multipart uploads.
  3265. */
  3266. uploads?: MultipartReadSetUploadList;
  3267. }
  3268. export interface ListReadSetActivationJobsRequest {
  3269. /**
  3270. * The read set's sequence store ID.
  3271. */
  3272. sequenceStoreId: SequenceStoreId;
  3273. /**
  3274. * The maximum number of read set activation jobs to return in one page of results.
  3275. */
  3276. maxResults?: ListReadSetActivationJobsRequestMaxResultsInteger;
  3277. /**
  3278. * Specify the pagination token from a previous request to retrieve the next page of results.
  3279. */
  3280. nextToken?: NextToken;
  3281. /**
  3282. * A filter to apply to the list.
  3283. */
  3284. filter?: ActivateReadSetFilter;
  3285. }
  3286. export type ListReadSetActivationJobsRequestMaxResultsInteger = number;
  3287. export interface ListReadSetActivationJobsResponse {
  3288. /**
  3289. * A pagination token that's included if more results are available.
  3290. */
  3291. nextToken?: NextToken;
  3292. /**
  3293. * A list of jobs.
  3294. */
  3295. activationJobs?: ActivateReadSetJobList;
  3296. }
  3297. export interface ListReadSetExportJobsRequest {
  3298. /**
  3299. * The jobs' sequence store ID.
  3300. */
  3301. sequenceStoreId: SequenceStoreId;
  3302. /**
  3303. * The maximum number of jobs to return in one page of results.
  3304. */
  3305. maxResults?: ListReadSetExportJobsRequestMaxResultsInteger;
  3306. /**
  3307. * Specify the pagination token from a previous request to retrieve the next page of results.
  3308. */
  3309. nextToken?: NextToken;
  3310. /**
  3311. * A filter to apply to the list.
  3312. */
  3313. filter?: ExportReadSetFilter;
  3314. }
  3315. export type ListReadSetExportJobsRequestMaxResultsInteger = number;
  3316. export interface ListReadSetExportJobsResponse {
  3317. /**
  3318. * A pagination token that's included if more results are available.
  3319. */
  3320. nextToken?: NextToken;
  3321. /**
  3322. * A list of jobs.
  3323. */
  3324. exportJobs?: ExportReadSetJobDetailList;
  3325. }
  3326. export interface ListReadSetImportJobsRequest {
  3327. /**
  3328. * The maximum number of jobs to return in one page of results.
  3329. */
  3330. maxResults?: ListReadSetImportJobsRequestMaxResultsInteger;
  3331. /**
  3332. * Specify the pagination token from a previous request to retrieve the next page of results.
  3333. */
  3334. nextToken?: NextToken;
  3335. /**
  3336. * The jobs' sequence store ID.
  3337. */
  3338. sequenceStoreId: SequenceStoreId;
  3339. /**
  3340. * A filter to apply to the list.
  3341. */
  3342. filter?: ImportReadSetFilter;
  3343. }
  3344. export type ListReadSetImportJobsRequestMaxResultsInteger = number;
  3345. export interface ListReadSetImportJobsResponse {
  3346. /**
  3347. * A pagination token that's included if more results are available.
  3348. */
  3349. nextToken?: NextToken;
  3350. /**
  3351. * A list of jobs.
  3352. */
  3353. importJobs?: ImportReadSetJobList;
  3354. }
  3355. export interface ListReadSetUploadPartsRequest {
  3356. /**
  3357. * The Sequence Store ID used for the multipart uploads.
  3358. */
  3359. sequenceStoreId: SequenceStoreId;
  3360. /**
  3361. * The ID for the initiated multipart upload.
  3362. */
  3363. uploadId: UploadId;
  3364. /**
  3365. * The source file for the upload part.
  3366. */
  3367. partSource: ReadSetPartSource;
  3368. /**
  3369. * The maximum number of read set upload parts returned in a page.
  3370. */
  3371. maxResults?: ListReadSetUploadPartsRequestMaxResultsInteger;
  3372. /**
  3373. * Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.
  3374. */
  3375. nextToken?: NextToken;
  3376. /**
  3377. * Attributes used to filter for a specific subset of read set part uploads.
  3378. */
  3379. filter?: ReadSetUploadPartListFilter;
  3380. }
  3381. export type ListReadSetUploadPartsRequestMaxResultsInteger = number;
  3382. export interface ListReadSetUploadPartsResponse {
  3383. /**
  3384. * Next token returned in the response of a previous ListReadSetUploadParts call. Used to get the next page of results.
  3385. */
  3386. nextToken?: NextToken;
  3387. /**
  3388. * An array of upload parts.
  3389. */
  3390. parts?: ReadSetUploadPartList;
  3391. }
  3392. export interface ListReadSetsRequest {
  3393. /**
  3394. * The jobs' sequence store ID.
  3395. */
  3396. sequenceStoreId: SequenceStoreId;
  3397. /**
  3398. * The maximum number of read sets to return in one page of results.
  3399. */
  3400. maxResults?: ListReadSetsRequestMaxResultsInteger;
  3401. /**
  3402. * Specify the pagination token from a previous request to retrieve the next page of results.
  3403. */
  3404. nextToken?: NextToken;
  3405. /**
  3406. * A filter to apply to the list.
  3407. */
  3408. filter?: ReadSetFilter;
  3409. }
  3410. export type ListReadSetsRequestMaxResultsInteger = number;
  3411. export interface ListReadSetsResponse {
  3412. /**
  3413. * A pagination token that's included if more results are available.
  3414. */
  3415. nextToken?: NextToken;
  3416. /**
  3417. * A list of read sets.
  3418. */
  3419. readSets: ReadSetList;
  3420. }
  3421. export interface ListReferenceImportJobsRequest {
  3422. /**
  3423. * The maximum number of jobs to return in one page of results.
  3424. */
  3425. maxResults?: ListReferenceImportJobsRequestMaxResultsInteger;
  3426. /**
  3427. * Specify the pagination token from a previous request to retrieve the next page of results.
  3428. */
  3429. nextToken?: NextToken;
  3430. /**
  3431. * The job's reference store ID.
  3432. */
  3433. referenceStoreId: ReferenceStoreId;
  3434. /**
  3435. * A filter to apply to the list.
  3436. */
  3437. filter?: ImportReferenceFilter;
  3438. }
  3439. export type ListReferenceImportJobsRequestMaxResultsInteger = number;
  3440. export interface ListReferenceImportJobsResponse {
  3441. /**
  3442. * A pagination token that's included if more results are available.
  3443. */
  3444. nextToken?: NextToken;
  3445. /**
  3446. * A lis of jobs.
  3447. */
  3448. importJobs?: ImportReferenceJobList;
  3449. }
  3450. export interface ListReferenceStoresRequest {
  3451. /**
  3452. * The maximum number of stores to return in one page of results.
  3453. */
  3454. maxResults?: ListReferenceStoresRequestMaxResultsInteger;
  3455. /**
  3456. * Specify the pagination token from a previous request to retrieve the next page of results.
  3457. */
  3458. nextToken?: NextToken;
  3459. /**
  3460. * A filter to apply to the list.
  3461. */
  3462. filter?: ReferenceStoreFilter;
  3463. }
  3464. export type ListReferenceStoresRequestMaxResultsInteger = number;
  3465. export interface ListReferenceStoresResponse {
  3466. /**
  3467. * A pagination token that's included if more results are available.
  3468. */
  3469. nextToken?: NextToken;
  3470. /**
  3471. * A list of reference stores.
  3472. */
  3473. referenceStores: ReferenceStoreDetailList;
  3474. }
  3475. export interface ListReferencesRequest {
  3476. /**
  3477. * The references' reference store ID.
  3478. */
  3479. referenceStoreId: ReferenceStoreId;
  3480. /**
  3481. * The maximum number of references to return in one page of results.
  3482. */
  3483. maxResults?: ListReferencesRequestMaxResultsInteger;
  3484. /**
  3485. * Specify the pagination token from a previous request to retrieve the next page of results.
  3486. */
  3487. nextToken?: NextToken;
  3488. /**
  3489. * A filter to apply to the list.
  3490. */
  3491. filter?: ReferenceFilter;
  3492. }
  3493. export type ListReferencesRequestMaxResultsInteger = number;
  3494. export interface ListReferencesResponse {
  3495. /**
  3496. * A pagination token that's included if more results are available.
  3497. */
  3498. nextToken?: NextToken;
  3499. /**
  3500. * A list of references.
  3501. */
  3502. references: ReferenceList;
  3503. }
  3504. export interface ListRunGroupsRequest {
  3505. /**
  3506. * The run groups' name.
  3507. */
  3508. name?: RunGroupName;
  3509. /**
  3510. * Specify the pagination token from a previous request to retrieve the next page of results.
  3511. */
  3512. startingToken?: RunGroupListToken;
  3513. /**
  3514. * The maximum number of run groups to return in one page of results.
  3515. */
  3516. maxResults?: ListRunGroupsRequestMaxResultsInteger;
  3517. }
  3518. export type ListRunGroupsRequestMaxResultsInteger = number;
  3519. export interface ListRunGroupsResponse {
  3520. /**
  3521. * A list of groups.
  3522. */
  3523. items?: RunGroupList;
  3524. /**
  3525. * A pagination token that's included if more results are available.
  3526. */
  3527. nextToken?: RunGroupListToken;
  3528. }
  3529. export interface ListRunTasksRequest {
  3530. /**
  3531. * The run's ID.
  3532. */
  3533. id: RunId;
  3534. /**
  3535. * Filter the list by status.
  3536. */
  3537. status?: TaskStatus;
  3538. /**
  3539. * Specify the pagination token from a previous request to retrieve the next page of results.
  3540. */
  3541. startingToken?: TaskListToken;
  3542. /**
  3543. * The maximum number of run tasks to return in one page of results.
  3544. */
  3545. maxResults?: ListRunTasksRequestMaxResultsInteger;
  3546. }
  3547. export type ListRunTasksRequestMaxResultsInteger = number;
  3548. export interface ListRunTasksResponse {
  3549. /**
  3550. * A list of tasks.
  3551. */
  3552. items?: TaskList;
  3553. /**
  3554. * A pagination token that's included if more results are available.
  3555. */
  3556. nextToken?: TaskListToken;
  3557. }
  3558. export interface ListRunsRequest {
  3559. /**
  3560. * Filter the list by run name.
  3561. */
  3562. name?: RunName;
  3563. /**
  3564. * Filter the list by run group ID.
  3565. */
  3566. runGroupId?: RunGroupId;
  3567. /**
  3568. * Specify the pagination token from a previous request to retrieve the next page of results.
  3569. */
  3570. startingToken?: RunListToken;
  3571. /**
  3572. * The maximum number of runs to return in one page of results.
  3573. */
  3574. maxResults?: ListRunsRequestMaxResultsInteger;
  3575. /**
  3576. * The status of a run.
  3577. */
  3578. status?: RunStatus;
  3579. }
  3580. export type ListRunsRequestMaxResultsInteger = number;
  3581. export interface ListRunsResponse {
  3582. /**
  3583. * A list of runs.
  3584. */
  3585. items?: RunList;
  3586. /**
  3587. * A pagination token that's included if more results are available.
  3588. */
  3589. nextToken?: RunListToken;
  3590. }
  3591. export interface ListSequenceStoresRequest {
  3592. /**
  3593. * The maximum number of stores to return in one page of results.
  3594. */
  3595. maxResults?: ListSequenceStoresRequestMaxResultsInteger;
  3596. /**
  3597. * Specify the pagination token from a previous request to retrieve the next page of results.
  3598. */
  3599. nextToken?: NextToken;
  3600. /**
  3601. * A filter to apply to the list.
  3602. */
  3603. filter?: SequenceStoreFilter;
  3604. }
  3605. export type ListSequenceStoresRequestMaxResultsInteger = number;
  3606. export interface ListSequenceStoresResponse {
  3607. /**
  3608. * A pagination token that's included if more results are available.
  3609. */
  3610. nextToken?: NextToken;
  3611. /**
  3612. * A list of sequence stores.
  3613. */
  3614. sequenceStores: SequenceStoreDetailList;
  3615. }
  3616. export interface ListSharesRequest {
  3617. /**
  3618. * The account that owns the resource shares.
  3619. */
  3620. resourceOwner: ResourceOwner;
  3621. /**
  3622. * Attributes that you use to filter for a specific subset of resource shares.
  3623. */
  3624. filter?: Filter;
  3625. /**
  3626. * Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.
  3627. */
  3628. nextToken?: String;
  3629. /**
  3630. * The maximum number of shares to return in one page of results.
  3631. */
  3632. maxResults?: Integer;
  3633. }
  3634. export interface ListSharesResponse {
  3635. /**
  3636. * The shares available and their metadata details.
  3637. */
  3638. shares: ShareDetailsList;
  3639. /**
  3640. * Next token returned in the response of a previous ListSharesResponse call. Used to get the next page of results.
  3641. */
  3642. nextToken?: String;
  3643. }
  3644. export interface ListTagsForResourceRequest {
  3645. /**
  3646. * The resource's ARN.
  3647. */
  3648. resourceArn: TagArn;
  3649. }
  3650. export interface ListTagsForResourceResponse {
  3651. /**
  3652. * A list of tags.
  3653. */
  3654. tags: TagMap;
  3655. }
  3656. export interface ListVariantImportJobsFilter {
  3657. /**
  3658. * A status to filter on.
  3659. */
  3660. status?: JobStatus;
  3661. /**
  3662. * A store name to filter on.
  3663. */
  3664. storeName?: String;
  3665. }
  3666. export interface ListVariantImportJobsRequest {
  3667. /**
  3668. * The maximum number of import jobs to return in one page of results.
  3669. */
  3670. maxResults?: ListVariantImportJobsRequestMaxResultsInteger;
  3671. /**
  3672. * A list of job IDs.
  3673. */
  3674. ids?: ListVariantImportJobsRequestIdsList;
  3675. /**
  3676. * Specify the pagination token from a previous request to retrieve the next page of results.
  3677. */
  3678. nextToken?: ListVariantImportJobsRequestNextTokenString;
  3679. /**
  3680. * A filter to apply to the list.
  3681. */
  3682. filter?: ListVariantImportJobsFilter;
  3683. }
  3684. export type ListVariantImportJobsRequestIdsList = ResourceIdentifier[];
  3685. export type ListVariantImportJobsRequestMaxResultsInteger = number;
  3686. export type ListVariantImportJobsRequestNextTokenString = string;
  3687. export interface ListVariantImportJobsResponse {
  3688. /**
  3689. * A list of jobs.
  3690. */
  3691. variantImportJobs?: VariantImportJobItems;
  3692. /**
  3693. * A pagination token that's included if more results are available.
  3694. */
  3695. nextToken?: String;
  3696. }
  3697. export interface ListVariantStoresFilter {
  3698. /**
  3699. * A status to filter on.
  3700. */
  3701. status?: StoreStatus;
  3702. }
  3703. export interface ListVariantStoresRequest {
  3704. /**
  3705. * The maximum number of stores to return in one page of results.
  3706. */
  3707. maxResults?: ListVariantStoresRequestMaxResultsInteger;
  3708. /**
  3709. * A list of store IDs.
  3710. */
  3711. ids?: ListVariantStoresRequestIdsList;
  3712. /**
  3713. * Specify the pagination token from a previous request to retrieve the next page of results.
  3714. */
  3715. nextToken?: ListVariantStoresRequestNextTokenString;
  3716. /**
  3717. * A filter to apply to the list.
  3718. */
  3719. filter?: ListVariantStoresFilter;
  3720. }
  3721. export type ListVariantStoresRequestIdsList = ResourceIdentifier[];
  3722. export type ListVariantStoresRequestMaxResultsInteger = number;
  3723. export type ListVariantStoresRequestNextTokenString = string;
  3724. export interface ListVariantStoresResponse {
  3725. /**
  3726. * A list of variant stores.
  3727. */
  3728. variantStores?: VariantStoreItems;
  3729. /**
  3730. * A pagination token that's included if more results are available.
  3731. */
  3732. nextToken?: String;
  3733. }
  3734. export interface ListWorkflowsRequest {
  3735. /**
  3736. * Filter the list by workflow type.
  3737. */
  3738. type?: WorkflowType;
  3739. /**
  3740. * Filter the list by workflow name.
  3741. */
  3742. name?: WorkflowName;
  3743. /**
  3744. * Specify the pagination token from a previous request to retrieve the next page of results.
  3745. */
  3746. startingToken?: WorkflowListToken;
  3747. /**
  3748. * The maximum number of workflows to return in one page of results.
  3749. */
  3750. maxResults?: ListWorkflowsRequestMaxResultsInteger;
  3751. }
  3752. export type ListWorkflowsRequestMaxResultsInteger = number;
  3753. export interface ListWorkflowsResponse {
  3754. /**
  3755. * A list of workflow items.
  3756. */
  3757. items?: WorkflowList;
  3758. /**
  3759. * A pagination token that's included if more results are available.
  3760. */
  3761. nextToken?: WorkflowListToken;
  3762. }
  3763. export type Long = number;
  3764. export type Md5 = string;
  3765. export type MultipartReadSetUploadList = MultipartReadSetUploadListItem[];
  3766. export interface MultipartReadSetUploadListItem {
  3767. /**
  3768. * The sequence store ID used for the multipart upload.
  3769. */
  3770. sequenceStoreId: SequenceStoreId;
  3771. /**
  3772. * The ID for the initiated multipart upload.
  3773. */
  3774. uploadId: UploadId;
  3775. /**
  3776. * The type of file the read set originated from.
  3777. */
  3778. sourceFileType: FileType;
  3779. /**
  3780. * The read set source's subject ID.
  3781. */
  3782. subjectId: SubjectId;
  3783. /**
  3784. * The read set source's sample ID.
  3785. */
  3786. sampleId: SampleId;
  3787. /**
  3788. * The source of an uploaded part.
  3789. */
  3790. generatedFrom: GeneratedFrom;
  3791. /**
  3792. * The source's reference ARN.
  3793. */
  3794. referenceArn: ReferenceArn;
  3795. /**
  3796. * The name of a read set.
  3797. */
  3798. name?: ReadSetName;
  3799. /**
  3800. * The description of a read set.
  3801. */
  3802. description?: ReadSetDescription;
  3803. /**
  3804. * Any tags you wish to add to a read set.
  3805. */
  3806. tags?: TagMap;
  3807. /**
  3808. * The time stamp for when a direct upload was created.
  3809. */
  3810. creationTime: SyntheticTimestamp_date_time;
  3811. }
  3812. export type NextToken = string;
  3813. export type PrimitiveBoolean = boolean;
  3814. export type Quote = string;
  3815. export type QuoteAll = boolean;
  3816. export type Range = string;
  3817. export interface ReadOptions {
  3818. /**
  3819. * The file's field separator.
  3820. */
  3821. sep?: Separator;
  3822. /**
  3823. * The file's encoding.
  3824. */
  3825. encoding?: Encoding;
  3826. /**
  3827. * The file's quote character.
  3828. */
  3829. quote?: Quote;
  3830. /**
  3831. * Whether all values need to be quoted, or just those that contain quotes.
  3832. */
  3833. quoteAll?: QuoteAll;
  3834. /**
  3835. * A character for escaping quotes in the file.
  3836. */
  3837. escape?: EscapeChar;
  3838. /**
  3839. * Whether quotes need to be escaped in the file.
  3840. */
  3841. escapeQuotes?: EscapeQuotes;
  3842. /**
  3843. * The file's comment character.
  3844. */
  3845. comment?: CommentChar;
  3846. /**
  3847. * Whether the file has a header row.
  3848. */
  3849. header?: Header;
  3850. /**
  3851. * A line separator for the file.
  3852. */
  3853. lineSep?: LineSep;
  3854. }
  3855. export type ReadSetActivationJobItemStatus = "NOT_STARTED"|"IN_PROGRESS"|"FINISHED"|"FAILED"|string;
  3856. export type ReadSetActivationJobStatus = "SUBMITTED"|"IN_PROGRESS"|"CANCELLING"|"CANCELLED"|"FAILED"|"COMPLETED"|"COMPLETED_WITH_FAILURES"|string;
  3857. export type ReadSetArn = string;
  3858. export interface ReadSetBatchError {
  3859. /**
  3860. * The error's ID.
  3861. */
  3862. id: ReadSetId;
  3863. /**
  3864. * The error's code.
  3865. */
  3866. code: String;
  3867. /**
  3868. * The error's message.
  3869. */
  3870. message: String;
  3871. }
  3872. export type ReadSetBatchErrorList = ReadSetBatchError[];
  3873. export type ReadSetDescription = string;
  3874. export type ReadSetExportJobItemStatus = "NOT_STARTED"|"IN_PROGRESS"|"FINISHED"|"FAILED"|string;
  3875. export type ReadSetExportJobStatus = "SUBMITTED"|"IN_PROGRESS"|"CANCELLING"|"CANCELLED"|"FAILED"|"COMPLETED"|"COMPLETED_WITH_FAILURES"|string;
  3876. export type ReadSetFile = "SOURCE1"|"SOURCE2"|"INDEX"|string;
  3877. export interface ReadSetFiles {
  3878. /**
  3879. * The location of the first file in Amazon S3.
  3880. */
  3881. source1?: FileInformation;
  3882. /**
  3883. * The location of the second file in Amazon S3.
  3884. */
  3885. source2?: FileInformation;
  3886. /**
  3887. * The files' index.
  3888. */
  3889. index?: FileInformation;
  3890. }
  3891. export interface ReadSetFilter {
  3892. /**
  3893. * A name to filter on.
  3894. */
  3895. name?: ReadSetName;
  3896. /**
  3897. * A status to filter on.
  3898. */
  3899. status?: ReadSetStatus;
  3900. /**
  3901. * A genome reference ARN to filter on.
  3902. */
  3903. referenceArn?: ReferenceArnFilter;
  3904. /**
  3905. * The filter's start date.
  3906. */
  3907. createdAfter?: SyntheticTimestamp_date_time;
  3908. /**
  3909. * The filter's end date.
  3910. */
  3911. createdBefore?: SyntheticTimestamp_date_time;
  3912. /**
  3913. * The read set source's sample ID.
  3914. */
  3915. sampleId?: SampleId;
  3916. /**
  3917. * The read set source's subject ID.
  3918. */
  3919. subjectId?: SubjectId;
  3920. /**
  3921. * Where the source originated.
  3922. */
  3923. generatedFrom?: GeneratedFrom;
  3924. /**
  3925. * The creation type of the read set.
  3926. */
  3927. creationType?: CreationType;
  3928. }
  3929. export type ReadSetId = string;
  3930. export type ReadSetIdList = ReadSetId[];
  3931. export type ReadSetImportJobItemStatus = "NOT_STARTED"|"IN_PROGRESS"|"FINISHED"|"FAILED"|string;
  3932. export type ReadSetImportJobStatus = "SUBMITTED"|"IN_PROGRESS"|"CANCELLING"|"CANCELLED"|"FAILED"|"COMPLETED"|"COMPLETED_WITH_FAILURES"|string;
  3933. export type ReadSetList = ReadSetListItem[];
  3934. export interface ReadSetListItem {
  3935. /**
  3936. * The read set's ID.
  3937. */
  3938. id: ReadSetId;
  3939. /**
  3940. * The read set's ARN.
  3941. */
  3942. arn: ReadSetArn;
  3943. /**
  3944. * The read set's sequence store ID.
  3945. */
  3946. sequenceStoreId: SequenceStoreId;
  3947. /**
  3948. * The read set's subject ID.
  3949. */
  3950. subjectId?: SubjectId;
  3951. /**
  3952. * The read set's sample ID.
  3953. */
  3954. sampleId?: SampleId;
  3955. /**
  3956. * The read set's status.
  3957. */
  3958. status: ReadSetStatus;
  3959. /**
  3960. * The read set's name.
  3961. */
  3962. name?: ReadSetName;
  3963. /**
  3964. * The read set's description.
  3965. */
  3966. description?: ReadSetDescription;
  3967. /**
  3968. * The read set's genome reference ARN.
  3969. */
  3970. referenceArn?: ReferenceArn;
  3971. /**
  3972. * The read set's file type.
  3973. */
  3974. fileType: FileType;
  3975. sequenceInformation?: SequenceInformation;
  3976. /**
  3977. * When the read set was created.
  3978. */
  3979. creationTime: SyntheticTimestamp_date_time;
  3980. /**
  3981. * The status for a read set. It provides more detail as to why the read set has a status.
  3982. */
  3983. statusMessage?: ReadSetStatusMessage;
  3984. /**
  3985. * The creation type of the read set.
  3986. */
  3987. creationType?: CreationType;
  3988. /**
  3989. * The entity tag (ETag) is a hash of the object representing its semantic content.
  3990. */
  3991. etag?: ETag;
  3992. }
  3993. export type ReadSetName = string;
  3994. export type ReadSetPartSource = "SOURCE1"|"SOURCE2"|string;
  3995. export type ReadSetPartStreamingBlob = Buffer|Uint8Array|Blob|string|Readable;
  3996. export interface ReadSetS3Access {
  3997. /**
  3998. * The S3 URI for each read set file.
  3999. */
  4000. s3Uri?: S3Uri;
  4001. }
  4002. export type ReadSetStatus = "ARCHIVED"|"ACTIVATING"|"ACTIVE"|"DELETING"|"DELETED"|"PROCESSING_UPLOAD"|"UPLOAD_FAILED"|string;
  4003. export type ReadSetStatusMessage = string;
  4004. export type ReadSetStreamingBlob = Buffer|Uint8Array|Blob|string|Readable;
  4005. export type ReadSetUploadPartList = ReadSetUploadPartListItem[];
  4006. export interface ReadSetUploadPartListFilter {
  4007. /**
  4008. * Filters for read set uploads after a specified time.
  4009. */
  4010. createdAfter?: SyntheticTimestamp_date_time;
  4011. /**
  4012. * Filters for read set part uploads before a specified time.
  4013. */
  4014. createdBefore?: SyntheticTimestamp_date_time;
  4015. }
  4016. export interface ReadSetUploadPartListItem {
  4017. /**
  4018. * The number identifying the part in an upload.
  4019. */
  4020. partNumber: ReadSetUploadPartListItemPartNumberInteger;
  4021. /**
  4022. * The size of the the part in an upload.
  4023. */
  4024. partSize: ReadSetUploadPartListItemPartSizeLong;
  4025. /**
  4026. * The origin of the part being direct uploaded.
  4027. */
  4028. partSource: ReadSetPartSource;
  4029. /**
  4030. * A unique identifier used to confirm that parts are being added to the correct upload.
  4031. */
  4032. checksum: String;
  4033. /**
  4034. * The time stamp for when a direct upload was created.
  4035. */
  4036. creationTime?: SyntheticTimestamp_date_time;
  4037. /**
  4038. * The time stamp for the most recent update to an uploaded part.
  4039. */
  4040. lastUpdatedTime?: SyntheticTimestamp_date_time;
  4041. }
  4042. export type ReadSetUploadPartListItemPartNumberInteger = number;
  4043. export type ReadSetUploadPartListItemPartSizeLong = number;
  4044. export type ReferenceArn = string;
  4045. export type ReferenceArnFilter = string;
  4046. export type ReferenceDescription = string;
  4047. export type ReferenceFile = "SOURCE"|"INDEX"|string;
  4048. export interface ReferenceFiles {
  4049. /**
  4050. * The source file's location in Amazon S3.
  4051. */
  4052. source?: FileInformation;
  4053. /**
  4054. * The files' index.
  4055. */
  4056. index?: FileInformation;
  4057. }
  4058. export interface ReferenceFilter {
  4059. /**
  4060. * A name to filter on.
  4061. */
  4062. name?: ReferenceName;
  4063. /**
  4064. * An MD5 checksum to filter on.
  4065. */
  4066. md5?: Md5;
  4067. /**
  4068. * The filter's start date.
  4069. */
  4070. createdAfter?: SyntheticTimestamp_date_time;
  4071. /**
  4072. * The filter's end date.
  4073. */
  4074. createdBefore?: SyntheticTimestamp_date_time;
  4075. }
  4076. export type ReferenceId = string;
  4077. export type ReferenceImportJobItemStatus = "NOT_STARTED"|"IN_PROGRESS"|"FINISHED"|"FAILED"|string;
  4078. export type ReferenceImportJobStatus = "SUBMITTED"|"IN_PROGRESS"|"CANCELLING"|"CANCELLED"|"FAILED"|"COMPLETED"|"COMPLETED_WITH_FAILURES"|string;
  4079. export interface ReferenceItem {
  4080. /**
  4081. * The reference's ARN.
  4082. */
  4083. referenceArn?: ReferenceArn;
  4084. }
  4085. export type ReferenceList = ReferenceListItem[];
  4086. export interface ReferenceListItem {
  4087. /**
  4088. * The reference's ID.
  4089. */
  4090. id: ReferenceId;
  4091. /**
  4092. * The reference's ARN.
  4093. */
  4094. arn: ReferenceArn;
  4095. /**
  4096. * The reference's store ID.
  4097. */
  4098. referenceStoreId: ReferenceStoreId;
  4099. /**
  4100. * The reference's MD5 checksum.
  4101. */
  4102. md5: Md5;
  4103. /**
  4104. * The reference's status.
  4105. */
  4106. status?: ReferenceStatus;
  4107. /**
  4108. * The reference's name.
  4109. */
  4110. name?: ReferenceName;
  4111. /**
  4112. * The reference's description.
  4113. */
  4114. description?: ReferenceDescription;
  4115. /**
  4116. * When the reference was created.
  4117. */
  4118. creationTime: SyntheticTimestamp_date_time;
  4119. /**
  4120. * When the reference was updated.
  4121. */
  4122. updateTime: SyntheticTimestamp_date_time;
  4123. }
  4124. export type ReferenceName = string;
  4125. export type ReferenceStatus = "ACTIVE"|"DELETING"|"DELETED"|string;
  4126. export type ReferenceStoreArn = string;
  4127. export type ReferenceStoreDescription = string;
  4128. export interface ReferenceStoreDetail {
  4129. /**
  4130. * The store's ARN.
  4131. */
  4132. arn: ReferenceStoreArn;
  4133. /**
  4134. * The store's ID.
  4135. */
  4136. id: ReferenceStoreId;
  4137. /**
  4138. * The store's name.
  4139. */
  4140. name?: ReferenceStoreName;
  4141. /**
  4142. * The store's description.
  4143. */
  4144. description?: ReferenceStoreDescription;
  4145. /**
  4146. * The store's server-side encryption (SSE) settings.
  4147. */
  4148. sseConfig?: SseConfig;
  4149. /**
  4150. * When the store was created.
  4151. */
  4152. creationTime: SyntheticTimestamp_date_time;
  4153. }
  4154. export type ReferenceStoreDetailList = ReferenceStoreDetail[];
  4155. export interface ReferenceStoreFilter {
  4156. /**
  4157. * The name to filter on.
  4158. */
  4159. name?: ReferenceStoreName;
  4160. /**
  4161. * The filter's start date.
  4162. */
  4163. createdAfter?: SyntheticTimestamp_date_time;
  4164. /**
  4165. * The filter's end date.
  4166. */
  4167. createdBefore?: SyntheticTimestamp_date_time;
  4168. }
  4169. export type ReferenceStoreId = string;
  4170. export type ReferenceStoreName = string;
  4171. export type ReferenceStreamingBlob = Buffer|Uint8Array|Blob|string|Readable;
  4172. export type ResourceId = string;
  4173. export type ResourceIdentifier = string;
  4174. export type ResourceOwner = "SELF"|"OTHER"|string;
  4175. export type RoleArn = string;
  4176. export type RunArn = string;
  4177. export type RunExport = "DEFINITION"|string;
  4178. export type RunExportList = RunExport[];
  4179. export type RunFailureReason = string;
  4180. export type RunGroupArn = string;
  4181. export type RunGroupId = string;
  4182. export type RunGroupList = RunGroupListItem[];
  4183. export interface RunGroupListItem {
  4184. /**
  4185. * The group's ARN.
  4186. */
  4187. arn?: RunGroupArn;
  4188. /**
  4189. * The group's ID.
  4190. */
  4191. id?: RunGroupId;
  4192. /**
  4193. * The group's name.
  4194. */
  4195. name?: RunGroupName;
  4196. /**
  4197. * The group's maximum CPU count setting.
  4198. */
  4199. maxCpus?: RunGroupListItemMaxCpusInteger;
  4200. /**
  4201. * The group's maximum concurrent run setting.
  4202. */
  4203. maxRuns?: RunGroupListItemMaxRunsInteger;
  4204. /**
  4205. * The group's maximum duration setting in minutes.
  4206. */
  4207. maxDuration?: RunGroupListItemMaxDurationInteger;
  4208. /**
  4209. * When the group was created.
  4210. */
  4211. creationTime?: RunGroupTimestamp;
  4212. /**
  4213. * The maximum GPUs that can be used by a run group.
  4214. */
  4215. maxGpus?: RunGroupListItemMaxGpusInteger;
  4216. }
  4217. export type RunGroupListItemMaxCpusInteger = number;
  4218. export type RunGroupListItemMaxDurationInteger = number;
  4219. export type RunGroupListItemMaxGpusInteger = number;
  4220. export type RunGroupListItemMaxRunsInteger = number;
  4221. export type RunGroupListToken = string;
  4222. export type RunGroupName = string;
  4223. export type RunGroupRequestId = string;
  4224. export type RunGroupTimestamp = Date;
  4225. export type RunId = string;
  4226. export type RunLeftNormalization = boolean;
  4227. export type RunList = RunListItem[];
  4228. export interface RunListItem {
  4229. /**
  4230. * The run's ARN.
  4231. */
  4232. arn?: RunArn;
  4233. /**
  4234. * The run's ID.
  4235. */
  4236. id?: RunId;
  4237. /**
  4238. * The run's status.
  4239. */
  4240. status?: RunStatus;
  4241. /**
  4242. * The run's workflow ID.
  4243. */
  4244. workflowId?: WorkflowId;
  4245. /**
  4246. * The run's name.
  4247. */
  4248. name?: RunName;
  4249. /**
  4250. * The run's priority.
  4251. */
  4252. priority?: RunListItemPriorityInteger;
  4253. /**
  4254. * The run's storage capacity in gibibytes. For dynamic storage, after the run has completed, this value is the maximum amount of storage used during the run.
  4255. */
  4256. storageCapacity?: RunListItemStorageCapacityInteger;
  4257. /**
  4258. * When the run was created.
  4259. */
  4260. creationTime?: RunTimestamp;
  4261. /**
  4262. * When the run started.
  4263. */
  4264. startTime?: RunTimestamp;
  4265. /**
  4266. * When the run stopped.
  4267. */
  4268. stopTime?: RunTimestamp;
  4269. /**
  4270. * The run's storage type.
  4271. */
  4272. storageType?: StorageType;
  4273. }
  4274. export type RunListItemPriorityInteger = number;
  4275. export type RunListItemStorageCapacityInteger = number;
  4276. export type RunListToken = string;
  4277. export type RunLogLevel = "OFF"|"FATAL"|"ERROR"|"ALL"|string;
  4278. export interface RunLogLocation {
  4279. /**
  4280. * The log stream ARN for the engine log.
  4281. */
  4282. engineLogStream?: EngineLogStream;
  4283. /**
  4284. * The log stream ARN for the run log.
  4285. */
  4286. runLogStream?: RunLogStream;
  4287. }
  4288. export type RunLogStream = string;
  4289. export type RunName = string;
  4290. export type RunOutputUri = string;
  4291. export interface RunParameters {
  4292. }
  4293. export type RunRequestId = string;
  4294. export type RunResourceDigest = string;
  4295. export type RunResourceDigestKey = string;
  4296. export type RunResourceDigests = {[key: string]: RunResourceDigest};
  4297. export type RunRetentionMode = "RETAIN"|"REMOVE"|string;
  4298. export type RunRoleArn = string;
  4299. export type RunStartedBy = string;
  4300. export type RunStatus = "PENDING"|"STARTING"|"RUNNING"|"STOPPING"|"COMPLETED"|"DELETED"|"CANCELLED"|"FAILED"|string;
  4301. export type RunStatusMessage = string;
  4302. export type RunTimestamp = Date;
  4303. export type RunUuid = string;
  4304. export type S3AccessPointArn = string;
  4305. export type S3Destination = string;
  4306. export type S3Uri = string;
  4307. export type SampleId = string;
  4308. export type SchemaItem = {[key: string]: SchemaValueType};
  4309. export type SchemaItemKeyString = string;
  4310. export type SchemaValueType = "LONG"|"INT"|"STRING"|"FLOAT"|"DOUBLE"|"BOOLEAN"|string;
  4311. export type Separator = string;
  4312. export interface SequenceInformation {
  4313. /**
  4314. * The sequence's total read count.
  4315. */
  4316. totalReadCount?: Long;
  4317. /**
  4318. * The sequence's total base count.
  4319. */
  4320. totalBaseCount?: Long;
  4321. /**
  4322. * Where the sequence originated.
  4323. */
  4324. generatedFrom?: GeneratedFrom;
  4325. /**
  4326. * The sequence's alignment setting.
  4327. */
  4328. alignment?: String;
  4329. }
  4330. export type SequenceStoreArn = string;
  4331. export type SequenceStoreDescription = string;
  4332. export interface SequenceStoreDetail {
  4333. /**
  4334. * The store's ARN.
  4335. */
  4336. arn: SequenceStoreArn;
  4337. /**
  4338. * The store's ID.
  4339. */
  4340. id: SequenceStoreId;
  4341. /**
  4342. * The store's name.
  4343. */
  4344. name?: SequenceStoreName;
  4345. /**
  4346. * The store's description.
  4347. */
  4348. description?: SequenceStoreDescription;
  4349. /**
  4350. * The store's server-side encryption (SSE) settings.
  4351. */
  4352. sseConfig?: SseConfig;
  4353. /**
  4354. * When the store was created.
  4355. */
  4356. creationTime: SyntheticTimestamp_date_time;
  4357. /**
  4358. * An S3 location that is used to store files that have failed a direct upload.
  4359. */
  4360. fallbackLocation?: S3Destination;
  4361. /**
  4362. * The algorithm family of the ETag.
  4363. */
  4364. eTagAlgorithmFamily?: ETagAlgorithmFamily;
  4365. }
  4366. export type SequenceStoreDetailList = SequenceStoreDetail[];
  4367. export interface SequenceStoreFilter {
  4368. /**
  4369. * A name to filter on.
  4370. */
  4371. name?: SequenceStoreName;
  4372. /**
  4373. * The filter's start date.
  4374. */
  4375. createdAfter?: SyntheticTimestamp_date_time;
  4376. /**
  4377. * The filter's end date.
  4378. */
  4379. createdBefore?: SyntheticTimestamp_date_time;
  4380. }
  4381. export type SequenceStoreId = string;
  4382. export type SequenceStoreName = string;
  4383. export interface SequenceStoreS3Access {
  4384. /**
  4385. * The S3 URI of the sequence store.
  4386. */
  4387. s3Uri?: S3Uri;
  4388. /**
  4389. * This is ARN of the access point associated with the S3 bucket storing read sets.
  4390. */
  4391. s3AccessPointArn?: S3AccessPointArn;
  4392. }
  4393. export interface ShareDetails {
  4394. /**
  4395. * The ID of the resource share.
  4396. */
  4397. shareId?: String;
  4398. /**
  4399. * The Arn of the shared resource.
  4400. */
  4401. resourceArn?: String;
  4402. /**
  4403. * The ID of the shared resource.
  4404. */
  4405. resourceId?: String;
  4406. /**
  4407. * The principal subscriber is the account that is sharing the resource.
  4408. */
  4409. principalSubscriber?: String;
  4410. /**
  4411. * The account ID for the data owner. The owner creates the resource share.
  4412. */
  4413. ownerId?: String;
  4414. /**
  4415. * The status of the share.
  4416. */
  4417. status?: ShareStatus;
  4418. /**
  4419. * The status message for a resource share. It provides additional details about the share status.
  4420. */
  4421. statusMessage?: StatusMessage;
  4422. /**
  4423. * The name of the resource share.
  4424. */
  4425. shareName?: ShareName;
  4426. /**
  4427. * The timestamp of when the resource share was created.
  4428. */
  4429. creationTime?: CreationTime;
  4430. /**
  4431. * The timestamp of the resource share update.
  4432. */
  4433. updateTime?: UpdateTime;
  4434. }
  4435. export type ShareDetailsList = ShareDetails[];
  4436. export type ShareName = string;
  4437. export type ShareResourceType = "VARIANT_STORE"|"ANNOTATION_STORE"|"WORKFLOW"|string;
  4438. export type ShareStatus = "PENDING"|"ACTIVATING"|"ACTIVE"|"DELETING"|"DELETED"|"FAILED"|string;
  4439. export interface SourceFiles {
  4440. /**
  4441. * The location of the first file in Amazon S3.
  4442. */
  4443. source1: S3Uri;
  4444. /**
  4445. * The location of the second file in Amazon S3.
  4446. */
  4447. source2?: S3Uri;
  4448. }
  4449. export interface SseConfig {
  4450. /**
  4451. * The encryption type.
  4452. */
  4453. type: EncryptionType;
  4454. /**
  4455. * An encryption key ARN.
  4456. */
  4457. keyArn?: SseConfigKeyArnString;
  4458. }
  4459. export type SseConfigKeyArnString = string;
  4460. export interface StartAnnotationImportRequest {
  4461. /**
  4462. * A destination annotation store for the job.
  4463. */
  4464. destinationName: StoreName;
  4465. /**
  4466. * A service role for the job.
  4467. */
  4468. roleArn: Arn;
  4469. /**
  4470. * Items to import.
  4471. */
  4472. items: AnnotationImportItemSources;
  4473. /**
  4474. * The name of the annotation store version.
  4475. */
  4476. versionName?: VersionName;
  4477. /**
  4478. * Formatting options for the annotation file.
  4479. */
  4480. formatOptions?: FormatOptions;
  4481. /**
  4482. * The job's left normalization setting.
  4483. */
  4484. runLeftNormalization?: RunLeftNormalization;
  4485. /**
  4486. * The annotation schema generated by the parsed annotation data.
  4487. */
  4488. annotationFields?: AnnotationFieldMap;
  4489. }
  4490. export interface StartAnnotationImportResponse {
  4491. /**
  4492. * The job's ID.
  4493. */
  4494. jobId: ResourceId;
  4495. }
  4496. export interface StartReadSetActivationJobRequest {
  4497. /**
  4498. * The read set's sequence store ID.
  4499. */
  4500. sequenceStoreId: SequenceStoreId;
  4501. /**
  4502. * To ensure that jobs don't run multiple times, specify a unique token for each job.
  4503. */
  4504. clientToken?: ClientToken;
  4505. /**
  4506. * The job's source files.
  4507. */
  4508. sources: StartReadSetActivationJobRequestSourcesList;
  4509. }
  4510. export type StartReadSetActivationJobRequestSourcesList = StartReadSetActivationJobSourceItem[];
  4511. export interface StartReadSetActivationJobResponse {
  4512. /**
  4513. * The job's ID.
  4514. */
  4515. id: ActivationJobId;
  4516. /**
  4517. * The read set's sequence store ID.
  4518. */
  4519. sequenceStoreId: SequenceStoreId;
  4520. /**
  4521. * The job's status.
  4522. */
  4523. status: ReadSetActivationJobStatus;
  4524. /**
  4525. * When the job was created.
  4526. */
  4527. creationTime: SyntheticTimestamp_date_time;
  4528. }
  4529. export interface StartReadSetActivationJobSourceItem {
  4530. /**
  4531. * The source's read set ID.
  4532. */
  4533. readSetId: ReadSetId;
  4534. }
  4535. export interface StartReadSetExportJobRequest {
  4536. /**
  4537. * The read set's sequence store ID.
  4538. */
  4539. sequenceStoreId: SequenceStoreId;
  4540. /**
  4541. * A location for exported files in Amazon S3.
  4542. */
  4543. destination: S3Destination;
  4544. /**
  4545. * A service role for the job.
  4546. */
  4547. roleArn: RoleArn;
  4548. /**
  4549. * To ensure that jobs don't run multiple times, specify a unique token for each job.
  4550. */
  4551. clientToken?: ClientToken;
  4552. /**
  4553. * The job's source files.
  4554. */
  4555. sources: StartReadSetExportJobRequestSourcesList;
  4556. }
  4557. export type StartReadSetExportJobRequestSourcesList = ExportReadSet[];
  4558. export interface StartReadSetExportJobResponse {
  4559. /**
  4560. * The job's ID.
  4561. */
  4562. id: ExportJobId;
  4563. /**
  4564. * The read set's sequence store ID.
  4565. */
  4566. sequenceStoreId: SequenceStoreId;
  4567. /**
  4568. * The job's output location.
  4569. */
  4570. destination: S3Destination;
  4571. /**
  4572. * The job's status.
  4573. */
  4574. status: ReadSetExportJobStatus;
  4575. /**
  4576. * When the job was created.
  4577. */
  4578. creationTime: SyntheticTimestamp_date_time;
  4579. }
  4580. export interface StartReadSetImportJobRequest {
  4581. /**
  4582. * The read set's sequence store ID.
  4583. */
  4584. sequenceStoreId: SequenceStoreId;
  4585. /**
  4586. * A service role for the job.
  4587. */
  4588. roleArn: RoleArn;
  4589. /**
  4590. * To ensure that jobs don't run multiple times, specify a unique token for each job.
  4591. */
  4592. clientToken?: ClientToken;
  4593. /**
  4594. * The job's source files.
  4595. */
  4596. sources: StartReadSetImportJobRequestSourcesList;
  4597. }
  4598. export type StartReadSetImportJobRequestSourcesList = StartReadSetImportJobSourceItem[];
  4599. export interface StartReadSetImportJobResponse {
  4600. /**
  4601. * The job's ID.
  4602. */
  4603. id: ImportJobId;
  4604. /**
  4605. * The read set's sequence store ID.
  4606. */
  4607. sequenceStoreId: SequenceStoreId;
  4608. /**
  4609. * The job's service role ARN.
  4610. */
  4611. roleArn: RoleArn;
  4612. /**
  4613. * The job's status.
  4614. */
  4615. status: ReadSetImportJobStatus;
  4616. /**
  4617. * When the job was created.
  4618. */
  4619. creationTime: SyntheticTimestamp_date_time;
  4620. }
  4621. export interface StartReadSetImportJobSourceItem {
  4622. /**
  4623. * The source files' location in Amazon S3.
  4624. */
  4625. sourceFiles: SourceFiles;
  4626. /**
  4627. * The source's file type.
  4628. */
  4629. sourceFileType: FileType;
  4630. /**
  4631. * The source's subject ID.
  4632. */
  4633. subjectId: SubjectId;
  4634. /**
  4635. * The source's sample ID.
  4636. */
  4637. sampleId: SampleId;
  4638. /**
  4639. * Where the source originated.
  4640. */
  4641. generatedFrom?: GeneratedFrom;
  4642. /**
  4643. * The source's reference ARN.
  4644. */
  4645. referenceArn?: ReferenceArn;
  4646. /**
  4647. * The source's name.
  4648. */
  4649. name?: ReadSetName;
  4650. /**
  4651. * The source's description.
  4652. */
  4653. description?: ReadSetDescription;
  4654. /**
  4655. * The source's tags.
  4656. */
  4657. tags?: TagMap;
  4658. }
  4659. export interface StartReferenceImportJobRequest {
  4660. /**
  4661. * The job's reference store ID.
  4662. */
  4663. referenceStoreId: ReferenceStoreId;
  4664. /**
  4665. * A service role for the job.
  4666. */
  4667. roleArn: RoleArn;
  4668. /**
  4669. * To ensure that jobs don't run multiple times, specify a unique token for each job.
  4670. */
  4671. clientToken?: ClientToken;
  4672. /**
  4673. * The job's source files.
  4674. */
  4675. sources: StartReferenceImportJobRequestSourcesList;
  4676. }
  4677. export type StartReferenceImportJobRequestSourcesList = StartReferenceImportJobSourceItem[];
  4678. export interface StartReferenceImportJobResponse {
  4679. /**
  4680. * The job's ID.
  4681. */
  4682. id: ImportJobId;
  4683. /**
  4684. * The job's reference store ID.
  4685. */
  4686. referenceStoreId: ReferenceStoreId;
  4687. /**
  4688. * The job's service role ARN.
  4689. */
  4690. roleArn: RoleArn;
  4691. /**
  4692. * The job's status.
  4693. */
  4694. status: ReferenceImportJobStatus;
  4695. /**
  4696. * When the job was created.
  4697. */
  4698. creationTime: SyntheticTimestamp_date_time;
  4699. }
  4700. export interface StartReferenceImportJobSourceItem {
  4701. /**
  4702. * The source file's location in Amazon S3.
  4703. */
  4704. sourceFile: S3Uri;
  4705. /**
  4706. * The source's name.
  4707. */
  4708. name: ReferenceName;
  4709. /**
  4710. * The source's description.
  4711. */
  4712. description?: ReferenceDescription;
  4713. /**
  4714. * The source's tags.
  4715. */
  4716. tags?: TagMap;
  4717. }
  4718. export interface StartRunRequest {
  4719. /**
  4720. * The run's workflow ID.
  4721. */
  4722. workflowId?: WorkflowId;
  4723. /**
  4724. * The run's workflow type.
  4725. */
  4726. workflowType?: WorkflowType;
  4727. /**
  4728. * The ID of a run to duplicate.
  4729. */
  4730. runId?: RunId;
  4731. /**
  4732. * A service role for the run.
  4733. */
  4734. roleArn: RunRoleArn;
  4735. /**
  4736. * A name for the run.
  4737. */
  4738. name?: RunName;
  4739. /**
  4740. * The run's group ID.
  4741. */
  4742. runGroupId?: RunGroupId;
  4743. /**
  4744. * A priority for the run.
  4745. */
  4746. priority?: StartRunRequestPriorityInteger;
  4747. /**
  4748. * Parameters for the run.
  4749. */
  4750. parameters?: RunParameters;
  4751. /**
  4752. * A storage capacity for the run in gibibytes. This field is not required if the storage type is dynamic (the system ignores any value that you enter).
  4753. */
  4754. storageCapacity?: StartRunRequestStorageCapacityInteger;
  4755. /**
  4756. * An output URI for the run.
  4757. */
  4758. outputUri?: RunOutputUri;
  4759. /**
  4760. * A log level for the run.
  4761. */
  4762. logLevel?: RunLogLevel;
  4763. /**
  4764. * Tags for the run.
  4765. */
  4766. tags?: TagMap;
  4767. /**
  4768. * To ensure that requests don't run multiple times, specify a unique ID for each request.
  4769. */
  4770. requestId: RunRequestId;
  4771. /**
  4772. * The retention mode for the run.
  4773. */
  4774. retentionMode?: RunRetentionMode;
  4775. /**
  4776. * The run's storage type. By default, the run uses STATIC storage type, which allocates a fixed amount of storage. If you set the storage type to DYNAMIC, HealthOmics dynamically scales the storage up or down, based on file system utilization.
  4777. */
  4778. storageType?: StorageType;
  4779. /**
  4780. * The ID of the workflow owner.
  4781. */
  4782. workflowOwnerId?: WorkflowOwnerId;
  4783. }
  4784. export type StartRunRequestPriorityInteger = number;
  4785. export type StartRunRequestStorageCapacityInteger = number;
  4786. export interface StartRunResponse {
  4787. /**
  4788. * The run's ARN.
  4789. */
  4790. arn?: RunArn;
  4791. /**
  4792. * The run's ID.
  4793. */
  4794. id?: RunId;
  4795. /**
  4796. * The run's status.
  4797. */
  4798. status?: RunStatus;
  4799. /**
  4800. * The run's tags.
  4801. */
  4802. tags?: TagMap;
  4803. /**
  4804. * The universally unique identifier for a run.
  4805. */
  4806. uuid?: RunUuid;
  4807. /**
  4808. * The destination for workflow outputs.
  4809. */
  4810. runOutputUri?: RunOutputUri;
  4811. }
  4812. export interface StartVariantImportRequest {
  4813. /**
  4814. * The destination variant store for the job.
  4815. */
  4816. destinationName: StoreName;
  4817. /**
  4818. * A service role for the job.
  4819. */
  4820. roleArn: Arn;
  4821. /**
  4822. * Items to import.
  4823. */
  4824. items: VariantImportItemSources;
  4825. /**
  4826. * The job's left normalization setting.
  4827. */
  4828. runLeftNormalization?: RunLeftNormalization;
  4829. /**
  4830. * The annotation schema generated by the parsed annotation data.
  4831. */
  4832. annotationFields?: AnnotationFieldMap;
  4833. }
  4834. export interface StartVariantImportResponse {
  4835. /**
  4836. * The job's ID.
  4837. */
  4838. jobId: ResourceId;
  4839. }
  4840. export type StatusList = ShareStatus[];
  4841. export type StatusMessage = string;
  4842. export type StorageType = "STATIC"|"DYNAMIC"|string;
  4843. export type StoreFormat = "GFF"|"TSV"|"VCF"|string;
  4844. export type StoreName = string;
  4845. export interface StoreOptions {
  4846. /**
  4847. * File settings for a TSV store.
  4848. */
  4849. tsvStoreOptions?: TsvStoreOptions;
  4850. }
  4851. export type StoreStatus = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED"|string;
  4852. export type String = string;
  4853. export type SubjectId = string;
  4854. export type SyntheticTimestamp_date_time = Date;
  4855. export type TagArn = string;
  4856. export type TagKey = string;
  4857. export type TagKeyList = TagKey[];
  4858. export type TagMap = {[key: string]: TagValue};
  4859. export interface TagResourceRequest {
  4860. /**
  4861. * The resource's ARN.
  4862. */
  4863. resourceArn: TagArn;
  4864. /**
  4865. * Tags for the resource.
  4866. */
  4867. tags: TagResourceRequestTagsMap;
  4868. }
  4869. export type TagResourceRequestTagsMap = {[key: string]: TagValue};
  4870. export interface TagResourceResponse {
  4871. }
  4872. export type TagValue = string;
  4873. export type TaskFailureReason = string;
  4874. export type TaskId = string;
  4875. export type TaskInstanceType = string;
  4876. export type TaskList = TaskListItem[];
  4877. export interface TaskListItem {
  4878. /**
  4879. * The task's ID.
  4880. */
  4881. taskId?: TaskId;
  4882. /**
  4883. * The task's status.
  4884. */
  4885. status?: TaskStatus;
  4886. /**
  4887. * The task's name.
  4888. */
  4889. name?: TaskName;
  4890. /**
  4891. * The task's CPU count.
  4892. */
  4893. cpus?: TaskListItemCpusInteger;
  4894. /**
  4895. * The task's memory use in gigabyes.
  4896. */
  4897. memory?: TaskListItemMemoryInteger;
  4898. /**
  4899. * When the task was created.
  4900. */
  4901. creationTime?: TaskTimestamp;
  4902. /**
  4903. * When the task started.
  4904. */
  4905. startTime?: TaskTimestamp;
  4906. /**
  4907. * When the task stopped.
  4908. */
  4909. stopTime?: TaskTimestamp;
  4910. /**
  4911. * The number of Graphics Processing Units (GPU) specified for the task.
  4912. */
  4913. gpus?: TaskListItemGpusInteger;
  4914. /**
  4915. * The instance type for a task.
  4916. */
  4917. instanceType?: TaskInstanceType;
  4918. }
  4919. export type TaskListItemCpusInteger = number;
  4920. export type TaskListItemGpusInteger = number;
  4921. export type TaskListItemMemoryInteger = number;
  4922. export type TaskListToken = string;
  4923. export type TaskLogStream = string;
  4924. export type TaskName = string;
  4925. export type TaskStatus = "PENDING"|"STARTING"|"RUNNING"|"STOPPING"|"COMPLETED"|"CANCELLED"|"FAILED"|string;
  4926. export type TaskStatusMessage = string;
  4927. export type TaskTimestamp = Date;
  4928. export interface TsvOptions {
  4929. /**
  4930. * The file's read options.
  4931. */
  4932. readOptions?: ReadOptions;
  4933. }
  4934. export interface TsvStoreOptions {
  4935. /**
  4936. * The store's annotation type.
  4937. */
  4938. annotationType?: AnnotationType;
  4939. /**
  4940. * The store's header key to column name mapping.
  4941. */
  4942. formatToHeader?: FormatToHeader;
  4943. /**
  4944. * The store's schema.
  4945. */
  4946. schema?: TsvStoreOptionsSchemaList;
  4947. }
  4948. export type TsvStoreOptionsSchemaList = SchemaItem[];
  4949. export interface TsvVersionOptions {
  4950. /**
  4951. * The store version's annotation type.
  4952. */
  4953. annotationType?: AnnotationType;
  4954. /**
  4955. * The annotation store version's header key to column name mapping.
  4956. */
  4957. formatToHeader?: FormatToHeader;
  4958. /**
  4959. * The TSV schema for an annotation store version.
  4960. */
  4961. schema?: TsvVersionOptionsSchemaList;
  4962. }
  4963. export type TsvVersionOptionsSchemaList = SchemaItem[];
  4964. export type TypeList = ShareResourceType[];
  4965. export interface UntagResourceRequest {
  4966. /**
  4967. * The resource's ARN.
  4968. */
  4969. resourceArn: TagArn;
  4970. /**
  4971. * Keys of tags to remove.
  4972. */
  4973. tagKeys: TagKeyList;
  4974. }
  4975. export interface UntagResourceResponse {
  4976. }
  4977. export interface UpdateAnnotationStoreRequest {
  4978. /**
  4979. * A name for the store.
  4980. */
  4981. name: String;
  4982. /**
  4983. * A description for the store.
  4984. */
  4985. description?: Description;
  4986. }
  4987. export interface UpdateAnnotationStoreResponse {
  4988. /**
  4989. * The store's ID.
  4990. */
  4991. id: ResourceId;
  4992. /**
  4993. * The store's genome reference.
  4994. */
  4995. reference: ReferenceItem;
  4996. /**
  4997. * The store's status.
  4998. */
  4999. status: StoreStatus;
  5000. /**
  5001. * The store's name.
  5002. */
  5003. name: String;
  5004. /**
  5005. * The store's description.
  5006. */
  5007. description: Description;
  5008. /**
  5009. * When the store was created.
  5010. */
  5011. creationTime: CreationTime;
  5012. /**
  5013. * When the store was updated.
  5014. */
  5015. updateTime: UpdateTime;
  5016. /**
  5017. * Parsing options for the store.
  5018. */
  5019. storeOptions?: StoreOptions;
  5020. /**
  5021. * The annotation file format of the store.
  5022. */
  5023. storeFormat?: StoreFormat;
  5024. }
  5025. export interface UpdateAnnotationStoreVersionRequest {
  5026. /**
  5027. * The name of an annotation store.
  5028. */
  5029. name: String;
  5030. /**
  5031. * The name of an annotation store version.
  5032. */
  5033. versionName: String;
  5034. /**
  5035. * The description of an annotation store.
  5036. */
  5037. description?: Description;
  5038. }
  5039. export interface UpdateAnnotationStoreVersionResponse {
  5040. /**
  5041. * The annotation store ID.
  5042. */
  5043. storeId: ResourceId;
  5044. /**
  5045. * The annotation store version ID.
  5046. */
  5047. id: ResourceId;
  5048. /**
  5049. * The status of an annotation store version.
  5050. */
  5051. status: VersionStatus;
  5052. /**
  5053. * The name of an annotation store.
  5054. */
  5055. name: StoreName;
  5056. /**
  5057. * The name of an annotation store version.
  5058. */
  5059. versionName: VersionName;
  5060. /**
  5061. * The description of an annotation store version.
  5062. */
  5063. description: Description;
  5064. /**
  5065. * The time stamp for when an annotation store version was created.
  5066. */
  5067. creationTime: CreationTime;
  5068. /**
  5069. * The time stamp for when an annotation store version was updated.
  5070. */
  5071. updateTime: UpdateTime;
  5072. }
  5073. export interface UpdateRunGroupRequest {
  5074. /**
  5075. * The group's ID.
  5076. */
  5077. id: RunGroupId;
  5078. /**
  5079. * A name for the group.
  5080. */
  5081. name?: RunGroupName;
  5082. /**
  5083. * The maximum number of CPUs to use.
  5084. */
  5085. maxCpus?: UpdateRunGroupRequestMaxCpusInteger;
  5086. /**
  5087. * The maximum number of concurrent runs for the group.
  5088. */
  5089. maxRuns?: UpdateRunGroupRequestMaxRunsInteger;
  5090. /**
  5091. * A maximum run time for the group in minutes.
  5092. */
  5093. maxDuration?: UpdateRunGroupRequestMaxDurationInteger;
  5094. /**
  5095. * The maximum GPUs that can be used by a run group.
  5096. */
  5097. maxGpus?: UpdateRunGroupRequestMaxGpusInteger;
  5098. }
  5099. export type UpdateRunGroupRequestMaxCpusInteger = number;
  5100. export type UpdateRunGroupRequestMaxDurationInteger = number;
  5101. export type UpdateRunGroupRequestMaxGpusInteger = number;
  5102. export type UpdateRunGroupRequestMaxRunsInteger = number;
  5103. export type UpdateTime = Date;
  5104. export interface UpdateVariantStoreRequest {
  5105. /**
  5106. * A name for the store.
  5107. */
  5108. name: String;
  5109. /**
  5110. * A description for the store.
  5111. */
  5112. description?: Description;
  5113. }
  5114. export interface UpdateVariantStoreResponse {
  5115. /**
  5116. * The store's ID.
  5117. */
  5118. id: ResourceId;
  5119. /**
  5120. * The store's genome reference.
  5121. */
  5122. reference: ReferenceItem;
  5123. /**
  5124. * The store's status.
  5125. */
  5126. status: StoreStatus;
  5127. /**
  5128. * The store's name.
  5129. */
  5130. name: String;
  5131. /**
  5132. * The store's description.
  5133. */
  5134. description: Description;
  5135. /**
  5136. * When the store was created.
  5137. */
  5138. creationTime: CreationTime;
  5139. /**
  5140. * When the store was updated.
  5141. */
  5142. updateTime: UpdateTime;
  5143. }
  5144. export interface UpdateWorkflowRequest {
  5145. /**
  5146. * The workflow's ID.
  5147. */
  5148. id: WorkflowId;
  5149. /**
  5150. * A name for the workflow.
  5151. */
  5152. name?: WorkflowName;
  5153. /**
  5154. * A description for the workflow.
  5155. */
  5156. description?: WorkflowDescription;
  5157. }
  5158. export type UploadId = string;
  5159. export interface UploadReadSetPartRequest {
  5160. /**
  5161. * The Sequence Store ID used for the multipart upload.
  5162. */
  5163. sequenceStoreId: SequenceStoreId;
  5164. /**
  5165. * The ID for the initiated multipart upload.
  5166. */
  5167. uploadId: UploadId;
  5168. /**
  5169. * The source file for an upload part.
  5170. */
  5171. partSource: ReadSetPartSource;
  5172. /**
  5173. * The number of the part being uploaded.
  5174. */
  5175. partNumber: UploadReadSetPartRequestPartNumberInteger;
  5176. /**
  5177. * The read set data to upload for a part.
  5178. */
  5179. payload: ReadSetPartStreamingBlob;
  5180. }
  5181. export type UploadReadSetPartRequestPartNumberInteger = number;
  5182. export interface UploadReadSetPartResponse {
  5183. /**
  5184. * An identifier used to confirm that parts are being added to the intended upload.
  5185. */
  5186. checksum: String;
  5187. }
  5188. export interface VariantImportItemDetail {
  5189. /**
  5190. * The source file's location in Amazon S3.
  5191. */
  5192. source: S3Uri;
  5193. /**
  5194. * The item's job status.
  5195. */
  5196. jobStatus: JobStatus;
  5197. /**
  5198. * A message that provides additional context about a job
  5199. */
  5200. statusMessage?: JobStatusMsg;
  5201. }
  5202. export type VariantImportItemDetails = VariantImportItemDetail[];
  5203. export interface VariantImportItemSource {
  5204. /**
  5205. * The source file's location in Amazon S3.
  5206. */
  5207. source: S3Uri;
  5208. }
  5209. export type VariantImportItemSources = VariantImportItemSource[];
  5210. export interface VariantImportJobItem {
  5211. /**
  5212. * The job's ID.
  5213. */
  5214. id: String;
  5215. /**
  5216. * The job's destination variant store.
  5217. */
  5218. destinationName: String;
  5219. /**
  5220. * The job's service role ARN.
  5221. */
  5222. roleArn: Arn;
  5223. /**
  5224. * The job's status.
  5225. */
  5226. status: JobStatus;
  5227. /**
  5228. * When the job was created.
  5229. */
  5230. creationTime: CreationTime;
  5231. /**
  5232. * When the job was updated.
  5233. */
  5234. updateTime: UpdateTime;
  5235. /**
  5236. * When the job completed.
  5237. */
  5238. completionTime?: CompletionTime;
  5239. /**
  5240. * The job's left normalization setting.
  5241. */
  5242. runLeftNormalization?: RunLeftNormalization;
  5243. /**
  5244. * The annotation schema generated by the parsed annotation data.
  5245. */
  5246. annotationFields?: AnnotationFieldMap;
  5247. }
  5248. export type VariantImportJobItems = VariantImportJobItem[];
  5249. export interface VariantStoreItem {
  5250. /**
  5251. * The store's ID.
  5252. */
  5253. id: ResourceId;
  5254. /**
  5255. * The store's genome reference.
  5256. */
  5257. reference: ReferenceItem;
  5258. /**
  5259. * The store's status.
  5260. */
  5261. status: StoreStatus;
  5262. /**
  5263. * The store's ARN.
  5264. */
  5265. storeArn: Arn;
  5266. /**
  5267. * The store's name.
  5268. */
  5269. name: String;
  5270. /**
  5271. * The store's description.
  5272. */
  5273. description: Description;
  5274. /**
  5275. * The store's server-side encryption (SSE) settings.
  5276. */
  5277. sseConfig: SseConfig;
  5278. /**
  5279. * When the store was created.
  5280. */
  5281. creationTime: CreationTime;
  5282. /**
  5283. * When the store was updated.
  5284. */
  5285. updateTime: UpdateTime;
  5286. /**
  5287. * The store's status message.
  5288. */
  5289. statusMessage: StatusMessage;
  5290. /**
  5291. * The store's size in bytes.
  5292. */
  5293. storeSizeBytes: Long;
  5294. }
  5295. export type VariantStoreItems = VariantStoreItem[];
  5296. export interface VcfOptions {
  5297. /**
  5298. * The file's ignore qual field setting.
  5299. */
  5300. ignoreQualField?: Boolean;
  5301. /**
  5302. * The file's ignore filter field setting.
  5303. */
  5304. ignoreFilterField?: Boolean;
  5305. }
  5306. export interface VersionDeleteError {
  5307. /**
  5308. * The name given to an annotation store version.
  5309. */
  5310. versionName: VersionName;
  5311. /**
  5312. * The message explaining the error in annotation store deletion.
  5313. */
  5314. message: String;
  5315. }
  5316. export type VersionDeleteErrorList = VersionDeleteError[];
  5317. export type VersionList = VersionName[];
  5318. export type VersionName = string;
  5319. export interface VersionOptions {
  5320. /**
  5321. * File settings for a version of a TSV store.
  5322. */
  5323. tsvVersionOptions?: TsvVersionOptions;
  5324. }
  5325. export type VersionStatus = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED"|string;
  5326. export type WorkflowArn = string;
  5327. export type WorkflowDefinition = string;
  5328. export type WorkflowDescription = string;
  5329. export type WorkflowDigest = string;
  5330. export type WorkflowEngine = "WDL"|"NEXTFLOW"|"CWL"|string;
  5331. export type WorkflowExport = "DEFINITION"|string;
  5332. export type WorkflowExportList = WorkflowExport[];
  5333. export type WorkflowId = string;
  5334. export type WorkflowList = WorkflowListItem[];
  5335. export interface WorkflowListItem {
  5336. /**
  5337. * The workflow's ARN.
  5338. */
  5339. arn?: WorkflowArn;
  5340. /**
  5341. * The workflow's ID.
  5342. */
  5343. id?: WorkflowId;
  5344. /**
  5345. * The workflow's name.
  5346. */
  5347. name?: WorkflowName;
  5348. /**
  5349. * The workflow's status.
  5350. */
  5351. status?: WorkflowStatus;
  5352. /**
  5353. * The workflow's type.
  5354. */
  5355. type?: WorkflowType;
  5356. /**
  5357. * The workflow's digest.
  5358. */
  5359. digest?: WorkflowDigest;
  5360. /**
  5361. * When the workflow was created.
  5362. */
  5363. creationTime?: WorkflowTimestamp;
  5364. /**
  5365. * Any metadata available for workflow. The information listed may vary depending on the workflow, and there may also be no metadata to return.
  5366. */
  5367. metadata?: WorkflowMetadata;
  5368. }
  5369. export type WorkflowListToken = string;
  5370. export type WorkflowMain = string;
  5371. export type WorkflowMetadata = {[key: string]: WorkflowMetadataValue};
  5372. export type WorkflowMetadataKey = string;
  5373. export type WorkflowMetadataValue = string;
  5374. export type WorkflowName = string;
  5375. export type WorkflowOwnerId = string;
  5376. export interface WorkflowParameter {
  5377. /**
  5378. * The parameter's description.
  5379. */
  5380. description?: WorkflowParameterDescription;
  5381. /**
  5382. * Whether the parameter is optional.
  5383. */
  5384. optional?: Boolean;
  5385. }
  5386. export type WorkflowParameterDescription = string;
  5387. export type WorkflowParameterName = string;
  5388. export type WorkflowParameterTemplate = {[key: string]: WorkflowParameter};
  5389. export type WorkflowRequestId = string;
  5390. export type WorkflowStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|"INACTIVE"|string;
  5391. export type WorkflowStatusMessage = string;
  5392. export type WorkflowTimestamp = Date;
  5393. export type WorkflowType = "PRIVATE"|"READY2RUN"|string;
  5394. /**
  5395. * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
  5396. */
  5397. export type apiVersion = "2022-11-28"|"latest"|string;
  5398. export interface ClientApiVersions {
  5399. /**
  5400. * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
  5401. */
  5402. apiVersion?: apiVersion;
  5403. }
  5404. export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
  5405. /**
  5406. * Contains interfaces for use with the Omics client.
  5407. */
  5408. export import Types = Omics;
  5409. }
  5410. export = Omics;