Isilon / isilon_sdk_python

Official generated source of the Isilon SDK Python language bindings.
36 stars 33 forks source link

Question on -- get_ads_provider_search() #42

Closed globeid-dev closed 3 years ago

globeid-dev commented 3 years ago

https://github.com/Isilon/isilon_sdk_python/blob/Isilon_SDK_v0.2.11/isi_sdk_8_2_2/docs/AuthProvidersApi.md#get_ads_provider_domain

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)`

tucked commented 3 years ago

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).

globeid-dev commented 3 years ago

Thanks.

Do you know of a API in isilon-python-sdk that can provide such AD-auth-provider ?.

tucked commented 3 years ago

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

globeid-dev commented 3 years ago

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