Back to index
Summary
Modifies an existing OpenID Connect configuration.openIDConnectConfigurationNameStringrequiredThe name of the OpenID Connect provider. authorizationEndpointStringoptionalURL for the authorization endpoint. clientIdStringoptionalClient ID used to uniquely identify the SDA server with the OIDC provider. clientSecretStringoptionalSecret used to request token ID for the authenticated used from the OIDC provider. configurationUrlStringoptionalThe OpenID Connect provider's well-known configuration endpoint. If specified, then the other endpoints will be dynamically discovered when refreshConfiguration is set to true. If using an IPv6 address, enclose the address in square brackets. Example: [<IPv6-ADDRESS>] .descriptionStringoptionalComment text describing this object that is not interpreted at all by CloudBees CD/RO. emailIdTokenClaimStringoptionalClaim name in the token ID used to retrieve the user email. enableSingleLogoutBooleanoptionalWhether the user will be logged out from the OIDC provider when the user logs out of SDA. enabledBooleanoptionalWhether this OpenID Connect configuration is enabled. Defaults to true. fullUserNameIdTokenClaimStringoptionalClaim name in the token ID used to retrieve the user full name. idTokenJwsAlgsStringoptionalThe supported ID token JWS algorithms separated by comma. jwkProviderEndpointStringoptionalURL for the JWK keys endpoint. logoutEndpointStringoptionalURL for the logout endpoint. newNameStringoptionalThe new name for an existing object that is being renamed. refreshConfigurationBooleanoptionalWhether the endpoint attributes such as authorizationEndpoint, tokenEndpoint and other configuration details should be updated using the configurationURL. If true, then configurationURL must be set. serverUrlStringoptionalURL for the service host. If using an IPv6 address, enclose the address in square brackets. Example: [<IPv6-ADDRESS>] .ssoProviderStringoptionalUsed to identify the SSO provider for displaying the branded SSO button on the login page. Possible values: "GOOGLE" , "KEYCLOAK" , "OKTA" , "OTHER" tokenEndpointStringoptionalURL for the token endpoint. userGroupsIdTokenClaimStringoptionalClaim name in the token ID used to retrieve the groups that the user belongs to. userNameIdTokenClaimStringoptionalClaim name in the token ID used to retrieve the user name. |
Usage
Groovy
import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.modifyOpenIDConnectConfiguration( openIDConnectConfigurationName: "test-openIDConnectConfigurationName" /* optional arguments */ )