X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=systest%2Flib%2Fosm%2Fosm.py;fp=systest%2Flib%2Fosm%2Fosm.py;h=8798be898167048e841fa48190b9e5d521b64ecf;hb=08f042835a504f0bafe1cb83fc8f5008502ade78;hp=0000000000000000000000000000000000000000;hpb=61d476da11d9da3a22865662d93ade39227df413;p=osm%2Fdevops.git diff --git a/systest/lib/osm/osm.py b/systest/lib/osm/osm.py new file mode 100644 index 00000000..8798be89 --- /dev/null +++ b/systest/lib/osm/osm.py @@ -0,0 +1,32 @@ +# Copyright 2017 Sandvine +# +# All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + + +from osmclient.client import client + +class Osm(): + def __init__(self,osmhost,descriptors_dir=None,vnfd_descriptors_list=None,nsd_descriptors_list=None,ns_name_prefix=None): + self._OsmApi=client.Client(host=osmhost) + self._descriptors_dir = descriptors_dir + self.vnfd_descriptors_list = vnfd_descriptors_list + self.nsd_descriptors_list = nsd_descriptors_list + self.ns_name_prefix = ns_name_prefix + + def get_api(self): + return self._OsmApi + + def get_descriptors_dir(self): + return self._descriptors_dir