cloudflare
Version:
The official TypeScript library for the Cloudflare API
124 lines (107 loc) • 3.23 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 LoggingAPI from "./logging";
export class Logging extends APIResource {
/**
* Updates logging settings for the current Zero Trust account.
*/
update(
params: LoggingUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<ZeroTrustGatewayGatewayAccountLoggingSettings> {
const { account_id, ...body } = params;
return (
this._client.put(`/accounts/${account_id}/gateway/logging`, { body, ...options }) as Core.APIPromise<{
result: ZeroTrustGatewayGatewayAccountLoggingSettings;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Fetches the current logging settings for Zero Trust account.
*/
get(
params: LoggingGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<ZeroTrustGatewayGatewayAccountLoggingSettings> {
const { account_id } = params;
return (
this._client.get(`/accounts/${account_id}/gateway/logging`, options) as Core.APIPromise<{
result: ZeroTrustGatewayGatewayAccountLoggingSettings;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export interface ZeroTrustGatewayGatewayAccountLoggingSettings {
/**
* Redact personally identifiable information from activity logging (PII fields
* are: source IP, user email, user ID, device ID, URL, referrer, user agent).
*/
redact_pii?: boolean;
/**
* Logging settings by rule type.
*/
settings_by_rule_type?: ZeroTrustGatewayGatewayAccountLoggingSettings.SettingsByRuleType;
}
export namespace ZeroTrustGatewayGatewayAccountLoggingSettings {
/**
* Logging settings by rule type.
*/
export interface SettingsByRuleType {
/**
* Logging settings for DNS firewall.
*/
dns?: unknown;
/**
* Logging settings for HTTP/HTTPS firewall.
*/
http?: unknown;
/**
* Logging settings for Network firewall.
*/
l4?: unknown;
}
}
export interface LoggingUpdateParams {
/**
* Path param:
*/
account_id: string;
/**
* Body param: Redact personally identifiable information from activity logging
* (PII fields are: source IP, user email, user ID, device ID, URL, referrer, user
* agent).
*/
redact_pii?: boolean;
/**
* Body param: Logging settings by rule type.
*/
settings_by_rule_type?: LoggingUpdateParams.SettingsByRuleType;
}
export namespace LoggingUpdateParams {
/**
* Logging settings by rule type.
*/
export interface SettingsByRuleType {
/**
* Logging settings for DNS firewall.
*/
dns?: unknown;
/**
* Logging settings for HTTP/HTTPS firewall.
*/
http?: unknown;
/**
* Logging settings for Network firewall.
*/
l4?: unknown;
}
}
export interface LoggingGetParams {
account_id: string;
}
export namespace Logging {
export import ZeroTrustGatewayGatewayAccountLoggingSettings = LoggingAPI.ZeroTrustGatewayGatewayAccountLoggingSettings;
export import LoggingUpdateParams = LoggingAPI.LoggingUpdateParams;
export import LoggingGetParams = LoggingAPI.LoggingGetParams;
}