You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-06-17 00:17:42 +02:00
Main build (Jenkins)
This commit is contained in:
11
docs/en/examples/S3/DeleteObjectTagging.txt
Normal file
11
docs/en/examples/S3/DeleteObjectTagging.txt
Normal file
@ -0,0 +1,11 @@
|
||||
URL = "storage-155.s3hoster.by";
|
||||
AccessKey = "BRN5RKJE67...";
|
||||
SecretKey = "NNhv+i9PrytpT8Tu0C1N...";
|
||||
Region = "BTC";
|
||||
|
||||
BasicData = OPI_S3.GetBasicDataStructure(URL, AccessKey, SecretKey, Region);
|
||||
|
||||
Name = "picture.jpg";
|
||||
Bucket = "opi-gpbucket3";
|
||||
|
||||
Result = OPI_S3.DeleteObjectTagging(Name, Bucket, BasicData);
|
11
docs/en/examples/S3/GetObjectTagging.txt
Normal file
11
docs/en/examples/S3/GetObjectTagging.txt
Normal file
@ -0,0 +1,11 @@
|
||||
URL = "storage-155.s3hoster.by";
|
||||
AccessKey = "BRN5RKJE67...";
|
||||
SecretKey = "NNhv+i9PrytpT8Tu0C1N...";
|
||||
Region = "BTC";
|
||||
|
||||
BasicData = OPI_S3.GetBasicDataStructure(URL, AccessKey, SecretKey, Region);
|
||||
|
||||
Name = "picture.jpg";
|
||||
Bucket = "opi-gpbucket3";
|
||||
|
||||
Result = OPI_S3.GetObjectTagging(Name, Bucket, BasicData);
|
16
docs/en/examples/S3/PutObjectTagging.txt
Normal file
16
docs/en/examples/S3/PutObjectTagging.txt
Normal file
@ -0,0 +1,16 @@
|
||||
URL = "storage-155.s3hoster.by";
|
||||
AccessKey = "BRN5RKJE67...";
|
||||
SecretKey = "NNhv+i9PrytpT8Tu0C1N...";
|
||||
Region = "BTC";
|
||||
|
||||
BasicData = OPI_S3.GetBasicDataStructure(URL, AccessKey, SecretKey, Region);
|
||||
|
||||
Name = "picture.jpg";
|
||||
Bucket = "opi-gpbucket3";
|
||||
|
||||
TagStructure = New Structure;
|
||||
|
||||
TagStructure.Insert("MyTag1", "SomeValue");
|
||||
TagStructure.Insert("MyTag2", "AnotherOne");
|
||||
|
||||
Result = OPI_S3.PutObjectTagging(Name, Bucket, BasicData, TagStructure);
|
Reference in New Issue
Block a user