Skip to main content

Create bucket

Creates a new bucket with the specified name

Function CreateBucket(Val Name, Val BasicData, Val Directory = False, Val Headers = Undefined) Export

ParameterCLI optionTypeRequiredDescription
Name--nameStringBucket name
BasicData--basicStructure of KeyAndValueBasic request data. See GetBasicDataStructure
Directory--dirBooleanTrue > Directory Bucket, False > General Purpose Bucket
Headers--headersMap Of KeyAndValueAdditional request headers, if necessary

Returns: Structure of KeyAndValue - serialized JSON response from storage


tip

Method at AWS documentation: CreateBucket


1C:Enterprise/OneScript code example
    URL       = "storage-155.s3hoster.by";
AccessKey = "BRN5RKJE67...";
SecretKey = "NNhv+i9PrytpT8Tu0C1N...";
Region = "BTC";

BasicData = OPI_S3.GetBasicDataStructure(URL, AccessKey, SecretKey, Region);

// Directory bucket

Name = "opi-dirbucket3";
Result = OPI_S3.CreateBucket(Name, BasicData, True);

// General purpose bucket

Name = "opi-gpbucket3";
Result = OPI_S3.CreateBucket(Name, BasicData);
    # JSON data can also be passed as a path to a .json file

oint s3 CreateBucket \
--name "opi-gpbucket3" \
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" \
--dir false
Result
{
"status": 200,
"response": {},
"headers": {
"Accept-Ranges": "bytes",
"Content-Length": "0",
"Content-Type": "text/plain; charset=utf-8",
"Date": "Fri, 22 Nov 2024 10:11:56 GMT",
"Location": "/opi-gpbucket3",
"Server": "MinIO",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"Vary": "Origin,Accept-Encoding",
"X-Amz-Id-2": "93c576aa54c960b355da9e2934476635fe3243f5df9dbb4db8b7c0d94bec7cd1",
"X-Amz-Request-Id": "180A42ACD6057119",
"X-Content-Type-Options": "nosniff",
"X-Xss-Protection": "1; mode=block"
}
}