@vercel/sdk
Version:
<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>
1,869 lines • 55.8 kB
text/typescript
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import * as z from "zod/v3";
import { remap as remap$ } from "../lib/primitives.js";
import { safeParse } from "../lib/schemas.js";
import { ClosedEnum } from "../types/enums.js";
import { Result as SafeParseResult } from "../types/fp.js";
import * as types from "../types/primitives.js";
import { smartUnion } from "../types/smartUnion.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type GetFirewallConfigRequest = {
projectId: string;
/**
* The Team identifier to perform the request on behalf of.
*/
teamId?: string | undefined;
/**
* The Team slug to perform the request on behalf of.
*/
slug?: string | undefined;
/**
* The deployed configVersion for the firewall configuration
*/
configVersion: string;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSdAction =
{
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSdAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSdAction
>;
/**
* Scanner Detection - Detect and prevent reconnaissance activities from network scanning tools.
*/
export type GetFirewallConfigSd = {
active: boolean;
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSdAction;
};
export const GetFirewallConfigSecurityAction = {
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityAction = ClosedEnum<
typeof GetFirewallConfigSecurityAction
>;
/**
* Multipart Attack - Block attempts to bypass security controls using multipart/form-data encoding.
*/
export type GetFirewallConfigMa = {
active: boolean;
action: GetFirewallConfigSecurityAction;
};
export const GetFirewallConfigSecurityResponseAction = {
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponseAction = ClosedEnum<
typeof GetFirewallConfigSecurityResponseAction
>;
/**
* Local File Inclusion Attack - Prevent unauthorized access to local files through web applications.
*/
export type GetFirewallConfigLfi = {
active: boolean;
action: GetFirewallConfigSecurityResponseAction;
};
export const GetFirewallConfigSecurityResponse200Action = {
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200Action = ClosedEnum<
typeof GetFirewallConfigSecurityResponse200Action
>;
/**
* Remote File Inclusion Attack - Prohibit unauthorized upload or execution of remote files.
*/
export type GetFirewallConfigRfi = {
active: boolean;
action: GetFirewallConfigSecurityResponse200Action;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONAction = {
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONAction =
ClosedEnum<typeof GetFirewallConfigSecurityResponse200ApplicationJSONAction>;
/**
* Remote Execution Attack - Prevent unauthorized execution of remote scripts or commands.
*/
export type GetFirewallConfigRce = {
active: boolean;
action: GetFirewallConfigSecurityResponse200ApplicationJSONAction;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyAction =
{
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyAction
>;
/**
* PHP Attack - Safeguard against vulnerability exploits in PHP-based applications.
*/
export type GetFirewallConfigPhp = {
active: boolean;
action: GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyAction;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsAction =
{
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsAction
>;
/**
* Generic Attack - Provide broad protection from various undefined or novel attack vectors.
*/
export type GetFirewallConfigGen = {
active: boolean;
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsAction;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsXssAction =
{
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsXssAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsXssAction
>;
/**
* XSS Attack - Prevent injection of malicious scripts into trusted webpages.
*/
export type GetFirewallConfigXss = {
active: boolean;
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsXssAction;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSqliAction =
{
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSqliAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSqliAction
>;
/**
* SQL Injection Attack - Prohibit unauthorized use of SQL commands to manipulate databases.
*/
export type GetFirewallConfigSqli = {
active: boolean;
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSqliAction;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSfAction =
{
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSfAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSfAction
>;
/**
* Session Fixation Attack - Prevent unauthorized takeover of user sessions by enforcing unique session IDs.
*/
export type GetFirewallConfigSf = {
active: boolean;
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSfAction;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsJavaAction =
{
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsJavaAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsJavaAction
>;
/**
* Java Attack - Mitigate risks of exploitation targeting Java-based applications or components.
*/
export type GetFirewallConfigJava = {
active: boolean;
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsJavaAction;
};
/**
* Custom Ruleset
*/
export type GetFirewallConfigCrs = {
/**
* Scanner Detection - Detect and prevent reconnaissance activities from network scanning tools.
*/
sd: GetFirewallConfigSd;
/**
* Multipart Attack - Block attempts to bypass security controls using multipart/form-data encoding.
*/
ma: GetFirewallConfigMa;
/**
* Local File Inclusion Attack - Prevent unauthorized access to local files through web applications.
*/
lfi: GetFirewallConfigLfi;
/**
* Remote File Inclusion Attack - Prohibit unauthorized upload or execution of remote files.
*/
rfi: GetFirewallConfigRfi;
/**
* Remote Execution Attack - Prevent unauthorized execution of remote scripts or commands.
*/
rce: GetFirewallConfigRce;
/**
* PHP Attack - Safeguard against vulnerability exploits in PHP-based applications.
*/
php: GetFirewallConfigPhp;
/**
* Generic Attack - Provide broad protection from various undefined or novel attack vectors.
*/
gen: GetFirewallConfigGen;
/**
* XSS Attack - Prevent injection of malicious scripts into trusted webpages.
*/
xss: GetFirewallConfigXss;
/**
* SQL Injection Attack - Prohibit unauthorized use of SQL commands to manipulate databases.
*/
sqli: GetFirewallConfigSqli;
/**
* Session Fixation Attack - Prevent unauthorized takeover of user sessions by enforcing unique session IDs.
*/
sf: GetFirewallConfigSf;
/**
* Java Attack - Mitigate risks of exploitation targeting Java-based applications or components.
*/
java: GetFirewallConfigJava;
};
export const GetFirewallConfigRulesType = {
BotCategory: "bot_category",
BotName: "bot_name",
BotProtection: "bot_protection",
BotStatus: "bot_status",
Cookie: "cookie",
Environment: "environment",
GeoAsNumber: "geo_as_number",
GeoCity: "geo_city",
GeoContinent: "geo_continent",
GeoCountry: "geo_country",
GeoCountryRegion: "geo_country_region",
Header: "header",
Host: "host",
IpAddress: "ip_address",
Ja3Digest: "ja3_digest",
Ja4Digest: "ja4_digest",
Method: "method",
Path: "path",
Protocol: "protocol",
Query: "query",
RateLimitApiId: "rate_limit_api_id",
RawPath: "raw_path",
Region: "region",
Route: "route",
Scheme: "scheme",
ServerAction: "server_action",
TargetPath: "target_path",
TrustedSource: "trusted_source",
UserAgent: "user_agent",
} as const;
export type GetFirewallConfigRulesType = ClosedEnum<
typeof GetFirewallConfigRulesType
>;
export const GetFirewallConfigRulesOp = {
Eq: "eq",
Ex: "ex",
Gt: "gt",
Gte: "gte",
Inc: "inc",
Lt: "lt",
Lte: "lte",
Neq: "neq",
Nex: "nex",
Ninc: "ninc",
Pre: "pre",
Re: "re",
Sub: "sub",
Suf: "suf",
} as const;
export type GetFirewallConfigRulesOp = ClosedEnum<
typeof GetFirewallConfigRulesOp
>;
export type GetFirewallConfigRulesValue = string | number | Array<string>;
export type GetFirewallConfigRulesConditions = {
type: GetFirewallConfigRulesType;
op: GetFirewallConfigRulesOp;
neg?: boolean | undefined;
key?: string | undefined;
value?: string | number | Array<string> | undefined;
};
export type GetFirewallConfigRulesConditionGroup = {
conditions: Array<GetFirewallConfigRulesConditions>;
};
export const GetFirewallConfigRulesSecurityAction = {
Bypass: "bypass",
Challenge: "challenge",
Deny: "deny",
Log: "log",
RateLimit: "rate_limit",
Redirect: "redirect",
} as const;
export type GetFirewallConfigRulesSecurityAction = ClosedEnum<
typeof GetFirewallConfigRulesSecurityAction
>;
export const GetFirewallConfigRulesAlgo = {
FixedWindow: "fixed_window",
TokenBucket: "token_bucket",
} as const;
export type GetFirewallConfigRulesAlgo = ClosedEnum<
typeof GetFirewallConfigRulesAlgo
>;
export const GetFirewallConfigRulesSecurityResponse200Action = {
Challenge: "challenge",
Deny: "deny",
Log: "log",
RateLimit: "rate_limit",
} as const;
export type GetFirewallConfigRulesSecurityResponse200Action = ClosedEnum<
typeof GetFirewallConfigRulesSecurityResponse200Action
>;
export type GetFirewallConfigRulesRateLimit = {
algo: GetFirewallConfigRulesAlgo;
window: number;
limit: number;
keys: Array<string>;
action?: GetFirewallConfigRulesSecurityResponse200Action | null | undefined;
};
export type GetFirewallConfigRulesRedirect = {
location: string;
permanent: boolean;
};
export const GetFirewallConfigLogHeadersSecurity2 = {
Wildcard: "*",
} as const;
export type GetFirewallConfigLogHeadersSecurity2 = ClosedEnum<
typeof GetFirewallConfigLogHeadersSecurity2
>;
export type GetFirewallConfigRulesLogHeaders =
| Array<string>
| GetFirewallConfigLogHeadersSecurity2;
export type GetFirewallConfigRulesMitigate = {
action: GetFirewallConfigRulesSecurityAction;
rateLimit?: GetFirewallConfigRulesRateLimit | null | undefined;
redirect?: GetFirewallConfigRulesRedirect | null | undefined;
actionDuration?: string | null | undefined;
bypassSystem?: boolean | null | undefined;
logHeaders?: Array<string> | GetFirewallConfigLogHeadersSecurity2 | undefined;
};
export type GetFirewallConfigRulesAction = {
mitigate?: GetFirewallConfigRulesMitigate | undefined;
};
export type Rules2 = {
id: string;
name: string;
description?: string | undefined;
active: boolean;
conditionGroup: Array<GetFirewallConfigRulesConditionGroup>;
action: GetFirewallConfigRulesAction;
valid: false;
validationErrors: Array<string>;
};
export const RulesType = {
BotCategory: "bot_category",
BotName: "bot_name",
BotProtection: "bot_protection",
BotStatus: "bot_status",
Cookie: "cookie",
Environment: "environment",
GeoAsNumber: "geo_as_number",
GeoCity: "geo_city",
GeoContinent: "geo_continent",
GeoCountry: "geo_country",
GeoCountryRegion: "geo_country_region",
Header: "header",
Host: "host",
IpAddress: "ip_address",
Ja3Digest: "ja3_digest",
Ja4Digest: "ja4_digest",
Method: "method",
Path: "path",
Protocol: "protocol",
Query: "query",
RateLimitApiId: "rate_limit_api_id",
RawPath: "raw_path",
Region: "region",
Route: "route",
Scheme: "scheme",
ServerAction: "server_action",
TargetPath: "target_path",
TrustedSource: "trusted_source",
UserAgent: "user_agent",
} as const;
export type RulesType = ClosedEnum<typeof RulesType>;
export const RulesOp = {
Eq: "eq",
Ex: "ex",
Gt: "gt",
Gte: "gte",
Inc: "inc",
Lt: "lt",
Lte: "lte",
Neq: "neq",
Nex: "nex",
Ninc: "ninc",
Pre: "pre",
Re: "re",
Sub: "sub",
Suf: "suf",
} as const;
export type RulesOp = ClosedEnum<typeof RulesOp>;
export type RulesValue = string | number | Array<string>;
export type RulesConditions = {
type: RulesType;
op: RulesOp;
neg?: boolean | undefined;
key?: string | undefined;
value?: string | number | Array<string> | undefined;
};
export type RulesConditionGroup = {
conditions: Array<RulesConditions>;
};
export const GetFirewallConfigRulesSecurityResponseAction = {
Bypass: "bypass",
Challenge: "challenge",
Deny: "deny",
Log: "log",
RateLimit: "rate_limit",
Redirect: "redirect",
} as const;
export type GetFirewallConfigRulesSecurityResponseAction = ClosedEnum<
typeof GetFirewallConfigRulesSecurityResponseAction
>;
export const RulesAlgo = {
FixedWindow: "fixed_window",
TokenBucket: "token_bucket",
} as const;
export type RulesAlgo = ClosedEnum<typeof RulesAlgo>;
export const GetFirewallConfigRulesSecurityResponse200ApplicationJSONAction = {
Challenge: "challenge",
Deny: "deny",
Log: "log",
RateLimit: "rate_limit",
} as const;
export type GetFirewallConfigRulesSecurityResponse200ApplicationJSONAction =
ClosedEnum<
typeof GetFirewallConfigRulesSecurityResponse200ApplicationJSONAction
>;
export type RulesRateLimit = {
algo: RulesAlgo;
window: number;
limit: number;
keys: Array<string>;
action?:
| GetFirewallConfigRulesSecurityResponse200ApplicationJSONAction
| null
| undefined;
};
export type RulesRedirect = {
location: string;
permanent: boolean;
};
export const GetFirewallConfigLogHeaders2 = {
Wildcard: "*",
} as const;
export type GetFirewallConfigLogHeaders2 = ClosedEnum<
typeof GetFirewallConfigLogHeaders2
>;
export type RulesLogHeaders = Array<string> | GetFirewallConfigLogHeaders2;
export type RulesMitigate = {
action: GetFirewallConfigRulesSecurityResponseAction;
rateLimit?: RulesRateLimit | null | undefined;
redirect?: RulesRedirect | null | undefined;
actionDuration?: string | null | undefined;
bypassSystem?: boolean | null | undefined;
logHeaders?: Array<string> | GetFirewallConfigLogHeaders2 | undefined;
};
export type RulesAction = {
mitigate?: RulesMitigate | undefined;
};
export type Rules1 = {
id: string;
name: string;
description?: string | undefined;
active: boolean;
conditionGroup: Array<RulesConditionGroup>;
action: RulesAction;
valid: true;
validationErrors?: any | null | undefined;
};
export type GetFirewallConfigRules = Rules1 | Rules2;
export const GetFirewallConfigAction = {
Bypass: "bypass",
Challenge: "challenge",
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigAction = ClosedEnum<
typeof GetFirewallConfigAction
>;
export type GetFirewallConfigIps = {
id: string;
hostname: string;
ip: string;
notes?: string | undefined;
action: GetFirewallConfigAction;
};
export type Changes = {};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAction =
{
Challenge: "challenge",
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAction
>;
export type BotProtection = {
active: boolean;
action?:
| GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAction
| undefined;
updatedAt?: string | undefined;
userId?: string | undefined;
username?: string | undefined;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAiBotsAction =
{
Challenge: "challenge",
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAiBotsAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAiBotsAction
>;
export type AiBots = {
active: boolean;
action?:
| GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAiBotsAction
| undefined;
updatedAt?: string | undefined;
userId?: string | undefined;
username?: string | undefined;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesOwaspAction =
{
Challenge: "challenge",
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesOwaspAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesOwaspAction
>;
export type Owasp = {
active: boolean;
action?:
| GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesOwaspAction
| undefined;
updatedAt?: string | undefined;
userId?: string | undefined;
username?: string | undefined;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesVercelRulesetAction =
{
Challenge: "challenge",
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesVercelRulesetAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesVercelRulesetAction
>;
export type VercelRuleset = {
active: boolean;
action?:
| GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesVercelRulesetAction
| undefined;
updatedAt?: string | undefined;
userId?: string | undefined;
username?: string | undefined;
};
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesTrafficSourcesAction =
{
Challenge: "challenge",
Deny: "deny",
Log: "log",
} as const;
export type GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesTrafficSourcesAction =
ClosedEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesTrafficSourcesAction
>;
export type TrafficSources = {
active: boolean;
action?:
| GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesTrafficSourcesAction
| undefined;
updatedAt?: string | undefined;
userId?: string | undefined;
username?: string | undefined;
};
export type GetFirewallConfigManagedRules = {
botProtection?: BotProtection | undefined;
aiBots?: AiBots | undefined;
owasp?: Owasp | undefined;
vercelRuleset?: VercelRuleset | undefined;
trafficSources?: TrafficSources | undefined;
};
export const LogHeaders2 = {
Wildcard: "*",
} as const;
export type LogHeaders2 = ClosedEnum<typeof LogHeaders2>;
export type GetFirewallConfigLogHeaders = Array<string> | LogHeaders2;
/**
* If the firewall configuration includes a [custom managed ruleset](https://vercel.com/docs/security/vercel-waf/managed-rulesets), it will include a `crs` item that has the following values: sd: Scanner Detection ma: Multipart Attack lfi: Local File Inclusion Attack rfi: Remote File Inclusion Attack rce: Remote Execution Attack php: PHP Attack gen: Generic Attack xss: XSS Attack sqli: SQL Injection Attack sf: Session Fixation Attack java: Java Attack
*/
export type GetFirewallConfigResponseBody = {
ownerId: string;
projectKey: string;
id: string;
version: number;
updatedAt: string;
firewallEnabled: boolean;
/**
* Custom Ruleset
*/
crs: GetFirewallConfigCrs;
rules: Array<Rules1 | Rules2>;
ips: Array<GetFirewallConfigIps>;
changes: Array<Changes>;
managedRules?: GetFirewallConfigManagedRules | undefined;
botIdEnabled?: boolean | undefined;
logHeaders?: Array<string> | LogHeaders2 | undefined;
};
/** @internal */
export type GetFirewallConfigRequest$Outbound = {
projectId: string;
teamId?: string | undefined;
slug?: string | undefined;
configVersion: string;
};
/** @internal */
export const GetFirewallConfigRequest$outboundSchema: z.ZodType<
GetFirewallConfigRequest$Outbound,
z.ZodTypeDef,
GetFirewallConfigRequest
> = z.object({
projectId: z.string(),
teamId: z.string().optional(),
slug: z.string().optional(),
configVersion: z.string(),
});
export function getFirewallConfigRequestToJSON(
getFirewallConfigRequest: GetFirewallConfigRequest,
): string {
return JSON.stringify(
GetFirewallConfigRequest$outboundSchema.parse(getFirewallConfigRequest),
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSdAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSdAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSdAction,
);
/** @internal */
export const GetFirewallConfigSd$inboundSchema: z.ZodType<
GetFirewallConfigSd,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSdAction$inboundSchema,
});
export function getFirewallConfigSdFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigSd, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigSd$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigSd' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityAction$inboundSchema: z.ZodNativeEnum<
typeof GetFirewallConfigSecurityAction
> = z.nativeEnum(GetFirewallConfigSecurityAction);
/** @internal */
export const GetFirewallConfigMa$inboundSchema: z.ZodType<
GetFirewallConfigMa,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action: GetFirewallConfigSecurityAction$inboundSchema,
});
export function getFirewallConfigMaFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigMa, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigMa$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigMa' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponseAction$inboundSchema:
z.ZodNativeEnum<typeof GetFirewallConfigSecurityResponseAction> = z
.nativeEnum(GetFirewallConfigSecurityResponseAction);
/** @internal */
export const GetFirewallConfigLfi$inboundSchema: z.ZodType<
GetFirewallConfigLfi,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action: GetFirewallConfigSecurityResponseAction$inboundSchema,
});
export function getFirewallConfigLfiFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigLfi, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigLfi$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigLfi' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200Action$inboundSchema:
z.ZodNativeEnum<typeof GetFirewallConfigSecurityResponse200Action> = z
.nativeEnum(GetFirewallConfigSecurityResponse200Action);
/** @internal */
export const GetFirewallConfigRfi$inboundSchema: z.ZodType<
GetFirewallConfigRfi,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action: GetFirewallConfigSecurityResponse200Action$inboundSchema,
});
export function getFirewallConfigRfiFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRfi, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRfi$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRfi' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONAction
> = z.nativeEnum(GetFirewallConfigSecurityResponse200ApplicationJSONAction);
/** @internal */
export const GetFirewallConfigRce$inboundSchema: z.ZodType<
GetFirewallConfigRce,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action:
GetFirewallConfigSecurityResponse200ApplicationJSONAction$inboundSchema,
});
export function getFirewallConfigRceFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRce, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRce$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRce' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyAction,
);
/** @internal */
export const GetFirewallConfigPhp$inboundSchema: z.ZodType<
GetFirewallConfigPhp,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyAction$inboundSchema,
});
export function getFirewallConfigPhpFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigPhp, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigPhp$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigPhp' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsAction,
);
/** @internal */
export const GetFirewallConfigGen$inboundSchema: z.ZodType<
GetFirewallConfigGen,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsAction$inboundSchema,
});
export function getFirewallConfigGenFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigGen, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigGen$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigGen' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsXssAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsXssAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsXssAction,
);
/** @internal */
export const GetFirewallConfigXss$inboundSchema: z.ZodType<
GetFirewallConfigXss,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsXssAction$inboundSchema,
});
export function getFirewallConfigXssFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigXss, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigXss$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigXss' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSqliAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSqliAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSqliAction,
);
/** @internal */
export const GetFirewallConfigSqli$inboundSchema: z.ZodType<
GetFirewallConfigSqli,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSqliAction$inboundSchema,
});
export function getFirewallConfigSqliFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigSqli, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigSqli$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigSqli' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSfAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSfAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSfAction,
);
/** @internal */
export const GetFirewallConfigSf$inboundSchema: z.ZodType<
GetFirewallConfigSf,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsSfAction$inboundSchema,
});
export function getFirewallConfigSfFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigSf, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigSf$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigSf' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsJavaAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsJavaAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsJavaAction,
);
/** @internal */
export const GetFirewallConfigJava$inboundSchema: z.ZodType<
GetFirewallConfigJava,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action:
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyCrsJavaAction$inboundSchema,
});
export function getFirewallConfigJavaFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigJava, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigJava$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigJava' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigCrs$inboundSchema: z.ZodType<
GetFirewallConfigCrs,
z.ZodTypeDef,
unknown
> = z.object({
sd: z.lazy(() => GetFirewallConfigSd$inboundSchema),
ma: z.lazy(() => GetFirewallConfigMa$inboundSchema),
lfi: z.lazy(() => GetFirewallConfigLfi$inboundSchema),
rfi: z.lazy(() => GetFirewallConfigRfi$inboundSchema),
rce: z.lazy(() => GetFirewallConfigRce$inboundSchema),
php: z.lazy(() => GetFirewallConfigPhp$inboundSchema),
gen: z.lazy(() => GetFirewallConfigGen$inboundSchema),
xss: z.lazy(() => GetFirewallConfigXss$inboundSchema),
sqli: z.lazy(() => GetFirewallConfigSqli$inboundSchema),
sf: z.lazy(() => GetFirewallConfigSf$inboundSchema),
java: z.lazy(() => GetFirewallConfigJava$inboundSchema),
});
export function getFirewallConfigCrsFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigCrs, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigCrs$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigCrs' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRulesType$inboundSchema: z.ZodNativeEnum<
typeof GetFirewallConfigRulesType
> = z.nativeEnum(GetFirewallConfigRulesType);
/** @internal */
export const GetFirewallConfigRulesOp$inboundSchema: z.ZodNativeEnum<
typeof GetFirewallConfigRulesOp
> = z.nativeEnum(GetFirewallConfigRulesOp);
/** @internal */
export const GetFirewallConfigRulesValue$inboundSchema: z.ZodType<
GetFirewallConfigRulesValue,
z.ZodTypeDef,
unknown
> = smartUnion([types.string(), types.number(), z.array(types.string())]);
export function getFirewallConfigRulesValueFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRulesValue, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRulesValue$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRulesValue' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRulesConditions$inboundSchema: z.ZodType<
GetFirewallConfigRulesConditions,
z.ZodTypeDef,
unknown
> = z.object({
type: GetFirewallConfigRulesType$inboundSchema,
op: GetFirewallConfigRulesOp$inboundSchema,
neg: types.optional(types.boolean()),
key: types.optional(types.string()),
value: types.optional(
smartUnion([types.string(), types.number(), z.array(types.string())]),
),
});
export function getFirewallConfigRulesConditionsFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRulesConditions, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRulesConditions$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRulesConditions' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRulesConditionGroup$inboundSchema: z.ZodType<
GetFirewallConfigRulesConditionGroup,
z.ZodTypeDef,
unknown
> = z.object({
conditions: z.array(
z.lazy(() => GetFirewallConfigRulesConditions$inboundSchema),
),
});
export function getFirewallConfigRulesConditionGroupFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRulesConditionGroup, SDKValidationError> {
return safeParse(
jsonString,
(x) =>
GetFirewallConfigRulesConditionGroup$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRulesConditionGroup' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRulesSecurityAction$inboundSchema:
z.ZodNativeEnum<typeof GetFirewallConfigRulesSecurityAction> = z.nativeEnum(
GetFirewallConfigRulesSecurityAction,
);
/** @internal */
export const GetFirewallConfigRulesAlgo$inboundSchema: z.ZodNativeEnum<
typeof GetFirewallConfigRulesAlgo
> = z.nativeEnum(GetFirewallConfigRulesAlgo);
/** @internal */
export const GetFirewallConfigRulesSecurityResponse200Action$inboundSchema:
z.ZodNativeEnum<typeof GetFirewallConfigRulesSecurityResponse200Action> = z
.nativeEnum(GetFirewallConfigRulesSecurityResponse200Action);
/** @internal */
export const GetFirewallConfigRulesRateLimit$inboundSchema: z.ZodType<
GetFirewallConfigRulesRateLimit,
z.ZodTypeDef,
unknown
> = z.object({
algo: GetFirewallConfigRulesAlgo$inboundSchema,
window: types.number(),
limit: types.number(),
keys: z.array(types.string()),
action: z.nullable(
GetFirewallConfigRulesSecurityResponse200Action$inboundSchema,
).optional(),
});
export function getFirewallConfigRulesRateLimitFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRulesRateLimit, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRulesRateLimit$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRulesRateLimit' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRulesRedirect$inboundSchema: z.ZodType<
GetFirewallConfigRulesRedirect,
z.ZodTypeDef,
unknown
> = z.object({
location: types.string(),
permanent: types.boolean(),
});
export function getFirewallConfigRulesRedirectFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRulesRedirect, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRulesRedirect$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRulesRedirect' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigLogHeadersSecurity2$inboundSchema:
z.ZodNativeEnum<typeof GetFirewallConfigLogHeadersSecurity2> = z.nativeEnum(
GetFirewallConfigLogHeadersSecurity2,
);
/** @internal */
export const GetFirewallConfigRulesLogHeaders$inboundSchema: z.ZodType<
GetFirewallConfigRulesLogHeaders,
z.ZodTypeDef,
unknown
> = smartUnion([
z.array(types.string()),
GetFirewallConfigLogHeadersSecurity2$inboundSchema,
]);
export function getFirewallConfigRulesLogHeadersFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRulesLogHeaders, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRulesLogHeaders$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRulesLogHeaders' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRulesMitigate$inboundSchema: z.ZodType<
GetFirewallConfigRulesMitigate,
z.ZodTypeDef,
unknown
> = z.object({
action: GetFirewallConfigRulesSecurityAction$inboundSchema,
rateLimit: z.nullable(
z.lazy(() => GetFirewallConfigRulesRateLimit$inboundSchema),
).optional(),
redirect: z.nullable(
z.lazy(() => GetFirewallConfigRulesRedirect$inboundSchema),
).optional(),
actionDuration: z.nullable(types.string()).optional(),
bypassSystem: z.nullable(types.boolean()).optional(),
logHeaders: types.optional(
smartUnion([
z.array(types.string()),
GetFirewallConfigLogHeadersSecurity2$inboundSchema,
]),
),
});
export function getFirewallConfigRulesMitigateFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRulesMitigate, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRulesMitigate$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRulesMitigate' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRulesAction$inboundSchema: z.ZodType<
GetFirewallConfigRulesAction,
z.ZodTypeDef,
unknown
> = z.object({
mitigate: types.optional(
z.lazy(() => GetFirewallConfigRulesMitigate$inboundSchema),
),
});
export function getFirewallConfigRulesActionFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRulesAction, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRulesAction$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRulesAction' from JSON`,
);
}
/** @internal */
export const Rules2$inboundSchema: z.ZodType<Rules2, z.ZodTypeDef, unknown> = z
.object({
id: types.string(),
name: types.string(),
description: types.optional(types.string()),
active: types.boolean(),
conditionGroup: z.array(
z.lazy(() => GetFirewallConfigRulesConditionGroup$inboundSchema),
),
action: z.lazy(() => GetFirewallConfigRulesAction$inboundSchema),
valid: types.literal(false),
validationErrors: z.array(types.string()),
});
export function rules2FromJSON(
jsonString: string,
): SafeParseResult<Rules2, SDKValidationError> {
return safeParse(
jsonString,
(x) => Rules2$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'Rules2' from JSON`,
);
}
/** @internal */
export const RulesType$inboundSchema: z.ZodNativeEnum<typeof RulesType> = z
.nativeEnum(RulesType);
/** @internal */
export const RulesOp$inboundSchema: z.ZodNativeEnum<typeof RulesOp> = z
.nativeEnum(RulesOp);
/** @internal */
export const RulesValue$inboundSchema: z.ZodType<
RulesValue,
z.ZodTypeDef,
unknown
> = smartUnion([types.string(), types.number(), z.array(types.string())]);
export function rulesValueFromJSON(
jsonString: string,
): SafeParseResult<RulesValue, SDKValidationError> {
return safeParse(
jsonString,
(x) => RulesValue$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'RulesValue' from JSON`,
);
}
/** @internal */
export const RulesConditions$inboundSchema: z.ZodType<
RulesConditions,
z.ZodTypeDef,
unknown
> = z.object({
type: RulesType$inboundSchema,
op: RulesOp$inboundSchema,
neg: types.optional(types.boolean()),
key: types.optional(types.string()),
value: types.optional(
smartUnion([types.string(), types.number(), z.array(types.string())]),
),
});
export function rulesConditionsFromJSON(
jsonString: string,
): SafeParseResult<RulesConditions, SDKValidationError> {
return safeParse(
jsonString,
(x) => RulesConditions$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'RulesConditions' from JSON`,
);
}
/** @internal */
export const RulesConditionGroup$inboundSchema: z.ZodType<
RulesConditionGroup,
z.ZodTypeDef,
unknown
> = z.object({
conditions: z.array(z.lazy(() => RulesConditions$inboundSchema)),
});
export function rulesConditionGroupFromJSON(
jsonString: string,
): SafeParseResult<RulesConditionGroup, SDKValidationError> {
return safeParse(
jsonString,
(x) => RulesConditionGroup$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'RulesConditionGroup' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRulesSecurityResponseAction$inboundSchema:
z.ZodNativeEnum<typeof GetFirewallConfigRulesSecurityResponseAction> = z
.nativeEnum(GetFirewallConfigRulesSecurityResponseAction);
/** @internal */
export const RulesAlgo$inboundSchema: z.ZodNativeEnum<typeof RulesAlgo> = z
.nativeEnum(RulesAlgo);
/** @internal */
export const GetFirewallConfigRulesSecurityResponse200ApplicationJSONAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigRulesSecurityResponse200ApplicationJSONAction
> = z.nativeEnum(
GetFirewallConfigRulesSecurityResponse200ApplicationJSONAction,
);
/** @internal */
export const RulesRateLimit$inboundSchema: z.ZodType<
RulesRateLimit,
z.ZodTypeDef,
unknown
> = z.object({
algo: RulesAlgo$inboundSchema,
window: types.number(),
limit: types.number(),
keys: z.array(types.string()),
action: z.nullable(
GetFirewallConfigRulesSecurityResponse200ApplicationJSONAction$inboundSchema,
).optional(),
});
export function rulesRateLimitFromJSON(
jsonString: string,
): SafeParseResult<RulesRateLimit, SDKValidationError> {
return safeParse(
jsonString,
(x) => RulesRateLimit$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'RulesRateLimit' from JSON`,
);
}
/** @internal */
export const RulesRedirect$inboundSchema: z.ZodType<
RulesRedirect,
z.ZodTypeDef,
unknown
> = z.object({
location: types.string(),
permanent: types.boolean(),
});
export function rulesRedirectFromJSON(
jsonString: string,
): SafeParseResult<RulesRedirect, SDKValidationError> {
return safeParse(
jsonString,
(x) => RulesRedirect$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'RulesRedirect' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigLogHeaders2$inboundSchema: z.ZodNativeEnum<
typeof GetFirewallConfigLogHeaders2
> = z.nativeEnum(GetFirewallConfigLogHeaders2);
/** @internal */
export const RulesLogHeaders$inboundSchema: z.ZodType<
RulesLogHeaders,
z.ZodTypeDef,
unknown
> = smartUnion([
z.array(types.string()),
GetFirewallConfigLogHeaders2$inboundSchema,
]);
export function rulesLogHeadersFromJSON(
jsonString: string,
): SafeParseResult<RulesLogHeaders, SDKValidationError> {
return safeParse(
jsonString,
(x) => RulesLogHeaders$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'RulesLogHeaders' from JSON`,
);
}
/** @internal */
export const RulesMitigate$inboundSchema: z.ZodType<
RulesMitigate,
z.ZodTypeDef,
unknown
> = z.object({
action: GetFirewallConfigRulesSecurityResponseAction$inboundSchema,
rateLimit: z.nullable(z.lazy(() => RulesRateLimit$inboundSchema)).optional(),
redirect: z.nullable(z.lazy(() => RulesRedirect$inboundSchema)).optional(),
actionDuration: z.nullable(types.string()).optional(),
bypassSystem: z.nullable(types.boolean()).optional(),
logHeaders: types.optional(
smartUnion([
z.array(types.string()),
GetFirewallConfigLogHeaders2$inboundSchema,
]),
),
});
export function rulesMitigateFromJSON(
jsonString: string,
): SafeParseResult<RulesMitigate, SDKValidationError> {
return safeParse(
jsonString,
(x) => RulesMitigate$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'RulesMitigate' from JSON`,
);
}
/** @internal */
export const RulesAction$inboundSchema: z.ZodType<
RulesAction,
z.ZodTypeDef,
unknown
> = z.object({
mitigate: types.optional(z.lazy(() => RulesMitigate$inboundSchema)),
});
export function rulesActionFromJSON(
jsonString: string,
): SafeParseResult<RulesAction, SDKValidationError> {
return safeParse(
jsonString,
(x) => RulesAction$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'RulesAction' from JSON`,
);
}
/** @internal */
export const Rules1$inboundSchema: z.ZodType<Rules1, z.ZodTypeDef, unknown> = z
.object({
id: types.string(),
name: types.string(),
description: types.optional(types.string()),
active: types.boolean(),
conditionGroup: z.array(z.lazy(() => RulesConditionGroup$inboundSchema)),
action: z.lazy(() => RulesAction$inboundSchema),
valid: types.literal(true),
validationErrors: z.nullable(z.any()).optional(),
});
export function rules1FromJSON(
jsonString: string,
): SafeParseResult<Rules1, SDKValidationError> {
return safeParse(
jsonString,
(x) => Rules1$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'Rules1' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigRules$inboundSchema: z.ZodType<
GetFirewallConfigRules,
z.ZodTypeDef,
unknown
> = smartUnion([
z.lazy(() => Rules1$inboundSchema),
z.lazy(() => Rules2$inboundSchema),
]);
export function getFirewallConfigRulesFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigRules, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigRules$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigRules' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigAction$inboundSchema: z.ZodNativeEnum<
typeof GetFirewallConfigAction
> = z.nativeEnum(GetFirewallConfigAction);
/** @internal */
export const GetFirewallConfigIps$inboundSchema: z.ZodType<
GetFirewallConfigIps,
z.ZodTypeDef,
unknown
> = z.object({
id: types.string(),
hostname: types.string(),
ip: types.string(),
notes: types.optional(types.string()),
action: GetFirewallConfigAction$inboundSchema,
});
export function getFirewallConfigIpsFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigIps, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigIps$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigIps' from JSON`,
);
}
/** @internal */
export const Changes$inboundSchema: z.ZodType<Changes, z.ZodTypeDef, unknown> =
z.object({});
export function changesFromJSON(
jsonString: string,
): SafeParseResult<Changes, SDKValidationError> {
return safeParse(
jsonString,
(x) => Changes$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'Changes' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAction,
);
/** @internal */
export const BotProtection$inboundSchema: z.ZodType<
BotProtection,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action: types.optional(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAction$inboundSchema,
),
updatedAt: types.optional(types.string()),
userId: types.optional(types.string()),
username: types.optional(types.string()),
});
export function botProtectionFromJSON(
jsonString: string,
): SafeParseResult<BotProtection, SDKValidationError> {
return safeParse(
jsonString,
(x) => BotProtection$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'BotProtection' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAiBotsAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAiBotsAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAiBotsAction,
);
/** @internal */
export const AiBots$inboundSchema: z.ZodType<AiBots, z.ZodTypeDef, unknown> = z
.object({
active: types.boolean(),
action: types.optional(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesAiBotsAction$inboundSchema,
),
updatedAt: types.optional(types.string()),
userId: types.optional(types.string()),
username: types.optional(types.string()),
});
export function aiBotsFromJSON(
jsonString: string,
): SafeParseResult<AiBots, SDKValidationError> {
return safeParse(
jsonString,
(x) => AiBots$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'AiBots' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesOwaspAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesOwaspAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesOwaspAction,
);
/** @internal */
export const Owasp$inboundSchema: z.ZodType<Owasp, z.ZodTypeDef, unknown> = z
.object({
active: types.boolean(),
action: types.optional(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesOwaspAction$inboundSchema,
),
updatedAt: types.optional(types.string()),
userId: types.optional(types.string()),
username: types.optional(types.string()),
});
export function owaspFromJSON(
jsonString: string,
): SafeParseResult<Owasp, SDKValidationError> {
return safeParse(
jsonString,
(x) => Owasp$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'Owasp' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesVercelRulesetAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesVercelRulesetAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesVercelRulesetAction,
);
/** @internal */
export const VercelRuleset$inboundSchema: z.ZodType<
VercelRuleset,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action: types.optional(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesVercelRulesetAction$inboundSchema,
),
updatedAt: types.optional(types.string()),
userId: types.optional(types.string()),
username: types.optional(types.string()),
});
export function vercelRulesetFromJSON(
jsonString: string,
): SafeParseResult<VercelRuleset, SDKValidationError> {
return safeParse(
jsonString,
(x) => VercelRuleset$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'VercelRuleset' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesTrafficSourcesAction$inboundSchema:
z.ZodNativeEnum<
typeof GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesTrafficSourcesAction
> = z.nativeEnum(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesTrafficSourcesAction,
);
/** @internal */
export const TrafficSources$inboundSchema: z.ZodType<
TrafficSources,
z.ZodTypeDef,
unknown
> = z.object({
active: types.boolean(),
action: types.optional(
GetFirewallConfigSecurityResponse200ApplicationJSONResponseBodyManagedRulesTrafficSourcesAction$inboundSchema,
),
updatedAt: types.optional(types.string()),
userId: types.optional(types.string()),
username: types.optional(types.string()),
});
export function trafficSourcesFromJSON(
jsonString: string,
): SafeParseResult<TrafficSources, SDKValidationError> {
return safeParse(
jsonString,
(x) => TrafficSources$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'TrafficSources' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigManagedRules$inboundSchema: z.ZodType<
GetFirewallConfigManagedRules,
z.ZodTypeDef,
unknown
> = z.object({
bot_protection: types.optional(z.lazy(() => BotProtection$inboundSchema)),
ai_bots: types.optional(z.lazy(() => AiBots$inboundSchema)),
owasp: types.optional(z.lazy(() => Owasp$inboundSchema)),
vercel_ruleset: types.optional(z.lazy(() => VercelRuleset$inboundSchema)),
traffic_sources: types.optional(z.lazy(() => TrafficSources$inboundSchema)),
}).transform((v) => {
return remap$(v, {
"bot_protection": "botProtection",
"ai_bots": "aiBots",
"vercel_ruleset": "vercelRuleset",
"traffic_sources": "trafficSources",
});
});
export function getFirewallConfigManagedRulesFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigManagedRules, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigManagedRules$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigManagedRules' from JSON`,
);
}
/** @internal */
export const LogHeaders2$inboundSchema: z.ZodNativeEnum<typeof LogHeaders2> = z
.nativeEnum(LogHeaders2);
/** @internal */
export const GetFirewallConfigLogHeaders$inboundSchema: z.ZodType<
GetFirewallConfigLogHeaders,
z.ZodTypeDef,
unknown
> = smartUnion([z.array(types.string()), LogHeaders2$inboundSchema]);
export function getFirewallConfigLogHeadersFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigLogHeaders, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigLogHeaders$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigLogHeaders' from JSON`,
);
}
/** @internal */
export const GetFirewallConfigResponseBody$inboundSchema: z.ZodType<
GetFirewallConfigResponseBody,
z.ZodTypeDef,
unknown
> = z.object({
ownerId: types.string(),
projectKey: types.string(),
id: types.string(),
version: types.number(),
updatedAt: types.string(),
firewallEnabled: types.boolean(),
crs: z.lazy(() => GetFirewallConfigCrs$inboundSchema),
rules: z.array(
smartUnion([
z.lazy(() => Rules1$inboundSchema),
z.lazy(() => Rules2$inboundSchema),
]),
),
ips: z.array(z.lazy(() => GetFirewallConfigIps$inboundSchema)),
changes: z.array(z.lazy(() => Changes$inboundSchema)),
managedRules: types.optional(
z.lazy(() => GetFirewallConfigManagedRules$inboundSchema),
),
botIdEnabled: types.optional(types.boolean()),
logHeaders: types.optional(
smartUnion([z.array(types.string()), LogHeaders2$inboundSchema]),
),
});
export function getFirewallConfigResponseBodyFromJSON(
jsonString: string,
): SafeParseResult<GetFirewallConfigResponseBody, SDKValidationError> {
return safeParse(
jsonString,
(x) => GetFirewallConfigResponseBody$inboundSchema.parse(JSON.parse(x)),
`Failed to parse 'GetFirewallConfigResponseBody' from JSON`,
);
}