Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.object_storage.get_storage_bucket_lifecycle_rules(bucket_id="<id>")
# 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.ObjectStorage.GetStorageBucketLifecycleRules(ctx, "<id>")
if err != nil {
log.Fatal(err)
}
if res.LifecycleRules != 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.objectStorage.getStorageBucketLifecycleRules({
bucketId: "<id>",
});
console.log(result);
}
run();curl --request GET \
--url https://api.latitude.sh/storage/buckets/{bucket_id}/lifecycle_rules \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.latitude.sh/storage/buckets/{bucket_id}/lifecycle_rules', 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/storage/buckets/{bucket_id}/lifecycle_rules",
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/storage/buckets/{bucket_id}/lifecycle_rules")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/storage/buckets/{bucket_id}/lifecycle_rules")
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": "lifecycle_7Rk2Wd38dXnZJ",
"type": "lifecycle_rules",
"attributes": {
"name": "delete-old-logs",
"enabled": true,
"prefix": "logs/",
"expiration_days": 30,
"noncurrent_days": null,
"abort_mpu_days_after_initiation": null
}
},
{
"id": "lifecycle_9Pk3Xe49eYoAK",
"type": "lifecycle_rules",
"attributes": {
"name": "cleanup-temp-files",
"enabled": true,
"prefix": "temp/",
"expiration_days": 7,
"noncurrent_days": 14,
"abort_mpu_days_after_initiation": 7
}
}
]
}{
"errors": [
{
"code": "STORAGE_NOT_ENABLED",
"title": "Object Storage not enabled"
}
]
}{
"errors": [
{
"code": "not_found",
"title": "Error",
"detail": "Specified Record Not Found",
"meta": {},
"status": "404"
}
]
}Object Storage
List lifecycle rules
Lists all lifecycle rules for a specific object storage bucket.
GET
/
storage
/
buckets
/
{bucket_id}
/
lifecycle_rules
Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.object_storage.get_storage_bucket_lifecycle_rules(bucket_id="<id>")
# 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.ObjectStorage.GetStorageBucketLifecycleRules(ctx, "<id>")
if err != nil {
log.Fatal(err)
}
if res.LifecycleRules != 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.objectStorage.getStorageBucketLifecycleRules({
bucketId: "<id>",
});
console.log(result);
}
run();curl --request GET \
--url https://api.latitude.sh/storage/buckets/{bucket_id}/lifecycle_rules \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.latitude.sh/storage/buckets/{bucket_id}/lifecycle_rules', 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/storage/buckets/{bucket_id}/lifecycle_rules",
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/storage/buckets/{bucket_id}/lifecycle_rules")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/storage/buckets/{bucket_id}/lifecycle_rules")
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": "lifecycle_7Rk2Wd38dXnZJ",
"type": "lifecycle_rules",
"attributes": {
"name": "delete-old-logs",
"enabled": true,
"prefix": "logs/",
"expiration_days": 30,
"noncurrent_days": null,
"abort_mpu_days_after_initiation": null
}
},
{
"id": "lifecycle_9Pk3Xe49eYoAK",
"type": "lifecycle_rules",
"attributes": {
"name": "cleanup-temp-files",
"enabled": true,
"prefix": "temp/",
"expiration_days": 7,
"noncurrent_days": 14,
"abort_mpu_days_after_initiation": 7
}
}
]
}{
"errors": [
{
"code": "STORAGE_NOT_ENABLED",
"title": "Object Storage not enabled"
}
]
}{
"errors": [
{
"code": "not_found",
"title": "Error",
"detail": "Specified Record Not Found",
"meta": {},
"status": "404"
}
]
}Was this page helpful?
⌘I