Gau Backend Microservices
  1. Object Storage
Gau Backend Microservices
  • Account Service
    • Basic Auth
      • [Auth] Login
      • [Auth] Register
      • [Auth] Logout
    • OAuth 2.0
      • [Auth] Google Login
      • [Auth] Logout
    • Profile
      • [Profile] Update Profile
      • [Profile] Get Profile
      • [Profile] Get Security Info
      • [Profile] Update Avatar
      • [Profle] Get All Data
    • MFA
      • [TOTP] Get TOTP Authentication
      • [TOTP] Enable TOTP Authentication
      • [TOTP] Verify Login
  • Authorization Service
    • [Token] Renew Access Token
      GET
    • [Token] Create New Token
      POST
    • [Token] Check Access Token
      GET
    • [Token] Revoke Token
      DELETE
  • CDN Service
    • [CDN] Get File
      GET
  • Upload Service
    • [File] Upload File
      POST
    • [File] Get Upload File
      GET
  • Cloud Service
    • IAM
      • [IAM] Create IAM
    • Object Storage
      • [Bucket] Create Bucket
        POST
      • [Bucket] Delete Bucket By ID
        DELETE
      • [Bucket] Update Bucket Access
        PUT
      • [Bucket] Get Bucket Access
        GET
      • [Bucket] Get List Bucket By Owner
        GET
      • [File] Upload Object To Bucket
        POST
      • [File] Get All Object In Bucket
        GET
      • [File] Delete Object From Bucket
        DELETE
      • [Large File] Init Chunked Upload
        POST
      • [Large File] Upload Chunk (Multipart Form)
        POST
      • [Large File] Check Progress
        GET
      • [Large File] Complete Upload
        POST
      • [Large File] Abort Upload
        DELETE
    • Compute
      • [Compute] Get Compute Flavor
      • [Compute] Get Compute Image
  1. Object Storage

[Bucket] Create Bucket

Developing
POST
https://api.gauas.com/api/v1/cloud/buckets
Maintainer:Not configured

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gauas.com/api/v1/cloud/buckets' \
--header 'Authorization: Bearer {{ACCESS-TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name" : "testhehe",
    "region" : "us-est1"
}'
Response Response Example
{}
Modified at 2025-12-27 11:34:05
Previous
[IAM] Create IAM
Next
[Bucket] Delete Bucket By ID
Built with