ceph/examples/boto3/get_notification.py
Or Friedmann 706e077a79 rgw: send headers of quota settings
Make the quota settings visible to s3 and swift users
rgw send headers of quota settings

Fixes: https://tracker.ceph.com/issues/47752

Signed-off-by: Or Friedmann <ofriedma@redhat.com>
2020-10-15 18:54:47 +03:00

29 lines
826 B
Python
Executable File

#!/usr/bin/python
import boto3
import sys
if len(sys.argv) != 3:
print('Usage: ' + sys.argv[0] + ' <bucket> <notification>')
sys.exit(1)
# bucket name as first argument
bucketname = sys.argv[1]
# notification name as second argument
notification_name = sys.argv[2]
# endpoint and keys from vstart
endpoint = 'http://127.0.0.1:8000'
access_key='0555b35654ad1656d804'
secret_key='h7GhxuBLTrlhVUyxSPUKUV8r/2EI4ngqJxD7iBdBYLhwluN30JaT3Q=='
client = boto3.client('s3',
endpoint_url=endpoint,
aws_access_key_id=access_key,
aws_secret_access_key=secret_key)
# getting a specific notification configuration is an extension to AWS S3 API
print(client.get_bucket_notification_configuration(Bucket=bucketname,
Notification=notification_name))