//native
type Vercel = {
token: string;
};
/**
* Creates a Configurable Log Drain
* Creates a configurable log drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed)
*/
export async function main(
auth: Vercel,
teamId: string | undefined,
slug: string | undefined,
body: {
deliveryFormat: "json" | "ndjson";
url: string;
headers?: {};
projectIds?: string[];
sources: "static" | "lambda" | "build" | "edge" | "external" | "firewall"[];
environments?: "preview" | "production"[];
secret?: string;
samplingRate?: number;
name?: string;
},
) {
const url = new URL(`https://api.vercel.com/v1/log-drains`);
for (const [k, v] of [
["teamId", teamId],
["slug", slug],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 428 days ago