omics-2022-11-28.min.json 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2022-11-28",
  5. "endpointPrefix": "omics",
  6. "jsonVersion": "1.1",
  7. "protocol": "rest-json",
  8. "serviceFullName": "Amazon Omics",
  9. "serviceId": "Omics",
  10. "signatureVersion": "v4",
  11. "signingName": "omics",
  12. "uid": "omics-2022-11-28"
  13. },
  14. "operations": {
  15. "AbortMultipartReadSetUpload": {
  16. "http": {
  17. "method": "DELETE",
  18. "requestUri": "/sequencestore/{sequenceStoreId}/upload/{uploadId}/abort",
  19. "responseCode": 200
  20. },
  21. "input": {
  22. "type": "structure",
  23. "required": [
  24. "sequenceStoreId",
  25. "uploadId"
  26. ],
  27. "members": {
  28. "sequenceStoreId": {
  29. "location": "uri",
  30. "locationName": "sequenceStoreId"
  31. },
  32. "uploadId": {
  33. "location": "uri",
  34. "locationName": "uploadId"
  35. }
  36. }
  37. },
  38. "output": {
  39. "type": "structure",
  40. "members": {}
  41. },
  42. "endpoint": {
  43. "hostPrefix": "control-storage-"
  44. }
  45. },
  46. "AcceptShare": {
  47. "http": {
  48. "requestUri": "/share/{shareId}",
  49. "responseCode": 200
  50. },
  51. "input": {
  52. "type": "structure",
  53. "required": [
  54. "shareId"
  55. ],
  56. "members": {
  57. "shareId": {
  58. "location": "uri",
  59. "locationName": "shareId"
  60. }
  61. }
  62. },
  63. "output": {
  64. "type": "structure",
  65. "members": {
  66. "status": {}
  67. }
  68. },
  69. "endpoint": {
  70. "hostPrefix": "analytics-"
  71. }
  72. },
  73. "BatchDeleteReadSet": {
  74. "http": {
  75. "requestUri": "/sequencestore/{sequenceStoreId}/readset/batch/delete",
  76. "responseCode": 200
  77. },
  78. "input": {
  79. "type": "structure",
  80. "required": [
  81. "ids",
  82. "sequenceStoreId"
  83. ],
  84. "members": {
  85. "ids": {
  86. "type": "list",
  87. "member": {}
  88. },
  89. "sequenceStoreId": {
  90. "location": "uri",
  91. "locationName": "sequenceStoreId"
  92. }
  93. }
  94. },
  95. "output": {
  96. "type": "structure",
  97. "members": {
  98. "errors": {
  99. "type": "list",
  100. "member": {
  101. "type": "structure",
  102. "required": [
  103. "id",
  104. "code",
  105. "message"
  106. ],
  107. "members": {
  108. "id": {},
  109. "code": {},
  110. "message": {}
  111. }
  112. }
  113. }
  114. }
  115. },
  116. "endpoint": {
  117. "hostPrefix": "control-storage-"
  118. },
  119. "idempotent": true
  120. },
  121. "CancelAnnotationImportJob": {
  122. "http": {
  123. "method": "DELETE",
  124. "requestUri": "/import/annotation/{jobId}",
  125. "responseCode": 200
  126. },
  127. "input": {
  128. "type": "structure",
  129. "required": [
  130. "jobId"
  131. ],
  132. "members": {
  133. "jobId": {
  134. "location": "uri",
  135. "locationName": "jobId"
  136. }
  137. }
  138. },
  139. "output": {
  140. "type": "structure",
  141. "members": {}
  142. },
  143. "endpoint": {
  144. "hostPrefix": "analytics-"
  145. },
  146. "idempotent": true
  147. },
  148. "CancelRun": {
  149. "http": {
  150. "requestUri": "/run/{id}/cancel",
  151. "responseCode": 202
  152. },
  153. "input": {
  154. "type": "structure",
  155. "required": [
  156. "id"
  157. ],
  158. "members": {
  159. "id": {
  160. "location": "uri",
  161. "locationName": "id"
  162. }
  163. }
  164. },
  165. "endpoint": {
  166. "hostPrefix": "workflows-"
  167. }
  168. },
  169. "CancelVariantImportJob": {
  170. "http": {
  171. "method": "DELETE",
  172. "requestUri": "/import/variant/{jobId}",
  173. "responseCode": 200
  174. },
  175. "input": {
  176. "type": "structure",
  177. "required": [
  178. "jobId"
  179. ],
  180. "members": {
  181. "jobId": {
  182. "location": "uri",
  183. "locationName": "jobId"
  184. }
  185. }
  186. },
  187. "output": {
  188. "type": "structure",
  189. "members": {}
  190. },
  191. "endpoint": {
  192. "hostPrefix": "analytics-"
  193. },
  194. "idempotent": true
  195. },
  196. "CompleteMultipartReadSetUpload": {
  197. "http": {
  198. "requestUri": "/sequencestore/{sequenceStoreId}/upload/{uploadId}/complete",
  199. "responseCode": 200
  200. },
  201. "input": {
  202. "type": "structure",
  203. "required": [
  204. "sequenceStoreId",
  205. "uploadId",
  206. "parts"
  207. ],
  208. "members": {
  209. "sequenceStoreId": {
  210. "location": "uri",
  211. "locationName": "sequenceStoreId"
  212. },
  213. "uploadId": {
  214. "location": "uri",
  215. "locationName": "uploadId"
  216. },
  217. "parts": {
  218. "type": "list",
  219. "member": {
  220. "type": "structure",
  221. "required": [
  222. "partNumber",
  223. "partSource",
  224. "checksum"
  225. ],
  226. "members": {
  227. "partNumber": {
  228. "type": "integer"
  229. },
  230. "partSource": {},
  231. "checksum": {}
  232. }
  233. }
  234. }
  235. }
  236. },
  237. "output": {
  238. "type": "structure",
  239. "required": [
  240. "readSetId"
  241. ],
  242. "members": {
  243. "readSetId": {}
  244. }
  245. },
  246. "endpoint": {
  247. "hostPrefix": "storage-"
  248. }
  249. },
  250. "CreateAnnotationStore": {
  251. "http": {
  252. "requestUri": "/annotationStore",
  253. "responseCode": 200
  254. },
  255. "input": {
  256. "type": "structure",
  257. "required": [
  258. "storeFormat"
  259. ],
  260. "members": {
  261. "reference": {
  262. "shape": "Su"
  263. },
  264. "name": {},
  265. "description": {},
  266. "tags": {
  267. "shape": "Sy"
  268. },
  269. "versionName": {},
  270. "sseConfig": {
  271. "shape": "S12"
  272. },
  273. "storeFormat": {},
  274. "storeOptions": {
  275. "shape": "S16"
  276. }
  277. }
  278. },
  279. "output": {
  280. "type": "structure",
  281. "required": [
  282. "id",
  283. "status",
  284. "name",
  285. "versionName",
  286. "creationTime"
  287. ],
  288. "members": {
  289. "id": {},
  290. "reference": {
  291. "shape": "Su"
  292. },
  293. "storeFormat": {},
  294. "storeOptions": {
  295. "shape": "S16"
  296. },
  297. "status": {},
  298. "name": {},
  299. "versionName": {},
  300. "creationTime": {
  301. "shape": "S1i"
  302. }
  303. }
  304. },
  305. "endpoint": {
  306. "hostPrefix": "analytics-"
  307. }
  308. },
  309. "CreateAnnotationStoreVersion": {
  310. "http": {
  311. "requestUri": "/annotationStore/{name}/version",
  312. "responseCode": 200
  313. },
  314. "input": {
  315. "type": "structure",
  316. "required": [
  317. "name",
  318. "versionName"
  319. ],
  320. "members": {
  321. "name": {
  322. "location": "uri",
  323. "locationName": "name"
  324. },
  325. "versionName": {},
  326. "description": {},
  327. "versionOptions": {
  328. "shape": "S1k"
  329. },
  330. "tags": {
  331. "shape": "Sy"
  332. }
  333. }
  334. },
  335. "output": {
  336. "type": "structure",
  337. "required": [
  338. "id",
  339. "versionName",
  340. "storeId",
  341. "name",
  342. "status",
  343. "creationTime"
  344. ],
  345. "members": {
  346. "id": {},
  347. "versionName": {},
  348. "storeId": {},
  349. "versionOptions": {
  350. "shape": "S1k"
  351. },
  352. "name": {},
  353. "status": {},
  354. "creationTime": {
  355. "shape": "S1i"
  356. }
  357. }
  358. },
  359. "endpoint": {
  360. "hostPrefix": "analytics-"
  361. }
  362. },
  363. "CreateMultipartReadSetUpload": {
  364. "http": {
  365. "requestUri": "/sequencestore/{sequenceStoreId}/upload",
  366. "responseCode": 200
  367. },
  368. "input": {
  369. "type": "structure",
  370. "required": [
  371. "sequenceStoreId",
  372. "sourceFileType",
  373. "subjectId",
  374. "sampleId",
  375. "name"
  376. ],
  377. "members": {
  378. "sequenceStoreId": {
  379. "location": "uri",
  380. "locationName": "sequenceStoreId"
  381. },
  382. "clientToken": {},
  383. "sourceFileType": {},
  384. "subjectId": {},
  385. "sampleId": {},
  386. "generatedFrom": {},
  387. "referenceArn": {},
  388. "name": {},
  389. "description": {},
  390. "tags": {
  391. "shape": "Sy"
  392. }
  393. }
  394. },
  395. "output": {
  396. "type": "structure",
  397. "required": [
  398. "sequenceStoreId",
  399. "uploadId",
  400. "sourceFileType",
  401. "subjectId",
  402. "sampleId",
  403. "referenceArn",
  404. "creationTime"
  405. ],
  406. "members": {
  407. "sequenceStoreId": {},
  408. "uploadId": {},
  409. "sourceFileType": {},
  410. "subjectId": {},
  411. "sampleId": {},
  412. "generatedFrom": {},
  413. "referenceArn": {},
  414. "name": {},
  415. "description": {},
  416. "tags": {
  417. "shape": "Sy"
  418. },
  419. "creationTime": {
  420. "shape": "S1y"
  421. }
  422. }
  423. },
  424. "endpoint": {
  425. "hostPrefix": "control-storage-"
  426. }
  427. },
  428. "CreateReferenceStore": {
  429. "http": {
  430. "requestUri": "/referencestore",
  431. "responseCode": 200
  432. },
  433. "input": {
  434. "type": "structure",
  435. "required": [
  436. "name"
  437. ],
  438. "members": {
  439. "name": {},
  440. "description": {},
  441. "sseConfig": {
  442. "shape": "S12"
  443. },
  444. "tags": {
  445. "shape": "Sy"
  446. },
  447. "clientToken": {}
  448. }
  449. },
  450. "output": {
  451. "type": "structure",
  452. "required": [
  453. "id",
  454. "arn",
  455. "creationTime"
  456. ],
  457. "members": {
  458. "id": {},
  459. "arn": {},
  460. "name": {},
  461. "description": {},
  462. "sseConfig": {
  463. "shape": "S12"
  464. },
  465. "creationTime": {
  466. "shape": "S1y"
  467. }
  468. }
  469. },
  470. "endpoint": {
  471. "hostPrefix": "control-storage-"
  472. }
  473. },
  474. "CreateRunGroup": {
  475. "http": {
  476. "requestUri": "/runGroup",
  477. "responseCode": 201
  478. },
  479. "input": {
  480. "type": "structure",
  481. "required": [
  482. "requestId"
  483. ],
  484. "members": {
  485. "name": {},
  486. "maxCpus": {
  487. "type": "integer"
  488. },
  489. "maxRuns": {
  490. "type": "integer"
  491. },
  492. "maxDuration": {
  493. "type": "integer"
  494. },
  495. "tags": {
  496. "shape": "Sy"
  497. },
  498. "requestId": {
  499. "idempotencyToken": true
  500. },
  501. "maxGpus": {
  502. "type": "integer"
  503. }
  504. }
  505. },
  506. "output": {
  507. "type": "structure",
  508. "members": {
  509. "arn": {},
  510. "id": {},
  511. "tags": {
  512. "shape": "Sy"
  513. }
  514. }
  515. },
  516. "endpoint": {
  517. "hostPrefix": "workflows-"
  518. }
  519. },
  520. "CreateSequenceStore": {
  521. "http": {
  522. "requestUri": "/sequencestore",
  523. "responseCode": 200
  524. },
  525. "input": {
  526. "type": "structure",
  527. "required": [
  528. "name"
  529. ],
  530. "members": {
  531. "name": {},
  532. "description": {},
  533. "sseConfig": {
  534. "shape": "S12"
  535. },
  536. "tags": {
  537. "shape": "Sy"
  538. },
  539. "clientToken": {},
  540. "fallbackLocation": {},
  541. "eTagAlgorithmFamily": {}
  542. }
  543. },
  544. "output": {
  545. "type": "structure",
  546. "required": [
  547. "id",
  548. "arn",
  549. "creationTime"
  550. ],
  551. "members": {
  552. "id": {},
  553. "arn": {},
  554. "name": {},
  555. "description": {},
  556. "sseConfig": {
  557. "shape": "S12"
  558. },
  559. "creationTime": {
  560. "shape": "S1y"
  561. },
  562. "fallbackLocation": {},
  563. "eTagAlgorithmFamily": {}
  564. }
  565. },
  566. "endpoint": {
  567. "hostPrefix": "control-storage-"
  568. }
  569. },
  570. "CreateShare": {
  571. "http": {
  572. "requestUri": "/share",
  573. "responseCode": 200
  574. },
  575. "input": {
  576. "type": "structure",
  577. "required": [
  578. "resourceArn",
  579. "principalSubscriber"
  580. ],
  581. "members": {
  582. "resourceArn": {},
  583. "principalSubscriber": {},
  584. "shareName": {}
  585. }
  586. },
  587. "output": {
  588. "type": "structure",
  589. "members": {
  590. "shareId": {},
  591. "status": {},
  592. "shareName": {}
  593. }
  594. },
  595. "endpoint": {
  596. "hostPrefix": "analytics-"
  597. }
  598. },
  599. "CreateVariantStore": {
  600. "http": {
  601. "requestUri": "/variantStore",
  602. "responseCode": 200
  603. },
  604. "input": {
  605. "type": "structure",
  606. "required": [
  607. "reference"
  608. ],
  609. "members": {
  610. "reference": {
  611. "shape": "Su"
  612. },
  613. "name": {},
  614. "description": {},
  615. "tags": {
  616. "shape": "Sy"
  617. },
  618. "sseConfig": {
  619. "shape": "S12"
  620. }
  621. }
  622. },
  623. "output": {
  624. "type": "structure",
  625. "required": [
  626. "id",
  627. "status",
  628. "name",
  629. "creationTime"
  630. ],
  631. "members": {
  632. "id": {},
  633. "reference": {
  634. "shape": "Su"
  635. },
  636. "status": {},
  637. "name": {},
  638. "creationTime": {
  639. "shape": "S1i"
  640. }
  641. }
  642. },
  643. "endpoint": {
  644. "hostPrefix": "analytics-"
  645. }
  646. },
  647. "CreateWorkflow": {
  648. "http": {
  649. "requestUri": "/workflow",
  650. "responseCode": 201
  651. },
  652. "input": {
  653. "type": "structure",
  654. "required": [
  655. "requestId"
  656. ],
  657. "members": {
  658. "name": {},
  659. "description": {},
  660. "engine": {},
  661. "definitionZip": {
  662. "type": "blob"
  663. },
  664. "definitionUri": {},
  665. "main": {},
  666. "parameterTemplate": {
  667. "shape": "S2y"
  668. },
  669. "storageCapacity": {
  670. "type": "integer"
  671. },
  672. "tags": {
  673. "shape": "Sy"
  674. },
  675. "requestId": {
  676. "idempotencyToken": true
  677. },
  678. "accelerators": {}
  679. }
  680. },
  681. "output": {
  682. "type": "structure",
  683. "members": {
  684. "arn": {},
  685. "id": {},
  686. "status": {},
  687. "tags": {
  688. "shape": "Sy"
  689. }
  690. }
  691. },
  692. "endpoint": {
  693. "hostPrefix": "workflows-"
  694. }
  695. },
  696. "DeleteAnnotationStore": {
  697. "http": {
  698. "method": "DELETE",
  699. "requestUri": "/annotationStore/{name}",
  700. "responseCode": 200
  701. },
  702. "input": {
  703. "type": "structure",
  704. "required": [
  705. "name"
  706. ],
  707. "members": {
  708. "name": {
  709. "location": "uri",
  710. "locationName": "name"
  711. },
  712. "force": {
  713. "location": "querystring",
  714. "locationName": "force",
  715. "type": "boolean"
  716. }
  717. }
  718. },
  719. "output": {
  720. "type": "structure",
  721. "required": [
  722. "status"
  723. ],
  724. "members": {
  725. "status": {}
  726. }
  727. },
  728. "endpoint": {
  729. "hostPrefix": "analytics-"
  730. },
  731. "idempotent": true
  732. },
  733. "DeleteAnnotationStoreVersions": {
  734. "http": {
  735. "requestUri": "/annotationStore/{name}/versions/delete",
  736. "responseCode": 200
  737. },
  738. "input": {
  739. "type": "structure",
  740. "required": [
  741. "name",
  742. "versions"
  743. ],
  744. "members": {
  745. "name": {
  746. "location": "uri",
  747. "locationName": "name"
  748. },
  749. "versions": {
  750. "type": "list",
  751. "member": {}
  752. },
  753. "force": {
  754. "location": "querystring",
  755. "locationName": "force",
  756. "type": "boolean"
  757. }
  758. }
  759. },
  760. "output": {
  761. "type": "structure",
  762. "members": {
  763. "errors": {
  764. "type": "list",
  765. "member": {
  766. "type": "structure",
  767. "required": [
  768. "versionName",
  769. "message"
  770. ],
  771. "members": {
  772. "versionName": {},
  773. "message": {}
  774. }
  775. }
  776. }
  777. }
  778. },
  779. "endpoint": {
  780. "hostPrefix": "analytics-"
  781. },
  782. "idempotent": true
  783. },
  784. "DeleteReference": {
  785. "http": {
  786. "method": "DELETE",
  787. "requestUri": "/referencestore/{referenceStoreId}/reference/{id}",
  788. "responseCode": 200
  789. },
  790. "input": {
  791. "type": "structure",
  792. "required": [
  793. "id",
  794. "referenceStoreId"
  795. ],
  796. "members": {
  797. "id": {
  798. "location": "uri",
  799. "locationName": "id"
  800. },
  801. "referenceStoreId": {
  802. "location": "uri",
  803. "locationName": "referenceStoreId"
  804. }
  805. }
  806. },
  807. "output": {
  808. "type": "structure",
  809. "members": {}
  810. },
  811. "endpoint": {
  812. "hostPrefix": "control-storage-"
  813. },
  814. "idempotent": true
  815. },
  816. "DeleteReferenceStore": {
  817. "http": {
  818. "method": "DELETE",
  819. "requestUri": "/referencestore/{id}",
  820. "responseCode": 200
  821. },
  822. "input": {
  823. "type": "structure",
  824. "required": [
  825. "id"
  826. ],
  827. "members": {
  828. "id": {
  829. "location": "uri",
  830. "locationName": "id"
  831. }
  832. }
  833. },
  834. "output": {
  835. "type": "structure",
  836. "members": {}
  837. },
  838. "endpoint": {
  839. "hostPrefix": "control-storage-"
  840. },
  841. "idempotent": true
  842. },
  843. "DeleteRun": {
  844. "http": {
  845. "method": "DELETE",
  846. "requestUri": "/run/{id}",
  847. "responseCode": 202
  848. },
  849. "input": {
  850. "type": "structure",
  851. "required": [
  852. "id"
  853. ],
  854. "members": {
  855. "id": {
  856. "location": "uri",
  857. "locationName": "id"
  858. }
  859. }
  860. },
  861. "endpoint": {
  862. "hostPrefix": "workflows-"
  863. },
  864. "idempotent": true
  865. },
  866. "DeleteRunGroup": {
  867. "http": {
  868. "method": "DELETE",
  869. "requestUri": "/runGroup/{id}",
  870. "responseCode": 202
  871. },
  872. "input": {
  873. "type": "structure",
  874. "required": [
  875. "id"
  876. ],
  877. "members": {
  878. "id": {
  879. "location": "uri",
  880. "locationName": "id"
  881. }
  882. }
  883. },
  884. "endpoint": {
  885. "hostPrefix": "workflows-"
  886. },
  887. "idempotent": true
  888. },
  889. "DeleteSequenceStore": {
  890. "http": {
  891. "method": "DELETE",
  892. "requestUri": "/sequencestore/{id}",
  893. "responseCode": 200
  894. },
  895. "input": {
  896. "type": "structure",
  897. "required": [
  898. "id"
  899. ],
  900. "members": {
  901. "id": {
  902. "location": "uri",
  903. "locationName": "id"
  904. }
  905. }
  906. },
  907. "output": {
  908. "type": "structure",
  909. "members": {}
  910. },
  911. "endpoint": {
  912. "hostPrefix": "control-storage-"
  913. },
  914. "idempotent": true
  915. },
  916. "DeleteShare": {
  917. "http": {
  918. "method": "DELETE",
  919. "requestUri": "/share/{shareId}",
  920. "responseCode": 200
  921. },
  922. "input": {
  923. "type": "structure",
  924. "required": [
  925. "shareId"
  926. ],
  927. "members": {
  928. "shareId": {
  929. "location": "uri",
  930. "locationName": "shareId"
  931. }
  932. }
  933. },
  934. "output": {
  935. "type": "structure",
  936. "members": {
  937. "status": {}
  938. }
  939. },
  940. "endpoint": {
  941. "hostPrefix": "analytics-"
  942. },
  943. "idempotent": true
  944. },
  945. "DeleteVariantStore": {
  946. "http": {
  947. "method": "DELETE",
  948. "requestUri": "/variantStore/{name}",
  949. "responseCode": 200
  950. },
  951. "input": {
  952. "type": "structure",
  953. "required": [
  954. "name"
  955. ],
  956. "members": {
  957. "name": {
  958. "location": "uri",
  959. "locationName": "name"
  960. },
  961. "force": {
  962. "location": "querystring",
  963. "locationName": "force",
  964. "type": "boolean"
  965. }
  966. }
  967. },
  968. "output": {
  969. "type": "structure",
  970. "required": [
  971. "status"
  972. ],
  973. "members": {
  974. "status": {}
  975. }
  976. },
  977. "endpoint": {
  978. "hostPrefix": "analytics-"
  979. },
  980. "idempotent": true
  981. },
  982. "DeleteWorkflow": {
  983. "http": {
  984. "method": "DELETE",
  985. "requestUri": "/workflow/{id}",
  986. "responseCode": 202
  987. },
  988. "input": {
  989. "type": "structure",
  990. "required": [
  991. "id"
  992. ],
  993. "members": {
  994. "id": {
  995. "location": "uri",
  996. "locationName": "id"
  997. }
  998. }
  999. },
  1000. "endpoint": {
  1001. "hostPrefix": "workflows-"
  1002. },
  1003. "idempotent": true
  1004. },
  1005. "GetAnnotationImportJob": {
  1006. "http": {
  1007. "method": "GET",
  1008. "requestUri": "/import/annotation/{jobId}",
  1009. "responseCode": 200
  1010. },
  1011. "input": {
  1012. "type": "structure",
  1013. "required": [
  1014. "jobId"
  1015. ],
  1016. "members": {
  1017. "jobId": {
  1018. "location": "uri",
  1019. "locationName": "jobId"
  1020. }
  1021. }
  1022. },
  1023. "output": {
  1024. "type": "structure",
  1025. "required": [
  1026. "id",
  1027. "destinationName",
  1028. "versionName",
  1029. "roleArn",
  1030. "status",
  1031. "statusMessage",
  1032. "creationTime",
  1033. "updateTime",
  1034. "completionTime",
  1035. "items",
  1036. "runLeftNormalization",
  1037. "formatOptions"
  1038. ],
  1039. "members": {
  1040. "id": {},
  1041. "destinationName": {},
  1042. "versionName": {},
  1043. "roleArn": {},
  1044. "status": {},
  1045. "statusMessage": {},
  1046. "creationTime": {
  1047. "shape": "S1i"
  1048. },
  1049. "updateTime": {
  1050. "shape": "S41"
  1051. },
  1052. "completionTime": {
  1053. "shape": "S42"
  1054. },
  1055. "items": {
  1056. "type": "list",
  1057. "member": {
  1058. "type": "structure",
  1059. "required": [
  1060. "source",
  1061. "jobStatus"
  1062. ],
  1063. "members": {
  1064. "source": {},
  1065. "jobStatus": {}
  1066. }
  1067. }
  1068. },
  1069. "runLeftNormalization": {
  1070. "type": "boolean"
  1071. },
  1072. "formatOptions": {
  1073. "shape": "S47"
  1074. },
  1075. "annotationFields": {
  1076. "shape": "S4k"
  1077. }
  1078. }
  1079. },
  1080. "endpoint": {
  1081. "hostPrefix": "analytics-"
  1082. }
  1083. },
  1084. "GetAnnotationStore": {
  1085. "http": {
  1086. "method": "GET",
  1087. "requestUri": "/annotationStore/{name}",
  1088. "responseCode": 200
  1089. },
  1090. "input": {
  1091. "type": "structure",
  1092. "required": [
  1093. "name"
  1094. ],
  1095. "members": {
  1096. "name": {
  1097. "location": "uri",
  1098. "locationName": "name"
  1099. }
  1100. }
  1101. },
  1102. "output": {
  1103. "type": "structure",
  1104. "required": [
  1105. "id",
  1106. "reference",
  1107. "status",
  1108. "storeArn",
  1109. "name",
  1110. "description",
  1111. "sseConfig",
  1112. "creationTime",
  1113. "updateTime",
  1114. "tags",
  1115. "statusMessage",
  1116. "storeSizeBytes",
  1117. "numVersions"
  1118. ],
  1119. "members": {
  1120. "id": {},
  1121. "reference": {
  1122. "shape": "Su"
  1123. },
  1124. "status": {},
  1125. "storeArn": {},
  1126. "name": {},
  1127. "description": {},
  1128. "sseConfig": {
  1129. "shape": "S12"
  1130. },
  1131. "creationTime": {
  1132. "shape": "S1i"
  1133. },
  1134. "updateTime": {
  1135. "shape": "S41"
  1136. },
  1137. "tags": {
  1138. "shape": "Sy"
  1139. },
  1140. "storeOptions": {
  1141. "shape": "S16"
  1142. },
  1143. "storeFormat": {},
  1144. "statusMessage": {},
  1145. "storeSizeBytes": {
  1146. "type": "long"
  1147. },
  1148. "numVersions": {
  1149. "type": "integer"
  1150. }
  1151. }
  1152. },
  1153. "endpoint": {
  1154. "hostPrefix": "analytics-"
  1155. }
  1156. },
  1157. "GetAnnotationStoreVersion": {
  1158. "http": {
  1159. "method": "GET",
  1160. "requestUri": "/annotationStore/{name}/version/{versionName}",
  1161. "responseCode": 200
  1162. },
  1163. "input": {
  1164. "type": "structure",
  1165. "required": [
  1166. "name",
  1167. "versionName"
  1168. ],
  1169. "members": {
  1170. "name": {
  1171. "location": "uri",
  1172. "locationName": "name"
  1173. },
  1174. "versionName": {
  1175. "location": "uri",
  1176. "locationName": "versionName"
  1177. }
  1178. }
  1179. },
  1180. "output": {
  1181. "type": "structure",
  1182. "required": [
  1183. "storeId",
  1184. "id",
  1185. "status",
  1186. "versionArn",
  1187. "name",
  1188. "versionName",
  1189. "description",
  1190. "creationTime",
  1191. "updateTime",
  1192. "tags",
  1193. "statusMessage",
  1194. "versionSizeBytes"
  1195. ],
  1196. "members": {
  1197. "storeId": {},
  1198. "id": {},
  1199. "status": {},
  1200. "versionArn": {},
  1201. "name": {},
  1202. "versionName": {},
  1203. "description": {},
  1204. "creationTime": {
  1205. "shape": "S1i"
  1206. },
  1207. "updateTime": {
  1208. "shape": "S41"
  1209. },
  1210. "tags": {
  1211. "shape": "Sy"
  1212. },
  1213. "versionOptions": {
  1214. "shape": "S1k"
  1215. },
  1216. "statusMessage": {},
  1217. "versionSizeBytes": {
  1218. "type": "long"
  1219. }
  1220. }
  1221. },
  1222. "endpoint": {
  1223. "hostPrefix": "analytics-"
  1224. }
  1225. },
  1226. "GetReadSet": {
  1227. "http": {
  1228. "method": "GET",
  1229. "requestUri": "/sequencestore/{sequenceStoreId}/readset/{id}",
  1230. "responseCode": 200
  1231. },
  1232. "input": {
  1233. "type": "structure",
  1234. "required": [
  1235. "id",
  1236. "sequenceStoreId",
  1237. "partNumber"
  1238. ],
  1239. "members": {
  1240. "id": {
  1241. "location": "uri",
  1242. "locationName": "id"
  1243. },
  1244. "sequenceStoreId": {
  1245. "location": "uri",
  1246. "locationName": "sequenceStoreId"
  1247. },
  1248. "file": {
  1249. "location": "querystring",
  1250. "locationName": "file"
  1251. },
  1252. "partNumber": {
  1253. "location": "querystring",
  1254. "locationName": "partNumber",
  1255. "type": "integer"
  1256. }
  1257. }
  1258. },
  1259. "output": {
  1260. "type": "structure",
  1261. "members": {
  1262. "payload": {
  1263. "type": "blob",
  1264. "streaming": true
  1265. }
  1266. },
  1267. "payload": "payload"
  1268. },
  1269. "endpoint": {
  1270. "hostPrefix": "storage-"
  1271. }
  1272. },
  1273. "GetReadSetActivationJob": {
  1274. "http": {
  1275. "method": "GET",
  1276. "requestUri": "/sequencestore/{sequenceStoreId}/activationjob/{id}",
  1277. "responseCode": 200
  1278. },
  1279. "input": {
  1280. "type": "structure",
  1281. "required": [
  1282. "id",
  1283. "sequenceStoreId"
  1284. ],
  1285. "members": {
  1286. "id": {
  1287. "location": "uri",
  1288. "locationName": "id"
  1289. },
  1290. "sequenceStoreId": {
  1291. "location": "uri",
  1292. "locationName": "sequenceStoreId"
  1293. }
  1294. }
  1295. },
  1296. "output": {
  1297. "type": "structure",
  1298. "required": [
  1299. "id",
  1300. "sequenceStoreId",
  1301. "status",
  1302. "creationTime"
  1303. ],
  1304. "members": {
  1305. "id": {},
  1306. "sequenceStoreId": {},
  1307. "status": {},
  1308. "statusMessage": {},
  1309. "creationTime": {
  1310. "shape": "S1y"
  1311. },
  1312. "completionTime": {
  1313. "shape": "S1y"
  1314. },
  1315. "sources": {
  1316. "type": "list",
  1317. "member": {
  1318. "type": "structure",
  1319. "required": [
  1320. "readSetId",
  1321. "status"
  1322. ],
  1323. "members": {
  1324. "readSetId": {},
  1325. "status": {},
  1326. "statusMessage": {}
  1327. }
  1328. }
  1329. }
  1330. }
  1331. },
  1332. "endpoint": {
  1333. "hostPrefix": "control-storage-"
  1334. }
  1335. },
  1336. "GetReadSetExportJob": {
  1337. "http": {
  1338. "method": "GET",
  1339. "requestUri": "/sequencestore/{sequenceStoreId}/exportjob/{id}",
  1340. "responseCode": 200
  1341. },
  1342. "input": {
  1343. "type": "structure",
  1344. "required": [
  1345. "sequenceStoreId",
  1346. "id"
  1347. ],
  1348. "members": {
  1349. "sequenceStoreId": {
  1350. "location": "uri",
  1351. "locationName": "sequenceStoreId"
  1352. },
  1353. "id": {
  1354. "location": "uri",
  1355. "locationName": "id"
  1356. }
  1357. }
  1358. },
  1359. "output": {
  1360. "type": "structure",
  1361. "required": [
  1362. "id",
  1363. "sequenceStoreId",
  1364. "destination",
  1365. "status",
  1366. "creationTime"
  1367. ],
  1368. "members": {
  1369. "id": {},
  1370. "sequenceStoreId": {},
  1371. "destination": {},
  1372. "status": {},
  1373. "statusMessage": {},
  1374. "creationTime": {
  1375. "shape": "S1y"
  1376. },
  1377. "completionTime": {
  1378. "shape": "S1y"
  1379. },
  1380. "readSets": {
  1381. "type": "list",
  1382. "member": {
  1383. "type": "structure",
  1384. "required": [
  1385. "id",
  1386. "status"
  1387. ],
  1388. "members": {
  1389. "id": {},
  1390. "status": {},
  1391. "statusMessage": {}
  1392. }
  1393. }
  1394. }
  1395. }
  1396. },
  1397. "endpoint": {
  1398. "hostPrefix": "control-storage-"
  1399. }
  1400. },
  1401. "GetReadSetImportJob": {
  1402. "http": {
  1403. "method": "GET",
  1404. "requestUri": "/sequencestore/{sequenceStoreId}/importjob/{id}",
  1405. "responseCode": 200
  1406. },
  1407. "input": {
  1408. "type": "structure",
  1409. "required": [
  1410. "id",
  1411. "sequenceStoreId"
  1412. ],
  1413. "members": {
  1414. "id": {
  1415. "location": "uri",
  1416. "locationName": "id"
  1417. },
  1418. "sequenceStoreId": {
  1419. "location": "uri",
  1420. "locationName": "sequenceStoreId"
  1421. }
  1422. }
  1423. },
  1424. "output": {
  1425. "type": "structure",
  1426. "required": [
  1427. "id",
  1428. "sequenceStoreId",
  1429. "roleArn",
  1430. "status",
  1431. "creationTime",
  1432. "sources"
  1433. ],
  1434. "members": {
  1435. "id": {},
  1436. "sequenceStoreId": {},
  1437. "roleArn": {},
  1438. "status": {},
  1439. "statusMessage": {},
  1440. "creationTime": {
  1441. "shape": "S1y"
  1442. },
  1443. "completionTime": {
  1444. "shape": "S1y"
  1445. },
  1446. "sources": {
  1447. "type": "list",
  1448. "member": {
  1449. "type": "structure",
  1450. "required": [
  1451. "sourceFiles",
  1452. "sourceFileType",
  1453. "status",
  1454. "subjectId",
  1455. "sampleId"
  1456. ],
  1457. "members": {
  1458. "sourceFiles": {
  1459. "shape": "S5l"
  1460. },
  1461. "sourceFileType": {},
  1462. "status": {},
  1463. "statusMessage": {},
  1464. "subjectId": {},
  1465. "sampleId": {},
  1466. "generatedFrom": {},
  1467. "referenceArn": {},
  1468. "name": {},
  1469. "description": {},
  1470. "tags": {
  1471. "shape": "Sy"
  1472. }
  1473. }
  1474. }
  1475. }
  1476. }
  1477. },
  1478. "endpoint": {
  1479. "hostPrefix": "control-storage-"
  1480. }
  1481. },
  1482. "GetReadSetMetadata": {
  1483. "http": {
  1484. "method": "GET",
  1485. "requestUri": "/sequencestore/{sequenceStoreId}/readset/{id}/metadata",
  1486. "responseCode": 200
  1487. },
  1488. "input": {
  1489. "type": "structure",
  1490. "required": [
  1491. "id",
  1492. "sequenceStoreId"
  1493. ],
  1494. "members": {
  1495. "id": {
  1496. "location": "uri",
  1497. "locationName": "id"
  1498. },
  1499. "sequenceStoreId": {
  1500. "location": "uri",
  1501. "locationName": "sequenceStoreId"
  1502. }
  1503. }
  1504. },
  1505. "output": {
  1506. "type": "structure",
  1507. "required": [
  1508. "id",
  1509. "arn",
  1510. "sequenceStoreId",
  1511. "status",
  1512. "fileType",
  1513. "creationTime"
  1514. ],
  1515. "members": {
  1516. "id": {},
  1517. "arn": {},
  1518. "sequenceStoreId": {},
  1519. "subjectId": {},
  1520. "sampleId": {},
  1521. "status": {},
  1522. "name": {},
  1523. "description": {},
  1524. "fileType": {},
  1525. "creationTime": {
  1526. "shape": "S1y"
  1527. },
  1528. "sequenceInformation": {
  1529. "shape": "S5r"
  1530. },
  1531. "referenceArn": {},
  1532. "files": {
  1533. "type": "structure",
  1534. "members": {
  1535. "source1": {
  1536. "shape": "S5t"
  1537. },
  1538. "source2": {
  1539. "shape": "S5t"
  1540. },
  1541. "index": {
  1542. "shape": "S5t"
  1543. }
  1544. }
  1545. },
  1546. "statusMessage": {},
  1547. "creationType": {},
  1548. "etag": {
  1549. "shape": "S60"
  1550. }
  1551. }
  1552. },
  1553. "endpoint": {
  1554. "hostPrefix": "control-storage-"
  1555. }
  1556. },
  1557. "GetReference": {
  1558. "http": {
  1559. "method": "GET",
  1560. "requestUri": "/referencestore/{referenceStoreId}/reference/{id}",
  1561. "responseCode": 200
  1562. },
  1563. "input": {
  1564. "type": "structure",
  1565. "required": [
  1566. "id",
  1567. "referenceStoreId",
  1568. "partNumber"
  1569. ],
  1570. "members": {
  1571. "id": {
  1572. "location": "uri",
  1573. "locationName": "id"
  1574. },
  1575. "referenceStoreId": {
  1576. "location": "uri",
  1577. "locationName": "referenceStoreId"
  1578. },
  1579. "range": {
  1580. "location": "header",
  1581. "locationName": "Range"
  1582. },
  1583. "partNumber": {
  1584. "location": "querystring",
  1585. "locationName": "partNumber",
  1586. "type": "integer"
  1587. },
  1588. "file": {
  1589. "location": "querystring",
  1590. "locationName": "file"
  1591. }
  1592. }
  1593. },
  1594. "output": {
  1595. "type": "structure",
  1596. "members": {
  1597. "payload": {
  1598. "type": "blob",
  1599. "streaming": true
  1600. }
  1601. },
  1602. "payload": "payload"
  1603. },
  1604. "endpoint": {
  1605. "hostPrefix": "storage-"
  1606. }
  1607. },
  1608. "GetReferenceImportJob": {
  1609. "http": {
  1610. "method": "GET",
  1611. "requestUri": "/referencestore/{referenceStoreId}/importjob/{id}",
  1612. "responseCode": 200
  1613. },
  1614. "input": {
  1615. "type": "structure",
  1616. "required": [
  1617. "id",
  1618. "referenceStoreId"
  1619. ],
  1620. "members": {
  1621. "id": {
  1622. "location": "uri",
  1623. "locationName": "id"
  1624. },
  1625. "referenceStoreId": {
  1626. "location": "uri",
  1627. "locationName": "referenceStoreId"
  1628. }
  1629. }
  1630. },
  1631. "output": {
  1632. "type": "structure",
  1633. "required": [
  1634. "id",
  1635. "referenceStoreId",
  1636. "roleArn",
  1637. "status",
  1638. "creationTime",
  1639. "sources"
  1640. ],
  1641. "members": {
  1642. "id": {},
  1643. "referenceStoreId": {},
  1644. "roleArn": {},
  1645. "status": {},
  1646. "statusMessage": {},
  1647. "creationTime": {
  1648. "shape": "S1y"
  1649. },
  1650. "completionTime": {
  1651. "shape": "S1y"
  1652. },
  1653. "sources": {
  1654. "type": "list",
  1655. "member": {
  1656. "type": "structure",
  1657. "required": [
  1658. "status"
  1659. ],
  1660. "members": {
  1661. "sourceFile": {},
  1662. "status": {},
  1663. "statusMessage": {},
  1664. "name": {},
  1665. "description": {},
  1666. "tags": {
  1667. "shape": "Sy"
  1668. }
  1669. }
  1670. }
  1671. }
  1672. }
  1673. },
  1674. "endpoint": {
  1675. "hostPrefix": "control-storage-"
  1676. }
  1677. },
  1678. "GetReferenceMetadata": {
  1679. "http": {
  1680. "method": "GET",
  1681. "requestUri": "/referencestore/{referenceStoreId}/reference/{id}/metadata",
  1682. "responseCode": 200
  1683. },
  1684. "input": {
  1685. "type": "structure",
  1686. "required": [
  1687. "id",
  1688. "referenceStoreId"
  1689. ],
  1690. "members": {
  1691. "id": {
  1692. "location": "uri",
  1693. "locationName": "id"
  1694. },
  1695. "referenceStoreId": {
  1696. "location": "uri",
  1697. "locationName": "referenceStoreId"
  1698. }
  1699. }
  1700. },
  1701. "output": {
  1702. "type": "structure",
  1703. "required": [
  1704. "id",
  1705. "arn",
  1706. "referenceStoreId",
  1707. "md5",
  1708. "creationTime",
  1709. "updateTime"
  1710. ],
  1711. "members": {
  1712. "id": {},
  1713. "arn": {},
  1714. "referenceStoreId": {},
  1715. "md5": {},
  1716. "status": {},
  1717. "name": {},
  1718. "description": {},
  1719. "creationTime": {
  1720. "shape": "S1y"
  1721. },
  1722. "updateTime": {
  1723. "shape": "S1y"
  1724. },
  1725. "files": {
  1726. "type": "structure",
  1727. "members": {
  1728. "source": {
  1729. "shape": "S5t"
  1730. },
  1731. "index": {
  1732. "shape": "S5t"
  1733. }
  1734. }
  1735. }
  1736. }
  1737. },
  1738. "endpoint": {
  1739. "hostPrefix": "control-storage-"
  1740. }
  1741. },
  1742. "GetReferenceStore": {
  1743. "http": {
  1744. "method": "GET",
  1745. "requestUri": "/referencestore/{id}",
  1746. "responseCode": 200
  1747. },
  1748. "input": {
  1749. "type": "structure",
  1750. "required": [
  1751. "id"
  1752. ],
  1753. "members": {
  1754. "id": {
  1755. "location": "uri",
  1756. "locationName": "id"
  1757. }
  1758. }
  1759. },
  1760. "output": {
  1761. "type": "structure",
  1762. "required": [
  1763. "id",
  1764. "arn",
  1765. "creationTime"
  1766. ],
  1767. "members": {
  1768. "id": {},
  1769. "arn": {},
  1770. "name": {},
  1771. "description": {},
  1772. "sseConfig": {
  1773. "shape": "S12"
  1774. },
  1775. "creationTime": {
  1776. "shape": "S1y"
  1777. }
  1778. }
  1779. },
  1780. "endpoint": {
  1781. "hostPrefix": "control-storage-"
  1782. }
  1783. },
  1784. "GetRun": {
  1785. "http": {
  1786. "method": "GET",
  1787. "requestUri": "/run/{id}",
  1788. "responseCode": 200
  1789. },
  1790. "input": {
  1791. "type": "structure",
  1792. "required": [
  1793. "id"
  1794. ],
  1795. "members": {
  1796. "id": {
  1797. "location": "uri",
  1798. "locationName": "id"
  1799. },
  1800. "export": {
  1801. "location": "querystring",
  1802. "locationName": "export",
  1803. "type": "list",
  1804. "member": {}
  1805. }
  1806. }
  1807. },
  1808. "output": {
  1809. "type": "structure",
  1810. "members": {
  1811. "arn": {},
  1812. "id": {},
  1813. "status": {},
  1814. "workflowId": {},
  1815. "workflowType": {},
  1816. "runId": {},
  1817. "roleArn": {},
  1818. "name": {},
  1819. "runGroupId": {},
  1820. "priority": {
  1821. "type": "integer"
  1822. },
  1823. "definition": {},
  1824. "digest": {},
  1825. "parameters": {
  1826. "shape": "S6y"
  1827. },
  1828. "storageCapacity": {
  1829. "type": "integer"
  1830. },
  1831. "outputUri": {},
  1832. "logLevel": {},
  1833. "resourceDigests": {
  1834. "type": "map",
  1835. "key": {},
  1836. "value": {}
  1837. },
  1838. "startedBy": {},
  1839. "creationTime": {
  1840. "shape": "S76"
  1841. },
  1842. "startTime": {
  1843. "shape": "S76"
  1844. },
  1845. "stopTime": {
  1846. "shape": "S76"
  1847. },
  1848. "statusMessage": {},
  1849. "tags": {
  1850. "shape": "Sy"
  1851. },
  1852. "accelerators": {},
  1853. "retentionMode": {},
  1854. "failureReason": {},
  1855. "logLocation": {
  1856. "type": "structure",
  1857. "members": {
  1858. "engineLogStream": {},
  1859. "runLogStream": {}
  1860. }
  1861. },
  1862. "uuid": {},
  1863. "runOutputUri": {},
  1864. "storageType": {},
  1865. "workflowOwnerId": {}
  1866. }
  1867. },
  1868. "endpoint": {
  1869. "hostPrefix": "workflows-"
  1870. }
  1871. },
  1872. "GetRunGroup": {
  1873. "http": {
  1874. "method": "GET",
  1875. "requestUri": "/runGroup/{id}",
  1876. "responseCode": 200
  1877. },
  1878. "input": {
  1879. "type": "structure",
  1880. "required": [
  1881. "id"
  1882. ],
  1883. "members": {
  1884. "id": {
  1885. "location": "uri",
  1886. "locationName": "id"
  1887. }
  1888. }
  1889. },
  1890. "output": {
  1891. "type": "structure",
  1892. "members": {
  1893. "arn": {},
  1894. "id": {},
  1895. "name": {},
  1896. "maxCpus": {
  1897. "type": "integer"
  1898. },
  1899. "maxRuns": {
  1900. "type": "integer"
  1901. },
  1902. "maxDuration": {
  1903. "type": "integer"
  1904. },
  1905. "creationTime": {
  1906. "shape": "S7l"
  1907. },
  1908. "tags": {
  1909. "shape": "Sy"
  1910. },
  1911. "maxGpus": {
  1912. "type": "integer"
  1913. }
  1914. }
  1915. },
  1916. "endpoint": {
  1917. "hostPrefix": "workflows-"
  1918. }
  1919. },
  1920. "GetRunTask": {
  1921. "http": {
  1922. "method": "GET",
  1923. "requestUri": "/run/{id}/task/{taskId}",
  1924. "responseCode": 200
  1925. },
  1926. "input": {
  1927. "type": "structure",
  1928. "required": [
  1929. "id",
  1930. "taskId"
  1931. ],
  1932. "members": {
  1933. "id": {
  1934. "location": "uri",
  1935. "locationName": "id"
  1936. },
  1937. "taskId": {
  1938. "location": "uri",
  1939. "locationName": "taskId"
  1940. }
  1941. }
  1942. },
  1943. "output": {
  1944. "type": "structure",
  1945. "members": {
  1946. "taskId": {},
  1947. "status": {},
  1948. "name": {},
  1949. "cpus": {
  1950. "type": "integer"
  1951. },
  1952. "memory": {
  1953. "type": "integer"
  1954. },
  1955. "creationTime": {
  1956. "shape": "S7u"
  1957. },
  1958. "startTime": {
  1959. "shape": "S7u"
  1960. },
  1961. "stopTime": {
  1962. "shape": "S7u"
  1963. },
  1964. "statusMessage": {},
  1965. "logStream": {},
  1966. "gpus": {
  1967. "type": "integer"
  1968. },
  1969. "instanceType": {},
  1970. "failureReason": {}
  1971. }
  1972. },
  1973. "endpoint": {
  1974. "hostPrefix": "workflows-"
  1975. }
  1976. },
  1977. "GetSequenceStore": {
  1978. "http": {
  1979. "method": "GET",
  1980. "requestUri": "/sequencestore/{id}",
  1981. "responseCode": 200
  1982. },
  1983. "input": {
  1984. "type": "structure",
  1985. "required": [
  1986. "id"
  1987. ],
  1988. "members": {
  1989. "id": {
  1990. "location": "uri",
  1991. "locationName": "id"
  1992. }
  1993. }
  1994. },
  1995. "output": {
  1996. "type": "structure",
  1997. "required": [
  1998. "id",
  1999. "arn",
  2000. "creationTime"
  2001. ],
  2002. "members": {
  2003. "id": {},
  2004. "arn": {},
  2005. "name": {},
  2006. "description": {},
  2007. "sseConfig": {
  2008. "shape": "S12"
  2009. },
  2010. "creationTime": {
  2011. "shape": "S1y"
  2012. },
  2013. "fallbackLocation": {},
  2014. "s3Access": {
  2015. "type": "structure",
  2016. "members": {
  2017. "s3Uri": {},
  2018. "s3AccessPointArn": {}
  2019. }
  2020. },
  2021. "eTagAlgorithmFamily": {}
  2022. }
  2023. },
  2024. "endpoint": {
  2025. "hostPrefix": "control-storage-"
  2026. }
  2027. },
  2028. "GetShare": {
  2029. "http": {
  2030. "method": "GET",
  2031. "requestUri": "/share/{shareId}",
  2032. "responseCode": 200
  2033. },
  2034. "input": {
  2035. "type": "structure",
  2036. "required": [
  2037. "shareId"
  2038. ],
  2039. "members": {
  2040. "shareId": {
  2041. "location": "uri",
  2042. "locationName": "shareId"
  2043. }
  2044. }
  2045. },
  2046. "output": {
  2047. "type": "structure",
  2048. "members": {
  2049. "share": {
  2050. "shape": "S86"
  2051. }
  2052. }
  2053. },
  2054. "endpoint": {
  2055. "hostPrefix": "analytics-"
  2056. }
  2057. },
  2058. "GetVariantImportJob": {
  2059. "http": {
  2060. "method": "GET",
  2061. "requestUri": "/import/variant/{jobId}",
  2062. "responseCode": 200
  2063. },
  2064. "input": {
  2065. "type": "structure",
  2066. "required": [
  2067. "jobId"
  2068. ],
  2069. "members": {
  2070. "jobId": {
  2071. "location": "uri",
  2072. "locationName": "jobId"
  2073. }
  2074. }
  2075. },
  2076. "output": {
  2077. "type": "structure",
  2078. "required": [
  2079. "id",
  2080. "destinationName",
  2081. "roleArn",
  2082. "status",
  2083. "statusMessage",
  2084. "creationTime",
  2085. "updateTime",
  2086. "items",
  2087. "runLeftNormalization"
  2088. ],
  2089. "members": {
  2090. "id": {},
  2091. "destinationName": {},
  2092. "roleArn": {},
  2093. "status": {},
  2094. "statusMessage": {},
  2095. "creationTime": {
  2096. "shape": "S1i"
  2097. },
  2098. "updateTime": {
  2099. "shape": "S41"
  2100. },
  2101. "completionTime": {
  2102. "shape": "S42"
  2103. },
  2104. "items": {
  2105. "type": "list",
  2106. "member": {
  2107. "type": "structure",
  2108. "required": [
  2109. "source",
  2110. "jobStatus"
  2111. ],
  2112. "members": {
  2113. "source": {},
  2114. "jobStatus": {},
  2115. "statusMessage": {}
  2116. }
  2117. }
  2118. },
  2119. "runLeftNormalization": {
  2120. "type": "boolean"
  2121. },
  2122. "annotationFields": {
  2123. "shape": "S4k"
  2124. }
  2125. }
  2126. },
  2127. "endpoint": {
  2128. "hostPrefix": "analytics-"
  2129. }
  2130. },
  2131. "GetVariantStore": {
  2132. "http": {
  2133. "method": "GET",
  2134. "requestUri": "/variantStore/{name}",
  2135. "responseCode": 200
  2136. },
  2137. "input": {
  2138. "type": "structure",
  2139. "required": [
  2140. "name"
  2141. ],
  2142. "members": {
  2143. "name": {
  2144. "location": "uri",
  2145. "locationName": "name"
  2146. }
  2147. }
  2148. },
  2149. "output": {
  2150. "type": "structure",
  2151. "required": [
  2152. "id",
  2153. "reference",
  2154. "status",
  2155. "storeArn",
  2156. "name",
  2157. "description",
  2158. "sseConfig",
  2159. "creationTime",
  2160. "updateTime",
  2161. "tags",
  2162. "statusMessage",
  2163. "storeSizeBytes"
  2164. ],
  2165. "members": {
  2166. "id": {},
  2167. "reference": {
  2168. "shape": "Su"
  2169. },
  2170. "status": {},
  2171. "storeArn": {},
  2172. "name": {},
  2173. "description": {},
  2174. "sseConfig": {
  2175. "shape": "S12"
  2176. },
  2177. "creationTime": {
  2178. "shape": "S1i"
  2179. },
  2180. "updateTime": {
  2181. "shape": "S41"
  2182. },
  2183. "tags": {
  2184. "shape": "Sy"
  2185. },
  2186. "statusMessage": {},
  2187. "storeSizeBytes": {
  2188. "type": "long"
  2189. }
  2190. }
  2191. },
  2192. "endpoint": {
  2193. "hostPrefix": "analytics-"
  2194. }
  2195. },
  2196. "GetWorkflow": {
  2197. "http": {
  2198. "method": "GET",
  2199. "requestUri": "/workflow/{id}",
  2200. "responseCode": 200
  2201. },
  2202. "input": {
  2203. "type": "structure",
  2204. "required": [
  2205. "id"
  2206. ],
  2207. "members": {
  2208. "id": {
  2209. "location": "uri",
  2210. "locationName": "id"
  2211. },
  2212. "type": {
  2213. "location": "querystring",
  2214. "locationName": "type"
  2215. },
  2216. "export": {
  2217. "location": "querystring",
  2218. "locationName": "export",
  2219. "type": "list",
  2220. "member": {}
  2221. },
  2222. "workflowOwnerId": {
  2223. "location": "querystring",
  2224. "locationName": "workflowOwnerId"
  2225. }
  2226. }
  2227. },
  2228. "output": {
  2229. "type": "structure",
  2230. "members": {
  2231. "arn": {},
  2232. "id": {},
  2233. "status": {},
  2234. "type": {},
  2235. "name": {},
  2236. "description": {},
  2237. "engine": {},
  2238. "definition": {},
  2239. "main": {},
  2240. "digest": {},
  2241. "parameterTemplate": {
  2242. "shape": "S2y"
  2243. },
  2244. "storageCapacity": {
  2245. "type": "integer"
  2246. },
  2247. "creationTime": {
  2248. "shape": "S8i"
  2249. },
  2250. "statusMessage": {},
  2251. "tags": {
  2252. "shape": "Sy"
  2253. },
  2254. "metadata": {
  2255. "shape": "S8k"
  2256. },
  2257. "accelerators": {}
  2258. }
  2259. },
  2260. "endpoint": {
  2261. "hostPrefix": "workflows-"
  2262. }
  2263. },
  2264. "ListAnnotationImportJobs": {
  2265. "http": {
  2266. "requestUri": "/import/annotations",
  2267. "responseCode": 200
  2268. },
  2269. "input": {
  2270. "type": "structure",
  2271. "members": {
  2272. "maxResults": {
  2273. "location": "querystring",
  2274. "locationName": "maxResults",
  2275. "type": "integer"
  2276. },
  2277. "ids": {
  2278. "type": "list",
  2279. "member": {}
  2280. },
  2281. "nextToken": {
  2282. "location": "querystring",
  2283. "locationName": "nextToken"
  2284. },
  2285. "filter": {
  2286. "type": "structure",
  2287. "members": {
  2288. "status": {},
  2289. "storeName": {}
  2290. }
  2291. }
  2292. }
  2293. },
  2294. "output": {
  2295. "type": "structure",
  2296. "members": {
  2297. "annotationImportJobs": {
  2298. "type": "list",
  2299. "member": {
  2300. "type": "structure",
  2301. "required": [
  2302. "id",
  2303. "destinationName",
  2304. "versionName",
  2305. "roleArn",
  2306. "status",
  2307. "creationTime",
  2308. "updateTime"
  2309. ],
  2310. "members": {
  2311. "id": {},
  2312. "destinationName": {},
  2313. "versionName": {},
  2314. "roleArn": {},
  2315. "status": {},
  2316. "creationTime": {
  2317. "shape": "S1i"
  2318. },
  2319. "updateTime": {
  2320. "shape": "S41"
  2321. },
  2322. "completionTime": {
  2323. "shape": "S42"
  2324. },
  2325. "runLeftNormalization": {
  2326. "type": "boolean"
  2327. },
  2328. "annotationFields": {
  2329. "shape": "S4k"
  2330. }
  2331. }
  2332. }
  2333. },
  2334. "nextToken": {}
  2335. }
  2336. },
  2337. "endpoint": {
  2338. "hostPrefix": "analytics-"
  2339. }
  2340. },
  2341. "ListAnnotationStoreVersions": {
  2342. "http": {
  2343. "requestUri": "/annotationStore/{name}/versions",
  2344. "responseCode": 200
  2345. },
  2346. "input": {
  2347. "type": "structure",
  2348. "required": [
  2349. "name"
  2350. ],
  2351. "members": {
  2352. "name": {
  2353. "location": "uri",
  2354. "locationName": "name"
  2355. },
  2356. "maxResults": {
  2357. "location": "querystring",
  2358. "locationName": "maxResults",
  2359. "type": "integer"
  2360. },
  2361. "nextToken": {
  2362. "location": "querystring",
  2363. "locationName": "nextToken"
  2364. },
  2365. "filter": {
  2366. "type": "structure",
  2367. "members": {
  2368. "status": {}
  2369. }
  2370. }
  2371. }
  2372. },
  2373. "output": {
  2374. "type": "structure",
  2375. "members": {
  2376. "annotationStoreVersions": {
  2377. "type": "list",
  2378. "member": {
  2379. "type": "structure",
  2380. "required": [
  2381. "storeId",
  2382. "id",
  2383. "status",
  2384. "versionArn",
  2385. "name",
  2386. "versionName",
  2387. "description",
  2388. "creationTime",
  2389. "updateTime",
  2390. "statusMessage",
  2391. "versionSizeBytes"
  2392. ],
  2393. "members": {
  2394. "storeId": {},
  2395. "id": {},
  2396. "status": {},
  2397. "versionArn": {},
  2398. "name": {},
  2399. "versionName": {},
  2400. "description": {},
  2401. "creationTime": {
  2402. "shape": "S1i"
  2403. },
  2404. "updateTime": {
  2405. "shape": "S41"
  2406. },
  2407. "statusMessage": {},
  2408. "versionSizeBytes": {
  2409. "type": "long"
  2410. }
  2411. }
  2412. }
  2413. },
  2414. "nextToken": {}
  2415. }
  2416. },
  2417. "endpoint": {
  2418. "hostPrefix": "analytics-"
  2419. }
  2420. },
  2421. "ListAnnotationStores": {
  2422. "http": {
  2423. "requestUri": "/annotationStores",
  2424. "responseCode": 200
  2425. },
  2426. "input": {
  2427. "type": "structure",
  2428. "members": {
  2429. "ids": {
  2430. "type": "list",
  2431. "member": {}
  2432. },
  2433. "maxResults": {
  2434. "location": "querystring",
  2435. "locationName": "maxResults",
  2436. "type": "integer"
  2437. },
  2438. "nextToken": {
  2439. "location": "querystring",
  2440. "locationName": "nextToken"
  2441. },
  2442. "filter": {
  2443. "type": "structure",
  2444. "members": {
  2445. "status": {}
  2446. }
  2447. }
  2448. }
  2449. },
  2450. "output": {
  2451. "type": "structure",
  2452. "members": {
  2453. "annotationStores": {
  2454. "type": "list",
  2455. "member": {
  2456. "type": "structure",
  2457. "required": [
  2458. "id",
  2459. "reference",
  2460. "status",
  2461. "storeArn",
  2462. "name",
  2463. "storeFormat",
  2464. "description",
  2465. "sseConfig",
  2466. "creationTime",
  2467. "updateTime",
  2468. "statusMessage",
  2469. "storeSizeBytes"
  2470. ],
  2471. "members": {
  2472. "id": {},
  2473. "reference": {
  2474. "shape": "Su"
  2475. },
  2476. "status": {},
  2477. "storeArn": {},
  2478. "name": {},
  2479. "storeFormat": {},
  2480. "description": {},
  2481. "sseConfig": {
  2482. "shape": "S12"
  2483. },
  2484. "creationTime": {
  2485. "shape": "S1i"
  2486. },
  2487. "updateTime": {
  2488. "shape": "S41"
  2489. },
  2490. "statusMessage": {},
  2491. "storeSizeBytes": {
  2492. "type": "long"
  2493. }
  2494. }
  2495. }
  2496. },
  2497. "nextToken": {}
  2498. }
  2499. },
  2500. "endpoint": {
  2501. "hostPrefix": "analytics-"
  2502. }
  2503. },
  2504. "ListMultipartReadSetUploads": {
  2505. "http": {
  2506. "requestUri": "/sequencestore/{sequenceStoreId}/uploads",
  2507. "responseCode": 200
  2508. },
  2509. "input": {
  2510. "type": "structure",
  2511. "required": [
  2512. "sequenceStoreId"
  2513. ],
  2514. "members": {
  2515. "sequenceStoreId": {
  2516. "location": "uri",
  2517. "locationName": "sequenceStoreId"
  2518. },
  2519. "maxResults": {
  2520. "location": "querystring",
  2521. "locationName": "maxResults",
  2522. "type": "integer"
  2523. },
  2524. "nextToken": {
  2525. "location": "querystring",
  2526. "locationName": "nextToken"
  2527. }
  2528. }
  2529. },
  2530. "output": {
  2531. "type": "structure",
  2532. "members": {
  2533. "nextToken": {},
  2534. "uploads": {
  2535. "type": "list",
  2536. "member": {
  2537. "type": "structure",
  2538. "required": [
  2539. "sequenceStoreId",
  2540. "uploadId",
  2541. "sourceFileType",
  2542. "subjectId",
  2543. "sampleId",
  2544. "generatedFrom",
  2545. "referenceArn",
  2546. "creationTime"
  2547. ],
  2548. "members": {
  2549. "sequenceStoreId": {},
  2550. "uploadId": {},
  2551. "sourceFileType": {},
  2552. "subjectId": {},
  2553. "sampleId": {},
  2554. "generatedFrom": {},
  2555. "referenceArn": {},
  2556. "name": {},
  2557. "description": {},
  2558. "tags": {
  2559. "shape": "Sy"
  2560. },
  2561. "creationTime": {
  2562. "shape": "S1y"
  2563. }
  2564. }
  2565. }
  2566. }
  2567. }
  2568. },
  2569. "endpoint": {
  2570. "hostPrefix": "control-storage-"
  2571. }
  2572. },
  2573. "ListReadSetActivationJobs": {
  2574. "http": {
  2575. "requestUri": "/sequencestore/{sequenceStoreId}/activationjobs",
  2576. "responseCode": 200
  2577. },
  2578. "input": {
  2579. "type": "structure",
  2580. "required": [
  2581. "sequenceStoreId"
  2582. ],
  2583. "members": {
  2584. "sequenceStoreId": {
  2585. "location": "uri",
  2586. "locationName": "sequenceStoreId"
  2587. },
  2588. "maxResults": {
  2589. "location": "querystring",
  2590. "locationName": "maxResults",
  2591. "type": "integer"
  2592. },
  2593. "nextToken": {
  2594. "location": "querystring",
  2595. "locationName": "nextToken"
  2596. },
  2597. "filter": {
  2598. "type": "structure",
  2599. "members": {
  2600. "status": {},
  2601. "createdAfter": {
  2602. "shape": "S1y"
  2603. },
  2604. "createdBefore": {
  2605. "shape": "S1y"
  2606. }
  2607. }
  2608. }
  2609. }
  2610. },
  2611. "output": {
  2612. "type": "structure",
  2613. "members": {
  2614. "nextToken": {},
  2615. "activationJobs": {
  2616. "type": "list",
  2617. "member": {
  2618. "type": "structure",
  2619. "required": [
  2620. "id",
  2621. "sequenceStoreId",
  2622. "status",
  2623. "creationTime"
  2624. ],
  2625. "members": {
  2626. "id": {},
  2627. "sequenceStoreId": {},
  2628. "status": {},
  2629. "creationTime": {
  2630. "shape": "S1y"
  2631. },
  2632. "completionTime": {
  2633. "shape": "S1y"
  2634. }
  2635. }
  2636. }
  2637. }
  2638. }
  2639. },
  2640. "endpoint": {
  2641. "hostPrefix": "control-storage-"
  2642. }
  2643. },
  2644. "ListReadSetExportJobs": {
  2645. "http": {
  2646. "requestUri": "/sequencestore/{sequenceStoreId}/exportjobs",
  2647. "responseCode": 200
  2648. },
  2649. "input": {
  2650. "type": "structure",
  2651. "required": [
  2652. "sequenceStoreId"
  2653. ],
  2654. "members": {
  2655. "sequenceStoreId": {
  2656. "location": "uri",
  2657. "locationName": "sequenceStoreId"
  2658. },
  2659. "maxResults": {
  2660. "location": "querystring",
  2661. "locationName": "maxResults",
  2662. "type": "integer"
  2663. },
  2664. "nextToken": {
  2665. "location": "querystring",
  2666. "locationName": "nextToken"
  2667. },
  2668. "filter": {
  2669. "type": "structure",
  2670. "members": {
  2671. "status": {},
  2672. "createdAfter": {
  2673. "shape": "S1y"
  2674. },
  2675. "createdBefore": {
  2676. "shape": "S1y"
  2677. }
  2678. }
  2679. }
  2680. }
  2681. },
  2682. "output": {
  2683. "type": "structure",
  2684. "members": {
  2685. "nextToken": {},
  2686. "exportJobs": {
  2687. "type": "list",
  2688. "member": {
  2689. "type": "structure",
  2690. "required": [
  2691. "id",
  2692. "sequenceStoreId",
  2693. "destination",
  2694. "status",
  2695. "creationTime"
  2696. ],
  2697. "members": {
  2698. "id": {},
  2699. "sequenceStoreId": {},
  2700. "destination": {},
  2701. "status": {},
  2702. "creationTime": {
  2703. "shape": "S1y"
  2704. },
  2705. "completionTime": {
  2706. "shape": "S1y"
  2707. }
  2708. }
  2709. }
  2710. }
  2711. }
  2712. },
  2713. "endpoint": {
  2714. "hostPrefix": "control-storage-"
  2715. }
  2716. },
  2717. "ListReadSetImportJobs": {
  2718. "http": {
  2719. "requestUri": "/sequencestore/{sequenceStoreId}/importjobs",
  2720. "responseCode": 200
  2721. },
  2722. "input": {
  2723. "type": "structure",
  2724. "required": [
  2725. "sequenceStoreId"
  2726. ],
  2727. "members": {
  2728. "maxResults": {
  2729. "location": "querystring",
  2730. "locationName": "maxResults",
  2731. "type": "integer"
  2732. },
  2733. "nextToken": {
  2734. "location": "querystring",
  2735. "locationName": "nextToken"
  2736. },
  2737. "sequenceStoreId": {
  2738. "location": "uri",
  2739. "locationName": "sequenceStoreId"
  2740. },
  2741. "filter": {
  2742. "type": "structure",
  2743. "members": {
  2744. "status": {},
  2745. "createdAfter": {
  2746. "shape": "S1y"
  2747. },
  2748. "createdBefore": {
  2749. "shape": "S1y"
  2750. }
  2751. }
  2752. }
  2753. }
  2754. },
  2755. "output": {
  2756. "type": "structure",
  2757. "members": {
  2758. "nextToken": {},
  2759. "importJobs": {
  2760. "type": "list",
  2761. "member": {
  2762. "type": "structure",
  2763. "required": [
  2764. "id",
  2765. "sequenceStoreId",
  2766. "roleArn",
  2767. "status",
  2768. "creationTime"
  2769. ],
  2770. "members": {
  2771. "id": {},
  2772. "sequenceStoreId": {},
  2773. "roleArn": {},
  2774. "status": {},
  2775. "creationTime": {
  2776. "shape": "S1y"
  2777. },
  2778. "completionTime": {
  2779. "shape": "S1y"
  2780. }
  2781. }
  2782. }
  2783. }
  2784. }
  2785. },
  2786. "endpoint": {
  2787. "hostPrefix": "control-storage-"
  2788. }
  2789. },
  2790. "ListReadSetUploadParts": {
  2791. "http": {
  2792. "requestUri": "/sequencestore/{sequenceStoreId}/upload/{uploadId}/parts",
  2793. "responseCode": 200
  2794. },
  2795. "input": {
  2796. "type": "structure",
  2797. "required": [
  2798. "sequenceStoreId",
  2799. "uploadId",
  2800. "partSource"
  2801. ],
  2802. "members": {
  2803. "sequenceStoreId": {
  2804. "location": "uri",
  2805. "locationName": "sequenceStoreId"
  2806. },
  2807. "uploadId": {
  2808. "location": "uri",
  2809. "locationName": "uploadId"
  2810. },
  2811. "partSource": {},
  2812. "maxResults": {
  2813. "location": "querystring",
  2814. "locationName": "maxResults",
  2815. "type": "integer"
  2816. },
  2817. "nextToken": {
  2818. "location": "querystring",
  2819. "locationName": "nextToken"
  2820. },
  2821. "filter": {
  2822. "type": "structure",
  2823. "members": {
  2824. "createdAfter": {
  2825. "shape": "S1y"
  2826. },
  2827. "createdBefore": {
  2828. "shape": "S1y"
  2829. }
  2830. }
  2831. }
  2832. }
  2833. },
  2834. "output": {
  2835. "type": "structure",
  2836. "members": {
  2837. "nextToken": {},
  2838. "parts": {
  2839. "type": "list",
  2840. "member": {
  2841. "type": "structure",
  2842. "required": [
  2843. "partNumber",
  2844. "partSize",
  2845. "partSource",
  2846. "checksum"
  2847. ],
  2848. "members": {
  2849. "partNumber": {
  2850. "type": "integer"
  2851. },
  2852. "partSize": {
  2853. "type": "long"
  2854. },
  2855. "partSource": {},
  2856. "checksum": {},
  2857. "creationTime": {
  2858. "shape": "S1y"
  2859. },
  2860. "lastUpdatedTime": {
  2861. "shape": "S1y"
  2862. }
  2863. }
  2864. }
  2865. }
  2866. }
  2867. },
  2868. "endpoint": {
  2869. "hostPrefix": "control-storage-"
  2870. }
  2871. },
  2872. "ListReadSets": {
  2873. "http": {
  2874. "requestUri": "/sequencestore/{sequenceStoreId}/readsets",
  2875. "responseCode": 200
  2876. },
  2877. "input": {
  2878. "type": "structure",
  2879. "required": [
  2880. "sequenceStoreId"
  2881. ],
  2882. "members": {
  2883. "sequenceStoreId": {
  2884. "location": "uri",
  2885. "locationName": "sequenceStoreId"
  2886. },
  2887. "maxResults": {
  2888. "location": "querystring",
  2889. "locationName": "maxResults",
  2890. "type": "integer"
  2891. },
  2892. "nextToken": {
  2893. "location": "querystring",
  2894. "locationName": "nextToken"
  2895. },
  2896. "filter": {
  2897. "type": "structure",
  2898. "members": {
  2899. "name": {},
  2900. "status": {},
  2901. "referenceArn": {},
  2902. "createdAfter": {
  2903. "shape": "S1y"
  2904. },
  2905. "createdBefore": {
  2906. "shape": "S1y"
  2907. },
  2908. "sampleId": {},
  2909. "subjectId": {},
  2910. "generatedFrom": {},
  2911. "creationType": {}
  2912. }
  2913. }
  2914. }
  2915. },
  2916. "output": {
  2917. "type": "structure",
  2918. "required": [
  2919. "readSets"
  2920. ],
  2921. "members": {
  2922. "nextToken": {},
  2923. "readSets": {
  2924. "type": "list",
  2925. "member": {
  2926. "type": "structure",
  2927. "required": [
  2928. "id",
  2929. "arn",
  2930. "sequenceStoreId",
  2931. "status",
  2932. "fileType",
  2933. "creationTime"
  2934. ],
  2935. "members": {
  2936. "id": {},
  2937. "arn": {},
  2938. "sequenceStoreId": {},
  2939. "subjectId": {},
  2940. "sampleId": {},
  2941. "status": {},
  2942. "name": {},
  2943. "description": {},
  2944. "referenceArn": {},
  2945. "fileType": {},
  2946. "sequenceInformation": {
  2947. "shape": "S5r"
  2948. },
  2949. "creationTime": {
  2950. "shape": "S1y"
  2951. },
  2952. "statusMessage": {},
  2953. "creationType": {},
  2954. "etag": {
  2955. "shape": "S60"
  2956. }
  2957. }
  2958. }
  2959. }
  2960. }
  2961. },
  2962. "endpoint": {
  2963. "hostPrefix": "control-storage-"
  2964. }
  2965. },
  2966. "ListReferenceImportJobs": {
  2967. "http": {
  2968. "requestUri": "/referencestore/{referenceStoreId}/importjobs",
  2969. "responseCode": 200
  2970. },
  2971. "input": {
  2972. "type": "structure",
  2973. "required": [
  2974. "referenceStoreId"
  2975. ],
  2976. "members": {
  2977. "maxResults": {
  2978. "location": "querystring",
  2979. "locationName": "maxResults",
  2980. "type": "integer"
  2981. },
  2982. "nextToken": {
  2983. "location": "querystring",
  2984. "locationName": "nextToken"
  2985. },
  2986. "referenceStoreId": {
  2987. "location": "uri",
  2988. "locationName": "referenceStoreId"
  2989. },
  2990. "filter": {
  2991. "type": "structure",
  2992. "members": {
  2993. "status": {},
  2994. "createdAfter": {
  2995. "shape": "S1y"
  2996. },
  2997. "createdBefore": {
  2998. "shape": "S1y"
  2999. }
  3000. }
  3001. }
  3002. }
  3003. },
  3004. "output": {
  3005. "type": "structure",
  3006. "members": {
  3007. "nextToken": {},
  3008. "importJobs": {
  3009. "type": "list",
  3010. "member": {
  3011. "type": "structure",
  3012. "required": [
  3013. "id",
  3014. "referenceStoreId",
  3015. "roleArn",
  3016. "status",
  3017. "creationTime"
  3018. ],
  3019. "members": {
  3020. "id": {},
  3021. "referenceStoreId": {},
  3022. "roleArn": {},
  3023. "status": {},
  3024. "creationTime": {
  3025. "shape": "S1y"
  3026. },
  3027. "completionTime": {
  3028. "shape": "S1y"
  3029. }
  3030. }
  3031. }
  3032. }
  3033. }
  3034. },
  3035. "endpoint": {
  3036. "hostPrefix": "control-storage-"
  3037. }
  3038. },
  3039. "ListReferenceStores": {
  3040. "http": {
  3041. "requestUri": "/referencestores",
  3042. "responseCode": 200
  3043. },
  3044. "input": {
  3045. "type": "structure",
  3046. "members": {
  3047. "maxResults": {
  3048. "location": "querystring",
  3049. "locationName": "maxResults",
  3050. "type": "integer"
  3051. },
  3052. "nextToken": {
  3053. "location": "querystring",
  3054. "locationName": "nextToken"
  3055. },
  3056. "filter": {
  3057. "type": "structure",
  3058. "members": {
  3059. "name": {},
  3060. "createdAfter": {
  3061. "shape": "S1y"
  3062. },
  3063. "createdBefore": {
  3064. "shape": "S1y"
  3065. }
  3066. }
  3067. }
  3068. }
  3069. },
  3070. "output": {
  3071. "type": "structure",
  3072. "required": [
  3073. "referenceStores"
  3074. ],
  3075. "members": {
  3076. "nextToken": {},
  3077. "referenceStores": {
  3078. "type": "list",
  3079. "member": {
  3080. "type": "structure",
  3081. "required": [
  3082. "arn",
  3083. "id",
  3084. "creationTime"
  3085. ],
  3086. "members": {
  3087. "arn": {},
  3088. "id": {},
  3089. "name": {},
  3090. "description": {},
  3091. "sseConfig": {
  3092. "shape": "S12"
  3093. },
  3094. "creationTime": {
  3095. "shape": "S1y"
  3096. }
  3097. }
  3098. }
  3099. }
  3100. }
  3101. },
  3102. "endpoint": {
  3103. "hostPrefix": "control-storage-"
  3104. }
  3105. },
  3106. "ListReferences": {
  3107. "http": {
  3108. "requestUri": "/referencestore/{referenceStoreId}/references",
  3109. "responseCode": 200
  3110. },
  3111. "input": {
  3112. "type": "structure",
  3113. "required": [
  3114. "referenceStoreId"
  3115. ],
  3116. "members": {
  3117. "referenceStoreId": {
  3118. "location": "uri",
  3119. "locationName": "referenceStoreId"
  3120. },
  3121. "maxResults": {
  3122. "location": "querystring",
  3123. "locationName": "maxResults",
  3124. "type": "integer"
  3125. },
  3126. "nextToken": {
  3127. "location": "querystring",
  3128. "locationName": "nextToken"
  3129. },
  3130. "filter": {
  3131. "type": "structure",
  3132. "members": {
  3133. "name": {},
  3134. "md5": {},
  3135. "createdAfter": {
  3136. "shape": "S1y"
  3137. },
  3138. "createdBefore": {
  3139. "shape": "S1y"
  3140. }
  3141. }
  3142. }
  3143. }
  3144. },
  3145. "output": {
  3146. "type": "structure",
  3147. "required": [
  3148. "references"
  3149. ],
  3150. "members": {
  3151. "nextToken": {},
  3152. "references": {
  3153. "type": "list",
  3154. "member": {
  3155. "type": "structure",
  3156. "required": [
  3157. "id",
  3158. "arn",
  3159. "referenceStoreId",
  3160. "md5",
  3161. "creationTime",
  3162. "updateTime"
  3163. ],
  3164. "members": {
  3165. "id": {},
  3166. "arn": {},
  3167. "referenceStoreId": {},
  3168. "md5": {},
  3169. "status": {},
  3170. "name": {},
  3171. "description": {},
  3172. "creationTime": {
  3173. "shape": "S1y"
  3174. },
  3175. "updateTime": {
  3176. "shape": "S1y"
  3177. }
  3178. }
  3179. }
  3180. }
  3181. }
  3182. },
  3183. "endpoint": {
  3184. "hostPrefix": "control-storage-"
  3185. }
  3186. },
  3187. "ListRunGroups": {
  3188. "http": {
  3189. "method": "GET",
  3190. "requestUri": "/runGroup",
  3191. "responseCode": 200
  3192. },
  3193. "input": {
  3194. "type": "structure",
  3195. "members": {
  3196. "name": {
  3197. "location": "querystring",
  3198. "locationName": "name"
  3199. },
  3200. "startingToken": {
  3201. "location": "querystring",
  3202. "locationName": "startingToken"
  3203. },
  3204. "maxResults": {
  3205. "location": "querystring",
  3206. "locationName": "maxResults",
  3207. "type": "integer"
  3208. }
  3209. }
  3210. },
  3211. "output": {
  3212. "type": "structure",
  3213. "members": {
  3214. "items": {
  3215. "type": "list",
  3216. "member": {
  3217. "type": "structure",
  3218. "members": {
  3219. "arn": {},
  3220. "id": {},
  3221. "name": {},
  3222. "maxCpus": {
  3223. "type": "integer"
  3224. },
  3225. "maxRuns": {
  3226. "type": "integer"
  3227. },
  3228. "maxDuration": {
  3229. "type": "integer"
  3230. },
  3231. "creationTime": {
  3232. "shape": "S7l"
  3233. },
  3234. "maxGpus": {
  3235. "type": "integer"
  3236. }
  3237. }
  3238. }
  3239. },
  3240. "nextToken": {}
  3241. }
  3242. },
  3243. "endpoint": {
  3244. "hostPrefix": "workflows-"
  3245. }
  3246. },
  3247. "ListRunTasks": {
  3248. "http": {
  3249. "method": "GET",
  3250. "requestUri": "/run/{id}/task",
  3251. "responseCode": 200
  3252. },
  3253. "input": {
  3254. "type": "structure",
  3255. "required": [
  3256. "id"
  3257. ],
  3258. "members": {
  3259. "id": {
  3260. "location": "uri",
  3261. "locationName": "id"
  3262. },
  3263. "status": {
  3264. "location": "querystring",
  3265. "locationName": "status"
  3266. },
  3267. "startingToken": {
  3268. "location": "querystring",
  3269. "locationName": "startingToken"
  3270. },
  3271. "maxResults": {
  3272. "location": "querystring",
  3273. "locationName": "maxResults",
  3274. "type": "integer"
  3275. }
  3276. }
  3277. },
  3278. "output": {
  3279. "type": "structure",
  3280. "members": {
  3281. "items": {
  3282. "type": "list",
  3283. "member": {
  3284. "type": "structure",
  3285. "members": {
  3286. "taskId": {},
  3287. "status": {},
  3288. "name": {},
  3289. "cpus": {
  3290. "type": "integer"
  3291. },
  3292. "memory": {
  3293. "type": "integer"
  3294. },
  3295. "creationTime": {
  3296. "shape": "S7u"
  3297. },
  3298. "startTime": {
  3299. "shape": "S7u"
  3300. },
  3301. "stopTime": {
  3302. "shape": "S7u"
  3303. },
  3304. "gpus": {
  3305. "type": "integer"
  3306. },
  3307. "instanceType": {}
  3308. }
  3309. }
  3310. },
  3311. "nextToken": {}
  3312. }
  3313. },
  3314. "endpoint": {
  3315. "hostPrefix": "workflows-"
  3316. }
  3317. },
  3318. "ListRuns": {
  3319. "http": {
  3320. "method": "GET",
  3321. "requestUri": "/run",
  3322. "responseCode": 200
  3323. },
  3324. "input": {
  3325. "type": "structure",
  3326. "members": {
  3327. "name": {
  3328. "location": "querystring",
  3329. "locationName": "name"
  3330. },
  3331. "runGroupId": {
  3332. "location": "querystring",
  3333. "locationName": "runGroupId"
  3334. },
  3335. "startingToken": {
  3336. "location": "querystring",
  3337. "locationName": "startingToken"
  3338. },
  3339. "maxResults": {
  3340. "location": "querystring",
  3341. "locationName": "maxResults",
  3342. "type": "integer"
  3343. },
  3344. "status": {
  3345. "location": "querystring",
  3346. "locationName": "status"
  3347. }
  3348. }
  3349. },
  3350. "output": {
  3351. "type": "structure",
  3352. "members": {
  3353. "items": {
  3354. "type": "list",
  3355. "member": {
  3356. "type": "structure",
  3357. "members": {
  3358. "arn": {},
  3359. "id": {},
  3360. "status": {},
  3361. "workflowId": {},
  3362. "name": {},
  3363. "priority": {
  3364. "type": "integer"
  3365. },
  3366. "storageCapacity": {
  3367. "type": "integer"
  3368. },
  3369. "creationTime": {
  3370. "shape": "S76"
  3371. },
  3372. "startTime": {
  3373. "shape": "S76"
  3374. },
  3375. "stopTime": {
  3376. "shape": "S76"
  3377. },
  3378. "storageType": {}
  3379. }
  3380. }
  3381. },
  3382. "nextToken": {}
  3383. }
  3384. },
  3385. "endpoint": {
  3386. "hostPrefix": "workflows-"
  3387. }
  3388. },
  3389. "ListSequenceStores": {
  3390. "http": {
  3391. "requestUri": "/sequencestores",
  3392. "responseCode": 200
  3393. },
  3394. "input": {
  3395. "type": "structure",
  3396. "members": {
  3397. "maxResults": {
  3398. "location": "querystring",
  3399. "locationName": "maxResults",
  3400. "type": "integer"
  3401. },
  3402. "nextToken": {
  3403. "location": "querystring",
  3404. "locationName": "nextToken"
  3405. },
  3406. "filter": {
  3407. "type": "structure",
  3408. "members": {
  3409. "name": {},
  3410. "createdAfter": {
  3411. "shape": "S1y"
  3412. },
  3413. "createdBefore": {
  3414. "shape": "S1y"
  3415. }
  3416. }
  3417. }
  3418. }
  3419. },
  3420. "output": {
  3421. "type": "structure",
  3422. "required": [
  3423. "sequenceStores"
  3424. ],
  3425. "members": {
  3426. "nextToken": {},
  3427. "sequenceStores": {
  3428. "type": "list",
  3429. "member": {
  3430. "type": "structure",
  3431. "required": [
  3432. "arn",
  3433. "id",
  3434. "creationTime"
  3435. ],
  3436. "members": {
  3437. "arn": {},
  3438. "id": {},
  3439. "name": {},
  3440. "description": {},
  3441. "sseConfig": {
  3442. "shape": "S12"
  3443. },
  3444. "creationTime": {
  3445. "shape": "S1y"
  3446. },
  3447. "fallbackLocation": {},
  3448. "eTagAlgorithmFamily": {}
  3449. }
  3450. }
  3451. }
  3452. }
  3453. },
  3454. "endpoint": {
  3455. "hostPrefix": "control-storage-"
  3456. }
  3457. },
  3458. "ListShares": {
  3459. "http": {
  3460. "requestUri": "/shares",
  3461. "responseCode": 200
  3462. },
  3463. "input": {
  3464. "type": "structure",
  3465. "required": [
  3466. "resourceOwner"
  3467. ],
  3468. "members": {
  3469. "resourceOwner": {},
  3470. "filter": {
  3471. "type": "structure",
  3472. "members": {
  3473. "resourceArns": {
  3474. "type": "list",
  3475. "member": {}
  3476. },
  3477. "status": {
  3478. "type": "list",
  3479. "member": {}
  3480. },
  3481. "type": {
  3482. "type": "list",
  3483. "member": {}
  3484. }
  3485. }
  3486. },
  3487. "nextToken": {
  3488. "location": "querystring",
  3489. "locationName": "nextToken"
  3490. },
  3491. "maxResults": {
  3492. "location": "querystring",
  3493. "locationName": "maxResults",
  3494. "type": "integer"
  3495. }
  3496. }
  3497. },
  3498. "output": {
  3499. "type": "structure",
  3500. "required": [
  3501. "shares"
  3502. ],
  3503. "members": {
  3504. "shares": {
  3505. "type": "list",
  3506. "member": {
  3507. "shape": "S86"
  3508. }
  3509. },
  3510. "nextToken": {}
  3511. }
  3512. },
  3513. "endpoint": {
  3514. "hostPrefix": "analytics-"
  3515. }
  3516. },
  3517. "ListTagsForResource": {
  3518. "http": {
  3519. "method": "GET",
  3520. "requestUri": "/tags/{resourceArn}",
  3521. "responseCode": 200
  3522. },
  3523. "input": {
  3524. "type": "structure",
  3525. "required": [
  3526. "resourceArn"
  3527. ],
  3528. "members": {
  3529. "resourceArn": {
  3530. "location": "uri",
  3531. "locationName": "resourceArn"
  3532. }
  3533. }
  3534. },
  3535. "output": {
  3536. "type": "structure",
  3537. "required": [
  3538. "tags"
  3539. ],
  3540. "members": {
  3541. "tags": {
  3542. "shape": "Sy"
  3543. }
  3544. }
  3545. },
  3546. "endpoint": {
  3547. "hostPrefix": "tags-"
  3548. }
  3549. },
  3550. "ListVariantImportJobs": {
  3551. "http": {
  3552. "requestUri": "/import/variants",
  3553. "responseCode": 200
  3554. },
  3555. "input": {
  3556. "type": "structure",
  3557. "members": {
  3558. "maxResults": {
  3559. "location": "querystring",
  3560. "locationName": "maxResults",
  3561. "type": "integer"
  3562. },
  3563. "ids": {
  3564. "type": "list",
  3565. "member": {}
  3566. },
  3567. "nextToken": {
  3568. "location": "querystring",
  3569. "locationName": "nextToken"
  3570. },
  3571. "filter": {
  3572. "type": "structure",
  3573. "members": {
  3574. "status": {},
  3575. "storeName": {}
  3576. }
  3577. }
  3578. }
  3579. },
  3580. "output": {
  3581. "type": "structure",
  3582. "members": {
  3583. "variantImportJobs": {
  3584. "type": "list",
  3585. "member": {
  3586. "type": "structure",
  3587. "required": [
  3588. "id",
  3589. "destinationName",
  3590. "roleArn",
  3591. "status",
  3592. "creationTime",
  3593. "updateTime"
  3594. ],
  3595. "members": {
  3596. "id": {},
  3597. "destinationName": {},
  3598. "roleArn": {},
  3599. "status": {},
  3600. "creationTime": {
  3601. "shape": "S1i"
  3602. },
  3603. "updateTime": {
  3604. "shape": "S41"
  3605. },
  3606. "completionTime": {
  3607. "shape": "S42"
  3608. },
  3609. "runLeftNormalization": {
  3610. "type": "boolean"
  3611. },
  3612. "annotationFields": {
  3613. "shape": "S4k"
  3614. }
  3615. }
  3616. }
  3617. },
  3618. "nextToken": {}
  3619. }
  3620. },
  3621. "endpoint": {
  3622. "hostPrefix": "analytics-"
  3623. }
  3624. },
  3625. "ListVariantStores": {
  3626. "http": {
  3627. "requestUri": "/variantStores",
  3628. "responseCode": 200
  3629. },
  3630. "input": {
  3631. "type": "structure",
  3632. "members": {
  3633. "maxResults": {
  3634. "location": "querystring",
  3635. "locationName": "maxResults",
  3636. "type": "integer"
  3637. },
  3638. "ids": {
  3639. "type": "list",
  3640. "member": {}
  3641. },
  3642. "nextToken": {
  3643. "location": "querystring",
  3644. "locationName": "nextToken"
  3645. },
  3646. "filter": {
  3647. "type": "structure",
  3648. "members": {
  3649. "status": {}
  3650. }
  3651. }
  3652. }
  3653. },
  3654. "output": {
  3655. "type": "structure",
  3656. "members": {
  3657. "variantStores": {
  3658. "type": "list",
  3659. "member": {
  3660. "type": "structure",
  3661. "required": [
  3662. "id",
  3663. "reference",
  3664. "status",
  3665. "storeArn",
  3666. "name",
  3667. "description",
  3668. "sseConfig",
  3669. "creationTime",
  3670. "updateTime",
  3671. "statusMessage",
  3672. "storeSizeBytes"
  3673. ],
  3674. "members": {
  3675. "id": {},
  3676. "reference": {
  3677. "shape": "Su"
  3678. },
  3679. "status": {},
  3680. "storeArn": {},
  3681. "name": {},
  3682. "description": {},
  3683. "sseConfig": {
  3684. "shape": "S12"
  3685. },
  3686. "creationTime": {
  3687. "shape": "S1i"
  3688. },
  3689. "updateTime": {
  3690. "shape": "S41"
  3691. },
  3692. "statusMessage": {},
  3693. "storeSizeBytes": {
  3694. "type": "long"
  3695. }
  3696. }
  3697. }
  3698. },
  3699. "nextToken": {}
  3700. }
  3701. },
  3702. "endpoint": {
  3703. "hostPrefix": "analytics-"
  3704. }
  3705. },
  3706. "ListWorkflows": {
  3707. "http": {
  3708. "method": "GET",
  3709. "requestUri": "/workflow",
  3710. "responseCode": 200
  3711. },
  3712. "input": {
  3713. "type": "structure",
  3714. "members": {
  3715. "type": {
  3716. "location": "querystring",
  3717. "locationName": "type"
  3718. },
  3719. "name": {
  3720. "location": "querystring",
  3721. "locationName": "name"
  3722. },
  3723. "startingToken": {
  3724. "location": "querystring",
  3725. "locationName": "startingToken"
  3726. },
  3727. "maxResults": {
  3728. "location": "querystring",
  3729. "locationName": "maxResults",
  3730. "type": "integer"
  3731. }
  3732. }
  3733. },
  3734. "output": {
  3735. "type": "structure",
  3736. "members": {
  3737. "items": {
  3738. "type": "list",
  3739. "member": {
  3740. "type": "structure",
  3741. "members": {
  3742. "arn": {},
  3743. "id": {},
  3744. "name": {},
  3745. "status": {},
  3746. "type": {},
  3747. "digest": {},
  3748. "creationTime": {
  3749. "shape": "S8i"
  3750. },
  3751. "metadata": {
  3752. "shape": "S8k"
  3753. }
  3754. }
  3755. }
  3756. },
  3757. "nextToken": {}
  3758. }
  3759. },
  3760. "endpoint": {
  3761. "hostPrefix": "workflows-"
  3762. }
  3763. },
  3764. "StartAnnotationImportJob": {
  3765. "http": {
  3766. "requestUri": "/import/annotation",
  3767. "responseCode": 200
  3768. },
  3769. "input": {
  3770. "type": "structure",
  3771. "required": [
  3772. "destinationName",
  3773. "roleArn",
  3774. "items"
  3775. ],
  3776. "members": {
  3777. "destinationName": {},
  3778. "roleArn": {},
  3779. "items": {
  3780. "type": "list",
  3781. "member": {
  3782. "type": "structure",
  3783. "required": [
  3784. "source"
  3785. ],
  3786. "members": {
  3787. "source": {}
  3788. }
  3789. }
  3790. },
  3791. "versionName": {},
  3792. "formatOptions": {
  3793. "shape": "S47"
  3794. },
  3795. "runLeftNormalization": {
  3796. "type": "boolean"
  3797. },
  3798. "annotationFields": {
  3799. "shape": "S4k"
  3800. }
  3801. }
  3802. },
  3803. "output": {
  3804. "type": "structure",
  3805. "required": [
  3806. "jobId"
  3807. ],
  3808. "members": {
  3809. "jobId": {}
  3810. }
  3811. },
  3812. "endpoint": {
  3813. "hostPrefix": "analytics-"
  3814. }
  3815. },
  3816. "StartReadSetActivationJob": {
  3817. "http": {
  3818. "requestUri": "/sequencestore/{sequenceStoreId}/activationjob",
  3819. "responseCode": 200
  3820. },
  3821. "input": {
  3822. "type": "structure",
  3823. "required": [
  3824. "sequenceStoreId",
  3825. "sources"
  3826. ],
  3827. "members": {
  3828. "sequenceStoreId": {
  3829. "location": "uri",
  3830. "locationName": "sequenceStoreId"
  3831. },
  3832. "clientToken": {},
  3833. "sources": {
  3834. "type": "list",
  3835. "member": {
  3836. "type": "structure",
  3837. "required": [
  3838. "readSetId"
  3839. ],
  3840. "members": {
  3841. "readSetId": {}
  3842. }
  3843. }
  3844. }
  3845. }
  3846. },
  3847. "output": {
  3848. "type": "structure",
  3849. "required": [
  3850. "id",
  3851. "sequenceStoreId",
  3852. "status",
  3853. "creationTime"
  3854. ],
  3855. "members": {
  3856. "id": {},
  3857. "sequenceStoreId": {},
  3858. "status": {},
  3859. "creationTime": {
  3860. "shape": "S1y"
  3861. }
  3862. }
  3863. },
  3864. "endpoint": {
  3865. "hostPrefix": "control-storage-"
  3866. }
  3867. },
  3868. "StartReadSetExportJob": {
  3869. "http": {
  3870. "requestUri": "/sequencestore/{sequenceStoreId}/exportjob",
  3871. "responseCode": 200
  3872. },
  3873. "input": {
  3874. "type": "structure",
  3875. "required": [
  3876. "sequenceStoreId",
  3877. "destination",
  3878. "roleArn",
  3879. "sources"
  3880. ],
  3881. "members": {
  3882. "sequenceStoreId": {
  3883. "location": "uri",
  3884. "locationName": "sequenceStoreId"
  3885. },
  3886. "destination": {},
  3887. "roleArn": {},
  3888. "clientToken": {},
  3889. "sources": {
  3890. "type": "list",
  3891. "member": {
  3892. "type": "structure",
  3893. "required": [
  3894. "readSetId"
  3895. ],
  3896. "members": {
  3897. "readSetId": {}
  3898. }
  3899. }
  3900. }
  3901. }
  3902. },
  3903. "output": {
  3904. "type": "structure",
  3905. "required": [
  3906. "id",
  3907. "sequenceStoreId",
  3908. "destination",
  3909. "status",
  3910. "creationTime"
  3911. ],
  3912. "members": {
  3913. "id": {},
  3914. "sequenceStoreId": {},
  3915. "destination": {},
  3916. "status": {},
  3917. "creationTime": {
  3918. "shape": "S1y"
  3919. }
  3920. }
  3921. },
  3922. "endpoint": {
  3923. "hostPrefix": "control-storage-"
  3924. }
  3925. },
  3926. "StartReadSetImportJob": {
  3927. "http": {
  3928. "requestUri": "/sequencestore/{sequenceStoreId}/importjob",
  3929. "responseCode": 200
  3930. },
  3931. "input": {
  3932. "type": "structure",
  3933. "required": [
  3934. "sequenceStoreId",
  3935. "roleArn",
  3936. "sources"
  3937. ],
  3938. "members": {
  3939. "sequenceStoreId": {
  3940. "location": "uri",
  3941. "locationName": "sequenceStoreId"
  3942. },
  3943. "roleArn": {},
  3944. "clientToken": {},
  3945. "sources": {
  3946. "type": "list",
  3947. "member": {
  3948. "type": "structure",
  3949. "required": [
  3950. "sourceFiles",
  3951. "sourceFileType",
  3952. "subjectId",
  3953. "sampleId"
  3954. ],
  3955. "members": {
  3956. "sourceFiles": {
  3957. "shape": "S5l"
  3958. },
  3959. "sourceFileType": {},
  3960. "subjectId": {},
  3961. "sampleId": {},
  3962. "generatedFrom": {},
  3963. "referenceArn": {},
  3964. "name": {},
  3965. "description": {},
  3966. "tags": {
  3967. "shape": "Sy"
  3968. }
  3969. }
  3970. }
  3971. }
  3972. }
  3973. },
  3974. "output": {
  3975. "type": "structure",
  3976. "required": [
  3977. "id",
  3978. "sequenceStoreId",
  3979. "roleArn",
  3980. "status",
  3981. "creationTime"
  3982. ],
  3983. "members": {
  3984. "id": {},
  3985. "sequenceStoreId": {},
  3986. "roleArn": {},
  3987. "status": {},
  3988. "creationTime": {
  3989. "shape": "S1y"
  3990. }
  3991. }
  3992. },
  3993. "endpoint": {
  3994. "hostPrefix": "control-storage-"
  3995. }
  3996. },
  3997. "StartReferenceImportJob": {
  3998. "http": {
  3999. "requestUri": "/referencestore/{referenceStoreId}/importjob",
  4000. "responseCode": 200
  4001. },
  4002. "input": {
  4003. "type": "structure",
  4004. "required": [
  4005. "referenceStoreId",
  4006. "roleArn",
  4007. "sources"
  4008. ],
  4009. "members": {
  4010. "referenceStoreId": {
  4011. "location": "uri",
  4012. "locationName": "referenceStoreId"
  4013. },
  4014. "roleArn": {},
  4015. "clientToken": {},
  4016. "sources": {
  4017. "type": "list",
  4018. "member": {
  4019. "type": "structure",
  4020. "required": [
  4021. "sourceFile",
  4022. "name"
  4023. ],
  4024. "members": {
  4025. "sourceFile": {},
  4026. "name": {},
  4027. "description": {},
  4028. "tags": {
  4029. "shape": "Sy"
  4030. }
  4031. }
  4032. }
  4033. }
  4034. }
  4035. },
  4036. "output": {
  4037. "type": "structure",
  4038. "required": [
  4039. "id",
  4040. "referenceStoreId",
  4041. "roleArn",
  4042. "status",
  4043. "creationTime"
  4044. ],
  4045. "members": {
  4046. "id": {},
  4047. "referenceStoreId": {},
  4048. "roleArn": {},
  4049. "status": {},
  4050. "creationTime": {
  4051. "shape": "S1y"
  4052. }
  4053. }
  4054. },
  4055. "endpoint": {
  4056. "hostPrefix": "control-storage-"
  4057. }
  4058. },
  4059. "StartRun": {
  4060. "http": {
  4061. "requestUri": "/run",
  4062. "responseCode": 201
  4063. },
  4064. "input": {
  4065. "type": "structure",
  4066. "required": [
  4067. "roleArn",
  4068. "requestId"
  4069. ],
  4070. "members": {
  4071. "workflowId": {},
  4072. "workflowType": {},
  4073. "runId": {},
  4074. "roleArn": {},
  4075. "name": {},
  4076. "runGroupId": {},
  4077. "priority": {
  4078. "type": "integer"
  4079. },
  4080. "parameters": {
  4081. "shape": "S6y"
  4082. },
  4083. "storageCapacity": {
  4084. "type": "integer"
  4085. },
  4086. "outputUri": {},
  4087. "logLevel": {},
  4088. "tags": {
  4089. "shape": "Sy"
  4090. },
  4091. "requestId": {
  4092. "idempotencyToken": true
  4093. },
  4094. "retentionMode": {},
  4095. "storageType": {},
  4096. "workflowOwnerId": {}
  4097. }
  4098. },
  4099. "output": {
  4100. "type": "structure",
  4101. "members": {
  4102. "arn": {},
  4103. "id": {},
  4104. "status": {},
  4105. "tags": {
  4106. "shape": "Sy"
  4107. },
  4108. "uuid": {},
  4109. "runOutputUri": {}
  4110. }
  4111. },
  4112. "endpoint": {
  4113. "hostPrefix": "workflows-"
  4114. }
  4115. },
  4116. "StartVariantImportJob": {
  4117. "http": {
  4118. "requestUri": "/import/variant",
  4119. "responseCode": 200
  4120. },
  4121. "input": {
  4122. "type": "structure",
  4123. "required": [
  4124. "destinationName",
  4125. "roleArn",
  4126. "items"
  4127. ],
  4128. "members": {
  4129. "destinationName": {},
  4130. "roleArn": {},
  4131. "items": {
  4132. "type": "list",
  4133. "member": {
  4134. "type": "structure",
  4135. "required": [
  4136. "source"
  4137. ],
  4138. "members": {
  4139. "source": {}
  4140. }
  4141. }
  4142. },
  4143. "runLeftNormalization": {
  4144. "type": "boolean"
  4145. },
  4146. "annotationFields": {
  4147. "shape": "S4k"
  4148. }
  4149. }
  4150. },
  4151. "output": {
  4152. "type": "structure",
  4153. "required": [
  4154. "jobId"
  4155. ],
  4156. "members": {
  4157. "jobId": {}
  4158. }
  4159. },
  4160. "endpoint": {
  4161. "hostPrefix": "analytics-"
  4162. }
  4163. },
  4164. "TagResource": {
  4165. "http": {
  4166. "requestUri": "/tags/{resourceArn}",
  4167. "responseCode": 204
  4168. },
  4169. "input": {
  4170. "type": "structure",
  4171. "required": [
  4172. "resourceArn",
  4173. "tags"
  4174. ],
  4175. "members": {
  4176. "resourceArn": {
  4177. "location": "uri",
  4178. "locationName": "resourceArn"
  4179. },
  4180. "tags": {
  4181. "type": "map",
  4182. "key": {},
  4183. "value": {}
  4184. }
  4185. }
  4186. },
  4187. "output": {
  4188. "type": "structure",
  4189. "members": {}
  4190. },
  4191. "endpoint": {
  4192. "hostPrefix": "tags-"
  4193. }
  4194. },
  4195. "UntagResource": {
  4196. "http": {
  4197. "method": "DELETE",
  4198. "requestUri": "/tags/{resourceArn}",
  4199. "responseCode": 204
  4200. },
  4201. "input": {
  4202. "type": "structure",
  4203. "required": [
  4204. "resourceArn",
  4205. "tagKeys"
  4206. ],
  4207. "members": {
  4208. "resourceArn": {
  4209. "location": "uri",
  4210. "locationName": "resourceArn"
  4211. },
  4212. "tagKeys": {
  4213. "location": "querystring",
  4214. "locationName": "tagKeys",
  4215. "type": "list",
  4216. "member": {}
  4217. }
  4218. }
  4219. },
  4220. "output": {
  4221. "type": "structure",
  4222. "members": {}
  4223. },
  4224. "endpoint": {
  4225. "hostPrefix": "tags-"
  4226. },
  4227. "idempotent": true
  4228. },
  4229. "UpdateAnnotationStore": {
  4230. "http": {
  4231. "requestUri": "/annotationStore/{name}",
  4232. "responseCode": 200
  4233. },
  4234. "input": {
  4235. "type": "structure",
  4236. "required": [
  4237. "name"
  4238. ],
  4239. "members": {
  4240. "name": {
  4241. "location": "uri",
  4242. "locationName": "name"
  4243. },
  4244. "description": {}
  4245. }
  4246. },
  4247. "output": {
  4248. "type": "structure",
  4249. "required": [
  4250. "id",
  4251. "reference",
  4252. "status",
  4253. "name",
  4254. "description",
  4255. "creationTime",
  4256. "updateTime"
  4257. ],
  4258. "members": {
  4259. "id": {},
  4260. "reference": {
  4261. "shape": "Su"
  4262. },
  4263. "status": {},
  4264. "name": {},
  4265. "description": {},
  4266. "creationTime": {
  4267. "shape": "S1i"
  4268. },
  4269. "updateTime": {
  4270. "shape": "S41"
  4271. },
  4272. "storeOptions": {
  4273. "shape": "S16"
  4274. },
  4275. "storeFormat": {}
  4276. }
  4277. },
  4278. "endpoint": {
  4279. "hostPrefix": "analytics-"
  4280. }
  4281. },
  4282. "UpdateAnnotationStoreVersion": {
  4283. "http": {
  4284. "requestUri": "/annotationStore/{name}/version/{versionName}",
  4285. "responseCode": 200
  4286. },
  4287. "input": {
  4288. "type": "structure",
  4289. "required": [
  4290. "name",
  4291. "versionName"
  4292. ],
  4293. "members": {
  4294. "name": {
  4295. "location": "uri",
  4296. "locationName": "name"
  4297. },
  4298. "versionName": {
  4299. "location": "uri",
  4300. "locationName": "versionName"
  4301. },
  4302. "description": {}
  4303. }
  4304. },
  4305. "output": {
  4306. "type": "structure",
  4307. "required": [
  4308. "storeId",
  4309. "id",
  4310. "status",
  4311. "name",
  4312. "versionName",
  4313. "description",
  4314. "creationTime",
  4315. "updateTime"
  4316. ],
  4317. "members": {
  4318. "storeId": {},
  4319. "id": {},
  4320. "status": {},
  4321. "name": {},
  4322. "versionName": {},
  4323. "description": {},
  4324. "creationTime": {
  4325. "shape": "S1i"
  4326. },
  4327. "updateTime": {
  4328. "shape": "S41"
  4329. }
  4330. }
  4331. },
  4332. "endpoint": {
  4333. "hostPrefix": "analytics-"
  4334. }
  4335. },
  4336. "UpdateRunGroup": {
  4337. "http": {
  4338. "requestUri": "/runGroup/{id}",
  4339. "responseCode": 202
  4340. },
  4341. "input": {
  4342. "type": "structure",
  4343. "required": [
  4344. "id"
  4345. ],
  4346. "members": {
  4347. "id": {
  4348. "location": "uri",
  4349. "locationName": "id"
  4350. },
  4351. "name": {},
  4352. "maxCpus": {
  4353. "type": "integer"
  4354. },
  4355. "maxRuns": {
  4356. "type": "integer"
  4357. },
  4358. "maxDuration": {
  4359. "type": "integer"
  4360. },
  4361. "maxGpus": {
  4362. "type": "integer"
  4363. }
  4364. }
  4365. },
  4366. "endpoint": {
  4367. "hostPrefix": "workflows-"
  4368. }
  4369. },
  4370. "UpdateVariantStore": {
  4371. "http": {
  4372. "requestUri": "/variantStore/{name}",
  4373. "responseCode": 200
  4374. },
  4375. "input": {
  4376. "type": "structure",
  4377. "required": [
  4378. "name"
  4379. ],
  4380. "members": {
  4381. "name": {
  4382. "location": "uri",
  4383. "locationName": "name"
  4384. },
  4385. "description": {}
  4386. }
  4387. },
  4388. "output": {
  4389. "type": "structure",
  4390. "required": [
  4391. "id",
  4392. "reference",
  4393. "status",
  4394. "name",
  4395. "description",
  4396. "creationTime",
  4397. "updateTime"
  4398. ],
  4399. "members": {
  4400. "id": {},
  4401. "reference": {
  4402. "shape": "Su"
  4403. },
  4404. "status": {},
  4405. "name": {},
  4406. "description": {},
  4407. "creationTime": {
  4408. "shape": "S1i"
  4409. },
  4410. "updateTime": {
  4411. "shape": "S41"
  4412. }
  4413. }
  4414. },
  4415. "endpoint": {
  4416. "hostPrefix": "analytics-"
  4417. }
  4418. },
  4419. "UpdateWorkflow": {
  4420. "http": {
  4421. "requestUri": "/workflow/{id}",
  4422. "responseCode": 202
  4423. },
  4424. "input": {
  4425. "type": "structure",
  4426. "required": [
  4427. "id"
  4428. ],
  4429. "members": {
  4430. "id": {
  4431. "location": "uri",
  4432. "locationName": "id"
  4433. },
  4434. "name": {},
  4435. "description": {}
  4436. }
  4437. },
  4438. "endpoint": {
  4439. "hostPrefix": "workflows-"
  4440. }
  4441. },
  4442. "UploadReadSetPart": {
  4443. "http": {
  4444. "method": "PUT",
  4445. "requestUri": "/sequencestore/{sequenceStoreId}/upload/{uploadId}/part",
  4446. "responseCode": 200
  4447. },
  4448. "input": {
  4449. "type": "structure",
  4450. "required": [
  4451. "sequenceStoreId",
  4452. "uploadId",
  4453. "partSource",
  4454. "partNumber",
  4455. "payload"
  4456. ],
  4457. "members": {
  4458. "sequenceStoreId": {
  4459. "location": "uri",
  4460. "locationName": "sequenceStoreId"
  4461. },
  4462. "uploadId": {
  4463. "location": "uri",
  4464. "locationName": "uploadId"
  4465. },
  4466. "partSource": {
  4467. "location": "querystring",
  4468. "locationName": "partSource"
  4469. },
  4470. "partNumber": {
  4471. "location": "querystring",
  4472. "locationName": "partNumber",
  4473. "type": "integer"
  4474. },
  4475. "payload": {
  4476. "type": "blob",
  4477. "requiresLength": true,
  4478. "streaming": true
  4479. }
  4480. },
  4481. "payload": "payload"
  4482. },
  4483. "output": {
  4484. "type": "structure",
  4485. "required": [
  4486. "checksum"
  4487. ],
  4488. "members": {
  4489. "checksum": {}
  4490. }
  4491. },
  4492. "authtype": "v4-unsigned-body",
  4493. "endpoint": {
  4494. "hostPrefix": "storage-"
  4495. }
  4496. }
  4497. },
  4498. "shapes": {
  4499. "Su": {
  4500. "type": "structure",
  4501. "members": {
  4502. "referenceArn": {}
  4503. },
  4504. "union": true
  4505. },
  4506. "Sy": {
  4507. "type": "map",
  4508. "key": {},
  4509. "value": {}
  4510. },
  4511. "S12": {
  4512. "type": "structure",
  4513. "required": [
  4514. "type"
  4515. ],
  4516. "members": {
  4517. "type": {},
  4518. "keyArn": {}
  4519. }
  4520. },
  4521. "S16": {
  4522. "type": "structure",
  4523. "members": {
  4524. "tsvStoreOptions": {
  4525. "type": "structure",
  4526. "members": {
  4527. "annotationType": {},
  4528. "formatToHeader": {
  4529. "shape": "S19"
  4530. },
  4531. "schema": {
  4532. "type": "list",
  4533. "member": {
  4534. "shape": "S1d"
  4535. }
  4536. }
  4537. }
  4538. }
  4539. },
  4540. "union": true
  4541. },
  4542. "S19": {
  4543. "type": "map",
  4544. "key": {},
  4545. "value": {}
  4546. },
  4547. "S1d": {
  4548. "type": "map",
  4549. "key": {},
  4550. "value": {}
  4551. },
  4552. "S1i": {
  4553. "type": "timestamp",
  4554. "timestampFormat": "iso8601"
  4555. },
  4556. "S1k": {
  4557. "type": "structure",
  4558. "members": {
  4559. "tsvVersionOptions": {
  4560. "type": "structure",
  4561. "members": {
  4562. "annotationType": {},
  4563. "formatToHeader": {
  4564. "shape": "S19"
  4565. },
  4566. "schema": {
  4567. "type": "list",
  4568. "member": {
  4569. "shape": "S1d"
  4570. }
  4571. }
  4572. }
  4573. }
  4574. },
  4575. "union": true
  4576. },
  4577. "S1y": {
  4578. "type": "timestamp",
  4579. "timestampFormat": "iso8601"
  4580. },
  4581. "S2y": {
  4582. "type": "map",
  4583. "key": {},
  4584. "value": {
  4585. "type": "structure",
  4586. "members": {
  4587. "description": {},
  4588. "optional": {
  4589. "type": "boolean"
  4590. }
  4591. }
  4592. }
  4593. },
  4594. "S41": {
  4595. "type": "timestamp",
  4596. "timestampFormat": "iso8601"
  4597. },
  4598. "S42": {
  4599. "type": "timestamp",
  4600. "timestampFormat": "iso8601"
  4601. },
  4602. "S47": {
  4603. "type": "structure",
  4604. "members": {
  4605. "tsvOptions": {
  4606. "type": "structure",
  4607. "members": {
  4608. "readOptions": {
  4609. "type": "structure",
  4610. "members": {
  4611. "sep": {},
  4612. "encoding": {},
  4613. "quote": {},
  4614. "quoteAll": {
  4615. "type": "boolean"
  4616. },
  4617. "escape": {},
  4618. "escapeQuotes": {
  4619. "type": "boolean"
  4620. },
  4621. "comment": {},
  4622. "header": {
  4623. "type": "boolean"
  4624. },
  4625. "lineSep": {}
  4626. }
  4627. }
  4628. }
  4629. },
  4630. "vcfOptions": {
  4631. "type": "structure",
  4632. "members": {
  4633. "ignoreQualField": {
  4634. "type": "boolean"
  4635. },
  4636. "ignoreFilterField": {
  4637. "type": "boolean"
  4638. }
  4639. }
  4640. }
  4641. },
  4642. "union": true
  4643. },
  4644. "S4k": {
  4645. "type": "map",
  4646. "key": {},
  4647. "value": {}
  4648. },
  4649. "S5l": {
  4650. "type": "structure",
  4651. "required": [
  4652. "source1"
  4653. ],
  4654. "members": {
  4655. "source1": {},
  4656. "source2": {}
  4657. }
  4658. },
  4659. "S5r": {
  4660. "type": "structure",
  4661. "members": {
  4662. "totalReadCount": {
  4663. "type": "long"
  4664. },
  4665. "totalBaseCount": {
  4666. "type": "long"
  4667. },
  4668. "generatedFrom": {},
  4669. "alignment": {}
  4670. }
  4671. },
  4672. "S5t": {
  4673. "type": "structure",
  4674. "members": {
  4675. "totalParts": {
  4676. "type": "integer"
  4677. },
  4678. "partSize": {
  4679. "type": "long"
  4680. },
  4681. "contentLength": {
  4682. "type": "long"
  4683. },
  4684. "s3Access": {
  4685. "type": "structure",
  4686. "members": {
  4687. "s3Uri": {}
  4688. }
  4689. }
  4690. }
  4691. },
  4692. "S60": {
  4693. "type": "structure",
  4694. "members": {
  4695. "algorithm": {},
  4696. "source1": {},
  4697. "source2": {}
  4698. }
  4699. },
  4700. "S6y": {
  4701. "type": "structure",
  4702. "members": {},
  4703. "document": true
  4704. },
  4705. "S76": {
  4706. "type": "timestamp",
  4707. "timestampFormat": "iso8601"
  4708. },
  4709. "S7l": {
  4710. "type": "timestamp",
  4711. "timestampFormat": "iso8601"
  4712. },
  4713. "S7u": {
  4714. "type": "timestamp",
  4715. "timestampFormat": "iso8601"
  4716. },
  4717. "S86": {
  4718. "type": "structure",
  4719. "members": {
  4720. "shareId": {},
  4721. "resourceArn": {},
  4722. "resourceId": {},
  4723. "principalSubscriber": {},
  4724. "ownerId": {},
  4725. "status": {},
  4726. "statusMessage": {},
  4727. "shareName": {},
  4728. "creationTime": {
  4729. "shape": "S1i"
  4730. },
  4731. "updateTime": {
  4732. "shape": "S41"
  4733. }
  4734. }
  4735. },
  4736. "S8i": {
  4737. "type": "timestamp",
  4738. "timestampFormat": "iso8601"
  4739. },
  4740. "S8k": {
  4741. "type": "map",
  4742. "key": {},
  4743. "value": {}
  4744. }
  4745. }
  4746. }