replace()
Replace an access provider.
Description
The replace()
method replaces a provider with the supplied object.
This method removes any fields on the existing AccessProvider that are
not supplied by the object, with some exceptions. The audience
field
which is read-only, and the immutable metadata fields coll
and ts
are
not removed and cannot be replaced.
The object must include the required fields.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
data |
Object describing the access provider. |
data fields
Name | Type | Required | Description |
---|---|---|---|
name |
Yes |
Unique access provider name. |
|
issuer |
Unique IdP HTTPS URL that you are using to grant access to
Fauna. This is typically an account or application URL supplied
by your IdP.
Use an exact copy of your IdP |
||
jwks_uri |
Valid HTTPS URI, which serves the JSON Web Key (JWK) that signs the JSON Web Tokens (JWT) from your IdP. |
Examples
{
name: "justFineAccessProvider",
coll: AccessProvider,
ts: Time("2023-07-28T03:50:44.400Z"),
issuer: "https://fauna.auth0.com",
roles: "admin",
audience: "https://db.fauna.com/db/ywtfhw4poyynr",
jwks_uri: "https://fauna.auth0.com/.well-known/jwks.json"
}
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!