SamlIdpConfigArgs

data class SamlIdpConfigArgs(val changePasswordUri: Output<String>? = null, val entityId: Output<String>, val logoutRedirectUri: Output<String>? = null, val singleSignOnServiceUri: Output<String>) : ConvertibleToJava<SamlIdpConfigArgs>

SAML IDP (identity provider) configuration.

Constructors

Link copied to clipboard
fun SamlIdpConfigArgs(changePasswordUri: Output<String>? = null, entityId: Output<String>, logoutRedirectUri: Output<String>? = null, singleSignOnServiceUri: Output<String>)

Functions

Link copied to clipboard
open override fun toJava(): SamlIdpConfigArgs

Properties

Link copied to clipboard
val changePasswordUri: Output<String>? = null

The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.

Link copied to clipboard
val entityId: Output<String>

The SAML Entity ID of the identity provider.

Link copied to clipboard
val logoutRedirectUri: Output<String>? = null

The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.

Link copied to clipboard

The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.