Python (SDK)
import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.firewalls.update(firewall_id="fw_r0MK4O4kDa95w", data={
"type": latitudesh_python_sdk.UpdateFirewallFirewallsType.FIREWALLS,
"attributes": {
"name": "new-name",
"rules": [
{
"from_": "192.168.42.72",
"to": "192.168.43.51",
"protocol": latitudesh_python_sdk.UpdateFirewallFirewallsProtocol.TCP,
"port": "80",
"description": "Allow HTTP",
},
],
},
})
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Firewalls.Update(ctx, "fw_r0MK4O4kDa95w", operations.UpdateFirewallFirewallsRequestBody{
Data: operations.UpdateFirewallFirewallsData{
Type: operations.UpdateFirewallFirewallsTypeFirewalls,
Attributes: &operations.UpdateFirewallFirewallsAttributes{
Name: latitudeshgosdk.Pointer("new-name"),
Rules: []operations.UpdateFirewallFirewallsRules{
operations.UpdateFirewallFirewallsRules{
From: latitudeshgosdk.Pointer("192.168.42.72"),
To: latitudeshgosdk.Pointer("192.168.43.51"),
Protocol: operations.UpdateFirewallFirewallsProtocolTCP.ToPointer(),
Port: latitudeshgosdk.Pointer("80"),
Description: latitudeshgosdk.Pointer("Allow HTTP"),
},
},
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Firewall != 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.firewalls.update({
firewallId: "fw_r0MK4O4kDa95w",
requestBody: {
data: {
type: "firewalls",
attributes: {
name: "new-name",
rules: [
{
from: "192.168.42.72",
to: "192.168.43.51",
protocol: "TCP",
port: "80",
description: "Allow HTTP",
},
],
},
},
},
});
console.log(result);
}
run();curl --request PATCH \
--url https://api.latitude.sh/firewalls/{firewall_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "firewalls",
"attributes": {
"name": "new-name",
"rules": [
{
"from": "192.168.42.72",
"to": "192.168.43.51",
"port": 80,
"protocol": "TCP",
"description": "Allow HTTP"
}
]
}
}
}
'const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'firewalls',
attributes: {
name: 'new-name',
rules: [
{
from: '192.168.42.72',
to: '192.168.43.51',
port: 80,
protocol: 'TCP',
description: 'Allow HTTP'
}
]
}
}
})
};
fetch('https://api.latitude.sh/firewalls/{firewall_id}', 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/firewalls/{firewall_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'type' => 'firewalls',
'attributes' => [
'name' => 'new-name',
'rules' => [
[
'from' => '192.168.42.72',
'to' => '192.168.43.51',
'port' => 80,
'protocol' => 'TCP',
'description' => 'Allow HTTP'
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.patch("https://api.latitude.sh/firewalls/{firewall_id}")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"firewalls\",\n \"attributes\": {\n \"name\": \"new-name\",\n \"rules\": [\n {\n \"from\": \"192.168.42.72\",\n \"to\": \"192.168.43.51\",\n \"port\": 80,\n \"protocol\": \"TCP\",\n \"description\": \"Allow HTTP\"\n }\n ]\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/firewalls/{firewall_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"type\": \"firewalls\",\n \"attributes\": {\n \"name\": \"new-name\",\n \"rules\": [\n {\n \"from\": \"192.168.42.72\",\n \"to\": \"192.168.43.51\",\n \"port\": 80,\n \"protocol\": \"TCP\",\n \"description\": \"Allow HTTP\"\n }\n ]\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "fw_r0MK4O4kDa95w",
"type": "firewalls",
"attributes": {
"name": "new-name",
"project": {
"id": "proj_aKXgRdR3qv9k5",
"name": "Rustic Wooden Clock",
"slug": "rustic-wooden-clock"
},
"rules": [
{
"from": "192.168.42.72",
"to": "192.168.43.51",
"port": "80",
"protocol": "TCP",
"default": false
}
]
}
}
}Firewalls
Update firewall
Updates a firewall by its ID.
PATCH
/
firewalls
/
{firewall_id}
Python (SDK)
import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.firewalls.update(firewall_id="fw_r0MK4O4kDa95w", data={
"type": latitudesh_python_sdk.UpdateFirewallFirewallsType.FIREWALLS,
"attributes": {
"name": "new-name",
"rules": [
{
"from_": "192.168.42.72",
"to": "192.168.43.51",
"protocol": latitudesh_python_sdk.UpdateFirewallFirewallsProtocol.TCP,
"port": "80",
"description": "Allow HTTP",
},
],
},
})
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Firewalls.Update(ctx, "fw_r0MK4O4kDa95w", operations.UpdateFirewallFirewallsRequestBody{
Data: operations.UpdateFirewallFirewallsData{
Type: operations.UpdateFirewallFirewallsTypeFirewalls,
Attributes: &operations.UpdateFirewallFirewallsAttributes{
Name: latitudeshgosdk.Pointer("new-name"),
Rules: []operations.UpdateFirewallFirewallsRules{
operations.UpdateFirewallFirewallsRules{
From: latitudeshgosdk.Pointer("192.168.42.72"),
To: latitudeshgosdk.Pointer("192.168.43.51"),
Protocol: operations.UpdateFirewallFirewallsProtocolTCP.ToPointer(),
Port: latitudeshgosdk.Pointer("80"),
Description: latitudeshgosdk.Pointer("Allow HTTP"),
},
},
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Firewall != 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.firewalls.update({
firewallId: "fw_r0MK4O4kDa95w",
requestBody: {
data: {
type: "firewalls",
attributes: {
name: "new-name",
rules: [
{
from: "192.168.42.72",
to: "192.168.43.51",
protocol: "TCP",
port: "80",
description: "Allow HTTP",
},
],
},
},
},
});
console.log(result);
}
run();curl --request PATCH \
--url https://api.latitude.sh/firewalls/{firewall_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "firewalls",
"attributes": {
"name": "new-name",
"rules": [
{
"from": "192.168.42.72",
"to": "192.168.43.51",
"port": 80,
"protocol": "TCP",
"description": "Allow HTTP"
}
]
}
}
}
'const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'firewalls',
attributes: {
name: 'new-name',
rules: [
{
from: '192.168.42.72',
to: '192.168.43.51',
port: 80,
protocol: 'TCP',
description: 'Allow HTTP'
}
]
}
}
})
};
fetch('https://api.latitude.sh/firewalls/{firewall_id}', 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/firewalls/{firewall_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'type' => 'firewalls',
'attributes' => [
'name' => 'new-name',
'rules' => [
[
'from' => '192.168.42.72',
'to' => '192.168.43.51',
'port' => 80,
'protocol' => 'TCP',
'description' => 'Allow HTTP'
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.patch("https://api.latitude.sh/firewalls/{firewall_id}")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"firewalls\",\n \"attributes\": {\n \"name\": \"new-name\",\n \"rules\": [\n {\n \"from\": \"192.168.42.72\",\n \"to\": \"192.168.43.51\",\n \"port\": 80,\n \"protocol\": \"TCP\",\n \"description\": \"Allow HTTP\"\n }\n ]\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/firewalls/{firewall_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"type\": \"firewalls\",\n \"attributes\": {\n \"name\": \"new-name\",\n \"rules\": [\n {\n \"from\": \"192.168.42.72\",\n \"to\": \"192.168.43.51\",\n \"port\": 80,\n \"protocol\": \"TCP\",\n \"description\": \"Allow HTTP\"\n }\n ]\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "fw_r0MK4O4kDa95w",
"type": "firewalls",
"attributes": {
"name": "new-name",
"project": {
"id": "proj_aKXgRdR3qv9k5",
"name": "Rustic Wooden Clock",
"slug": "rustic-wooden-clock"
},
"rules": [
{
"from": "192.168.42.72",
"to": "192.168.43.51",
"port": "80",
"protocol": "TCP",
"default": false
}
]
}
}
}Was this page helpful?
⌘I