Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BasicAuthentication

import type { BasicAuthentication } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

The authentication parameters to provide to the specified resource or URL that requires a username and password. Currently, only Basic HTTP authentication (https://tools.ietf.org/html/rfc7617) is supported in Uptime checks.

interface BasicAuthentication {
password?: string;
username?: string;
}

§Properties

§
password?: string
[src]

The password to use when authenticating with the HTTP server.

§
username?: string
[src]

The username to use when authenticating with the HTTP server.