-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new sync-policy related params to boto3 extension
Signed-off-by: Soumya Koduri <[email protected]>
- Loading branch information
1 parent
8dc5337
commit bbf0393
Showing
2 changed files
with
73 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/usr/bin/python | ||
|
||
from __future__ import print_function | ||
from botocore.client import Config | ||
from pprint import pprint | ||
|
||
import boto3 | ||
import json | ||
|
||
|
||
# endpoint and keys from vstart | ||
endpoint = 'http://127.0.0.1:8101' | ||
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, | ||
config=Config(parameter_validation=False)) | ||
|
||
response = client.put_bucket_replication( | ||
Bucket='sample-bucket', | ||
ReplicationConfiguration={ | ||
'Role': '', | ||
'Rules': [ | ||
{ | ||
'ID': 'sample-bucket-rule', | ||
"Status": "Enabled", | ||
"Filter" : { "Prefix": ""}, | ||
"Source": { "Zones": ["zg1-1"] }, | ||
"Destination": {"Zones": ["zg1-1", "zg1-2"], "Bucket": "*"} | ||
} | ||
] | ||
} | ||
) | ||
|
||
pprint(response) | ||
|
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