예제 #1
0
 def ensure_tld_exists(self, tld='com'):
     if cfg.CONF.testconfig.no_admin_setup:
         return
     try:
         tld_model = TLDModel.from_dict({'name': tld})
         TLDClient.as_user('admin').post_tld(tld_model)
     except exceptions.Conflict:
         pass
예제 #2
0
파일: base.py 프로젝트: imerali/designate
 def ensure_tld_exists(self, tld='com'):
     if cfg.CONF.testconfig.no_admin_setup:
         return
     try:
         tld_model = TLDModel.from_dict({'name': tld})
         TLDClient.as_user('admin').post_tld(tld_model)
     except exceptions.Conflict:
         pass
예제 #3
0
def random_tld_data():
    data = {"name": random_string(prefix='tld')}
    return TLDModel.from_dict(data)
예제 #4
0
def random_tld_data():
    data = {
        "name": random_string(prefix='tld')
    }
    return TLDModel.from_dict(data)