Skip to main content

Put bucket versioning

Sets the versioning settings for bucket objects

Function PutBucketVersioning(Val Name, Val BasicData, Val Status = Undefined, Val MFADelete = Undefined, Val Directory = False, Val Headers = Undefined) Export

ParameterCLI optionTypeRequiredDescription
Name--nameStringBucket name
BasicData--basicStructure Of KeyAndValueBasic request data. See GetBasicDataStructure
Status--statusBooleanEnable and disable versioning, if necessary
MFADelete--mfadBooleanEnable and disable MFA deletion, if necessary
Directory--dirBooleanTrue > Path style URL, False > Virtual hosted style URL
Headers--headersMap Of KeyAndValueAdditional request headers, if necessary

Returns: Structure Of KeyAndValue - serialized JSON response from storage


tip

Method at AWS documentation: PutBucketVersioning


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);
Status = True;

Directory = True; // Formation URL in path-style
Name = "opi-dirbucket3";
Result = OPI_S3.PutBucketVersioning(Name, BasicData, Status);
    oint s3 PutBucketVersioning \
--name "opi-dirbucket3" \
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" \
--status true
Result
{
"status": 200,
"response": {},
"headers": {
"Accept-Ranges": "bytes",
"Date": "Mon, 15 Sep 2025 23:11:44 GMT",
"Server": "MinIO",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"Vary": "Origin, Accept-Encoding",
"X-Amz-Id-2": "93c576aa54c960b355da9e2934476635fe3243f5df9dbb4db8b7c0d94bec7cd1",
"X-Amz-Request-Id": "18659796FFABEA2F",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "1; mode=block",
"Content-Length": "0",
"Content-Type": "text/plain; charset=utf-8"
}
}