Skip to main content
Module

x/gesso/src/mod.ts>AuthenticationProviders

A TypeScript API client for Canvas LMS
Latest
class AuthenticationProviders
extends BaseApi
import { AuthenticationProviders } from "https://deno.land/x/gesso@v0.1.2/src/mod.ts";

Constructors

new
AuthenticationProviders(config: Configuration)

Methods

addAuthenticationProvider(account_id: string, body?: unknown): Promise<AuthenticationProvider>
deleteAuthenticationProvider(
account_id: string,
id: string,
body?: unknown,
): Promise<Scope>
getAuthenticationProvider(
account_id: string,
id: string,
body?: unknown,
): Promise<AuthenticationProvider>
listAuthenticationProviders(account_id: string, body?: unknown): Promise<AuthenticationProvider[]>
showAccountAuthSettings(account_id: string, body?: unknown): Promise<SSOSettings>
updateAccountAuthSettings(account_id: string, body?: unknown): Promise<SSOSettings>
updateAuthenticationProvider(
account_id: string,
id: string,
body?: unknown,
): Promise<AuthenticationProvider>