Question on -- get_ads_provider_search()
globeid-dev opened this issue · 4 comments
Hello,
I like to know what's the expected value for id-arg in the api.
It certainly is not the user-id that I had used to get the API-basic HTTP authorization. How/where do I find/get the value for the id.
Thanks
'# create an instance of the API class
api_instance = isi_sdk_8_2_2.AuthProvidersApi(isi_sdk_8_2_2.ApiClient(configuration))
id = 'id_example'
scope = 'scope_example'
try:
api_response = api_instance.get_ads_provider_domains(id, scope=scope)
pprint(api_response)`
I believe it is the name of an AD auth provider
(e.g. see available/valid options with isi auth ads list
or isi auth ads list -v | grep Name
).
Thanks.
Do you know of a API in isilon-python-sdk that can provide such AD-auth-provider ?.
Try
list_providers_ads
:
https://github.com/Isilon/isilon_sdk_python/blob/Isilon_SDK_v0.2.11/isi_sdk_8_2_2/docs/AuthApi.md#list_providers_ads
Thank you