Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.plans.get_managed_database_plans()
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Plans.GetManagedDatabasePlans(ctx)
if err != nil {
log.Fatal(err)
}
if res.ManagedDatabasePlans != nil {
// handle response
}
}import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.plans.getManagedDatabasePlans();
console.log(result);
}
run();curl --request GET \
--url https://api.latitude.sh/plans/managed_databases \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.latitude.sh/plans/managed_databases', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.latitude.sh/plans/managed_databases",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.latitude.sh/plans/managed_databases")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/plans/managed_databases")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "plan_a1b2c3d4",
"type": "managed_database_plans",
"attributes": {
"name": "db.clickhouse.dev",
"slug": "db-clickhouse-dev",
"engine": "clickhouse",
"specs": {
"cpu": "1",
"memory": "2Gi",
"storage": "5Gi",
"shards": 1,
"replicas": 1,
"iops": null
},
"regions": [
{
"region": "ASH",
"city": "Ashburn",
"country": "United States",
"site": {
"id": "loc_ashburn",
"name": "Ashburn",
"slug": "ASH",
"facility": "DC1"
},
"pricing": {
"USD": {
"month": 10,
"year": 100
},
"BRL": {
"month": 57,
"year": 570
}
}
}
]
}
}
]
}Plans
List managed database plans
GET
/
plans
/
managed_databases
Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.plans.get_managed_database_plans()
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Plans.GetManagedDatabasePlans(ctx)
if err != nil {
log.Fatal(err)
}
if res.ManagedDatabasePlans != nil {
// handle response
}
}import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.plans.getManagedDatabasePlans();
console.log(result);
}
run();curl --request GET \
--url https://api.latitude.sh/plans/managed_databases \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.latitude.sh/plans/managed_databases', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.latitude.sh/plans/managed_databases",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.latitude.sh/plans/managed_databases")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/plans/managed_databases")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "plan_a1b2c3d4",
"type": "managed_database_plans",
"attributes": {
"name": "db.clickhouse.dev",
"slug": "db-clickhouse-dev",
"engine": "clickhouse",
"specs": {
"cpu": "1",
"memory": "2Gi",
"storage": "5Gi",
"shards": 1,
"replicas": 1,
"iops": null
},
"regions": [
{
"region": "ASH",
"city": "Ashburn",
"country": "United States",
"site": {
"id": "loc_ashburn",
"name": "Ashburn",
"slug": "ASH",
"facility": "DC1"
},
"pricing": {
"USD": {
"month": 10,
"year": 100
},
"BRL": {
"month": 57,
"year": 570
}
}
}
]
}
}
]
}Was this page helpful?
⌘I