Added V0 Registry API
[multicloud/azure.git] / azure / multicloud_azure / swagger / compute_utils.py
1 # Copyright (c) 2018 Amdocs
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
13 import six
14
15
16 def extra_specs_formatter(extra_specs):
17     return [{"keyName": k, "value": v}
18             for k, v in six.iteritems(extra_specs.extra_specs)]
19
20
21 def convert_vmsize_aai(vmsize):
22
23     body = {
24         'name': vmsize.name,
25         'vcpus': vmsize.number_of_cores,
26         'disk': vmsize.os_disk_size_in_mb,
27         'ram': vmsize.memory_in_mb
28     }
29     return body