-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from Isilon/template_fix
Fixed bug in setter for required params
- Loading branch information
Showing
6 changed files
with
45 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"packageName": "isi_sdk", | ||
"packageVersion": "1.0.1" | ||
"packageVersion": "1.0.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import isi_sdk as isi_sdk | ||
from isi_sdk.rest import ApiException | ||
import urllib3 | ||
import test_constants | ||
|
||
from pprint import pprint | ||
|
||
urllib3.disable_warnings() | ||
|
||
# configure username and password | ||
isi_sdk.configuration.username = test_constants.USERNAME | ||
isi_sdk.configuration.password = test_constants.PASSWORD | ||
isi_sdk.configuration.verify_ssl = test_constants.VERIFY_SSL | ||
|
||
# configure host | ||
host = test_constants.HOST | ||
api_client = isi_sdk.ApiClient(host) | ||
api_instance = isi_sdk.NetworkGroupnetsApi(api_client) | ||
|
||
try: | ||
|
||
api_response = \ | ||
api_instance.list_subnets_subnet_pools('groupnet0', 'subnet0') | ||
pprint(api_response) | ||
|
||
except ApiException as e: | ||
|
||
print "Exception when calling list_subnets_subnet_pools: %s\n" % e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters