Head bucket
Checks if the bucket is available for the current account or account by ID
Function HeadBucket(Val Name, Val BasicData, Val Directory = False, Val AccountID = "", Val Headers = Undefined) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Name | --name | String | ✔ | Bucket name |
BasicData | --basic | Structure of KeyAndValue | ✔ | Basic request data. See GetBasicDataStructure |
Directory | --dir | Boolean | ✖ | True > Directory Bucket, False > General Purpose Bucket |
AccountID | --account | String | ✖ | Account ID to verify that hes the bucket owner |
Headers | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Structure of KeyAndValue - serialized JSON response from storage
tip
Method at AWS documentation: HeadBucket
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);
Name = "opi-dirbucket3";
Result = OPI_S3.HeadBucket(Name, BasicData);
Result = OPI_S3.HeadBucket(Name, BasicData, , "1234");
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint s3 HeadBucket \
--name "opi-dirbucket3" \
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" \
--account "1234"
:: JSON data can also be passed as a path to a .json file
oint s3 HeadBucket ^
--name "opi-dirbucket3" ^
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" ^
--account "1234"
Result
{
"status": 200,
"response": {},
"headers": {
"Accept-Ranges": "bytes",
"Content-Length": "0",
"Content-Type": "application/xml",
"Date": "Fri, 22 Nov 2024 10:11:56 GMT",
"Server": "MinIO",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"Vary": "Origin,Accept-Encoding",
"X-Amz-Id-2": "057275ee0636b36a8256f409a6ff665de46bfaa1f0d5faf2d1b4f312e55c34fa",
"X-Amz-Request-Id": "180A42ACE0352E23",
"X-Content-Type-Options": "nosniff",
"X-Xss-Protection": "1; mode=block"
}
}