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

Http

import type { Http } from "https://googleapis.deno.dev/v1/serviceconsumermanagement:v1.ts";

Defines the HTTP configuration for an API service. It contains a list of HttpRule, each specifying the mapping of an RPC method to one or more HTTP REST API methods.

interface Http {
fullyDecodeReservedExpansion?: boolean;
rules?: HttpRule[];
}

§Properties

§
fullyDecodeReservedExpansion?: boolean
[src]

When set to true, URL path parameters will be fully URI-decoded except in cases of single segment matches in reserved expansion, where "%2F" will be left encoded. The default behavior is to not decode RFC 6570 reserved characters in multi segment matches.

§
rules?: HttpRule[]
[src]

A list of HTTP configuration rules that apply to individual API methods. NOTE: All service configuration rules follow "last one wins" order.