UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

93 lines 4.65 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.CustomHostnameListResponsesV4PagePaginationArray = exports.CustomHostnames = void 0; const resource_1 = require("cloudflare/resource"); const CustomHostnamesAPI = __importStar(require("cloudflare/resources/custom-hostnames/custom-hostnames")); const FallbackOriginAPI = __importStar(require("cloudflare/resources/custom-hostnames/fallback-origin")); const pagination_1 = require("cloudflare/pagination"); class CustomHostnames extends resource_1.APIResource { constructor() { super(...arguments); this.fallbackOrigin = new FallbackOriginAPI.FallbackOrigin(this._client); } /** * Add a new custom hostname and request that an SSL certificate be issued for it. * One of three validation methods—http, txt, email—should be used, with 'http' * recommended if the CNAME is already in place (or will be soon). Specifying * 'email' will send an email to the WHOIS contacts on file for the base domain * plus hostmaster, postmaster, webmaster, admin, administrator. If http is used * and the domain is not already pointing to the Managed CNAME host, the PATCH * method must be used once it is (to complete validation). */ create(params, options) { const { zone_id, ...body } = params; return this._client.post(`/zones/${zone_id}/custom_hostnames`, { body, ...options })._thenUnwrap((obj) => obj.result); } /** * List, search, sort, and filter all of your custom hostnames. */ list(params, options) { const { zone_id, ...query } = params; return this._client.getAPIList(`/zones/${zone_id}/custom_hostnames`, CustomHostnameListResponsesV4PagePaginationArray, { query, ...options }); } /** * Delete Custom Hostname (and any issued SSL certificates) */ delete(customHostnameId, params, options) { const { zone_id } = params; return this._client.delete(`/zones/${zone_id}/custom_hostnames/${customHostnameId}`, options); } /** * Modify SSL configuration for a custom hostname. When sent with SSL config that * matches existing config, used to indicate that hostname should pass domain * control validation (DCV). Can also be used to change validation type, e.g., from * 'http' to 'email'. */ edit(customHostnameId, params, options) { const { zone_id, ...body } = params; return this._client.patch(`/zones/${zone_id}/custom_hostnames/${customHostnameId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Custom Hostname Details */ get(customHostnameId, params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/custom_hostnames/${customHostnameId}`, options)._thenUnwrap((obj) => obj.result); } } exports.CustomHostnames = CustomHostnames; class CustomHostnameListResponsesV4PagePaginationArray extends pagination_1.V4PagePaginationArray { } exports.CustomHostnameListResponsesV4PagePaginationArray = CustomHostnameListResponsesV4PagePaginationArray; (function (CustomHostnames) { CustomHostnames.CustomHostnameListResponsesV4PagePaginationArray = CustomHostnamesAPI.CustomHostnameListResponsesV4PagePaginationArray; CustomHostnames.FallbackOrigin = FallbackOriginAPI.FallbackOrigin; })(CustomHostnames = exports.CustomHostnames || (exports.CustomHostnames = {})); //# sourceMappingURL=custom-hostnames.js.map