public class UpdateUserOIDCConfigRequest extends AbstractModel
| Constructor and Description | 
|---|
| UpdateUserOIDCConfigRequest() | 
| UpdateUserOIDCConfigRequest(UpdateUserOIDCConfigRequest source)NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getAuthorizationEndpoint()Get OpenID Connect IdP authorization endpoint. | 
| String | getClientId()Get Client ID registered with the OpenID Connect IdP. | 
| String | getDescription()Get Description | 
| String | getIdentityKey()Get Signature public key, which is used to verify the OpenID Connect IdP's ID token and must be Base64-encoded. | 
| String | getIdentityUrl()Get OpenID Connect IdP URL. | 
| String | getMappingFiled()Get Mapping field name. | 
| String | getResponseMode()Get Authorization response mode. | 
| String | getResponseType()Get Authorization response type, which is always `id_token`. | 
| String[] | getScope()Get Authorization information scope. | 
| void | setAuthorizationEndpoint(String AuthorizationEndpoint)Set OpenID Connect IdP authorization endpoint. | 
| void | setClientId(String ClientId)Set Client ID registered with the OpenID Connect IdP. | 
| void | setDescription(String Description)Set Description | 
| void | setIdentityKey(String IdentityKey)Set Signature public key, which is used to verify the OpenID Connect IdP's ID token and must be Base64-encoded. | 
| void | setIdentityUrl(String IdentityUrl)Set OpenID Connect IdP URL. | 
| void | setMappingFiled(String MappingFiled)Set Mapping field name. | 
| void | setResponseMode(String ResponseMode)Set Authorization response mode. | 
| void | setResponseType(String ResponseType)Set Authorization response type, which is always `id_token`. | 
| void | setScope(String[] Scope)Set Authorization information scope. | 
| void | toMap(HashMap<String,String> map,
     String prefix)Internal implementation, normal users should not use it. | 
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonStringpublic UpdateUserOIDCConfigRequest()
public UpdateUserOIDCConfigRequest(UpdateUserOIDCConfigRequest source)
public String getIdentityUrl()
public void setIdentityUrl(String IdentityUrl)
IdentityUrl - OpenID Connect IdP URL.
It corresponds to the value of the `issuer` field in the `Openid-configuration` provided by the enterprise IdP.public String getIdentityKey()
public void setIdentityKey(String IdentityKey)
IdentityKey - Signature public key, which is used to verify the OpenID Connect IdP's ID token and must be Base64-encoded. For the security of your account, we recommend you rotate it regularly.public String getClientId()
public void setClientId(String ClientId)
ClientId - Client ID registered with the OpenID Connect IdP.public String getAuthorizationEndpoint()
public void setAuthorizationEndpoint(String AuthorizationEndpoint)
AuthorizationEndpoint - OpenID Connect IdP authorization endpoint. It corresponds to the value of the `authorization_endpoint` field in the `Openid-configuration` provided by the enterprise IdP.public String getResponseType()
public void setResponseType(String ResponseType)
ResponseType - Authorization response type, which is always `id_token`.public String getResponseMode()
public void setResponseMode(String ResponseMode)
ResponseMode - Authorization response mode. Valid values: form_post (recommended); fragment.public String getMappingFiled()
public void setMappingFiled(String MappingFiled)
MappingFiled - Mapping field name. It indicates which field in the `id_token` of the IdP is mapped to the username of a sub-user. It is usually the `sub` or `name` fieldpublic String[] getScope()
public void setScope(String[] Scope)
Scope - Authorization information scope. Valid values: openid (default); email; profile.public String getDescription()
public void setDescription(String Description)
Description - DescriptionCopyright © 2022. All rights reserved.