portainer/app/react/docker/configs/queries/useCreateConfigMutation.ts

23 lines
682 B
TypeScript

import { ConfigSpec } from 'docker-types/generated/1.41';
import axios, { parseAxiosError } from '@/portainer/services/axios';
import { EnvironmentId } from '@/react/portainer/environments/types';
import { buildDockerProxyUrl } from '../../proxy/queries/buildDockerProxyUrl';
import { PortainerResponse } from '../../types';
export async function createConfig(
environmentId: EnvironmentId,
config: ConfigSpec
) {
try {
const { data } = await axios.post<PortainerResponse<{ Id: string }>>(
buildDockerProxyUrl(environmentId, 'configs', 'create'),
config
);
return data;
} catch (e) {
throw parseAxiosError(e, 'Unable to create config');
}
}