mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-29 21:57:16 +02:00
125 lines
3.7 KiB
Plaintext
Vendored
125 lines
3.7 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 15
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# List object versions
|
|
Gets a list of all versions of objects in the selected bucket
|
|
|
|
|
|
|
|
`Function ListObjectVersions(Val Bucket, Val BasicData, Val Prefix = "", Val Version = "", Val Headers = Undefined) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Bucket | --bucket | String | ✔ | Bucket name |
|
|
| BasicData | --basic | Structure Of KeyAndValue | ✔ | Basic request data. See GetBasicDataStructure |
|
|
| Prefix | --prefix | String | ✖ | Filtering by prefix, if necessary |
|
|
| Version | --ver | String | ✖ | Version ID for the beginning of the list |
|
|
| Headers | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
|
|
|
|
|
|
Returns: Structure Of KeyAndValue - serialized JSON response from storage
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at AWS documentation: [ListObjectVersions](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectVersions.html)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="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);
|
|
|
|
Bucket = "opi-gpbucket3";
|
|
Prefix = "pic";
|
|
Result = OPI_S3.ListObjectVersions(Bucket, BasicData, Prefix);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
# JSON data can also be passed as a path to a .json file
|
|
|
|
oint s3 ListObjectVersions \
|
|
--url "storage-155.s3hoster.by" \
|
|
--access "BRN5RKJE67YCVDZRRQVI" \
|
|
--secret "***" \
|
|
--region "BTC" \
|
|
--bucket "opi-gpbucket3" \
|
|
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" \
|
|
--prefix "pic"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
:: JSON data can also be passed as a path to a .json file
|
|
|
|
oint s3 ListObjectVersions ^
|
|
--url "storage-155.s3hoster.by" ^
|
|
--access "BRN5RKJE67YCVDZRRQVI" ^
|
|
--secret "***" ^
|
|
--region "BTC" ^
|
|
--bucket "opi-gpbucket3" ^
|
|
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" ^
|
|
--prefix "pic"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"status": 200,
|
|
"response": {
|
|
"ListVersionsResult": {
|
|
"Name": "opi-gpbucket3",
|
|
"Prefix": "pic",
|
|
"KeyMarker": {},
|
|
"NextVersionIdMarker": {},
|
|
"VersionIdMarker": {},
|
|
"MaxKeys": "250",
|
|
"IsTruncated": "false",
|
|
"Version": {
|
|
"Key": "picture.jpg",
|
|
"LastModified": "2024-11-22T10:12:02.670Z",
|
|
"ETag": "\"9e0176f87f6565a22f78e0f9b39a4d78\"",
|
|
"Size": "2114023",
|
|
"Owner": {
|
|
"ID": "02d6176db174dc93cb1b899f7c6078f08654445fe8cf1b6ce98d8855f66bdbf4",
|
|
"DisplayName": "minio"
|
|
},
|
|
"StorageClass": "STANDARD",
|
|
"IsLatest": "true",
|
|
"VersionId": "null"
|
|
}
|
|
}
|
|
},
|
|
"headers": {
|
|
"Accept-Ranges": "bytes",
|
|
"Content-Length": "707",
|
|
"Content-Type": "application/xml",
|
|
"Date": "Fri, 22 Nov 2024 10:12:24 GMT",
|
|
"Server": "MinIO",
|
|
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
|
|
"Vary": "Origin,Accept-Encoding",
|
|
"X-Amz-Id-2": "0757065d17b69556603743b9ea63f04bc7b9f349245bbff6b0ba901258e9c169",
|
|
"X-Amz-Request-Id": "180A42B344DE4242",
|
|
"X-Content-Type-Options": "nosniff",
|
|
"X-Xss-Protection": "1; mode=block"
|
|
}
|
|
}
|
|
```
|