Skip to main content

relyingparty_auth_uri

Creates, updates, deletes, gets or lists a relyingparty_auth_uri resource.

Overview

Namerelyingparty_auth_uri
TypeResource
Idgoogle.identitytoolkit.relyingparty_auth_uri

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_auth_uriINSERTCreates the URI used by the IdP to authenticate the user.

INSERT example

Use the following StackQL query and manifest file to create a new relyingparty_auth_uri resource.

/*+ create */
INSERT INTO google.identitytoolkit.relyingparty_auth_uri (
appId,
authFlowType,
clientId,
context,
continueUri,
customParameter,
hostedDomain,
identifier,
oauthConsumerKey,
oauthScope,
openidRealm,
otaApp,
providerId,
sessionId,
tenantId,
tenantProjectNumber
)
SELECT
'{{ appId }}',
'{{ authFlowType }}',
'{{ clientId }}',
'{{ context }}',
'{{ continueUri }}',
'{{ customParameter }}',
'{{ hostedDomain }}',
'{{ identifier }}',
'{{ oauthConsumerKey }}',
'{{ oauthScope }}',
'{{ openidRealm }}',
'{{ otaApp }}',
'{{ providerId }}',
'{{ sessionId }}',
'{{ tenantId }}',
'{{ tenantProjectNumber }}'
;