1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-11 11:41:56 +02:00
OpenIntegrations/docs/en/md/S3/Objects-management/List-object-versions.mdx

83 lines
2.6 KiB
Plaintext
Raw Normal View History

2024-11-18 21:03:13 +03:00
---
2024-11-21 11:30:08 +03:00
sidebar_position: 14
2024-11-18 21:03:13 +03:00
---
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
2024-11-21 13:27:18 +03:00
Method at AWS documentation: [ListObjectVersions](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectVersions.html)
2024-11-18 21:03:13 +03:00
:::
<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);
```
2024-11-20 14:49:03 +03:00
<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>
2024-11-18 21:03:13 +03:00