Files
python-barbicanclient/examples/create_order.py
Alex Gaynor 9c45a795c4 Fixed typos in the example files
Change-Id: I89bf6269f6c88d839ffce08b81b0fe3afe2954b4
2014-06-11 07:10:23 -07:00

78 lines
2.1 KiB
Python

import argparse
from barbicanclient import client
IDENTITY = 'https://identity.api.rackspacecloud.com/v2.0'
ENDPOINT = 'https://barbican.api.rackspacecloud.com/v1/'
def connect(username, password, tenant, endpoint):
connection = client.Connection(IDENTITY,
username,
password,
tenant,
endpoint=endpoint)
return connection
def parse_args():
parser = argparse.ArgumentParser(
description='Testing code for creating barbican order.'
)
parser.add_argument(
'--username',
help='The keystone username used for authentication'
)
parser.add_argument(
'--password',
help='The keystone password used for authentication'
)
parser.add_argument(
'--tenant',
help='The keystone tenant used for authentication'
)
parser.add_argument(
'--keystone',
default=IDENTITY,
help='The keystone endpoint used for authentication'
)
parser.add_argument(
'--endpoint',
default=ENDPOINT,
help='The barbican endpoint to test against'
)
parser.add_argument(
'--name',
help='Name of secret'
)
parser.add_argument(
'--mime-type',
help='MIME type of secret to create'
)
parser.add_argument(
'--algorithm',
help='Algorithm of secret to create'
)
parser.add_argument(
'--bit-length',
help='Bit length of secret to create'
)
parser.add_argument(
'--cypher-type',
help='Cypher type of secret to create'
)
args = parser.parse_args()
return args
if __name__ == '__main__':
args = parse_args()
conn = connect(args.username, args.password, args.tenant, args.endpoint)
order = conn.create_order(args.name,
args.mime_type,
args.algorithm,
args.bit_length,
args.cypher_type)
print order