Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 6.71 KB

getdomainconfigresponsebody.md

File metadata and controls

19 lines (14 loc) · 6.71 KB

GetDomainConfigResponseBody

Example Usage

import { GetDomainConfigResponseBody } from "@vercel/sdk/models/getdomainconfigop.js";

let value: GetDomainConfigResponseBody = {
  misconfigured: false,
};

Fields

Field Type Required Description
configuredBy models.ConfiguredBy How we see the domain's configuration. - CNAME: Domain has a CNAME pointing to Vercel. - A: Domain's A record is resolving to Vercel. - http: Domain is resolving to Vercel but may be behind a Proxy. - dns-01: Domain is not resolving to Vercel but dns-01 challenge is enabled. - null: Domain is not resolving to Vercel.
acceptedChallenges models.AcceptedChallenges[] Which challenge types the domain can use for issuing certs.
misconfigured boolean ✔️ Whether or not the domain is configured AND we can automatically generate a TLS certificate.