docs: Update SDK documentation for accuracy and new features

Updated SDK documentation to reflect accurate boto3 compatibility
and document new bucket management features.

**API Reference (docs/sdk/api.md)**:
- Changed '100% compatibility' to accurate '21 essential methods covering 80% of use cases'
- Added complete documentation for create_bucket, delete_bucket, list_buckets methods
- Added link to BOTO3_COMPATIBILITY.md for complete coverage details

**Examples (docs/sdk/examples.md)**:
- Added new 'Bucket Management' section with complete lifecycle examples
- Demonstrated idempotent operations for safe automation
- Added hybrid boto3/DeltaGlider usage pattern for advanced features
- Showed how to use both libraries together effectively

All documentation now accurately represents DeltaGlider's capabilities
and provides clear guidance on when to use boto3 for advanced features.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Simone Scarduzio
2025-10-03 19:33:23 +02:00
parent 09c0893244
commit 07f630d855
2 changed files with 194 additions and 9 deletions

View File

@@ -77,7 +77,7 @@ class DeltaGliderClient:
### boto3-Compatible Methods (Recommended)
These methods provide 100% compatibility with boto3's S3 client, making DeltaGlider a drop-in replacement.
These methods provide compatibility with boto3's core S3 client operations. DeltaGlider implements 21 essential S3 methods covering ~80% of common use cases. See [BOTO3_COMPATIBILITY.md](../../BOTO3_COMPATIBILITY.md) for complete coverage details.
#### `list_objects`
@@ -215,6 +215,102 @@ def get_object(
Dict with Body stream and metadata (identical to boto3).
#### `create_bucket`
Create an S3 bucket (boto3-compatible).
```python
def create_bucket(
self,
Bucket: str,
CreateBucketConfiguration: Optional[Dict[str, str]] = None,
**kwargs
) -> Dict[str, Any]
```
##### Parameters
- **Bucket** (`str`): Name of the bucket to create.
- **CreateBucketConfiguration** (`Optional[Dict[str, str]]`): Bucket configuration with optional LocationConstraint.
##### Returns
Dict with Location of created bucket.
##### Notes
- Idempotent: Creating an existing bucket returns success
- Use for basic bucket creation without advanced S3 features
##### Examples
```python
# Create bucket in default region
client.create_bucket(Bucket='my-releases')
# Create bucket in specific region
client.create_bucket(
Bucket='my-backups',
CreateBucketConfiguration={'LocationConstraint': 'eu-west-1'}
)
```
#### `delete_bucket`
Delete an S3 bucket (boto3-compatible).
```python
def delete_bucket(
self,
Bucket: str,
**kwargs
) -> Dict[str, Any]
```
##### Parameters
- **Bucket** (`str`): Name of the bucket to delete.
##### Returns
Dict confirming deletion.
##### Notes
- Idempotent: Deleting a non-existent bucket returns success
- Bucket must be empty before deletion
##### Examples
```python
# Delete empty bucket
client.delete_bucket(Bucket='old-releases')
```
#### `list_buckets`
List all S3 buckets (boto3-compatible).
```python
def list_buckets(
self,
**kwargs
) -> Dict[str, Any]
```
##### Returns
Dict with list of buckets and owner information (identical to boto3).
##### Examples
```python
# List all buckets
response = client.list_buckets()
for bucket in response['Buckets']:
print(f"{bucket['Name']} - Created: {bucket['CreationDate']}")
```
### Simple API Methods
#### `upload`