// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../resource'; import * as Core from '../core'; import * as Shared from './shared'; export class SecurityTXT extends APIResource { /** * Update security.txt */ update( params: SecurityTXTUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id, ...body } = params; return this._client.put(`/zones/${zone_id}/security-center/securitytxt`, { body, ...options }); } /** * Delete security.txt */ delete( params: SecurityTXTDeleteParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id } = params; return this._client.delete(`/zones/${zone_id}/security-center/securitytxt`, options); } /** * Get security.txt */ get(params: SecurityTXTGetParams, options?: Core.RequestOptions): Core.APIPromise { const { zone_id } = params; return ( this._client.get(`/zones/${zone_id}/security-center/securitytxt`, options) as Core.APIPromise<{ result: SecurityTXTGetResponse; }> )._thenUnwrap((obj) => obj.result); } } export interface SecurityTXTUpdateResponse { errors: Array; messages: Array; /** * Whether the API call was successful */ success: true; } export interface SecurityTXTDeleteResponse { errors: Array; messages: Array; /** * Whether the API call was successful */ success: true; } export interface SecurityTXTGetResponse { acknowledgments?: Array; canonical?: Array; contact?: Array; enabled?: boolean; encryption?: Array; expires?: string; hiring?: Array; policy?: Array; preferredLanguages?: string; } export interface SecurityTXTUpdateParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: */ acknowledgments?: Array; /** * Body param: */ canonical?: Array; /** * Body param: */ contact?: Array; /** * Body param: */ enabled?: boolean; /** * Body param: */ encryption?: Array; /** * Body param: */ expires?: string; /** * Body param: */ hiring?: Array; /** * Body param: */ policy?: Array; /** * Body param: */ preferredLanguages?: string; } export interface SecurityTXTDeleteParams { /** * Identifier */ zone_id: string; } export interface SecurityTXTGetParams { /** * Identifier */ zone_id: string; }