-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d44419e
commit 8969396
Showing
10 changed files
with
527 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* MinIO Javascript Library for Amazon S3 Compatible Cloud Storage, (C) 2021 MinIO, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
// Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are | ||
// dummy values, please replace them with original values. | ||
|
||
var Minio = require('minio') | ||
|
||
var s3Client = new Minio.Client({ | ||
endPoint: 's3.amazonaws.com', | ||
accessKey: 'YOUR-ACCESSKEYID', | ||
secretKey: 'YOUR-SECRETACCESSKEY' | ||
}) | ||
|
||
//Get Legalhold config | ||
s3Client.getObjectLegalHold('bucketName', 'objectName', {}, function(err, res) { | ||
if (err) { | ||
return console.log('Unable to get legal hold config for the object', err.message) // Print only the message. | ||
} | ||
console.log(res) | ||
}) | ||
|
||
//With versionId | ||
s3Client.getObjectLegalHold('bucketName', 'objectName', { versionId:'my-obj-version-uuid' }, function(err, res) { | ||
if (err) { | ||
return console.log('Unable to get legal hold config for the object', err.message) // Print only the message. | ||
} | ||
console.log(res) | ||
}) | ||
|
||
//Promise based version: | ||
const objectLegalHoldPromise = s3Client.getObjectLegalHold('bucketName', 'objectName', { versionId:'my-obj-version-uuid' }) | ||
objectLegalHoldPromise.then((data) => { | ||
console.log("Success...", data) | ||
}) | ||
.catch((e)=>{ | ||
// Print only the error message. if called on an object without object lock config. | ||
// e.g: "The specified object does not have a ObjectLock configuration" | ||
console.log(e.message) | ||
|
||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* MinIO Javascript Library for Amazon S3 Compatible Cloud Storage, (C) 2021 MinIO, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
// Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are | ||
// dummy values, please replace them with original values. | ||
|
||
var Minio = require('minio') | ||
|
||
var s3Client = new Minio.Client({ | ||
endPoint: 's3.amazonaws.com', | ||
accessKey: 'YOUR-ACCESSKEYID', | ||
secretKey: 'YOUR-SECRETACCESSKEY' | ||
}) | ||
|
||
//Set legal hold config of an object. | ||
s3Client.setObjectLegalHold('bucketName', 'objectName', {status:"ON"}, function(err, res) { | ||
if (err) { | ||
return console.log('Unable to set legal hold config for the object', err) | ||
} | ||
console.log('Success') | ||
}) | ||
|
||
//Set legal hold config of an object with versionId. | ||
s3Client.setObjectLegalHold('bucketName', 'objectName', { status:"ON", versionId:'my-obj-version-uuid' }, function(err, res) { | ||
if (err) { | ||
return console.log('Unable to set legal hold config for the object version', err) | ||
} | ||
console.log('Success') | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.