This documentation is for an older version of GoodData.
Go to the latest version of this article.
catalog_organization.
update_oidc_parameters
update_oidc_parameters(oauth_issuer_location: Optional[str] = None, oauth_client_id: Optional[str] = None, oauth_client_secret: Optional[str] = None)
Updates the OIDC parameters for a given users.
Parameters
name | type | description |
---|---|---|
oauth_issuer_location | Optional[string] | Issuer location. Defaults to None. |
oauth_client_id | Optional[string] | Public client identifier. Defaults to None. |
oauth_client_secret | Optional[string] | Client secret. Defaults to None. |
Returns
None
Raises
type | description |
---|---|
ValueError | Parameters were not strictly all none or all string. |
Example
# Update OIDC provider
sdk.catalog_organization.update_oidc_parameters(oauth_client_id="oauth_client_id",
oauth_issuer_location="oauth_issuer_location",
oauth_client_secret="oauth_client_secret")