| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215 |
- import { baseApi } from "./baseApi";
- import { FullActionConfigType, StorageType } 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 createAWSIntegration = baseApi<
- {
- aws_region: string;
- aws_cluster_id?: string;
- aws_access_key_id: string;
- aws_secret_access_key: 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 createDOCR = baseApi<
- {
- do_integration_id: number;
- docr_name: string;
- docr_subscription_tier: string;
- },
- {
- project_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/provision/docr`;
- });
- const createDOKS = baseApi<
- {
- do_integration_id: number;
- doks_name: string;
- do_region: string;
- },
- {
- project_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/provision/doks`;
- });
- const createEmailVerification = baseApi<{}, {}>("POST", (pathParams) => {
- return `/api/email/verify/initiate`;
- });
- const createGCPIntegration = baseApi<
- {
- gcp_region: string;
- gcp_key_data: string;
- gcp_project_id: string;
- },
- {
- project_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/integrations/gcp`;
- });
- const createGCR = baseApi<
- {
- gcp_integration_id: number;
- },
- {
- project_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/provision/gcr`;
- });
- const createGKE = baseApi<
- {
- gcp_integration_id: number;
- gke_name: string;
- },
- {
- project_id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/provision/gke`;
- });
- const createInvite = baseApi<
- {
- email: string;
- kind: string;
- },
- {
- id: number;
- }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/invites`;
- });
- 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 createSubdomain = baseApi<
- {},
- {
- id: number;
- release_name: string;
- namespace: string;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- let { 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) => {
- let { 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) => {
- let { 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 updateNotificationConfig = baseApi<
- {
- payload: any;
- },
- {
- project_id: number;
- cluster_id: number;
- namespace: string;
- name: string;
- }
- >("POST", (pathParams) => {
- let { 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;
- cluster_id: number;
- namespace: string;
- name: string;
- }
- >("GET", (pathParams) => {
- let { 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;
- github_action_config?: FullActionConfigType;
- },
- {
- id: number;
- cluster_id: number;
- namespace: string;
- repo_url?: string;
- }
- >("POST", (pathParams) => {
- let { 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) => {
- let { 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 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 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) => {
- let { 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) => {
- let { 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) => {
- let { 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 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 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 getInfra = baseApi<
- {},
- {
- project_id: number;
- }
- >("GET", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infra`;
- });
- const getIngress = baseApi<
- {},
- { namespace: string; cluster_id: number; name: string; id: number }
- >("GET", (pathParams) => {
- let { 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) => {
- let { 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) => {
- let { 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) => {
- let { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/jobs/${name}/pods`;
- });
- 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 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 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 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) => {
- let { 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) => {
- let { id, cluster_id, namespace, name } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/steps`;
- });
- const destroyInfra = baseApi<
- {
- name: string;
- },
- {
- project_id: number;
- infra_id: number;
- }
- >("DELETE", (pathParams) => {
- return `/api/projects/${pathParams.project_id}/infras/${pathParams.infra_id}`;
- });
- 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 getRevisions = baseApi<
- {},
- { id: number; cluster_id: number; namespace: string; name: string }
- >("GET", (pathParams) => {
- let { id, cluster_id, namespace, name } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/history`;
- });
- const getTemplateInfo = baseApi<
- {
- repo_url?: string;
- },
- { name: string; version: string }
- >("GET", (pathParams) => {
- return `/api/templates/${pathParams.name}/${pathParams.version}`;
- });
- const getTemplateUpgradeNotes = baseApi<
- {
- repo_url?: string;
- prev_version: string;
- },
- { name: string; version: string }
- >("GET", (pathParams) => {
- return `/api/templates/${pathParams.name}/${pathParams.version}/upgrade_notes`;
- });
- const getTemplates = baseApi<
- {
- repo_url?: string;
- },
- {}
- >("GET", "/api/templates");
- const getMetadata = baseApi<{}, {}>("GET", () => {
- return `/api/metadata`;
- });
- const postWelcome = baseApi<{
- email: string;
- isCompany: boolean;
- 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 provisionECR = baseApi<
- {
- ecr_name: string;
- aws_integration_id: string;
- },
- { id: number }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/provision/ecr`;
- });
- const provisionEKS = baseApi<
- {
- eks_name: string;
- aws_integration_id: string;
- machine_type: string;
- },
- { id: number }
- >("POST", (pathParams) => {
- return `/api/projects/${pathParams.id}/provision/eks`;
- });
- const registerUser = baseApi<{
- email: string;
- password: string;
- }>("POST", "/api/users");
- const rollbackChart = baseApi<
- {
- revision: number;
- },
- {
- id: number;
- name: string;
- namespace: string;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- let { 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) => {
- let { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/0`;
- });
- const updateUser = baseApi<
- {
- rawKubeConfig?: string;
- allowedContexts?: string[];
- },
- { id: number }
- >("PUT", (pathParams) => {
- return `/api/users/${pathParams.id}`;
- });
- const upgradeChartValues = baseApi<
- {
- values: string;
- version?: string;
- },
- {
- id: number;
- name: string;
- namespace: string;
- cluster_id: number;
- }
- >("POST", (pathParams) => {
- let { id, name, cluster_id, namespace } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/releases/${name}/0/upgrade`;
- });
- 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 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 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) => {
- let { 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 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) => {
- let { id, cluster_id } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/create`;
- });
- const deleteNamespace = baseApi<
- {
- name: string;
- },
- {
- id: number;
- cluster_id: number;
- }
- >("DELETE", (pathParams) => {
- let { id, cluster_id } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/delete`;
- });
- const deleteJob = baseApi<
- {},
- { name: string; namespace: string; id: number; cluster_id: number }
- >("DELETE", (pathParams) => {
- let { 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) => {
- let { id, name, namespace, cluster_id } = pathParams;
- return `/api/projects/${id}/clusters/${cluster_id}/namespaces/${namespace}/jobs/${name}/stop`;
- });
- 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`
- );
- // Used for billing purposes
- const getCustomerToken = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/billing/token`
- );
- const getHasBilling = baseApi<{}, { project_id: number }>(
- "GET",
- ({ project_id }) => `/api/projects/${project_id}/billing`
- );
- 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}`
- );
- // Bundle export to allow default api import (api.<method> is more readable)
- export default {
- checkAuth,
- connectECRRegistry,
- connectGCRRegistry,
- connectDORegistry,
- createAWSIntegration,
- overwriteAWSIntegration,
- createDOCR,
- createDOKS,
- createEmailVerification,
- createGCPIntegration,
- createGCR,
- createGKE,
- createInvite,
- createNamespace,
- createPasswordReset,
- createPasswordResetVerify,
- createPasswordResetFinalize,
- createProject,
- createConfigMap,
- deleteCluster,
- deleteConfigMap,
- deleteInvite,
- deleteNamespace,
- deletePod,
- deleteProject,
- deleteRegistryIntegration,
- deleteSlackIntegration,
- updateNotificationConfig,
- getNotificationConfig,
- createSubdomain,
- deployTemplate,
- deployAddon,
- destroyInfra,
- detectBuildpack,
- getBranchContents,
- getBranches,
- getMetadata,
- postWelcome,
- getChart,
- getCharts,
- getChartComponents,
- getChartControllers,
- getClusterIntegrations,
- getClusters,
- getCluster,
- getClusterNodes,
- getClusterNode,
- getConfigMap,
- getGHAWorkflowTemplate,
- getGitRepoList,
- getGitRepos,
- getImageRepos,
- getImageTags,
- getInfra,
- getIngress,
- getInvites,
- getJobs,
- getJobStatus,
- getJobPods,
- getMatchingPods,
- getMetrics,
- getNamespaces,
- getNGINXIngresses,
- getOAuthIds,
- getPodEvents,
- getProcfileContents,
- getProjectClusters,
- getProjectRegistries,
- getProjectRepos,
- getProjects,
- getPrometheusIsInstalled,
- getRegistryIntegrations,
- getReleaseToken,
- getReleaseSteps,
- getRepoIntegrations,
- getSlackIntegrations,
- getRepos,
- getRevisions,
- getTemplateInfo,
- getTemplateUpgradeNotes,
- getTemplates,
- linkGithubProject,
- getGithubAccounts,
- listConfigMaps,
- logInUser,
- logOutUser,
- provisionECR,
- provisionEKS,
- registerUser,
- rollbackChart,
- uninstallTemplate,
- updateUser,
- renameConfigMap,
- updateConfigMap,
- upgradeChartValues,
- deleteJob,
- stopJob,
- updateInvite,
- getAvailableRoles,
- getCollaborators,
- updateCollaborator,
- removeCollaborator,
- getPolicyDocument,
- createWebhookToken,
- getUsage,
- getCustomerToken,
- getHasBilling,
- getOnboardingState,
- saveOnboardingState,
- getOnboardingInfra,
- getOnboardingRegistry,
- };
|