relyingparty_auth_uri
Creates, updates, deletes, gets or lists a relyingparty_auth_uri
resource.
Overview
Name | relyingparty_auth_uri |
Type | Resource |
Id | google.identitytoolkit.relyingparty_auth_uri |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
create_auth_uri | INSERT |
| Creates 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.
- All Properties
- Manifest
/*+ 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 }}'
;
- name: your_resource_model_name
props:
- name: appId
value: string
- name: authFlowType
value: string
- name: clientId
value: string
- name: context
value: string
- name: continueUri
value: string
- name: customParameter
value: object
- name: hostedDomain
value: string
- name: identifier
value: string
- name: oauthConsumerKey
value: string
- name: oauthScope
value: string
- name: openidRealm
value: string
- name: otaApp
value: string
- name: providerId
value: string
- name: sessionId
value: string
- name: tenantId
value: string
- name: tenantProjectNumber
value: string