Edits history of script submission #12671 for ' Get a list of compute endpoints (neondb)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Neondb = {
    	apiKey: string
    }
    /**
     * Get a list of compute endpoints
     * Retrieves a list of compute endpoints for the specified project.
    A compute endpoint is a Neon compute instance.
    You can obtain a `project_id` by listing the projects for your Neon account.
    For information about compute endpoints, see [Manage computes](https://neon.tech/docs/manage/endpoints/).
    
     */
    export async function main(auth: Neondb, project_id: string) {
    	const url = new URL(`https://console.neon.tech/api/v2/projects/${project_id}/endpoints`)
    
    	const response = await fetch(url, {
    		method: 'GET',
    		headers: {
    			Authorization: 'Bearer ' + auth.apiKey
    		},
    		body: undefined
    	})
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    	return await response.json()
    }
    

    Submitted by hugo697 428 days ago