Skip to content

Commit

Permalink
Add missing regen files
Browse files Browse the repository at this point in the history
  • Loading branch information
jianghaolu committed Apr 20, 2016
1 parent 0e823eb commit e133521
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,13 @@ def __init__(
self, subscription_id, dns_suffix, filepath=None):

if subscription_id is None:
raise ValueError('subscription_id must not be None.')
raise ValueError("Parameter 'subscription_id' must not be None.")
if not isinstance(subscription_id, str):
raise TypeError("Parameter 'subscription_id' must be str.")
if dns_suffix is None:
raise ValueError('dns_suffix must not be None.')
raise ValueError("Parameter 'dns_suffix' must not be None.")
if not isinstance(dns_suffix, str):
raise TypeError("Parameter 'dns_suffix' must be str.")
base_url = '{vault}{secret}{dnsSuffix}'

super(AutoRestParameterizedCustomHostTestClientConfiguration, self).__init__(base_url, filepath)
Expand Down

0 comments on commit e133521

Please sign in to comment.