| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059 |
- import {
- type Contract,
- type PreflightCheckRequest,
- type QuotaIncreaseRequest,
- } from "@porter-dev/api-contracts";
- import { type PullRequest } from "main/home/cluster-dashboard/preview-environments/types";
- import {
- type CreateStackBody,
- type SourceConfig,
- } from "main/home/cluster-dashboard/stacks/types";
- import { type PolicyDocType } from "./auth/types";
- import { baseApi } from "./baseApi";
- import {
- type AppEventWebhook,
- type BuildConfig,
- type CreateUpdatePorterAppOptions,
- type FullActionConfigType,
- } from "./types";
- /**
- * Generic api call format
- * @param {string} token - Bearer token.
- * @param {Object} params - Body params.
- * @param {Object} pathParams - Path params.
- * @param {(err: Object, res: Object) => void} callback - Callback function.
- */
- const checkAuth = baseApi("GET", "/api/users/current");
- const connectECRRegistry = baseApi<
- {
- name: string;
- aws_integration_id: string;
- },
- { id: number }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/registries`;
- });
- const connectGCRRegistry = baseApi<
- {
- name: string;
- gcp_integration_id: string;
- url: string;
- },
- { id: number }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/registries`;
- });
- const connectDORegistry = baseApi<
- {
- name: string;
- do_integration_id: string;
- url: string;
- },
- { project_id: number }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/registries`;
- });
- const getAWSIntegration = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/integrations/aws`
- );
- const getGCPIntegration = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/integrations/gcp`
- );
- const getAzureIntegration = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/integrations/azure`
- );
- const getGitlabIntegration = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/integrations/gitlab`
- );
- const legacyPreflightCheck = baseApi<PreflightCheckRequest, { id: number }>(
- "POST",
- (pathParams) => {
- return `/api/projects/${pathParams.id}/integrations/preflightcheck`;
- }
- );
- const requestQuotaIncrease = baseApi<QuotaIncreaseRequest, { id: number }>(
- "POST",
- (pathParams) => {
- return `/api/projects/${pathParams.id}/integrations/quotaincrease`;
- }
- );
- const createAWSIntegration = baseApi<
- {
- aws_region?: string;
- aws_cluster_id?: string;
- aws_access_key_id?: string;
- aws_secret_access_key?: string;
- aws_assume_role_arn?: string;
- aws_target_arn?: string;
- aws_external_id?: string;
- },
- { id: number }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/integrations/aws`;
- });
- const overwriteAWSIntegration = baseApi<
- {
- aws_integration_id: number;
- aws_access_key_id: string;
- aws_secret_access_key: string;
- cluster_id: number;
- },
- {
- project_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/integrations/aws/overwrite`;
- });
- const updateCluster = baseApi<
- {
- name?: string;
- aws_cluster_id?: string;
- agent_integration_enabled?: boolean;
- preview_envs_enabled?: boolean;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}`;
- });
- const renameProject = baseApi<
- {
- name: string | undefined;
- },
- {
- project_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/rename`;
- });
- const renameCluster = baseApi<
- {
- name: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/rename`;
- });
- const createAzureIntegration = baseApi<
- {
- azure_client_id: string;
- azure_subscription_id: string;
- azure_tenant_id: string;
- service_principal_key: string;
- },
- { id: number }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/integrations/azure`;
- });
- const createGitlabIntegration = baseApi<
- {
- instance_url: string;
- client_id: string;
- client_secret: string;
- },
- { id: number }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/integrations/gitlab`;
- });
- const createEmailVerification = baseApi<{}, {}>("POST", (pathParams) => {
- return `/api/email/verify/initiate`;
- });
- const getPorterApps = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/applications`;
- });
- const getPorterApp = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- name: string;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id, name } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/applications/${name}`;
- });
- const getPorterAppEvent = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- event_id: string;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id, event_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/events/${event_id}`;
- });
- const createPorterApp = baseApi<
- CreateUpdatePorterAppOptions,
- {
- project_id: number;
- cluster_id: number;
- stack_name: string;
- }
- >("POST", (pathParams) => {
- const { project_id, cluster_id, stack_name } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/applications/${stack_name}`;
- });
- const deletePorterApp = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- name: string;
- }
- >("DELETE", (pathParams) => {
- const { project_id, cluster_id, name } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/applications/${name}`;
- });
- const rollbackPorterApp = baseApi<
- {
- revision: number;
- },
- {
- project_id: number;
- cluster_id: number;
- stack_name: string;
- }
- >("POST", (pathParams) => {
- const { project_id, cluster_id, stack_name } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/applications/${stack_name}/rollback`;
- });
- const getLogsWithinTimeRange = baseApi<
- {
- chart_name?: string;
- limit: number;
- start_range?: string;
- end_range?: string;
- search_param?: string;
- namespace?: string;
- pod_selector?: string;
- direction?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/applications/logs`
- );
- const appLogs = baseApi<
- {
- service_name: string;
- deployment_target_id: string;
- limit: number;
- start_range: string;
- end_range: string;
- search_param?: string;
- direction?: string;
- app_revision_id?: string;
- job_run_name?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >(
- "GET",
- ({ project_id, cluster_id, porter_app_name }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/logs`
- );
- const appHelmValues = baseApi<
- {
- app_id: number;
- deployment_target_id: string;
- with_defaults: boolean;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >(
- "GET",
- ({ project_id, cluster_id, porter_app_name }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/helm-values`
- );
- const appJobs = baseApi<
- {
- deployment_target_id: string;
- job_name: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >(
- "GET",
- ({ project_id, cluster_id, porter_app_name }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/jobs`
- );
- const cancelJob = baseApi<
- {
- deployment_target_id: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- job_run_name: string;
- }
- >("POST", ({ project_id, cluster_id, porter_app_name, job_run_name }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/jobs/${job_run_name}/cancel`;
- });
- const appServiceStatus = baseApi<
- {
- deployment_target_id: string;
- service: string;
- },
- { project_id: number; cluster_id: number; app_name: string }
- >("GET", ({ project_id, cluster_id, app_name }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${app_name}/service_status`;
- });
- const appEvents = baseApi<
- {
- page?: number;
- deployment_target_id: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id, porter_app_name } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/events`;
- });
- const getFeedEvents = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- stack_name: string;
- page?: number;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id, stack_name, page } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/applications/${stack_name}/events?page=${
- page || 1
- }`;
- });
- const createEnvironment = baseApi<
- {
- name: string;
- mode: "auto" | "manual";
- disable_new_comments: boolean;
- git_repo_branches: string[];
- namespace_labels: Record<string, string>;
- git_deploy_branches: string[];
- },
- {
- project_id: number;
- cluster_id: number;
- git_installation_id: number;
- git_repo_owner: string;
- git_repo_name: string;
- }
- >("POST", (pathParams) => {
- const {
- project_id,
- cluster_id,
- git_installation_id,
- git_repo_owner,
- git_repo_name,
- } = pathParams;
- return `/api/projects/${project_id}/gitrepos/${git_installation_id}/${git_repo_owner}/${git_repo_name}/clusters/${cluster_id}/environment`;
- });
- const updateEnvironment = baseApi<
- {
- mode: "auto" | "manual";
- disable_new_comments: boolean;
- git_repo_branches: string[]; // Array with branch names
- namespace_labels: Record<string, string>;
- git_deploy_branches: string[];
- },
- {
- project_id: number;
- cluster_id: number;
- environment_id: number;
- }
- >(
- "PATCH",
- ({ project_id, cluster_id, environment_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/environments/${environment_id}/settings`
- );
- const deleteEnvironment = baseApi<
- {
- name: string;
- },
- {
- project_id: number;
- cluster_id: number;
- git_installation_id: number;
- git_repo_owner: string;
- git_repo_name: string;
- }
- >("DELETE", (pathParams) => {
- const {
- project_id,
- cluster_id,
- git_installation_id,
- git_repo_owner,
- git_repo_name,
- } = pathParams;
- return `/api/projects/${project_id}/gitrepos/${git_installation_id}/${git_repo_owner}/${git_repo_name}/clusters/${cluster_id}/environment`;
- });
- const createPreviewEnvironmentDeployment = baseApi<
- PullRequest,
- { project_id: number; cluster_id: number }
- >(
- "POST",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/deployments/pull_request`
- );
- const reenablePreviewEnvironmentDeployment = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- deployment_id: number;
- }
- >(
- "PATCH",
- ({ project_id, cluster_id, deployment_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/deployments/${deployment_id}/reenable`
- );
- const listEnvironments = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/environments`;
- });
- const getEnvironment = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- environment_id: number;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id, environment_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/environments/${environment_id}`;
- });
- const toggleNewCommentForEnvironment = baseApi<
- {
- disable: boolean;
- },
- {
- project_id: number;
- cluster_id: number;
- environment_id: number;
- }
- >("PATCH", (pathParams) => {
- const { project_id, cluster_id, environment_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/environments/${environment_id}/toggle_new_comment`;
- });
- const validatePorterYAML = baseApi<
- {
- branch?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- environment_id: number;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id, environment_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/environments/${environment_id}/validate_porter_yaml`;
- });
- const createGCPIntegration = baseApi<
- {
- gcp_key_data: string;
- gcp_project_id: string;
- },
- {
- project_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/integrations/gcp`;
- });
- const createInvite = baseApi<
- {
- email: string;
- kind: string;
- },
- {
- id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/invites`;
- });
- const inviteAdmin = baseApi<{}, { project_id: number }>(
- "POST",
- (pathParams) => {
- return `/api/projects/${pathParams.project_id}/invite_admin`;
- }
- );
- const createPasswordReset = baseApi<
- {
- email: string;
- },
- {}
- >("POST", (pathParams) => {
- return `/api/password/reset/initiate`;
- });
- const createPasswordResetVerify = baseApi<
- {
- email: string;
- token: string;
- token_id: number;
- },
- {}
- >("POST", (pathParams) => {
- return `/api/password/reset/verify`;
- });
- const createPasswordResetFinalize = baseApi<
- {
- email: string;
- token: string;
- token_id: number;
- new_password: string;
- },
- {}
- >("POST", (pathParams) => {
- return `/api/password/reset/finalize`;
- });
- const createProject = baseApi<{ name: string }, {}>("POST", (pathParams) => {
- return `/api/projects`;
- });
- const connectProjectToCluster = baseApi<
- {},
- {
- id: number;
- }
- >("POST", (pathParams) => {
- const { id } = pathParams;
- return `/api/projects/${id}/connect`;
- });
- const createSubdomain = baseApi<
- {},
- {
- id: number;
- release_name: string;
- namespace: string;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- const { cluster_id, id, namespace, release_name } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${release_name}/subdomain`;
- });
- const deleteCluster = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- }
- >("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}`;
- });
- const deleteInvite = baseApi<{}, { id: number; invId: number }>(
- "DELETE",
- (pathParams) => {
- return `/api/projects/${pathParams.id}/invites/${pathParams.invId}`;
- }
- );
- const deletePod = baseApi<
- {},
- { name: string; namespace: string; id: number; cluster_id: number }
- >("DELETE", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/pods/${name}`;
- });
- const getPodEvents = baseApi<
- {},
- { name: string; namespace: string; id: number; cluster_id: number }
- >("GET", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/pods/${name}/events`;
- });
- const deleteProject = baseApi<{}, { id: number }>("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.id}`;
- });
- const deleteRegistryIntegration = baseApi<
- {},
- {
- project_id: number;
- registry_id: number;
- }
- >("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/registries/${pathParams.registry_id}`;
- });
- const deleteSlackIntegration = baseApi<
- {},
- {
- project_id: number;
- slack_integration_id: number;
- }
- >("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/slack_integrations/${pathParams.slack_integration_id}`;
- });
- const legacyUpdateNotificationConfig = baseApi<
- {
- payload: any;
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- name: string;
- }
- >("POST", (pathParams) => {
- const { project_id, cluster_id, namespace, name } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/notifications`;
- });
- const getNotificationConfig = baseApi<
- {},
- {
- project_id: number;
- notification_config_id: number;
- }
- >("GET", (pathParams) => {
- const { project_id, notification_config_id } = pathParams;
- return `/api/projects/${project_id}/notifications/config/${notification_config_id}`;
- });
- const updateNotificationConfig = baseApi<
- {
- slack_integration_id: number;
- config: {
- mention: string;
- statuses: {
- successful: boolean;
- failed: boolean;
- progressing: boolean;
- };
- types: {
- deploy: boolean;
- predeploy: boolean;
- build: boolean;
- alert: boolean;
- };
- };
- },
- {
- project_id: number;
- notification_config_id: number;
- }
- >("POST", (pathParams) => {
- const { project_id, notification_config_id } = pathParams;
- return `/api/projects/${project_id}/notifications/config/${notification_config_id}`;
- });
- const getNotification = baseApi<
- {},
- {
- project_id: number;
- notification_id: string;
- }
- >("GET", (pathParams) => {
- const { project_id, notification_id } = pathParams;
- return `/api/projects/${project_id}/notifications/${notification_id}`;
- });
- const getPRDeploymentList = baseApi<
- {
- environment_id?: number;
- },
- {
- cluster_id: number;
- project_id: number;
- }
- >("GET", (pathParams) => {
- const { cluster_id, project_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/deployments`;
- });
- const getPRDeploymentByID = baseApi<
- {
- id: number;
- },
- {
- cluster_id: number;
- project_id: number;
- environment_id: number;
- }
- >("GET", (pathParams) => {
- const { cluster_id, project_id, environment_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/environments/${environment_id}/deployment`;
- });
- const deletePRDeployment = baseApi<
- {},
- {
- cluster_id: number;
- project_id: number;
- deployment_id: number;
- }
- >("DELETE", (pathParams) => {
- const { cluster_id, project_id, deployment_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/deployments/${deployment_id}`;
- });
- const legacyGetNotificationConfig = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- name: string;
- }
- >("GET", (pathParams) => {
- const { project_id, cluster_id, namespace, name } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/notifications`;
- });
- const getGHAWorkflowTemplate = baseApi<
- {
- release_name: string;
- github_action_config: FullActionConfigType;
- },
- {
- cluster_id: number;
- project_id: number;
- namespace: string;
- }
- >("POST", (pathParams) => {
- const { cluster_id, project_id, namespace } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/releases/gha_template`;
- });
- const deployTemplate = baseApi<
- {
- template_name: string;
- template_version: string;
- image_url?: string;
- values?: any;
- name: string;
- git_action_config?: FullActionConfigType;
- build_config?: any;
- synced_env_groups?: string[];
- },
- {
- id: number;
- cluster_id: number;
- namespace: string;
- repo_url?: string;
- }
- >("POST", (pathParams) => {
- const { cluster_id, id, namespace, repo_url } = pathParams;
- if (repo_url) {
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases?repo_url=${repo_url}`;
- }
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases`;
- });
- const deployAddon = baseApi<
- {
- template_name: string;
- template_version: string;
- values?: any;
- name: string;
- },
- {
- id: number;
- cluster_id: number;
- namespace: string;
- repo_url?: string;
- }
- >("POST", (pathParams) => {
- const { cluster_id, id, namespace, repo_url } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/addons?repo_url=${repo_url}`;
- });
- const detectBuildpack = baseApi<
- {},
- {
- project_id: number;
- git_repo_id: number;
- kind: string;
- owner: string;
- name: string;
- branch: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos/${
- pathParams.git_repo_id
- }/repos/${pathParams.kind}/${pathParams.owner}/${
- pathParams.name
- }/${encodeURIComponent(pathParams.branch)}/buildpack/detect`;
- });
- const detectGitlabBuildpack = baseApi<
- { dir: string },
- {
- project_id: number;
- integration_id: number;
- repo_owner: string;
- repo_name: string;
- branch: string;
- }
- >(
- "GET",
- ({ project_id, integration_id, repo_name, repo_owner, branch }) =>
- `/api/projects/${project_id}/integrations/gitlab/${integration_id}/repos/${repo_owner}/${repo_name}/${branch}/buildpack/detect`
- );
- const getBranchContents = baseApi<
- {
- dir: string;
- },
- {
- project_id: number;
- git_repo_id: number;
- kind: string;
- owner: string;
- name: string;
- branch: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos/${
- pathParams.git_repo_id
- }/repos/${pathParams.kind}/${pathParams.owner}/${
- pathParams.name
- }/${encodeURIComponent(pathParams.branch)}/contents`;
- });
- const getProcfileContents = baseApi<
- {
- path: string;
- },
- {
- project_id: number;
- git_repo_id: number;
- kind: string;
- owner: string;
- name: string;
- branch: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos/${
- pathParams.git_repo_id
- }/repos/${pathParams.kind}/${pathParams.owner}/${
- pathParams.name
- }/${encodeURIComponent(pathParams.branch)}/procfile`;
- });
- const getPorterYamlContents = baseApi<
- {
- path: string;
- },
- {
- project_id: number;
- git_repo_id: number;
- kind: string;
- owner: string;
- name: string;
- branch: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos/${
- pathParams.git_repo_id
- }/repos/${pathParams.kind}/${pathParams.owner}/${
- pathParams.name
- }/${encodeURIComponent(pathParams.branch)}/porteryaml`;
- });
- const parsePorterYaml = baseApi<
- {
- b64_yaml: string;
- app_name?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/apps/parse`;
- });
- const attachEnvGroup = baseApi<
- {
- env_group_name: string;
- app_instance_ids: string[];
- },
- { project_id: number; cluster_id: number }
- >(
- "POST",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/apps/attach-env-group`
- );
- const getDefaultDeploymentTarget = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/default-deployment-target`;
- });
- const deleteDeploymentTarget = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- deployment_target_id: string;
- }
- >("DELETE", ({ project_id, cluster_id, deployment_target_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/deployment-targets/${deployment_target_id}`;
- });
- const getBranchHead = baseApi<
- {},
- {
- project_id: number;
- git_repo_id: number;
- kind: string;
- owner: string;
- name: string;
- branch: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos/${
- pathParams.git_repo_id
- }/repos/${pathParams.kind}/${pathParams.owner}/${
- pathParams.name
- }/${encodeURIComponent(pathParams.branch)}/head`;
- });
- const createApp = baseApi<
- | {
- name: string;
- deployment_target_id: string;
- type: "github";
- git_repo_id: number;
- git_branch: string;
- git_repo_name: string;
- porter_yaml_path: string;
- }
- | {
- name: string;
- deployment_target_id: string;
- type: "docker-registry";
- image: {
- repository: string;
- tag: string;
- };
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/apps/create`;
- });
- const createAppTemplate = baseApi<
- {
- b64_app_proto: string;
- variables: Record<string, string>;
- secrets: Record<string, string>;
- base_deployment_target_id: string;
- addons?: Array<{
- base64_addon: string;
- variables: Record<string, string>;
- secrets: Record<string, string>;
- }>;
- git_overrides?: {
- git_branch?: string;
- git_repo_id: number;
- git_repo_name: string;
- };
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("POST", ({ project_id, cluster_id, porter_app_name }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/templates`;
- });
- const updateApp = baseApi<
- {
- deployment_target_id: string;
- b64_app_proto?: string;
- git_source?: {
- git_repo_id: number;
- git_branch: string;
- git_repo_name: string;
- };
- porter_yaml_path?: string;
- variables?: Record<string, string>;
- secrets?: Record<string, string>;
- is_env_override?: boolean;
- deletions?: {
- service_names: string[];
- predeploy: string[];
- env_variable_names?: string[];
- env_group_names: string[];
- service_deletions: Record<
- string,
- {
- domain_names: string[];
- ingress_annotation_keys: string[];
- }
- >;
- };
- with_predeploy?: boolean;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/apps/update`;
- });
- const appRun = baseApi<
- {
- deployment_target_id: string;
- service_name: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/apps/${pathParams.porter_app_name}/run`;
- });
- const updateBuildSettings = baseApi<
- {
- build_settings: {
- method: string;
- context: string;
- dockerfile: string;
- builder: string;
- buildpacks: string[];
- };
- deployment_target_id: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/apps/${pathParams.porter_app_name}/build`;
- });
- const revertApp = baseApi<
- {
- deployment_target_id: string;
- app_revision_id: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/apps/${pathParams.porter_app_name}/rollback`;
- });
- const getAttachedEnvGroups = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- app_name: string;
- revision_id: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/apps/${pathParams.app_name}/revisions/${pathParams.revision_id}/env`;
- });
- const getLatestRevision = baseApi<
- {
- deployment_target_id: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("GET", ({ project_id, cluster_id, porter_app_name }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/latest`;
- });
- const appNotifications = baseApi<
- {
- deployment_target_id: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("GET", ({ project_id, cluster_id, porter_app_name }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/notifications`;
- });
- const getRevision = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- revision_id: string;
- }
- >("GET", ({ project_id, cluster_id, porter_app_name, revision_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/revisions/${revision_id}`;
- });
- const porterYamlFromRevision = baseApi<
- {
- should_format_for_export: boolean;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- revision_id: string;
- }
- >("GET", ({ project_id, cluster_id, porter_app_name, revision_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/revisions/${revision_id}/yaml`;
- });
- const listAppRevisions = baseApi<
- {
- deployment_target_id: string;
- },
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("GET", ({ project_id, cluster_id, porter_app_name }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/revisions`;
- });
- const getLatestAppRevisions = baseApi<
- {
- deployment_target_id: string | undefined;
- ignore_preview_apps: boolean;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", ({ project_id, cluster_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/revisions`;
- });
- const getAppInstances = baseApi<
- {
- deployment_target_id: string | undefined;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", ({ project_id, cluster_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/instances`;
- });
- const listDeploymentTargets = baseApi<
- {
- preview: boolean;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", ({ project_id, cluster_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/deployment-targets`;
- });
- const createDeploymentTarget = baseApi<
- {
- name: string;
- preview: boolean;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("POST", ({ project_id, cluster_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/deployment-targets`;
- });
- const getDeploymentTarget = baseApi<
- {},
- {
- project_id: number;
- deployment_target_id: string;
- }
- >("GET", ({ project_id, deployment_target_id }) => {
- return `/api/projects/${project_id}/targets/${deployment_target_id}`;
- });
- const getAppTemplate = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- porter_app_name: string;
- }
- >("GET", ({ project_id, cluster_id, porter_app_name }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/apps/${porter_app_name}/templates`;
- });
- const listAddons = baseApi<
- {},
- {
- projectId: number;
- deploymentTargetId: string;
- }
- >("GET", ({ projectId, deploymentTargetId }) => {
- return `/api/projects/${projectId}/targets/${deploymentTargetId}/addons`;
- });
- const getAddon = baseApi<
- {},
- {
- projectId: number;
- deploymentTargetId: string;
- addonName: string;
- }
- >("GET", ({ projectId, deploymentTargetId, addonName }) => {
- return `/api/projects/${projectId}/targets/${deploymentTargetId}/addons/${addonName}`;
- });
- const getTailscaleServices = baseApi<
- {},
- {
- projectId: number;
- deploymentTargetId: string;
- }
- >("GET", ({ projectId, deploymentTargetId }) => {
- return `/api/projects/${projectId}/targets/${deploymentTargetId}/addons/tailscale-services`;
- });
- const updateAddon = baseApi<
- {
- b64_addon: string;
- },
- {
- projectId: number;
- deploymentTargetId: string;
- }
- >("POST", ({ projectId, deploymentTargetId }) => {
- return `/api/projects/${projectId}/targets/${deploymentTargetId}/addons/update`;
- });
- const deleteAddon = baseApi<
- {},
- {
- projectId: number;
- deploymentTargetId: string;
- addonName: string;
- }
- >("DELETE", ({ projectId, deploymentTargetId, addonName }) => {
- return `/api/projects/${projectId}/targets/${deploymentTargetId}/addons/${addonName}`;
- });
- const getGitlabProcfileContents = baseApi<
- {
- path: string;
- },
- {
- project_id: number;
- integration_id: number;
- owner: string;
- name: string;
- branch: string;
- }
- >(
- "GET",
- ({ project_id, integration_id, owner, name, branch }) =>
- `/api/projects/${project_id}/integrations/gitlab/${integration_id}/repos/${owner}/${name}/${encodeURIComponent(
- branch
- )}/procfile`
- );
- const getBranches = baseApi<
- {},
- {
- project_id: number;
- git_repo_id: number;
- kind: string;
- owner: string;
- name: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos/${pathParams.git_repo_id}/repos/${pathParams.kind}/${pathParams.owner}/${pathParams.name}/branches`;
- });
- const getChart = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- namespace: string;
- name: string;
- revision: number;
- }
- >("GET", (pathParams) => {
- const { id, cluster_id, namespace, name, revision } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/${revision}`;
- });
- const getCharts = baseApi<
- {
- limit: number;
- skip: number;
- byDate: boolean;
- statusFilter: string[];
- },
- {
- id: number;
- cluster_id: number;
- namespace: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/releases`;
- });
- const getChartComponents = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- namespace: string;
- name: string;
- revision: number;
- }
- >("GET", (pathParams) => {
- const { id, cluster_id, namespace, name, revision } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/${revision}/components`;
- });
- const getChartControllers = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- namespace: string;
- name: string;
- revision: number;
- }
- >("GET", (pathParams) => {
- const { id, cluster_id, namespace, name, revision } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/${revision}/controllers`;
- });
- const getClusterIntegrations = baseApi("GET", "/api/integrations/cluster");
- const getClusters = baseApi<{}, { id: number }>("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters`;
- });
- const getCluster = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}`;
- });
- const getClusterStatus = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/status`;
- });
- const getClusterNodes = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/nodes`;
- });
- const getClusterNode = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- nodeName: string;
- }
- >(
- "GET",
- (pathParams) =>
- `/api/projects/${pathParams.project_id}/clusters/${pathParams.cluster_id}/nodes/${pathParams.nodeName}`
- );
- const getGitRepoList = baseApi<
- {},
- {
- project_id: number;
- git_repo_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos/${pathParams.git_repo_id}/repos`;
- });
- const getGitRepoPermission = baseApi<
- {},
- {
- project_id: number;
- git_repo_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos/${pathParams.git_repo_id}/permissions`;
- });
- const getGitRepos = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/gitrepos`;
- });
- const getImageRepos = baseApi<
- {},
- {
- project_id: number;
- registry_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/registries/${pathParams.registry_id}/repositories`;
- });
- const getImageTags = baseApi<
- {},
- {
- project_id: number;
- registry_id: number;
- repo_name: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/registries/${pathParams.registry_id}/repositories/${pathParams.repo_name}`;
- });
- const images = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/images`;
- });
- const getInfra = baseApi<
- {
- version?: string;
- },
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infra`;
- });
- const listInfraTemplates = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/templates`;
- });
- const getInfraTemplate = baseApi<
- {},
- {
- project_id: number;
- name: string;
- version: string;
- }
- >("GET", (pathParams) => {
- const { project_id, name, version } = pathParams;
- return `/api/projects/${project_id}/infras/templates/${name}/${version}`;
- });
- const provisionCluster = baseApi<
- {
- project_id: number;
- cluster_id?: number;
- cloud_provider: string;
- cloud_provider_credentials_id: string;
- cluster_settings: {
- cluster_name: string;
- cluster_version: string;
- cidr_range: string;
- region: string;
- node_groups: [
- {
- instance_type: string;
- min_instances: number;
- max_instances: number;
- node_group_type: number;
- },
- {
- instance_type: string;
- min_instances: number;
- max_instances: number;
- node_group_type: number;
- },
- ];
- };
- },
- {
- project_id: number;
- }
- >("POST", ({ project_id }) => {
- return `/api/projects/${project_id}/provision/cluster`;
- });
- const createContract = baseApi<Contract, { project_id: number }>(
- "POST",
- ({ project_id }) => {
- return `/api/projects/${project_id}/contract`;
- }
- );
- const cloudContractPreflightCheck = baseApi<Contract, { project_id: number }>(
- "POST",
- ({ project_id }) => {
- return `/api/projects/${project_id}/contract/preflight`;
- }
- );
- const cloudProviderMachineTypes = baseApi<
- {
- cloud_provider: string;
- cloud_provider_credential_identifier: string;
- region: string;
- },
- { project_id: number }
- >("GET", ({ project_id }) => {
- return `/api/projects/${project_id}/cloud/machines`;
- });
- const getContracts = baseApi<
- { cluster_id?: number; latest?: boolean },
- { project_id: number }
- >("GET", ({ project_id }) => {
- return `/api/projects/${project_id}/contracts`;
- });
- const deleteContract = baseApi<{}, { project_id: number; revision_id: string }>(
- "DELETE",
- ({ project_id, revision_id }) => {
- return `/api/projects/${project_id}/contracts/${revision_id}`;
- }
- );
- const getClusterState = baseApi<{}, { project_id: number; cluster_id: number }>(
- "GET",
- ({ project_id, cluster_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/state`;
- }
- );
- const getComplianceChecks = baseApi<
- { vendor: "vanta" | "oneleet"; profile: "soc2" | "hipaa" },
- { projectId: number; clusterId: number }
- >("GET", ({ projectId, clusterId }) => {
- return `/api/projects/${projectId}/clusters/${clusterId}/compliance/checks`;
- });
- const provisionInfra = baseApi<
- {
- kind: string;
- values: any;
- aws_integration_id?: number;
- gcp_integration_id?: number;
- do_integration_id?: number;
- azure_integration_id?: number;
- cluster_id?: number;
- },
- {
- project_id: number;
- }
- >("POST", ({ project_id }) => {
- return `/api/projects/${project_id}/infras`;
- });
- const updateInfra = baseApi<
- { values?: any },
- {
- project_id: number;
- infra_id: number;
- }
- >("POST", (pathParams) => {
- const { project_id, infra_id } = pathParams;
- return `/api/projects/${project_id}/infras/${infra_id}/update`;
- });
- const retryCreateInfra = baseApi<
- {
- aws_integration_id?: number;
- gcp_integration_id?: number;
- do_integration_id?: number;
- values?: any;
- },
- {
- project_id: number;
- infra_id: number;
- }
- >("POST", (pathParams) => {
- const { project_id, infra_id } = pathParams;
- return `/api/projects/${project_id}/infras/${infra_id}/retry_create`;
- });
- const retryDeleteInfra = baseApi<
- { values?: any },
- {
- project_id: number;
- infra_id: number;
- }
- >("POST", (pathParams) => {
- const { project_id, infra_id } = pathParams;
- return `/api/projects/${project_id}/infras/${infra_id}/retry_delete`;
- });
- const deleteInfra = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- }
- >("DELETE", (pathParams) => {
- const { project_id, infra_id } = pathParams;
- return `/api/projects/${project_id}/infras/${infra_id}`;
- });
- const listOperations = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}/operations`;
- });
- const getOperation = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- operation_id: string;
- }
- >("GET", (pathParams) => {
- const { project_id, infra_id, operation_id } = pathParams;
- return `/api/projects/${project_id}/infras/${infra_id}/operations/${operation_id}`;
- });
- const getOperationLogs = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- operation_id: string;
- }
- >("GET", (pathParams) => {
- const { project_id, infra_id, operation_id } = pathParams;
- return `/api/projects/${project_id}/infras/${infra_id}/operations/${operation_id}/logs`;
- });
- const getInfraState = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}/state`;
- });
- const getInfraRawState = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}/raw_state`;
- });
- const getInfraByID = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}`;
- });
- const getInfraDesired = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}/desired`;
- });
- const getInfraCurrent = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}/current`;
- });
- const getIngress = baseApi<
- {},
- { namespace: string; cluster_id: number; name: string; id: number }
- >("GET", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/ingresses/${name}`;
- });
- const getInvites = baseApi<{}, { id: number }>("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/invites`;
- });
- const getJobs = baseApi<
- {},
- { namespace: string; cluster_id: number; release_name: string; id: number }
- >("GET", (pathParams) => {
- const { id, release_name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${release_name}/0/jobs`;
- });
- const getJobStatus = baseApi<
- {},
- { namespace: string; cluster_id: number; release_name: string; id: number }
- >("GET", (pathParams) => {
- const { id, release_name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${release_name}/0/jobs/status`;
- });
- const getJobPods = baseApi<
- {},
- { name: string; namespace: string; id: number; cluster_id: number }
- >("GET", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/jobs/${name}/pods`;
- });
- const getPodByName = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- name: string;
- }
- >(
- "GET",
- ({ project_id, cluster_id, namespace, name }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/pods/${name}`
- );
- const getMatchingPods = baseApi<
- {
- namespace: string;
- selectors: string[];
- },
- { id: number; cluster_id: number }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/pods`;
- });
- const getAllReleasePods = baseApi<
- {},
- {
- id: number;
- name: string;
- namespace: string;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/0/pods/all`;
- });
- const getMetrics = baseApi<
- {
- metric: string;
- shouldsum: boolean;
- pods?: string[];
- kind?: string; // the controller kind
- name?: string;
- percentile?: number;
- namespace: string;
- startrange: number;
- endrange: number;
- resolution: string;
- },
- {
- id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/metrics`;
- });
- const appMetrics = baseApi<
- {
- metric: string;
- shouldsum: boolean;
- pods?: string[];
- kind?: string; // the controller kind
- name?: string;
- percentile?: number;
- deployment_target_id: string;
- startrange: number;
- endrange: number;
- resolution: string;
- },
- {
- id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/apps/metrics`;
- });
- const getNamespaces = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces`;
- });
- const getNGINXIngresses = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/prometheus/ingresses`;
- });
- const getOAuthIds = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/integrations/oauth`;
- });
- const getProjectClusters = baseApi<{}, { id: number }>("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters`;
- });
- const getProjectRegistries = baseApi<{}, { id: number }>(
- "GET",
- (pathParams) => {
- return `/api/projects/${pathParams.id}/registries`;
- }
- );
- const getProjectRepos = baseApi<{}, { id: number }>("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/repos`;
- });
- const getProjects = baseApi("GET", "/api/projects");
- const getProject = baseApi<{}, { id: number }>("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}`;
- });
- const getPrometheusIsInstalled = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/prometheus/detect`;
- });
- const getRegistryIntegrations = baseApi("GET", "/api/integrations/registry");
- const getReleaseToken = baseApi<
- {},
- { name: string; id: number; namespace: string; cluster_id: number }
- >("GET", (pathParams) => {
- const { id, cluster_id, namespace, name } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/webhook`;
- });
- const getReleaseSteps = baseApi<
- {},
- { name: string; id: number; namespace: string; cluster_id: number }
- >("GET", (pathParams) => {
- const { id, cluster_id, namespace, name } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/steps`;
- });
- const destroyInfra = baseApi<
- {},
- {
- project_id: number;
- infra_id: number;
- }
- >("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}`;
- });
- const updateDatabaseStatus = baseApi<
- {
- status: string;
- },
- {
- project_id: number;
- infra_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}/database`;
- });
- const getRepoIntegrations = baseApi("GET", "/api/integrations/repo");
- const getRepos = baseApi<{}, { id: number }>("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/repos`;
- });
- const getSlackIntegrations = baseApi<{}, { id: number }>(
- "GET",
- (pathParams) => {
- return `/api/projects/${pathParams.id}/slack_integrations`;
- }
- );
- const getNeonIntegrations = baseApi<{}, { projectId: number }>(
- "GET",
- ({ projectId }) => {
- return `/api/projects/${projectId}/neon-integrations`;
- }
- );
- const getUpstashIntegrations = baseApi<{}, { projectId: number }>(
- "GET",
- ({ projectId }) => {
- return `/api/projects/${projectId}/upstash-integrations`;
- }
- );
- const getRevisions = baseApi<
- {},
- { id: number; cluster_id: number; namespace: string; name: string }
- >("GET", (pathParams) => {
- const { id, cluster_id, namespace, name } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/history`;
- });
- const getTemplateInfo = baseApi<
- {
- repo_url?: string;
- },
- { project_id: number; name: string; version: string }
- >("GET", (pathParams) => {
- return `/api/v1/projects/${pathParams.project_id}/templates/${pathParams.name}/versions/${pathParams.version}`;
- });
- const getTemplateUpgradeNotes = baseApi<
- {
- repo_url?: string;
- prev_version: string;
- },
- { project_id: number; name: string; version: string }
- >("GET", (pathParams) => {
- return `/api/v1/projects/${pathParams.project_id}/templates/${pathParams.name}/versions/${pathParams.version}/upgrade_notes`;
- });
- const getTemplates = baseApi<
- {
- repo_url?: string;
- },
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/v1/projects/${pathParams.project_id}/templates`;
- });
- const getHelmRepos = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/helmrepos`;
- });
- const getChartsFromHelmRepo = baseApi<
- {},
- {
- project_id: number;
- helm_repo_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/helmrepos/${pathParams.helm_repo_id}/charts`;
- });
- const getChartInfoFromHelmRepo = baseApi<
- {},
- { project_id: number; helm_repo_id: number; name: string; version: string }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/helmrepos/${pathParams.helm_repo_id}/charts/${pathParams.name}/${pathParams.version}`;
- });
- const getMetadata = baseApi<{}, {}>("GET", () => {
- return `/api/metadata`;
- });
- const postWelcome = baseApi<{
- email: string;
- isCompany: boolean;
- name: string;
- company: string;
- role: string;
- }>("POST", () => {
- return `/api/welcome`;
- });
- const linkGithubProject = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/oauth/projects/${pathParams.project_id}/github`;
- });
- const getGithubAccounts = baseApi<{}, {}>("GET", () => {
- return `/api/integrations/github-app/accounts`;
- });
- const logInUser = baseApi<{
- email: string;
- password: string;
- }>("POST", "/api/login");
- const logOutUser = baseApi("POST", "/api/logout");
- const registerUser = baseApi<{
- email: string;
- password: string;
- first_name: string;
- last_name: string;
- company_name: string;
- referral_method?: string;
- referred_by_code?: string;
- }>("POST", "/api/users");
- const rollbackChart = baseApi<
- {
- revision: number;
- },
- {
- id: number;
- name: string;
- namespace: string;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/0/rollback`;
- });
- const uninstallTemplate = baseApi<
- {},
- {
- id: number;
- name: string;
- cluster_id: number;
- namespace: string;
- }
- >("DELETE", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/0`;
- });
- const updateUserInfo = baseApi<
- {
- first_name: string;
- last_name: string;
- company_name: string;
- },
- {}
- >("POST", (pathParams) => {
- return `/api/users/update/info`;
- });
- const updateUser = baseApi<
- {
- rawKubeConfig?: string;
- allowedContexts?: string[];
- },
- { id: number }
- >("PUT", (pathParams) => {
- return `/api/users/${pathParams.id}`;
- });
- const upgradeChartValues = baseApi<
- {
- values: string;
- version?: string;
- latest_revision?: number;
- },
- {
- id: number;
- name: string;
- namespace: string;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/0/upgrade`;
- });
- const getAllEnvGroups = baseApi<
- {
- type?: string;
- },
- {
- id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/environment-groups`;
- });
- const updateAppsLinkedToEnvironmentGroup = baseApi<
- {
- name: string;
- },
- {
- id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/environment-groups/update-linked-apps`;
- });
- const updateEnvironmentGroupV2 = baseApi<
- {
- deployment_target_id: string;
- variables: Record<string, string>;
- secrets: Record<string, string>;
- b64_app_proto: string;
- remove_missing?: boolean;
- },
- {
- id: number;
- cluster_id: number;
- app_name: string;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/apps/${pathParams.app_name}/update-environment `;
- });
- const listEnvGroups = baseApi<
- {},
- {
- id: number;
- namespace: string;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/envgroup/list`;
- });
- const listConfigMaps = baseApi<
- {},
- {
- id: number;
- namespace: string;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/configmap/list`;
- });
- const getEnvGroup = baseApi<
- {},
- {
- id: number;
- namespace: string;
- cluster_id: number;
- name: string;
- version?: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${
- pathParams.cluster_id
- }/namespaces/${pathParams.namespace}/envgroup?name=${pathParams.name}${
- pathParams.version ? "&version=" + pathParams.version : ""
- }`;
- });
- const getConfigMap = baseApi<
- {
- name: string;
- },
- {
- id: number;
- namespace: string;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/configmap`;
- });
- const createEnvGroup = baseApi<
- {
- name: string;
- variables: Record<string, string>;
- secret_variables?: Record<string, string>;
- },
- {
- id: number;
- cluster_id: number;
- namespace: string;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/envgroup/create`;
- });
- const createEnvironmentGroups = baseApi<
- {
- name: string;
- variables?: Record<string, string>;
- secret_variables?: Record<string, string>;
- files?: Array<{
- name: string;
- contents: string;
- }>;
- type?: string;
- auth_token?: string;
- is_env_override?: boolean;
- infisical_env?: {
- slug: string;
- path: string;
- };
- },
- {
- id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/environment-groups`;
- });
- const enableExternalEnvGroupProviders = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/environment-groups/enable-external-providers`;
- });
- const areExternalEnvGroupProvidersEnabled = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/environment-groups/are-external-providers-enabled`;
- });
- const cloneEnvGroup = baseApi<
- {
- name: string;
- namespace: string;
- clone_name: string;
- version: number;
- },
- {
- id: number;
- namespace: string;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/envgroup/clone`;
- });
- const updateEnvGroup = baseApi<
- {
- name: string;
- variables: Record<string, string>;
- secret_variables?: Record<string, string>;
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- }
- >(
- "POST",
- ({ cluster_id, project_id, namespace }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/envgroup/create`
- );
- const updateStacksEnvGroup = baseApi<
- {
- name: string;
- variables: Record<string, string>;
- secret_variables?: Record<string, string>;
- apps?: string[];
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- }
- >(
- "POST",
- ({ cluster_id, project_id, namespace }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/envgroup/create`
- );
- const createConfigMap = baseApi<
- {
- name: string;
- variables: Record<string, string>;
- secret_variables?: Record<string, string>;
- },
- {
- id: number;
- cluster_id: number;
- namespace: string;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/configmap/create`;
- });
- const updateConfigMap = baseApi<
- {
- name: string;
- variables: Record<string, string>;
- secret_variables?: Record<string, string>;
- },
- {
- id: number;
- cluster_id: number;
- namespace: string;
- }
- >("POST", (pathParams) => {
- const { id, cluster_id } = pathParams;
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/configmap/update`;
- });
- const renameConfigMap = baseApi<
- {
- name: string;
- new_name: string;
- },
- {
- id: number;
- cluster_id: number;
- namespace: string;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/configmap/rename`;
- });
- const deleteEnvGroup = baseApi<
- {
- name: string;
- },
- {
- id: number;
- namespace: string;
- cluster_id: number;
- }
- >("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/envgroup`;
- });
- const deleteNewEnvGroup = baseApi<
- {
- name: string;
- type?: string;
- },
- {
- id: number;
- cluster_id: number;
- }
- >("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/environment-groups`;
- });
- const deleteConfigMap = baseApi<
- {
- name: string;
- },
- {
- id: number;
- namespace: string;
- cluster_id: number;
- }
- >("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.id}/clusters/${pathParams.cluster_id}/namespaces/${pathParams.namespace}/configmap/delete`;
- });
- const createNamespace = baseApi<
- {
- name: string;
- },
- { id: number; cluster_id: number }
- >("POST", (pathParams) => {
- const { id, cluster_id } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/create`;
- });
- const deleteNamespace = baseApi<
- {},
- {
- id: number;
- cluster_id: number;
- namespace: string;
- }
- >("DELETE", (pathParams) => {
- const { id, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}`;
- });
- const deleteJob = baseApi<
- {},
- { name: string; namespace: string; id: number; cluster_id: number }
- >("DELETE", (pathParams) => {
- const { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/jobs/${name}`;
- });
- const stopJob = baseApi<
- {},
- { name: string; namespace: string; id: number; cluster_id: number }
- >("POST", (pathParams) => {
- const { id, name, namespace, cluster_id } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/jobs/${name}/stop`;
- });
- const listAPITokens = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/api_token`
- );
- const getAPIToken = baseApi<{}, { project_id: number; token: string }>(
- "GET",
- ({ project_id, token }) => `/api/projects/${project_id}/api_token/${token}`
- );
- const revokeAPIToken = baseApi<{}, { project_id: number; token: string }>(
- "POST",
- ({ project_id, token }) =>
- `/api/projects/${project_id}/api_token/${token}/revoke`
- );
- const createAPIToken = baseApi<
- {
- name: string;
- policy_uid: string;
- expires_at?: string;
- },
- { project_id: number }
- >("POST", ({ project_id }) => `/api/projects/${project_id}/api_token`);
- const createPolicy = baseApi<
- {
- name: string;
- policy: PolicyDocType[];
- },
- { project_id: number }
- >("POST", ({ project_id }) => `/api/projects/${project_id}/policy`);
- const getAvailableRoles = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/roles`
- );
- const updateInvite = baseApi<
- { kind: string },
- { project_id: number; invite_id: number }
- >(
- "POST",
- ({ project_id, invite_id }) =>
- `/api/projects/${project_id}/invites/${invite_id}`
- );
- const getCollaborators = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/collaborators`
- );
- const updateCollaborator = baseApi<
- {
- kind: string;
- user_id: number;
- },
- { project_id: number }
- >("POST", ({ project_id }) => `/api/projects/${project_id}/roles`);
- const removeCollaborator = baseApi<{ user_id: number }, { project_id: number }>(
- "DELETE",
- ({ project_id }) => `/api/projects/${project_id}/roles`
- );
- const getPolicyDocument = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/policy`
- );
- const createWebhookToken = baseApi<
- {},
- {
- project_id: number;
- chart_name: string;
- namespace: string;
- cluster_id: number;
- }
- >(
- "POST",
- ({ project_id, chart_name, namespace, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${chart_name}/0/webhook`
- );
- const getUsage = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/usage`
- );
- const getOnboardingState = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/onboarding`
- );
- const saveOnboardingState = baseApi<{}, { project_id: number }>(
- "POST",
- ({ project_id }) => `/api/projects/${project_id}/onboarding`
- );
- const getOnboardingInfra = baseApi<
- {},
- { project_id: number; registry_infra_id: number }
- >(
- "GET",
- ({ project_id, registry_infra_id }) =>
- `/api/projects/${project_id}/infras/${registry_infra_id}`
- );
- const getOnboardingRegistry = baseApi<
- {},
- { project_id: number; registry_connection_id: number }
- >(
- "GET",
- ({ project_id, registry_connection_id }) =>
- `/api/projects/${project_id}/registries/${registry_connection_id}`
- );
- const detectPorterAgent = baseApi<
- {},
- { project_id: number; cluster_id: number }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/agent/detect`
- );
- const installPorterAgent = baseApi<
- {},
- { project_id: number; cluster_id: number }
- >(
- "POST",
- ({ cluster_id, project_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/agent/install`
- );
- const getKubeEvents = baseApi<
- {
- skip: number;
- resource_type: string;
- owner_type?: string;
- owner_name?: string;
- namespace?: string;
- },
- { project_id: number; cluster_id: number }
- >("GET", ({ project_id, cluster_id }) => {
- return `/api/projects/${project_id}/clusters/${cluster_id}/kube_events`;
- });
- const getKubeEvent = baseApi<
- {},
- { project_id: number; cluster_id: number; kube_event_id: number }
- >(
- "GET",
- ({ project_id, cluster_id, kube_event_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/kube_events/${kube_event_id}`
- );
- const getLogBuckets = baseApi<
- {},
- { project_id: number; cluster_id: number; kube_event_id: number }
- >(
- "GET",
- ({ project_id, cluster_id, kube_event_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/kube_events/${kube_event_id}/log_buckets`
- );
- const getLogBucketLogs = baseApi<
- { timestamp: number },
- { project_id: number; cluster_id: number; kube_event_id: number }
- >(
- "GET",
- ({ project_id, cluster_id, kube_event_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/kube_events/${kube_event_id}/logs`
- );
- const getCanCreateProject = baseApi<{}, {}>(
- "GET",
- () => "/api/can_create_project"
- );
- const addApplicationToEnvGroup = baseApi<
- {
- name: string; // Env Group name
- app_name: string;
- },
- { project_id: number; cluster_id: number; namespace: string }
- >(
- "POST",
- ({ cluster_id, namespace, project_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/envgroup/add_application`
- );
- const removeApplicationFromEnvGroup = baseApi<
- {
- name: string; // Env Group name
- app_name: string;
- },
- { project_id: number; cluster_id: number; namespace: string }
- >(
- "POST",
- ({ cluster_id, namespace, project_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/envgroup/remove_application`
- );
- const provisionDatabase = baseApi<
- {
- username: string;
- password: string;
- machine_type: string;
- db_storage_encrypted: boolean;
- db_name: string;
- db_max_allocated_storage: string;
- db_family: string;
- db_engine_version: string;
- db_allocated_storage: string;
- },
- { project_id: number; cluster_id: number; namespace: string }
- >(
- "POST",
- ({ project_id, cluster_id, namespace }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/provision/rds`
- );
- const getAwsCloudProviders = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", ({ project_id }) => {
- return `/api/projects/${project_id}/cloud-providers/aws`;
- });
- const getDatabases = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/databases`
- );
- const getDatastores = baseApi<
- {},
- {
- project_id: number;
- cloud_provider_name: string;
- cloud_provider_id: string;
- datastore_name?: string;
- datastore_type?: string;
- include_env_group?: boolean;
- include_metadata?: boolean;
- }
- >(
- "GET",
- ({
- project_id,
- cloud_provider_name,
- cloud_provider_id,
- datastore_name,
- datastore_type,
- include_env_group,
- include_metadata,
- }) => {
- const queryParams = new URLSearchParams();
- if (datastore_name) {
- queryParams.set("name", datastore_name);
- }
- if (datastore_type) {
- queryParams.set("type", datastore_type);
- }
- if (include_env_group) {
- queryParams.set("include_env_group", "true");
- }
- if (include_metadata) {
- queryParams.set("include_metadata", "true");
- }
- return `/api/projects/${project_id}/cloud-providers/${cloud_provider_name}/${cloud_provider_id}/datastores?${queryParams.toString()}`;
- }
- );
- const listDatastores = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", ({ project_id }) => {
- return `/api/projects/${project_id}/datastores`;
- });
- const getDatastore = baseApi<
- {},
- {
- project_id: number;
- datastore_name: string;
- }
- >("GET", ({ project_id, datastore_name }) => {
- return `/api/projects/${project_id}/datastores/${datastore_name}`;
- });
- const getDatastoreCredential = baseApi<
- {},
- {
- project_id: number;
- datastore_name: string;
- }
- >("GET", ({ project_id, datastore_name }) => {
- return `/api/projects/${project_id}/datastores/${datastore_name}/credential`;
- });
- const updateDatastore = baseApi<
- {
- name: string;
- type:
- | "RDS"
- | "ELASTICACHE"
- | "MANAGED-POSTGRES"
- | "MANAGED-REDIS"
- | "NEON"
- | "UPSTASH";
- engine: "POSTGRES" | "AURORA-POSTGRES" | "REDIS";
- values: any;
- },
- { project_id: number; cluster_id: number }
- >(
- "POST",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/datastores`
- );
- const deleteDatastore = baseApi<
- {},
- {
- project_id: number;
- datastore_name: string;
- }
- >(
- "DELETE",
- ({ project_id, datastore_name }) =>
- `/api/projects/${project_id}/datastores/${datastore_name}`
- );
- const getPreviousLogsForContainer = baseApi<
- {
- container_name: string;
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- pod_name: string;
- }
- >(
- "GET",
- ({ cluster_id, namespace, pod_name: name, project_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/pod/${name}/previous_logs`
- );
- const upgradePorterAgent = baseApi<
- {},
- { project_id: number; cluster_id: number }
- >(
- "POST",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/agent/upgrade`
- );
- const updateBuildConfig = baseApi<
- BuildConfig,
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- release_name: string;
- }
- >(
- "POST",
- ({ project_id, cluster_id, namespace, release_name }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${release_name}/buildconfig`
- );
- const updateGitActionConfig = baseApi<
- {
- git_action_config: {
- git_branch: string;
- };
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- release_name: string;
- revision?: 0; // Always update latest
- }
- >(
- "PATCH",
- ({ project_id, cluster_id, namespace, release_name, revision = 0 }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${release_name}/${revision}/git_action_config`
- );
- const reRunGHWorkflow = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- git_installation_id: number;
- owner: string;
- name: string;
- branch?: string;
- filename?: string;
- release_name?: string;
- }
- >(
- "POST",
- ({
- project_id,
- git_installation_id,
- owner,
- name,
- cluster_id,
- filename,
- release_name,
- branch,
- }) => {
- const queryParams = new URLSearchParams();
- if (branch) {
- queryParams.set("branch", branch);
- }
- if (release_name) {
- queryParams.set("release_name", release_name);
- }
- if (filename) {
- queryParams.set("filename", filename);
- }
- return `/api/projects/${project_id}/gitrepos/${git_installation_id}/${owner}/${name}/clusters/${cluster_id}/rerun_workflow?${queryParams.toString()}`;
- }
- );
- const getGHWorkflowLogs = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- git_installation_id: number;
- owner: string;
- name: string;
- filename?: string;
- release_name?: string;
- }
- >(
- "GET",
- ({
- project_id,
- git_installation_id,
- owner,
- name,
- cluster_id,
- filename,
- release_name,
- }) => {
- const queryParams = new URLSearchParams();
- if (release_name) {
- queryParams.set("release_name", release_name);
- }
- if (filename) {
- queryParams.set("filename", filename);
- }
- return `/api/projects/${project_id}/gitrepos/${git_installation_id}/${owner}/${name}/clusters/${cluster_id}/get_logs_workflow?${queryParams.toString()}`;
- }
- );
- const getGHWorkflowLogById = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- git_installation_id: number;
- owner: string;
- name: string;
- filename?: string;
- run_id: string;
- release_name?: string;
- }
- >(
- "GET",
- ({
- project_id,
- git_installation_id,
- owner,
- name,
- cluster_id,
- filename,
- run_id,
- release_name,
- }) => {
- const queryParams = new URLSearchParams();
- if (release_name) {
- queryParams.set("release_name", release_name);
- }
- if (filename) {
- queryParams.set("filename", filename);
- }
- if (run_id) {
- queryParams.set("run_id", run_id);
- }
- return `/api/projects/${project_id}/gitrepos/${git_installation_id}/${owner}/${name}/clusters/${cluster_id}/workflow_run_id?${queryParams.toString()}`;
- }
- );
- const triggerPreviewEnvWorkflow = baseApi<
- {},
- { project_id: number; cluster_id: number; deployment_id: number }
- >(
- "POST",
- ({ project_id, cluster_id, deployment_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/deployments/${deployment_id}/trigger_workflow`
- );
- const getTagsByProjectId = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/tags`
- );
- const createTag = baseApi<
- { name: string; color: string },
- { project_id: number }
- >("POST", ({ project_id }) => `/api/projects/${project_id}/tags`);
- const updateReleaseTags = baseApi<
- {
- tags: string[];
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- release_name: string;
- }
- >(
- "PATCH",
- ({ project_id, cluster_id, namespace, release_name }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${release_name}/0/update_tags`
- );
- const updateCanonicalName = baseApi<
- {
- canonical_name: string;
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- release_name: string;
- }
- >(
- "PATCH",
- ({ project_id, cluster_id, namespace, release_name }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${release_name}/0/update_canonical_name`
- );
- const getGitProviders = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/integrations/git`
- );
- const getGitlabRepos = baseApi<
- {},
- { project_id: number; integration_id: number }
- >(
- "GET",
- ({ project_id, integration_id }) =>
- `/api/projects/${project_id}/integrations/gitlab/${integration_id}/repos`
- );
- const getGitlabBranches = baseApi<
- {},
- {
- project_id: number;
- integration_id: number;
- repo_owner: string;
- repo_name: string;
- }
- >(
- "GET",
- ({ project_id, integration_id, repo_owner, repo_name }) =>
- `/api/projects/${project_id}/integrations/gitlab/${integration_id}/repos/${repo_owner}/${repo_name}/branches`
- );
- const getGitlabFolderContent = baseApi<
- {
- dir: string;
- },
- {
- project_id: number;
- integration_id: number;
- repo_owner: string;
- repo_name: string;
- branch: string;
- }
- >(
- "GET",
- ({ project_id, integration_id, repo_owner, repo_name, branch }) =>
- `/api/projects/${project_id}/integrations/gitlab/${integration_id}/repos/${repo_owner}/${repo_name}/${branch}/contents`
- );
- const getLogPodValues = baseApi<
- {
- namespace?: string;
- revision?: string;
- match_prefix?: string;
- start_range?: string;
- end_range?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/logs/pod_values`
- );
- const getLogs = baseApi<
- {
- limit?: number;
- start_range?: string;
- end_range?: string;
- revision?: string;
- pod_selector: string;
- namespace?: string;
- search_param?: string;
- direction?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/logs`
- );
- const listPorterEvents = baseApi<
- {
- release_name?: number;
- release_namespace?: string;
- type?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/events`
- );
- const listPorterJobEvents = baseApi<
- {
- release_name?: number;
- release_namespace?: string;
- type?: string;
- job_name: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/events/job`
- );
- const listIncidents = baseApi<
- {
- release_name?: number;
- release_namespace?: string;
- status?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/incidents`
- );
- const getIncident = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- incident_id: string;
- }
- >(
- "GET",
- ({ project_id, cluster_id, incident_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/incidents/${incident_id}`
- );
- const getIncidentEvents = baseApi<
- {
- incident_id?: string;
- pod_prefix?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/incidents/events`
- );
- // TRACKING
- const updateOnboardingStep = baseApi<
- {
- step: string;
- provider?: string;
- cloud_provider_credential_identifier?: string;
- account_id?: string;
- cloudformation_url?: string;
- error_message?: string;
- login_url?: string;
- external_id?: string;
- region?: string;
- cluster_name?: string;
- },
- {
- project_id: number;
- }
- >("POST", ({ project_id }) => {
- return `/api/projects/${project_id}/onboarding_step`;
- });
- const updateStackStep = baseApi<
- {
- step: string;
- stack_name?: string;
- error_message?: string;
- delete_workflow_file?: boolean;
- error_stack_trace?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- const { project_id, cluster_id } = pathParams;
- return `/api/projects/${project_id}/clusters/${cluster_id}/applications/analytics`;
- });
- // STACKS
- const createStack = baseApi<
- CreateStackBody,
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- }
- >(
- "POST",
- ({ project_id, cluster_id, namespace }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks`
- );
- const updateStack = baseApi<
- {
- name: string;
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- }
- >(
- "PATCH",
- ({ project_id, cluster_id, namespace, stack_id }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}`
- );
- const listStacks = baseApi<
- {},
- { project_id: number; cluster_id: number; namespace: string }
- >(
- "GET",
- ({ project_id, cluster_id, namespace }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks`
- );
- const getStack = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- }
- >(
- "GET",
- ({ project_id, cluster_id, namespace, stack_id }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}`
- );
- const getStackRevision = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- revision_id: number;
- }
- >(
- "GET",
- ({ project_id, cluster_id, namespace, stack_id, revision_id }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}/${revision_id}`
- );
- const rollbackStack = baseApi<
- {
- target_revision: number;
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- }
- >(
- "POST",
- ({ project_id, cluster_id, namespace, stack_id }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}/rollback`
- );
- const deleteStack = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- }
- >(
- "DELETE",
- ({ project_id, cluster_id, namespace, stack_id }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}`
- );
- const updateStackSourceConfig = baseApi<
- {
- source_configs: SourceConfig[];
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- }
- >(
- "PUT",
- ({ project_id, cluster_id, namespace, stack_id }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}/source`
- );
- const addStackAppResource = baseApi<
- CreateStackBody["app_resources"][0],
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- }
- >(
- "PATCH",
- ({ project_id, cluster_id, namespace, stack_id }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}/add_application`
- );
- const removeStackAppResource = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- app_resource_name: string;
- }
- >(
- "DELETE",
- ({ project_id, cluster_id, namespace, stack_id, app_resource_name }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}/remove_application/${app_resource_name}`
- );
- const addStackEnvGroup = baseApi<
- CreateStackBody["env_groups"][0],
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- }
- >(
- "PATCH",
- ({ project_id, cluster_id, namespace, stack_id }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}/add_env_group`
- );
- const removeStackEnvGroup = baseApi<
- {},
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- stack_id: string;
- env_group_name: string;
- }
- >(
- "DELETE",
- ({ project_id, cluster_id, namespace, stack_id, env_group_name }) =>
- `/api/v1/projects/${project_id}/clusters/${cluster_id}/namespaces/${namespace}/stacks/${stack_id}/remove_env_group/${env_group_name}`
- );
- // Billing
- const getPublishableKey = baseApi<
- {},
- {
- project_id?: number;
- }
- >(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/billing/publishable_key`
- );
- const getCustomerUsage = baseApi<
- {
- starting_on?: string;
- ending_before?: string;
- current_period?: boolean;
- },
- {
- project_id?: number;
- }
- >("POST", ({ project_id }) => `/api/projects/${project_id}/billing/usage`);
- const getCustomerCosts = baseApi<
- {},
- {
- project_id?: number;
- starting_on: string;
- ending_before: string;
- limit: number;
- }
- >(
- "GET",
- ({ project_id, starting_on, ending_before, limit }) =>
- `/api/projects/${project_id}/billing/costs?starting_on=${starting_on}&ending_before=${ending_before}&limit=${limit}`
- );
- const getCustomerInvoices = baseApi<
- {},
- {
- project_id?: number;
- }
- >("GET", ({ project_id }) => `/api/projects/${project_id}/billing/invoices`);
- const getCustomerPlan = baseApi<
- {},
- {
- project_id?: number;
- }
- >("GET", ({ project_id }) => `/api/projects/${project_id}/billing/plan`);
- const getPorterCredits = baseApi<
- {},
- {
- project_id?: number;
- }
- >("GET", ({ project_id }) => `/api/projects/${project_id}/billing/credits`);
- const getHasBilling = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/billing`
- );
- const listPaymentMethod = baseApi<
- {},
- {
- project_id?: number;
- }
- >(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/billing/payment_method`
- );
- const addPaymentMethod = baseApi<
- {},
- {
- project_id?: number;
- }
- >(
- "POST",
- ({ project_id }) => `/api/projects/${project_id}/billing/payment_method`
- );
- const setDefaultPaymentMethod = baseApi<
- {},
- {
- project_id?: number;
- payment_method_id: string;
- }
- >(
- "PUT",
- ({ project_id, payment_method_id }) =>
- `/api/projects/${project_id}/billing/payment_method/${payment_method_id}/default`
- );
- const deletePaymentMethod = baseApi<
- {},
- {
- project_id?: number;
- payment_method_id: string;
- }
- >(
- "DELETE",
- ({ project_id, payment_method_id }) =>
- `/api/projects/${project_id}/billing/payment_method/${payment_method_id}`
- );
- const getReferralDetails = baseApi<
- {},
- {
- project_id?: number;
- }
- >("GET", ({ project_id }) => `/api/projects/${project_id}/referrals/details`);
- const getGithubStatus = baseApi<{}, {}>("GET", ({}) => `/api/status/github`);
- const createSecretAndOpenGitHubPullRequest = baseApi<
- {
- github_app_installation_id: number;
- github_repo_owner: string;
- github_repo_name: string;
- branch: string;
- open_pr?: boolean;
- porter_yaml_path?: string;
- delete_workflow_filename?: string;
- previews_workflow_filename?: string;
- deployment_target_id?: string;
- },
- {
- project_id: number;
- cluster_id: number;
- stack_name: string;
- }
- >(
- "POST",
- ({ project_id, cluster_id, stack_name }) =>
- `/api/projects/${project_id}/clusters/${cluster_id}/applications/${stack_name}/pr`
- );
- const getCloudProviderPermissionsStatus = baseApi<
- {
- cloud_provider: string;
- cloud_provider_credential_identifier: string;
- },
- { project_id: number }
- >(
- "GET",
- ({ project_id }) =>
- `/api/projects/${project_id}/integrations/cloud-permissions`
- );
- const getCloudSqlSecret = baseApi<
- {},
- { project_id: number; deployment_target_id: string; app_name: string }
- >(
- "GET",
- ({ project_id, deployment_target_id, app_name }) =>
- `/api/projects/${project_id}/targets/${deployment_target_id}/apps/${app_name}/cloudsql`
- );
- const createCloudSqlSecret = baseApi<
- {
- b64_service_account_json: string;
- },
- { project_id: number; deployment_target_id: string; app_name: string }
- >(
- "POST",
- ({ project_id, deployment_target_id, app_name }) =>
- `/api/projects/${project_id}/targets/${deployment_target_id}/apps/${app_name}/cloudsql`
- );
- const appEventWebhooks = baseApi<
- {},
- {
- projectId: number;
- deploymentTargetId: string;
- appName: string;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.projectId}/targets/${pathParams.deploymentTargetId}/apps/${pathParams.appName}/app-event-webhooks`;
- });
- const updateAppEventWebhooks = baseApi<
- {
- app_event_webhooks: AppEventWebhook[];
- },
- {
- projectId: number;
- deploymentTargetId: string;
- appName: string;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.projectId}/targets/${pathParams.deploymentTargetId}/apps/${pathParams.appName}/update-app-event-webhooks`;
- });
- const systemStatusHistory = baseApi<
- {},
- {
- projectId: number;
- clusterId: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.projectId}/clusters/${pathParams.clusterId}/system-status-history`;
- });
- // Bundle export to allow default api import (api.<method> is more readable)
- export default {
- checkAuth,
- connectECRRegistry,
- connectGCRRegistry,
- connectDORegistry,
- getAWSIntegration,
- getGCPIntegration,
- getAzureIntegration,
- getGitlabIntegration,
- createAWSIntegration,
- overwriteAWSIntegration,
- updateCluster,
- renameCluster,
- renameProject,
- createAzureIntegration,
- createGitlabIntegration,
- createEmailVerification,
- createEnvironment,
- createEnvironmentGroups,
- enableExternalEnvGroupProviders,
- areExternalEnvGroupProvidersEnabled,
- updateEnvironment,
- deleteEnvironment,
- createPreviewEnvironmentDeployment,
- reenablePreviewEnvironmentDeployment,
- listEnvironments,
- getEnvironment,
- toggleNewCommentForEnvironment,
- validatePorterYAML,
- createGCPIntegration,
- createInvite,
- createNamespace,
- createPasswordReset,
- createPasswordResetVerify,
- createPasswordResetFinalize,
- createProject,
- connectProjectToCluster,
- // ------------ PORTER APP -----------
- getPorterApps,
- getPorterApp,
- getPorterAppEvent,
- createPorterApp,
- deletePorterApp,
- rollbackPorterApp,
- createSecretAndOpenGitHubPullRequest,
- getLogsWithinTimeRange,
- appLogs,
- appJobs,
- cancelJob,
- appEvents,
- appServiceStatus,
- getFeedEvents,
- updateStackStep,
- porterYamlFromRevision,
- // -----------------------------------
- createConfigMap,
- deleteCluster,
- deleteConfigMap,
- deleteInvite,
- deleteNamespace,
- deletePod,
- deleteProject,
- deleteRegistryIntegration,
- deleteSlackIntegration,
- legacyUpdateNotificationConfig,
- updateNotificationConfig,
- legacyGetNotificationConfig,
- getNotificationConfig,
- getNotification,
- createSubdomain,
- deployTemplate,
- deployAddon,
- destroyInfra,
- updateDatabaseStatus,
- detectBuildpack,
- detectGitlabBuildpack,
- getBranchContents,
- getBranches,
- getMetadata,
- postWelcome,
- getChart,
- getCharts,
- getChartComponents,
- getChartControllers,
- getClusterIntegrations,
- getClusters,
- getCluster,
- getClusterNodes,
- getClusterNode,
- getClusterStatus,
- getConfigMap,
- getPRDeploymentList,
- getPRDeploymentByID,
- getGHAWorkflowTemplate,
- getGitRepoList,
- getGitRepoPermission,
- getGitRepos,
- getImageRepos,
- getImageTags,
- images,
- listInfraTemplates,
- getInfraTemplate,
- getInfra,
- provisionCluster,
- provisionInfra,
- deleteInfra,
- updateInfra,
- listOperations,
- getOperation,
- getOperationLogs,
- retryCreateInfra,
- retryDeleteInfra,
- getInfraState,
- getInfraRawState,
- getInfraByID,
- getInfraDesired,
- getInfraCurrent,
- getIngress,
- getInvites,
- getJobs,
- getJobStatus,
- getJobPods,
- getPodByName,
- getMatchingPods,
- getAllReleasePods,
- getClusterState,
- getComplianceChecks,
- getMetrics,
- appMetrics,
- appHelmValues,
- getNamespaces,
- getNGINXIngresses,
- getOAuthIds,
- getPodEvents,
- getProcfileContents,
- getPorterYamlContents,
- parsePorterYaml,
- attachEnvGroup,
- getDefaultDeploymentTarget,
- deleteDeploymentTarget,
- getBranchHead,
- createApp,
- createAppTemplate,
- updateApp,
- appRun,
- updateBuildSettings,
- revertApp,
- getAttachedEnvGroups,
- getLatestRevision,
- appNotifications,
- getRevision,
- listAppRevisions,
- getLatestAppRevisions,
- getAppInstances,
- listDeploymentTargets,
- createDeploymentTarget,
- getDeploymentTarget,
- getAppTemplate,
- listAddons,
- getAddon,
- getTailscaleServices,
- updateAddon,
- deleteAddon,
- getGitlabProcfileContents,
- getProjectClusters,
- getProjectRegistries,
- getProjectRepos,
- getProjects,
- getProject,
- getPrometheusIsInstalled,
- getRegistryIntegrations,
- getReleaseToken,
- getReleaseSteps,
- getRepoIntegrations,
- getSlackIntegrations,
- getNeonIntegrations,
- getUpstashIntegrations,
- getRepos,
- getRevisions,
- getTemplateInfo,
- getTemplateUpgradeNotes,
- getTemplates,
- getHelmRepos,
- getChartsFromHelmRepo,
- getChartInfoFromHelmRepo,
- linkGithubProject,
- inviteAdmin,
- getGithubAccounts,
- listConfigMaps,
- logInUser,
- logOutUser,
- registerUser,
- rollbackChart,
- uninstallTemplate,
- updateUserInfo,
- updateUser,
- renameConfigMap,
- updateConfigMap,
- upgradeChartValues,
- deleteJob,
- stopJob,
- updateInvite,
- listAPITokens,
- getAPIToken,
- revokeAPIToken,
- createAPIToken,
- createPolicy,
- getAvailableRoles,
- getCollaborators,
- updateCollaborator,
- removeCollaborator,
- getPolicyDocument,
- createWebhookToken,
- getUsage,
- getHasBilling,
- getOnboardingState,
- saveOnboardingState,
- getOnboardingInfra,
- getOnboardingRegistry,
- detectPorterAgent,
- installPorterAgent,
- getKubeEvents,
- getKubeEvent,
- getLogBuckets,
- getLogBucketLogs,
- getCanCreateProject,
- createEnvGroup,
- cloneEnvGroup,
- updateEnvGroup,
- updateStacksEnvGroup,
- listEnvGroups,
- getAllEnvGroups,
- updateEnvironmentGroupV2,
- updateAppsLinkedToEnvironmentGroup,
- getEnvGroup,
- deleteEnvGroup,
- deleteNewEnvGroup,
- addApplicationToEnvGroup,
- removeApplicationFromEnvGroup,
- provisionDatabase,
- legacyPreflightCheck,
- requestQuotaIncrease,
- getAwsCloudProviders,
- getDatabases,
- getDatastores,
- listDatastores,
- getDatastore,
- getDatastoreCredential,
- updateDatastore,
- deleteDatastore,
- getPreviousLogsForContainer,
- upgradePorterAgent,
- deletePRDeployment,
- updateBuildConfig,
- updateGitActionConfig,
- reRunGHWorkflow,
- getGHWorkflowLogs,
- getGHWorkflowLogById,
- triggerPreviewEnvWorkflow,
- getTagsByProjectId,
- createTag,
- updateReleaseTags,
- updateCanonicalName,
- getGitProviders,
- getGitlabRepos,
- getGitlabBranches,
- getGitlabFolderContent,
- getLogPodValues,
- getLogs,
- listPorterEvents,
- listPorterJobEvents,
- listIncidents,
- getIncident,
- getIncidentEvents,
- createContract,
- getContracts,
- cloudContractPreflightCheck,
- deleteContract,
- // TRACKING
- updateOnboardingStep,
- // STACKS
- listStacks,
- getStack,
- getStackRevision,
- createStack,
- updateStack,
- rollbackStack,
- deleteStack,
- updateStackSourceConfig,
- addStackAppResource,
- removeStackAppResource,
- addStackEnvGroup,
- removeStackEnvGroup,
- // BILLING
- getPublishableKey,
- getPorterCredits,
- getCustomerPlan,
- getCustomerUsage,
- getCustomerCosts,
- getCustomerInvoices,
- listPaymentMethod,
- addPaymentMethod,
- setDefaultPaymentMethod,
- deletePaymentMethod,
- getReferralDetails,
- // STATUS
- getGithubStatus,
- getCloudProviderPermissionsStatus,
- getCloudSqlSecret,
- createCloudSqlSecret,
- cloudProviderMachineTypes,
- // Webhooks
- appEventWebhooks,
- updateAppEventWebhooks,
- // system status
- systemStatusHistory,
- };
|