Class SamlIdpConfig
SAML IDP (identity provider) configuration.
Implements
Inherited Members
Namespace: Google.Apis.CloudIdentity.v1beta1.Data
Assembly: Google.Apis.CloudIdentity.v1beta1.dll
Syntax
public class SamlIdpConfig : IDirectResponseSchema
Properties
ChangePasswordUri
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
.
Declaration
[JsonProperty("changePasswordUri")]
public virtual string ChangePasswordUri { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityId
Required. The SAML Entity ID of the identity provider.
Declaration
[JsonProperty("entityId")]
public virtual string EntityId { get; set; }
Property Value
Type | Description |
---|---|
string |
LogoutRedirectUri
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
.
Declaration
[JsonProperty("logoutRedirectUri")]
public virtual string LogoutRedirectUri { get; set; }
Property Value
Type | Description |
---|---|
string |
SingleSignOnServiceUri
Required. 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.
Declaration
[JsonProperty("singleSignOnServiceUri")]
public virtual string SingleSignOnServiceUri { get; set; }
Property Value
Type | Description |
---|---|
string |