Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 1.3 KB

File metadata and controls

48 lines (41 loc) · 1.3 KB
title Understanding common Object Storage operations
description Perform common operations efficiently using Scaleway Object Storage CLI.
tags object storage object-storage api api-operation getservice
dates
validation posted
2025-07-31
2018-09-13

GetService

This operation returns a list of all buckets owned by the authenticated user that sent the request.

The operation does not list buckets created by other users, nor does it list buckets for anonymous requests.

Sample request:

GET / HTTP/1.1
Host: s3.nl-ams.scw.cloud
Date: Thu, 11 Apr 2019 10:16:53 GMT
Authorization: authorization string

Sample response:

<?xml version='1.0' encoding='UTF-8'?>
<ListAllMyBucketsResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
  <Owner>
    <ID>04dcf44f-a6ca-4e69-a74c-f0c557d87d79:04dcf44f-a6ca-4e69-a74c-f0c557d87d79</ID>
    <DisplayName>04dcf44f-a6ca-4e69-a74c-f0c557d87d79:04dcf44f-a6ca-4e69-a74c-f0c557d87d79</DisplayName>
  </Owner>
  <Buckets>
    <Bucket>
      <Name>myfirstbucket</Name>
      <CreationDate>2018-09-12T11:54:02.000Z</CreationDate>
    </Bucket>
    <Bucket>
      <Name>myotherbucket</Name><CreationDate>2019-04-11T10:10:17.000Z</CreationDate>
    </Bucket>
  </Buckets>
</ListAllMyBucketsResult>'

CLI command

aws s3 ls