cloudflare
Version:
The official TypeScript library for the Cloudflare API
90 lines (78 loc) • 2.64 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import * as Core from "../../../core";
import { APIResource } from "../../../resource";
import * as AlwaysUseHTTPSAPI from "./always-use-https";
export class AlwaysUseHTTPS extends APIResource {
/**
* Reply to all requests for URLs that use "http" with a 301 redirect to the
* equivalent "https" URL. If you only want to redirect for a subset of requests,
* consider creating an "Always use HTTPS" page rule.
*/
edit(params: AlwaysUseHTTPSEditParams, options?: Core.RequestOptions): Core.APIPromise<AlwaysUseHTTPS> {
const { zone_id, ...body } = params;
return (
this._client.patch(`/zones/${zone_id}/settings/always_use_https`, {
body,
...options,
}) as Core.APIPromise<{ result: AlwaysUseHTTPS }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Reply to all requests for URLs that use "http" with a 301 redirect to the
* equivalent "https" URL. If you only want to redirect for a subset of requests,
* consider creating an "Always use HTTPS" page rule.
*/
get(params: AlwaysUseHTTPSGetParams, options?: Core.RequestOptions): Core.APIPromise<AlwaysUseHTTPS> {
const { zone_id } = params;
return (
this._client.get(`/zones/${zone_id}/settings/always_use_https`, options) as Core.APIPromise<{
result: AlwaysUseHTTPS;
}>
)._thenUnwrap((obj) => obj.result);
}
}
/**
* Reply to all requests for URLs that use "http" with a 301 redirect to the
* equivalent "https" URL. If you only want to redirect for a subset of requests,
* consider creating an "Always use HTTPS" page rule.
*/
export interface AlwaysUseHTTPS {
/**
* ID of the zone setting.
*/
id: 'always_use_https';
/**
* Current value of the zone setting.
*/
value: 'on' | 'off';
/**
* Whether or not this setting can be modified for this zone (based on your
* Cloudflare plan level).
*/
editable?: true | false;
/**
* last time this setting was modified.
*/
modified_on?: string | null;
}
export interface AlwaysUseHTTPSEditParams {
/**
* Path param: Identifier
*/
zone_id: string;
/**
* Body param: Value of the zone setting.
*/
value: 'on' | 'off';
}
export interface AlwaysUseHTTPSGetParams {
/**
* Identifier
*/
zone_id: string;
}
export namespace AlwaysUseHTTPS {
export import AlwaysUseHTTPS = AlwaysUseHTTPSAPI.AlwaysUseHTTPS;
export import AlwaysUseHTTPSEditParams = AlwaysUseHTTPSAPI.AlwaysUseHTTPSEditParams;
export import AlwaysUseHTTPSGetParams = AlwaysUseHTTPSAPI.AlwaysUseHTTPSGetParams;
}