Get bucket tagging
Gets the bucket tag set
Function GetBucketTagging(Val Name, Val BasicData, Val Directory = False, 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 |
Headers | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Structure of KeyAndValue - serialized JSON response from storage
tip
Method at AWS documentation: GetBucketTagging
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.GetBucketTagging(Name, BasicData, True);
// General purpose bucket
Name = "opi-gpbucket3";
Result = OPI_S3.GetBucketTagging(Name, BasicData);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint s3 GetBucketTagging \
--name "opi-gpbucket3" \
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" \
--dir false
:: JSON data can also be passed as a path to a .json file
oint s3 GetBucketTagging ^
--name "opi-gpbucket3" ^
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" ^
--dir false
Result
{
"status": 200,
"response": {
"Tagging": {
"TagSet": {
"Tag": [
{
"Key": "MyTag1",
"Value": "SomeValue"
},
{
"Key": "MyTag2",
"Value": "AnotherOne"
}
]
}
}
},
"headers": {
"Accept-Ranges": "bytes",
"Content-Length": "141",
"Content-Type": "application/xml",
"Date": "Fri, 22 Nov 2024 10:11:57 GMT",
"Server": "MinIO",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"Vary": "Origin,Accept-Encoding",
"X-Amz-Id-2": "93c576aa54c960b355da9e2934476635fe3243f5df9dbb4db8b7c0d94bec7cd1",
"X-Amz-Request-Id": "180A42ACF504A7F3",
"X-Content-Type-Options": "nosniff",
"X-Xss-Protection": "1; mode=block"
}
}