Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor setObjectLegalHold and getObjectLegalHold apis #1198

Merged
merged 7 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ The full API Reference is available here.
- [put-object-tagging.js](https://github.com/minio/minio-js/blob/master/examples/put-object-tagging.js)
- [get-object-tagging.js](https://github.com/minio/minio-js/blob/master/examples/get-object-tagging.js)
- [remove-object-tagging.js](https://github.com/minio/minio-js/blob/master/examples/remove-object-tagging.js)
- [set-object-legal-hold.js](https://github.com/minio/minio-js/blob/master/examples/set-object-legalhold.js)
- [get-object-legal-hold.js](https://github.com/minio/minio-js/blob/master/examples/get-object-legal-hold.js)
- [set-object-legal-hold.js](https://github.com/minio/minio-js/blob/master/examples/set-object-legalhold.mjs)
- [get-object-legal-hold.js](https://github.com/minio/minio-js/blob/master/examples/get-object-legal-hold.mjs)
- [compose-object.js](https://github.com/minio/minio-js/blob/master/examples/compose-object.js)
- [select-object-content.js](https://github.com/minio/minio-js/blob/master/examples/select-object-content.js)

Expand Down
62 changes: 20 additions & 42 deletions docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -1606,89 +1606,67 @@ minioClient.getObjectTagging(

<a name="getObjectLegalHold"></a>

### getObjectLegalHold(bucketName, objectName, getOpts [, callback])
### getObjectLegalHold(bucketName, objectName, getOpts)

Get legal hold on an object.

**Parameters**

| Param | Type | Description |
| --------------- | ---------- | ---------------------------------------------------------------------------------------------------------------------- |
| `bucketName` | _string_ | Name of the bucket. |
| `objectName` | _string_ | Name of the object. |
| `getOpts` | _object_ | Legal hold configuration options. e.g `{versionId:'my-version-uuid'}` defaults to `{}` . |
| `callback(err)` | _function_ | Callback function is called with non `null` value in case of error. If no callback is passed, a `Promise` is returned. |
| Param | Type | Description |
| ------------ | -------- | ----------------------------------------------------------------------------------------- |
| `bucketName` | _string_ | Name of the bucket. |
| `objectName` | _string_ | Name of the object. |
| `getOpts` | _object_ | Legal hold configuration options. e.g `{versionId:'my-version-uuid'}`. Defaults to `{}` . |

**Example 1**

Get Legal hold of an object.

```js
minioClient.getObjectLegalHold('bucketName', 'objectName', {}, function (err, res) {
if (err) {
return console.log('Unable to get legal hold config for the object', err.message)
}
console.log('Success', res)
})
const legalholdStatus = await minioClient.getObjectLegalHold('bucketName', 'objectName')
```

**Example 2**

Get Legal hold of an object with versionId.

```js
minioClient.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)
}
console.log('Success', res)
const legalholdStatus = await minioClient.getObjectLegalHold('bucketName', 'objectName', {
versionId: 'my-obj-version-uuid',
})
```

<a name="setObjectLegalHold"></a>

### setObjectLegalHold(bucketName, objectName, [,setOpts, callback])
### setObjectLegalHold(bucketName, objectName, [,setOpts])

Set legal hold on an object.

**Parameters**

| Param | Type | Description |
| --------------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| `bucketName` | _string_ | Name of the bucket. |
| `objectName` | _string_ | Name of the object. |
| `setOpts` | _object_ | Legal hold configuration options to set. e.g `{versionId:'my-version-uuid', status:'ON or OFF'}` defaults to `{status:'ON'}` if not passed. |
| `callback(err)` | _function_ | Callback function is called with non `null` value in case of error. If no callback is passed, a `Promise` is returned. |
| Param | Type | Description |
| ------------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| `bucketName` | _string_ | Name of the bucket. |
| `objectName` | _string_ | Name of the object. |
| `setOpts` | _object_ | Legal hold configuration options to set. e.g `{versionId:'my-version-uuid', status:'ON or OFF'}`. Defaults to `{status:'ON'}` if not passed. |

**Example 1**

Set Legal hold of an object.

```js
minioClient.setObjectLegalHold('bucketName', 'objectName', { Status: 'ON' }, function (err, res) {
if (err) {
return console.log('Unable to set legal hold config for the object', err.message)
}
console.log('Success')
})
const legalholdStatus = await minioClient.setObjectLegalHold('bucketName', 'objectName', { Status: 'ON' })
```

**Example 2**

Set Legal hold of an object with versionId.

```js
minioClient.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.message)
}
console.log('Success')
},
)
const legalholdStatus = await minioClient.setObjectLegalHold('bucketName', 'objectName', {
Status: 'ON',
versionId: 'my-obj-version-uuid',
})
```

<a name="composeObject"></a>
Expand Down
56 changes: 0 additions & 56 deletions examples/get-object-legal-hold.js

This file was deleted.

42 changes: 42 additions & 0 deletions examples/get-object-legal-hold.mjs
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.
import * as Minio from 'minio'

const s3Client = new Minio.Client({
endPoint: 's3.amazonaws.com',
accessKey: 'YOUR-ACCESSKEYID',
secretKey: 'YOUR-SECRETACCESSKEY',
})

try {
const legalHoldStatus = await s3Client.getObjectLegalHold('test-l-bucket', 'inspect-data.enc')
console.log('Success', legalHoldStatus)
} catch (err) {
console.log('Error', err.message)
}

// with version Id
try {
const legalHoldStatusOnVersion = await s3Client.getObjectLegalHold('test-l-bucket', 'inspect-data.enc', {
versionId: 'd24cbb1b-81c2-449d-b6d0-8a5f19b66b05',
})
console.log('Version Success', legalHoldStatusOnVersion)
} catch (err) {
console.log(err.message)
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,29 @@
// Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are
// dummy values, please replace them with original values.

var Minio = require('minio')
import * as Minio from 'minio'

var s3Client = new Minio.Client({
const 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)
}
try {
//Set legal hold config of an object.
await s3Client.setObjectLegalHold('bucketname', 'objectName')
console.log('Success')
})
} catch (err) {
console.log(err.message)
}

//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')
},
)
try {
//Set legal hold config of an object version.
await s3Client.setObjectLegalHold('bucketname', 'objectName', {
status: 'ON',
versionId: '67d3a60d-e837-4218-96d3-44733cdc7c6f',
})
console.log('Success')
} catch (err) {
console.log(err.message)
}
Loading
Loading