@cdot65/prisma-airs-sdk 0.23.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.cjs +63 -33
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +100 -13
- package/dist/index.d.ts +100 -13
- package/dist/index.js +62 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -154351,8 +154351,8 @@ declare const MAX_NUMBER_OF_BATCH_SCAN_OBJECTS = 20;
|
|
|
154351
154351
|
declare const MAX_CONNECTION_POOL_SIZE = 100;
|
|
154352
154352
|
declare const MAX_NUMBER_OF_RETRIES = 5;
|
|
154353
154353
|
declare const HTTP_FORCE_RETRY_STATUS_CODES: number[];
|
|
154354
|
-
declare const SDK_VERSION = "0.
|
|
154355
|
-
declare const USER_AGENT = "PAN-AIRS/0.
|
|
154354
|
+
declare const SDK_VERSION = "0.25.0";
|
|
154355
|
+
declare const USER_AGENT = "PAN-AIRS/0.25.0-typescript-sdk";
|
|
154356
154356
|
declare const DEFAULT_MGMT_ENDPOINT = "https://api.sase.paloaltonetworks.com/aisec";
|
|
154357
154357
|
declare const DEFAULT_TOKEN_ENDPOINT = "https://auth.apps.paloaltonetworks.com/oauth2/access_token";
|
|
154358
154358
|
declare const MGMT_CLIENT_ID = "PANW_MGMT_CLIENT_ID";
|
|
@@ -158896,6 +158896,70 @@ interface AIGatewayWindowOptions {
|
|
|
158896
158896
|
end?: Date;
|
|
158897
158897
|
}
|
|
158898
158898
|
|
|
158899
|
+
/**
|
|
158900
|
+
* Standalone verified chart/group filter validation, without workspace resolution or authentication.
|
|
158901
|
+
* Shared by the SDK transport and CLI input adapters; excludes time-window and workspace fields.
|
|
158902
|
+
* Cost bounds use cents. Lists use OR, distinct filters use AND, and bounds are inclusive.
|
|
158903
|
+
* @example
|
|
158904
|
+
* ```ts
|
|
158905
|
+
* import { AIGatewayChartFiltersSchema } from '@cdot65/prisma-airs-sdk';
|
|
158906
|
+
* const filters = AIGatewayChartFiltersSchema.parse({ statusCodes: [200, 446], costMax: 0.125 });
|
|
158907
|
+
* console.log(filters.statusCodes);
|
|
158908
|
+
* ```
|
|
158909
|
+
*/
|
|
158910
|
+
declare const AIGatewayChartFiltersSchema: z.ZodEffects<z.ZodObject<{
|
|
158911
|
+
traceId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
158912
|
+
metadata: z.ZodOptional<z.ZodPipeline<z.ZodType<GatewayJsonObject, z.ZodTypeDef, GatewayJsonObject>, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
158913
|
+
statusCodes: z.ZodOptional<z.ZodArray<z.ZodNumber, "atleastone">>;
|
|
158914
|
+
apiKeyIds: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
|
158915
|
+
aiOrgModels: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
|
158916
|
+
totalUnitsMin: z.ZodOptional<z.ZodNumber>;
|
|
158917
|
+
totalUnitsMax: z.ZodOptional<z.ZodNumber>;
|
|
158918
|
+
costMin: z.ZodOptional<z.ZodNumber>;
|
|
158919
|
+
costMax: z.ZodOptional<z.ZodNumber>;
|
|
158920
|
+
}, "strict", z.ZodTypeAny, {
|
|
158921
|
+
metadata?: Record<string, string> | undefined;
|
|
158922
|
+
traceId?: string | undefined;
|
|
158923
|
+
statusCodes?: [number, ...number[]] | undefined;
|
|
158924
|
+
apiKeyIds?: [string, ...string[]] | undefined;
|
|
158925
|
+
aiOrgModels?: [string, ...string[]] | undefined;
|
|
158926
|
+
totalUnitsMin?: number | undefined;
|
|
158927
|
+
totalUnitsMax?: number | undefined;
|
|
158928
|
+
costMin?: number | undefined;
|
|
158929
|
+
costMax?: number | undefined;
|
|
158930
|
+
}, {
|
|
158931
|
+
metadata?: GatewayJsonObject | undefined;
|
|
158932
|
+
traceId?: string | undefined;
|
|
158933
|
+
statusCodes?: [number, ...number[]] | undefined;
|
|
158934
|
+
apiKeyIds?: [string, ...string[]] | undefined;
|
|
158935
|
+
aiOrgModels?: [string, ...string[]] | undefined;
|
|
158936
|
+
totalUnitsMin?: number | undefined;
|
|
158937
|
+
totalUnitsMax?: number | undefined;
|
|
158938
|
+
costMin?: number | undefined;
|
|
158939
|
+
costMax?: number | undefined;
|
|
158940
|
+
}>, {
|
|
158941
|
+
metadata?: Record<string, string> | undefined;
|
|
158942
|
+
traceId?: string | undefined;
|
|
158943
|
+
statusCodes?: [number, ...number[]] | undefined;
|
|
158944
|
+
apiKeyIds?: [string, ...string[]] | undefined;
|
|
158945
|
+
aiOrgModels?: [string, ...string[]] | undefined;
|
|
158946
|
+
totalUnitsMin?: number | undefined;
|
|
158947
|
+
totalUnitsMax?: number | undefined;
|
|
158948
|
+
costMin?: number | undefined;
|
|
158949
|
+
costMax?: number | undefined;
|
|
158950
|
+
}, {
|
|
158951
|
+
metadata?: GatewayJsonObject | undefined;
|
|
158952
|
+
traceId?: string | undefined;
|
|
158953
|
+
statusCodes?: [number, ...number[]] | undefined;
|
|
158954
|
+
apiKeyIds?: [string, ...string[]] | undefined;
|
|
158955
|
+
aiOrgModels?: [string, ...string[]] | undefined;
|
|
158956
|
+
totalUnitsMin?: number | undefined;
|
|
158957
|
+
totalUnitsMax?: number | undefined;
|
|
158958
|
+
costMin?: number | undefined;
|
|
158959
|
+
costMax?: number | undefined;
|
|
158960
|
+
}>;
|
|
158961
|
+
/** Validated filters shared by four charts and all six grouped analytics endpoints. */
|
|
158962
|
+
type AIGatewayChartFilters = z.infer<typeof AIGatewayChartFiltersSchema>;
|
|
158899
158963
|
/** @internal */
|
|
158900
158964
|
interface AIGatewayTelemetryClientOptions {
|
|
158901
158965
|
baseUrl: string;
|
|
@@ -158904,7 +158968,7 @@ interface AIGatewayTelemetryClientOptions {
|
|
|
158904
158968
|
tsgId: string;
|
|
158905
158969
|
}
|
|
158906
158970
|
/** Options for a `logs/groups/{dimension}` query. */
|
|
158907
|
-
interface AIGatewayGroupOptions extends
|
|
158971
|
+
interface AIGatewayGroupOptions extends AIGatewayChartOptions {
|
|
158908
158972
|
/**
|
|
158909
158973
|
* Extra columns to aggregate. The SDK rejects unsupported names before I/O; the API would
|
|
158910
158974
|
* silently drop them. See {@link AI_GW_GROUP_COLUMNS} for the valid set.
|
|
@@ -158912,13 +158976,18 @@ interface AIGatewayGroupOptions extends AIGatewayWindowOptions {
|
|
|
158912
158976
|
columns?: (typeof AI_GW_GROUP_COLUMNS)[number][];
|
|
158913
158977
|
}
|
|
158914
158978
|
/**
|
|
158915
|
-
* Verified SCM filters for requests, cost, tokens and latency charts
|
|
158979
|
+
* Verified SCM filters for requests, cost, tokens and latency charts, and grouped analytics.
|
|
158980
|
+
* The historical chart-options name is retained for compatibility. Other charts still accept
|
|
158981
|
+
* only time-window options; user grouping accepts these filters but not extra columns.
|
|
158982
|
+
* Members of each list match with OR; distinct supplied filters combine with AND.
|
|
158983
|
+
* Total-token and cost ranges are inclusive. Cost bounds are in cents, not dollars.
|
|
158916
158984
|
* These are partial adapters, not the complete upstream analytics query contract.
|
|
158917
158985
|
* @example
|
|
158918
158986
|
* ```ts
|
|
158919
158987
|
* import { AIGatewayClient, type AIGatewayChartOptions } from '@cdot65/prisma-airs-sdk';
|
|
158920
158988
|
* const options: AIGatewayChartOptions = {
|
|
158921
158989
|
* workspaceSlug: 'ws-dev', days: 1, metadata: { environment: 'dev' },
|
|
158990
|
+
* statusCodes: [200, 446], totalUnitsMin: 1,
|
|
158922
158991
|
* };
|
|
158923
158992
|
* const cost = await new AIGatewayClient().telemetry.cost(options);
|
|
158924
158993
|
* console.log(cost.data.total); // cents
|
|
@@ -158929,6 +158998,24 @@ interface AIGatewayChartOptions extends AIGatewayWindowOptions {
|
|
|
158929
158998
|
traceId?: string;
|
|
158930
158999
|
/** Exact string-valued metadata matches. Serialized as JSON in the `metadata` query parameter. */
|
|
158931
159000
|
metadata?: Record<string, string>;
|
|
159001
|
+
/** One or more response status codes, matched with OR and serialized as SCM `statusCode` CSV. */
|
|
159002
|
+
statusCodes?: number[];
|
|
159003
|
+
/** One or more API-key UUIDs, matched with OR and serialized as SCM `apiKeyIds` CSV. */
|
|
159004
|
+
apiKeyIds?: string[];
|
|
159005
|
+
/**
|
|
159006
|
+
* Provider/model pairs such as `openai__gpt-5.6-terra`, matched with OR.
|
|
159007
|
+
* Each item must contain a provider and model separated by `__`, without commas or whitespace.
|
|
159008
|
+
* Serialized as SCM `aiOrgModel` CSV; these are analytics identifiers, not inference routing.
|
|
159009
|
+
*/
|
|
159010
|
+
aiOrgModels?: string[];
|
|
159011
|
+
/** Inclusive minimum total tokens. A nonnegative safe integer; may equal the maximum. */
|
|
159012
|
+
totalUnitsMin?: number;
|
|
159013
|
+
/** Inclusive maximum total tokens. Zero is preserved, not omitted. */
|
|
159014
|
+
totalUnitsMax?: number;
|
|
159015
|
+
/** Inclusive minimum cost in cents; fractional values are preserved. */
|
|
159016
|
+
costMin?: number;
|
|
159017
|
+
/** Inclusive maximum cost in cents. Zero is preserved, not omitted. */
|
|
159018
|
+
costMax?: number;
|
|
158932
159019
|
}
|
|
158933
159020
|
/** Backwards-compatible name for the verified request-count chart options. */
|
|
158934
159021
|
interface AIGatewayRequestChartOptions extends AIGatewayChartOptions {
|
|
@@ -158963,7 +159050,7 @@ declare class AIGatewayTelemetryClient {
|
|
|
158963
159050
|
private chart;
|
|
158964
159051
|
/**
|
|
158965
159052
|
* Total and per-day spend. **Values are in cents.**
|
|
158966
|
-
* @param opts - Workspace slug, time window and
|
|
159053
|
+
* @param opts - Workspace slug, time window and verified trace, metadata, list and range filters.
|
|
158967
159054
|
* @returns Cost series plus the period total, in cents.
|
|
158968
159055
|
* @example
|
|
158969
159056
|
* ```ts
|
|
@@ -158977,7 +159064,7 @@ declare class AIGatewayTelemetryClient {
|
|
|
158977
159064
|
cost(opts: AIGatewayChartOptions): Promise<CostChartResponse>;
|
|
158978
159065
|
/**
|
|
158979
159066
|
* Per-day request counts.
|
|
158980
|
-
* @param opts - Workspace slug, time window and
|
|
159067
|
+
* @param opts - Workspace slug, time window and verified trace, metadata, list and range filters.
|
|
158981
159068
|
* @returns Request-count series plus the filtered period total.
|
|
158982
159069
|
* @example
|
|
158983
159070
|
* ```ts
|
|
@@ -158991,7 +159078,7 @@ declare class AIGatewayTelemetryClient {
|
|
|
158991
159078
|
requests(opts: AIGatewayRequestChartOptions): Promise<CountChartResponse>;
|
|
158992
159079
|
/**
|
|
158993
159080
|
* Latency in milliseconds. Percentiles are returned per-bucket and for the period.
|
|
158994
|
-
* @param opts - Workspace slug, time window and
|
|
159081
|
+
* @param opts - Workspace slug, time window and verified trace, metadata, list and range filters.
|
|
158995
159082
|
* @returns Latency series with p50/p90/p99; `data.total` is the period mean, not a sum.
|
|
158996
159083
|
* The period mean and percentiles are null when the cohort has no matching requests.
|
|
158997
159084
|
* @example
|
|
@@ -159006,7 +159093,7 @@ declare class AIGatewayTelemetryClient {
|
|
|
159006
159093
|
latency(opts: AIGatewayChartOptions): Promise<LatencyChartResponse>;
|
|
159007
159094
|
/**
|
|
159008
159095
|
* Token usage, split into request and response units.
|
|
159009
|
-
* @param opts - Workspace slug, time window and
|
|
159096
|
+
* @param opts - Workspace slug, time window and verified trace, metadata, list and range filters.
|
|
159010
159097
|
* @returns Token series plus request/response unit totals.
|
|
159011
159098
|
* @example
|
|
159012
159099
|
* ```ts
|
|
@@ -159177,7 +159264,7 @@ declare class AIGatewayTelemetryClient {
|
|
|
159177
159264
|
/**
|
|
159178
159265
|
* Aggregate requests by a dimension.
|
|
159179
159266
|
* @param dimension - One of {@link AI_GW_GROUP_DIMENSIONS}. Underscore names only.
|
|
159180
|
-
* @param opts - Window
|
|
159267
|
+
* @param opts - Window, verified trace/metadata/list/range filters, and optional extra columns.
|
|
159181
159268
|
* @returns One row per distinct dimension value.
|
|
159182
159269
|
* @example
|
|
159183
159270
|
* ```ts
|
|
@@ -159194,7 +159281,7 @@ declare class AIGatewayTelemetryClient {
|
|
|
159194
159281
|
groupBy(dimension: (typeof AI_GW_GROUP_DIMENSIONS)[number], opts: AIGatewayGroupOptions): Promise<GroupListResponse>;
|
|
159195
159282
|
/**
|
|
159196
159283
|
* Requests and cost per end user.
|
|
159197
|
-
* @param opts - Workspace slug and
|
|
159284
|
+
* @param opts - Workspace slug, time window and verified trace/metadata/list/range filters.
|
|
159198
159285
|
* @returns One record per user; `_user: ''` means calls with no end-user id. Costs in cents.
|
|
159199
159286
|
* @example
|
|
159200
159287
|
* ```ts
|
|
@@ -159205,10 +159292,10 @@ declare class AIGatewayTelemetryClient {
|
|
|
159205
159292
|
* // users.data.records[0] => { _user: '', count: 25748, cost: 411060.85 }
|
|
159206
159293
|
* ```
|
|
159207
159294
|
*/
|
|
159208
|
-
byUser(opts:
|
|
159295
|
+
byUser(opts: AIGatewayChartOptions): Promise<UserGroupResponse>;
|
|
159209
159296
|
/**
|
|
159210
159297
|
* Requests grouped by HTTP status code.
|
|
159211
|
-
* @param opts - Window
|
|
159298
|
+
* @param opts - Window, verified trace/metadata/list/range filters, and optional extra columns.
|
|
159212
159299
|
* @returns One row per status. **446 = AIRS security block** (cost 0, never reached the LLM).
|
|
159213
159300
|
* @example
|
|
159214
159301
|
* ```ts
|
|
@@ -161304,4 +161391,4 @@ declare function buildDottedObject(entries: readonly GatewayDottedValueEntry[]):
|
|
|
161304
161391
|
*/
|
|
161305
161392
|
declare function setDottedValue(input: GatewayJsonObject, path: string, value: GatewayJsonValue): GatewayJsonObject;
|
|
161306
161393
|
|
|
161307
|
-
export { AIGatewayApiKeysClient, type AIGatewayAuditLogListOptions, AIGatewayAuditLogsClient, type AIGatewayChartOptions, AIGatewayClient, type AIGatewayClientOptions, AIGatewayConfigsClient, AIGatewayDeploymentsClient, type AIGatewayGroupOptions, AIGatewayGuardrailsClient, AIGatewayInferenceClient, type AIGatewayInferenceClientOptions, AIGatewayIntegrationsClient, AIGatewayLogExportsClient, type AIGatewayLogsOptions, AIGatewayMcpIntegrationsClient, AIGatewayMcpServersClient, AIGatewayModelPricingClient, type AIGatewayModelPricingClientOptions, AIGatewayOrganisationsClient, type AIGatewayPlane, AIGatewayPluginsClient, AIGatewayProvidersClient, AIGatewayRateLimitsClient, type AIGatewayRequestChartOptions, type AIGatewaySecretOperation, AIGatewaySecretReferencesClient, type AIGatewaySubClientOptions, AIGatewayTelemetryClient, type AIGatewayTelemetryClientOptions, AIGatewayUsageLimitsClient, type AIGatewayWindowOptions, type AIGatewayWorkspaceGetOptions, type AIGatewayWorkspaceListOptions, type AIGatewayWorkspaceScopedListOptions, AIGatewayWorkspacesClient, type AIGatewayWorkspacesClientOptions, AIRS_ENDPOINTS, AISecSDKException, type AISecSDKExceptionMetadata, AI_GATEWAY_DEPLOYMENT_STATUSES, AI_GATEWAY_DEPLOYMENT_TYPES, AI_GATEWAY_KNOWN_API_KEY_SCOPES, AI_GATEWAY_KNOWN_CACHE_MODES, AI_GATEWAY_KNOWN_CONFIG_STRATEGIES, AI_GATEWAY_KNOWN_MCP_AUTH_TYPES, AI_GATEWAY_KNOWN_MCP_TRANSPORTS, AI_GATEWAY_KNOWN_RATE_LIMIT_TYPES, AI_GATEWAY_KNOWN_RATE_LIMIT_UNITS, AI_GATEWAY_MUTABLE_MCP_CAPABILITY_TYPES, AI_GATEWAY_REDACTED, AI_GATEWAY_SECRET_FIELDS, AI_GW_ADMIN_ENDPOINT, AI_GW_API_KEYS_SERVICE_PATH, AI_GW_API_KEYS_USER_PATH, AI_GW_AUDIT_LOGS_PATH, AI_GW_CHARTS_PATH, AI_GW_CHART_METRICS, AI_GW_CONFIGS_PATH, AI_GW_DATA_ENDPOINT, AI_GW_DEPLOYMENTS_PATH, AI_GW_GROUPS_PATH, AI_GW_GROUP_COLUMNS, AI_GW_GROUP_DIMENSIONS, AI_GW_GUARDRAILS_PATH, AI_GW_INTEGRATIONS_PATH, AI_GW_LOGS_PATH, AI_GW_MCP_INTEGRATIONS_PATH, AI_GW_ORGANISATIONS_SELF_PATH, AI_GW_PLUGINS_PATH, AI_GW_PROVIDERS_PATH, AI_GW_WORKSPACES_PATH, AI_SEC_API_ENDPOINT, AI_SEC_API_KEY, AI_SEC_API_TOKEN, ASYNC_SCAN_PATH, Action, Action as ActionType, type AdapterConfigResponse, AdapterConfigResponseSchema, type AdapterCreateRequest, AdapterCreateRequestSchema, type AdapterList, type AdapterListAllOptions, type AdapterListItem, AdapterListItemSchema, type AdapterListOptions, AdapterListSchema, type AdapterOperationOptions, type AdapterResponse, AdapterResponseSchema, type AdapterUpdateRequest, AdapterUpdateRequestSchema, type AdapterValidateRequest, AdapterValidateRequestSchema, type AdapterValidateResponse, AdapterValidateResponseSchema, type AdapterVar, type AdapterVarResponse, AdapterVarResponseSchema, AdapterVarSchema, type AdapterVarType, AdapterVarTypeSchema, type AdvancedDataProfileRequest, AdvancedDataProfileRequestSchema, type AgentEntry, AgentEntrySchema, type AgentMeta, AgentMetaSchema, type AgentProtectionItem, AgentProtectionItemSchema, type AgentReport, AgentReportSchema, type AiProfile, AiProfileSchema, type AiSecurityProfile, AiSecurityProfileSchema, ApiEndpointType, type ApiKey, type ApiKeyCreateRequest, ApiKeyCreateRequestSchema, type ApiKeyDPInfo, ApiKeyDPInfoSchema, type ApiKeyDeleteResponse, ApiKeyDeleteResponseSchema, type ApiKeyListAllOptions, type ApiKeyListResponse, ApiKeyListResponseSchema, type ApiKeyRegenerateRequest, ApiKeyRegenerateRequestSchema, ApiKeySchema, ApiKeysClient, type ApiKeysClientOptions, type AppExclusion, AppExclusionSchema, type AsyncScanObject, AsyncScanObjectSchema, type AsyncScanResponse, AsyncScanResponseSchema, type AttackDetailResponse, AttackDetailResponseSchema, type AttackListItem, AttackListItemSchema, type AttackListOptions, type AttackListResponse, AttackListResponseSchema, type AttackMultiTurnDetailResponse, AttackMultiTurnDetailResponseSchema, type AttackMultiTurnOutput, AttackMultiTurnOutputSchema, type AttackOutput, AttackOutputSchema, AttackStatus, AttackType, type AuditResponse, AuditResponseSchema, type AuthConfig, AuthConfigRequestSchema, AuthConfigSchema, type AuthSettingsResponse, AuthSettingsResponseSchema, AuthType, BEARER, type BaseResponse, BaseResponseSchema, type BasicAuthAuthConfig, BasicAuthAuthConfigSchema, BasicAuthLocation, type BatchAssignCustomRuleRequest, BatchAssignCustomRuleRequestSchema, type BatchAssignCustomRuleResponse, BatchAssignCustomRuleResponseSchema, type BedrockAccessConnectionParams, BedrockAccessConnectionParamsSchema, BrandSubCategory, type CacheHitTrendResponse, CacheHitTrendResponseSchema, type CacheSummaryResponse, CacheSummaryResponseSchema, Category, type CategoryModel, CategoryModelSchema, type CategoryReport, CategoryReportSchema, Category as CategoryType, type CgReport, CgReportSchema, type Channel, type ChannelListOptions, type ChannelListPagination, ChannelListPaginationSchema, type ChannelListResponse, ChannelListResponseSchema, ChannelSchema, type ChannelStats, ChannelStatsSchema, ChannelStatus, ChannelStatusSchema, type ChannelStatusType, type ClaraJobMetadata, ClaraJobMetadataSchema, type ClientIdAndCustomerApp, ClientIdAndCustomerAppSchema, type CmdEntry, CmdEntrySchema, type CmdInjectReport, CmdInjectReportSchema, type CollectAllOptions, type ComparisonOperatorType, ComparisonOperatorTypeSchema, type ComplianceFramework, ComplianceFrameworkSchema, type ComplianceReport, ComplianceReportSchema, ComplianceSubCategory, type ComplianceTechnique, ComplianceTechniqueSchema, type ConditionGroup, ConditionGroupSchema, type ConnectionParams, ConnectionParamsRequestSchema, ConnectionParamsSchema, Content, type ContentError, ContentErrorSchema, ContentErrorType, ContentErrorType as ContentErrorTypeType, type ContentOptions, type CostChartResponse, CostChartResponseSchema, type CountByName, CountByNameSchema, type CountChartResponse, CountChartResponseSchema, CountedQuotaEnum, type CreateChannelRequest, CreateChannelRequestSchema, type CreateCustomTopicRequest, CreateCustomTopicRequestSchema, type CreateSecurityProfileRequest, CreateSecurityProfileRequestSchema, type CursorPagination, CursorPaginationSchema, type CustomAttackOutput, CustomAttackOutputSchema, type CustomAttackReportResponse, CustomAttackReportResponseSchema, type CustomAttacksListResponse, CustomAttacksListResponseSchema, type CustomAttacksReportListOptions, type CustomJobMetadata, CustomJobMetadataSchema, type CustomPromptCreateRequest, CustomPromptCreateRequestSchema, type CustomPromptList, type CustomPromptListItem, CustomPromptListItemSchema, CustomPromptListSchema, type CustomPromptResponse, CustomPromptResponseSchema, type CustomPromptSetArchiveRequest, CustomPromptSetArchiveRequestSchema, type CustomPromptSetCreateRequest, CustomPromptSetCreateRequestSchema, type CustomPromptSetList, type CustomPromptSetListActive, CustomPromptSetListActiveSchema, type CustomPromptSetListItem, CustomPromptSetListItemSchema, CustomPromptSetListSchema, type CustomPromptSetReference, CustomPromptSetReferenceSchema, type CustomPromptSetResponse, CustomPromptSetResponseSchema, type CustomPromptSetUpdateRequest, CustomPromptSetUpdateRequestSchema, type CustomPromptSetVersionInfo, CustomPromptSetVersionInfoSchema, type CustomPromptUpdateRequest, CustomPromptUpdateRequestSchema, type CustomRuleAssignment, type CustomRuleAssignmentResult, CustomRuleAssignmentResultSchema, CustomRuleAssignmentSchema, type CustomRuleCondition, CustomRuleConditionSchema, type CustomRuleCreateRequest, CustomRuleCreateRequestSchema, type CustomRuleListItem, CustomRuleListItemSchema, type CustomRuleListOptions, type CustomRuleResponse, CustomRuleResponseSchema, type CustomRuleSecurityGroup, CustomRuleSecurityGroupSchema, CustomRuleSourceTypeSchema, CustomRuleStateSchema, type CustomRuleUpdateRequest, CustomRuleUpdateRequestSchema, type CustomTopic, type CustomTopicListResponse, CustomTopicListResponseSchema, CustomTopicSchema, type CustomerApp, type CustomerAppDeleteResponse, CustomerAppDeleteResponseSchema, type CustomerAppListAllOptions, type CustomerAppListResponse, CustomerAppListResponseSchema, CustomerAppSchema, type CustomerAppWithKeys, CustomerAppWithKeysSchema, CustomerAppsClient, type CustomerAppsClientOptions, DEFAULT_AI_GW_ADMIN_ENDPOINT, DEFAULT_AI_GW_DATA_ENDPOINT, DEFAULT_DLP_ENDPOINT, DEFAULT_ENDPOINT, DEFAULT_MGMT_ENDPOINT, DEFAULT_MODEL_SEC_DATA_ENDPOINT, DEFAULT_MODEL_SEC_MGMT_ENDPOINT, DEFAULT_RED_TEAM_DATA_ENDPOINT, DEFAULT_RED_TEAM_MGMT_ENDPOINT, DEFAULT_RED_TEAM_NETWORK_BROKER_ENDPOINT, DEFAULT_TOKEN_ENDPOINT, DLP_DATA_FILTERING_PROFILES_PATH, DLP_DATA_PATTERNS_PATH, DLP_DATA_PROFILES_PATH, DLP_DICTIONARIES_PATH, type DSDetailResult, DSDetailResultSchema, type DSResultMetadata, DSResultMetadataSchema, type DashboardAppQuery, type DashboardApplication, DashboardApplicationSchema, type DashboardApplicationSessionsBucket, DashboardApplicationSessionsBucketSchema, type DashboardApplicationViolationBreakdown, DashboardApplicationViolationBreakdownSchema, type DashboardApplicationsOverview, type DashboardApplicationsOverviewItem, DashboardApplicationsOverviewItemSchema, type DashboardApplicationsOverviewQuery, DashboardApplicationsOverviewSchema, DashboardClient, type DashboardClientOptions, type DashboardOverviewResponse, DashboardOverviewResponseSchema, type DashboardPagination, DashboardPaginationSchema, type DashboardSessionStats, DashboardSessionStatsSchema, type DataFilteringDetails, DataFilteringDetailsSchema, type DataFilteringProfileListAllParams, type DataFilteringProfileListParams, type DataFilteringProfileRequest, DataFilteringProfileRequestSchema, type DataFilteringProfileResponse, DataFilteringProfileResponseSchema, DataFilteringProfilesClient, type DataFilteringProfilesClientOptions, type DataFilteringRuleDTO, DataFilteringRuleDTOSchema, type DataLeakDetectionMember, DataLeakDetectionMemberSchema, type DataPatternConfidenceLevel, DataPatternConfidenceLevelSchema, type DataPatternDetectionConfig, DataPatternDetectionConfigSchema, type DataPatternLicenseType, DataPatternLicenseTypeSchema, type DataPatternListAllParams, type DataPatternListParams, type DataPatternMatchingRules, DataPatternMatchingRulesSchema, type DataPatternPatchRequest, DataPatternPatchRequestSchema, type DataPatternRequest, DataPatternRequestSchema, type DataPatternResponse, DataPatternResponseSchema, type DataPatternStatus, DataPatternStatusSchema, type DataPatternTags, DataPatternTagsSchema, type DataPatternTechnique, DataPatternTechniqueSchema, type DataPatternType, DataPatternTypeSchema, DataPatternsClient, type DataPatternsClientOptions, type DataProfileListAllParams, type DataProfileListParams, type DataProfilePatchRequest, DataProfilePatchRequestSchema, type DataProfileResponse, DataProfileResponseSchema, type DataProfileStatus, DataProfileStatusSchema, type DataProfileSubtype, DataProfileSubtypeSchema, type DataProfileType, DataProfileTypeSchema, DataProfilesClient, type DataProfilesClientOptions, type DataProtection, DataProtectionSchema, type DatabaseSecurityItem, DatabaseSecurityItemSchema, type DatabricksConnectionParams, DatabricksConnectionParamsSchema, DateRangeFilter, type DbsEntry, DbsEntrySchema, type DbsReport, DbsReportSchema, type DefaultTreeDetectionRule, DefaultTreeDetectionRuleSchema, type DeleteProfileConflict, DeleteProfileConflictSchema, type DeleteProfileResponse, DeleteProfileResponseSchema, type DeleteTopicConflict, DeleteTopicConflictSchema, type DeleteTopicResponse, DeleteTopicResponseSchema, type DeploymentProfileAttribute, DeploymentProfileAttributeSchema, type DeploymentProfileEntry, DeploymentProfileEntrySchema, type DeploymentProfileListOptions, type DeploymentProfileRequest, DeploymentProfileRequestSchema, DeploymentProfilesClient, type DeploymentProfilesClientOptions, type DeploymentProfilesResponse, DeploymentProfilesResponseSchema, type DestinationAttributes, DestinationAttributesSchema, type DetectionRule, type DetectionRuleItem, DetectionRuleItemSchema, DetectionRuleSchema, DetectionServiceName, DetectionServiceName as DetectionServiceNameType, type DetectionServiceResult, DetectionServiceResultSchema, type DetectorViolationBreakdownEntry, DetectorViolationBreakdownEntrySchema, type Device, type DeviceInstance, DeviceInstanceSchema, type DeviceLicense, DeviceLicenseSchema, type DeviceRequest, DeviceRequestSchema, type DeviceResponse, DeviceResponseSchema, DeviceSchema, type DeviceStatus, DeviceStatusSchema, DictionariesClient, type DictionariesClientOptions, type DictionaryCategory, DictionaryCategorySchema, type DictionaryClassification, DictionaryClassificationSchema, type DictionaryDetectionSubTechnique, DictionaryDetectionSubTechniqueSchema, type DictionaryDetectionTechnique, DictionaryDetectionTechniqueSchema, type DictionaryFileInput, type DictionaryGetParams, type DictionaryListAllParams, type DictionaryListParams, type DictionaryMetaDataDTO, DictionaryMetaDataDTOSchema, type DictionaryPatchRequest, DictionaryPatchRequestSchema, type DictionaryRequest, DictionaryRequestSchema, type DictionaryResponse, DictionaryResponseSchema, type DictionaryTags, DictionaryTagsSchema, type DictionaryType, DictionaryTypeSchema, type DictionaryUploadParams, type DlpDataProfile, type DlpDataProfilePolicy, DlpDataProfilePolicySchema, DlpDataProfileSchema, DlpNamespace, type DlpNamespaceOptions, type DlpPatternDetection, DlpPatternDetectionSchema, type DlpProfileListResponse, DlpProfileListResponseSchema, DlpProfilesClient, type DlpProfilesClientOptions, type DlpReport, DlpReportSchema, type DlpRule, DlpRuleSchema, type DynamicJobMetadata, DynamicJobMetadataSchema, type DynamicJobReport, DynamicJobReportSchema, type DynamicJobReportStats, DynamicJobReportStatsSchema, ErrorCodes, type ErrorLog, type ErrorLogListResponse, ErrorLogListResponseSchema, ErrorLogSchema, type ErrorResponse, ErrorResponseSchema, ErrorSource, ErrorStatus, ErrorStatus as ErrorStatusType, type ErrorTrendsResponse, ErrorTrendsResponseSchema, ErrorType, type EulaAcceptRequest, EulaAcceptRequestSchema, type EulaContentResponse, EulaContentResponseSchema, type EulaResponse, EulaResponseSchema, EvalOutcome, type EvalSummary, EvalSummarySchema, type ExceptionRuleDTO, ExceptionRuleDTOSchema, type Exclusions, ExclusionsSchema, type ExpressionOperatorType, ExpressionOperatorTypeSchema, type ExpressionTreeNode, ExpressionTreeNodeSchema, type FeedbackModelsResponse, FeedbackModelsResponseSchema, type FeedbackScoreDistributionResponse, FeedbackScoreDistributionResponseSchema, FileFormat, type FileList, FileListSchema, type FileResponse, FileResponseSchema, type FileScanData, FileScanDataSchema, FileScanResult, FileType, type GatewayAcuvityScanParameters, GatewayAcuvityScanParametersSchema, type GatewayAllowedRequestTypesParameters, GatewayAllowedRequestTypesParametersSchema, type GatewayApiKey, type GatewayApiKeyCreateRequest, GatewayApiKeyCreateRequestSchema, type GatewayApiKeyRotateRequest, GatewayApiKeyRotateRequestSchema, type GatewayApiKeyRotateResponse, GatewayApiKeyRotateResponseSchema, type GatewayApiKeyRotationPolicy, GatewayApiKeyRotationPolicySchema, GatewayApiKeySchema, type GatewayApiKeyScope, GatewayApiKeyScopeSchema, type GatewayApiKeyUpdateRequest, GatewayApiKeyUpdateRequestSchema, type GatewayAporiaParameters, GatewayAporiaParametersSchema, type GatewayAuditLogRecord, GatewayAuditLogRecordSchema, type GatewayAuditLogsResponse, GatewayAuditLogsResponseSchema, type GatewayAzureAIConfiguration, GatewayAzureAIConfigurationSchema, type GatewayAzureContentSafetyParameters, GatewayAzureContentSafetyParametersSchema, type GatewayAzureDeploymentConfig, GatewayAzureDeploymentConfigSchema, type GatewayAzureDeploymentConfiguration, GatewayAzureDeploymentConfigurationSchema, type GatewayAzureOpenAIConfiguration, GatewayAzureOpenAIConfigurationSchema, type GatewayAzurePIIParameters, GatewayAzurePIIParametersSchema, type GatewayBasicParameters, GatewayBasicParametersSchema, type GatewayBedrockConfiguration, GatewayBedrockConfigurationSchema, type GatewayBedrockGuardParameters, GatewayBedrockGuardParametersSchema, type GatewayBulkSyncMcpServerMappingsRequest, GatewayBulkSyncMcpServerMappingsRequestSchema, type GatewayBulkSyncMcpServerMappingsResponse, GatewayBulkSyncMcpServerMappingsResponseSchema, type GatewayCatalogAzureAIConfiguration, GatewayCatalogAzureAIConfigurationSchema, type GatewayCatalogAzureOpenAIConfiguration, GatewayCatalogAzureOpenAIConfigurationSchema, type GatewayCatalogBedrockConfiguration, GatewayCatalogBedrockConfigurationSchema, type GatewayCatalogCortexConfiguration, GatewayCatalogCortexConfigurationSchema, type GatewayCatalogCustomHostConfiguration, GatewayCatalogCustomHostConfigurationSchema, type GatewayCatalogGuardrailParameters, GatewayCatalogGuardrailParametersSchema, type GatewayCatalogHuggingFaceConfiguration, GatewayCatalogHuggingFaceConfigurationSchema, type GatewayCatalogMcpConfiguration, GatewayCatalogMcpConfigurationSchema, type GatewayCatalogOpenAIConfiguration, GatewayCatalogOpenAIConfigurationSchema, type GatewayCatalogProviderConfiguration, GatewayCatalogProviderConfigurationSchema, type GatewayCatalogSageMakerConfiguration, GatewayCatalogSageMakerConfigurationSchema, type GatewayCatalogSecretMapping, GatewayCatalogSecretMappingSchema, type GatewayCatalogVertexAIConfiguration, GatewayCatalogVertexAIConfigurationSchema, type GatewayCatalogWorkersAIConfiguration, GatewayCatalogWorkersAIConfigurationSchema, type GatewayCharacterCountParameters, GatewayCharacterCountParametersSchema, type GatewayChartRecord, GatewayChartRecordSchema, type GatewayChatCompletion, type GatewayChatCompletionChunk, type GatewayChatCompletionRequest, type GatewayCondition, GatewayConditionSchema, type GatewayConfig, type GatewayConfigCacheMode, GatewayConfigCacheModeSchema, type GatewayConfigCreateRequest, GatewayConfigCreateRequestSchema, type GatewayConfigCreateResponse, GatewayConfigCreateResponseSchema, type GatewayConfigDetail, GatewayConfigDetailSchema, GatewayConfigSchema, type GatewayConfigStrategy, GatewayConfigStrategySchema, type GatewayConfigUpdateRequest, GatewayConfigUpdateRequestSchema, type GatewayConfigVersion, GatewayConfigVersionSchema, type GatewayContainsCodeParameters, GatewayContainsCodeParametersSchema, type GatewayContainsParameters, GatewayContainsParametersSchema, type GatewayCortexConfiguration, GatewayCortexConfigurationSchema, type GatewayCreatePolicyResponse, GatewayCreatePolicyResponseSchema, type GatewayCreateRateLimitsPolicyRequest, GatewayCreateRateLimitsPolicyRequestSchema, type GatewayCreateSecretReferenceRequest, GatewayCreateSecretReferenceRequestSchema, type GatewayCreateUsageLimitsPolicyRequest, GatewayCreateUsageLimitsPolicyRequestSchema, type GatewayCustomHostConfiguration, GatewayCustomHostConfigurationSchema, type GatewayDefaultsInput, GatewayDefaultsInputSchema, type GatewayDeployment, type GatewayDeploymentAuthSettingsInput, GatewayDeploymentAuthSettingsInputSchema, type GatewayDeploymentCreateRequest, GatewayDeploymentCreateRequestSchema, type GatewayDeploymentCreateResponse, GatewayDeploymentCreateResponseSchema, type GatewayDeploymentDetail, GatewayDeploymentDetailSchema, type GatewayDeploymentPingResponse, GatewayDeploymentPingResponseSchema, GatewayDeploymentSchema, type GatewayDeploymentStatus, GatewayDeploymentStatusSchema, type GatewayDeploymentTags, GatewayDeploymentTagsSchema, type GatewayDeploymentType, GatewayDeploymentTypeSchema, type GatewayDeploymentUpdateRequest, GatewayDeploymentUpdateRequestSchema, type GatewayDottedValueEntry, type GatewayDownloadLogsResponse, GatewayDownloadLogsResponseSchema, type GatewayEmbeddingRequest, type GatewayEmbeddingResponse, type GatewayEndsWithParameters, GatewayEndsWithParametersSchema, type GatewayExportItem, GatewayExportItemSchema, type GatewayExportListResponse, GatewayExportListResponseSchema, type GatewayExportTaskResponse, GatewayExportTaskResponseSchema, type GatewayGenerationsFilterSchema, GatewayGenerationsFilterSchemaSchema, type GatewayGlobalWorkspaceAccess, type GatewayGlobalWorkspaceAccessInput, GatewayGlobalWorkspaceAccessInputSchema, GatewayGlobalWorkspaceAccessSchema, type GatewayGroupBy, GatewayGroupBySchema, type GatewayGroupRow, GatewayGroupRowSchema, type GatewayGuardrail, type GatewayGuardrailActions, GatewayGuardrailActionsSchema, type GatewayGuardrailCheck, GatewayGuardrailCheckSchema, type GatewayGuardrailCreateRequest, GatewayGuardrailCreateRequestSchema, type GatewayGuardrailCreateResponse, GatewayGuardrailCreateResponseSchema, type GatewayGuardrailDetail, GatewayGuardrailDetailSchema, GatewayGuardrailSchema, type GatewayGuardrailUpdateRequest, GatewayGuardrailUpdateRequestSchema, type GatewayHuggingFaceConfiguration, GatewayHuggingFaceConfigurationSchema, type GatewayInferenceAnalyticsMetrics, GatewayInferenceAnalyticsMetricsSchema, type GatewayInferenceAnnotation, GatewayInferenceAnnotationSchema, type GatewayInferenceBatch, GatewayInferenceBatchSchema, type GatewayInferenceChatCompletionFunctionCallOption, GatewayInferenceChatCompletionFunctionCallOptionSchema, type GatewayInferenceChatCompletionFunctions, GatewayInferenceChatCompletionFunctionsSchema, type GatewayInferenceChatCompletionMessageContentBlock, GatewayInferenceChatCompletionMessageContentBlockSchema, type GatewayInferenceChatCompletionMessageContentPartRedactedThinking, GatewayInferenceChatCompletionMessageContentPartRedactedThinkingSchema, type GatewayInferenceChatCompletionMessageContentPartThinking, GatewayInferenceChatCompletionMessageContentPartThinkingSchema, type GatewayInferenceChatCompletionMessageToolCall, type GatewayInferenceChatCompletionMessageToolCallChunk, GatewayInferenceChatCompletionMessageToolCallChunkSchema, GatewayInferenceChatCompletionMessageToolCallSchema, type GatewayInferenceChatCompletionMessageToolCalls, GatewayInferenceChatCompletionMessageToolCallsSchema, type GatewayInferenceChatCompletionNamedToolChoice, GatewayInferenceChatCompletionNamedToolChoiceSchema, type GatewayInferenceChatCompletionRequestAssistantMessage, GatewayInferenceChatCompletionRequestAssistantMessageSchema, type GatewayInferenceChatCompletionRequestDeveloperMessage, GatewayInferenceChatCompletionRequestDeveloperMessageSchema, type GatewayInferenceChatCompletionRequestFunctionMessage, GatewayInferenceChatCompletionRequestFunctionMessageSchema, type GatewayInferenceChatCompletionRequestMessage, type GatewayInferenceChatCompletionRequestMessageContentPart, type GatewayInferenceChatCompletionRequestMessageContentPartImage, GatewayInferenceChatCompletionRequestMessageContentPartImageSchema, GatewayInferenceChatCompletionRequestMessageContentPartSchema, type GatewayInferenceChatCompletionRequestMessageContentPartText, GatewayInferenceChatCompletionRequestMessageContentPartTextSchema, GatewayInferenceChatCompletionRequestMessageSchema, type GatewayInferenceChatCompletionRequestSystemMessage, GatewayInferenceChatCompletionRequestSystemMessageSchema, type GatewayInferenceChatCompletionRequestToolMessage, GatewayInferenceChatCompletionRequestToolMessageSchema, type GatewayInferenceChatCompletionRequestUserMessage, GatewayInferenceChatCompletionRequestUserMessageSchema, type GatewayInferenceChatCompletionResponseMessage, GatewayInferenceChatCompletionResponseMessageSchema, type GatewayInferenceChatCompletionStreamOptions, GatewayInferenceChatCompletionStreamOptionsSchema, type GatewayInferenceChatCompletionStreamResponseDelta, GatewayInferenceChatCompletionStreamResponseDeltaSchema, type GatewayInferenceChatCompletionTokenLogprob, GatewayInferenceChatCompletionTokenLogprobSchema, type GatewayInferenceChatCompletionTool, type GatewayInferenceChatCompletionToolChoiceOption, GatewayInferenceChatCompletionToolChoiceOptionSchema, GatewayInferenceChatCompletionToolSchema, type GatewayInferenceClick, GatewayInferenceClickSchema, type GatewayInferenceCodeInterpreterFileOutput, GatewayInferenceCodeInterpreterFileOutputSchema, type GatewayInferenceCodeInterpreterTextOutput, GatewayInferenceCodeInterpreterTextOutputSchema, type GatewayInferenceCodeInterpreterToolCall, GatewayInferenceCodeInterpreterToolCallSchema, type GatewayInferenceCodeInterpreterToolOutput, GatewayInferenceCodeInterpreterToolOutputSchema, type GatewayInferenceComparisonFilter, GatewayInferenceComparisonFilterSchema, type GatewayInferenceCompletionUsage, GatewayInferenceCompletionUsageSchema, type GatewayInferenceCompoundFilter, GatewayInferenceCompoundFilterSchema, type GatewayInferenceComputerAction, GatewayInferenceComputerActionSchema, type GatewayInferenceComputerScreenshotImage, GatewayInferenceComputerScreenshotImageSchema, type GatewayInferenceComputerTool, type GatewayInferenceComputerToolCall, type GatewayInferenceComputerToolCallOutputResource, GatewayInferenceComputerToolCallOutputResourceSchema, type GatewayInferenceComputerToolCallSafetyCheck, GatewayInferenceComputerToolCallSafetyCheckSchema, GatewayInferenceComputerToolCallSchema, GatewayInferenceComputerToolSchema, type GatewayInferenceCoordinate, GatewayInferenceCoordinateSchema, type GatewayInferenceCreateChatCompletionRequest, GatewayInferenceCreateChatCompletionRequestSchema, type GatewayInferenceCreateChatCompletionResponse, GatewayInferenceCreateChatCompletionResponseSchema, type GatewayInferenceCreateChatCompletionStreamResponse, GatewayInferenceCreateChatCompletionStreamResponseSchema, type GatewayInferenceCreateCompletionRequest, GatewayInferenceCreateCompletionRequestSchema, type GatewayInferenceCreateCompletionResponse, GatewayInferenceCreateCompletionResponseSchema, type GatewayInferenceCreateEmbeddingResponse, GatewayInferenceCreateEmbeddingResponseSchema, type GatewayInferenceCreateModerationResponse, GatewayInferenceCreateModerationResponseSchema, type GatewayInferenceCreateOcrResponse, GatewayInferenceCreateOcrResponseSchema, type GatewayInferenceCreatePromptCompletionResponse, GatewayInferenceCreatePromptCompletionResponseSchema, type GatewayInferenceCreatePromptCompletionStreamResponse, GatewayInferenceCreatePromptCompletionStreamResponseSchema, type GatewayInferenceCreatePromptRenderResponse, GatewayInferenceCreatePromptRenderResponseSchema, type GatewayInferenceCreateRerankResponse, GatewayInferenceCreateRerankResponseSchema, type GatewayInferenceCreateTranscriptionResponseJson, GatewayInferenceCreateTranscriptionResponseJsonSchema, type GatewayInferenceCreateTranscriptionResponseVerboseJson, GatewayInferenceCreateTranscriptionResponseVerboseJsonSchema, type GatewayInferenceCreateTranslationResponseJson, GatewayInferenceCreateTranslationResponseJsonSchema, type GatewayInferenceCreateTranslationResponseVerboseJson, GatewayInferenceCreateTranslationResponseVerboseJsonSchema, type GatewayInferenceDeleteFileResponse, GatewayInferenceDeleteFileResponseSchema, type GatewayInferenceDeleteModelResponse, GatewayInferenceDeleteModelResponseSchema, type GatewayInferenceDeleteVectorStoreFileResponse, GatewayInferenceDeleteVectorStoreFileResponseSchema, type GatewayInferenceDeleteVectorStoreResponse, GatewayInferenceDeleteVectorStoreResponseSchema, type GatewayInferenceDoubleClick, GatewayInferenceDoubleClickSchema, type GatewayInferenceDrag, GatewayInferenceDragSchema, type GatewayInferenceEmbedding, GatewayInferenceEmbeddingSchema, type GatewayInferenceFeedbackResponse, GatewayInferenceFeedbackResponseSchema, type GatewayInferenceFileCitation, GatewayInferenceFileCitationSchema, type GatewayInferenceFilePath, GatewayInferenceFilePathSchema, type GatewayInferenceFileSearchTool, type GatewayInferenceFileSearchToolCall, GatewayInferenceFileSearchToolCallSchema, GatewayInferenceFileSearchToolSchema, type GatewayInferenceFineTuningIntegration, GatewayInferenceFineTuningIntegrationSchema, type GatewayInferenceFineTuningJob, type GatewayInferenceFineTuningJobCheckpoint, GatewayInferenceFineTuningJobCheckpointSchema, type GatewayInferenceFineTuningJobEvent, GatewayInferenceFineTuningJobEventSchema, GatewayInferenceFineTuningJobSchema, type GatewayInferenceFunctionObject, GatewayInferenceFunctionObjectSchema, type GatewayInferenceFunctionParameters, GatewayInferenceFunctionParametersSchema, type GatewayInferenceFunctionTool, type GatewayInferenceFunctionToolCall, type GatewayInferenceFunctionToolCallOutputResource, GatewayInferenceFunctionToolCallOutputResourceSchema, type GatewayInferenceFunctionToolCallResource, GatewayInferenceFunctionToolCallResourceSchema, GatewayInferenceFunctionToolCallSchema, GatewayInferenceFunctionToolSchema, type GatewayInferenceImage, GatewayInferenceImageSchema, type GatewayInferenceImagesResponse, GatewayInferenceImagesResponseSchema, type GatewayInferenceInputAnnotation, GatewayInferenceInputAnnotationSchema, type GatewayInferenceInputAutoChunkingStrategyRequestParam, GatewayInferenceInputAutoChunkingStrategyRequestParamSchema, type GatewayInferenceInputBedrockBatchJob, GatewayInferenceInputBedrockBatchJobSchema, type GatewayInferenceInputBedrockFinetuneJob, GatewayInferenceInputBedrockFinetuneJobSchema, type GatewayInferenceInputChatCompletionFunctionCallOption, GatewayInferenceInputChatCompletionFunctionCallOptionSchema, type GatewayInferenceInputChatCompletionFunctions, GatewayInferenceInputChatCompletionFunctionsSchema, type GatewayInferenceInputChatCompletionMessageToolCall, GatewayInferenceInputChatCompletionMessageToolCallSchema, type GatewayInferenceInputChatCompletionMessageToolCalls, GatewayInferenceInputChatCompletionMessageToolCallsSchema, type GatewayInferenceInputChatCompletionNamedToolChoice, GatewayInferenceInputChatCompletionNamedToolChoiceSchema, type GatewayInferenceInputChatCompletionRequestAssistantMessage, GatewayInferenceInputChatCompletionRequestAssistantMessageSchema, type GatewayInferenceInputChatCompletionRequestDeveloperMessage, GatewayInferenceInputChatCompletionRequestDeveloperMessageSchema, type GatewayInferenceInputChatCompletionRequestFunctionMessage, GatewayInferenceInputChatCompletionRequestFunctionMessageSchema, type GatewayInferenceInputChatCompletionRequestMessage, type GatewayInferenceInputChatCompletionRequestMessageContentPart, type GatewayInferenceInputChatCompletionRequestMessageContentPartImage, GatewayInferenceInputChatCompletionRequestMessageContentPartImageSchema, GatewayInferenceInputChatCompletionRequestMessageContentPartSchema, type GatewayInferenceInputChatCompletionRequestMessageContentPartText, GatewayInferenceInputChatCompletionRequestMessageContentPartTextSchema, GatewayInferenceInputChatCompletionRequestMessageSchema, type GatewayInferenceInputChatCompletionRequestSystemMessage, GatewayInferenceInputChatCompletionRequestSystemMessageSchema, type GatewayInferenceInputChatCompletionRequestToolMessage, GatewayInferenceInputChatCompletionRequestToolMessageSchema, type GatewayInferenceInputChatCompletionRequestUserMessage, GatewayInferenceInputChatCompletionRequestUserMessageSchema, type GatewayInferenceInputChatCompletionStreamOptions, GatewayInferenceInputChatCompletionStreamOptionsSchema, type GatewayInferenceInputChatCompletionTool, type GatewayInferenceInputChatCompletionToolChoiceOption, GatewayInferenceInputChatCompletionToolChoiceOptionSchema, GatewayInferenceInputChatCompletionToolSchema, type GatewayInferenceInputChunkingStrategyRequestParam, GatewayInferenceInputChunkingStrategyRequestParamSchema, type GatewayInferenceInputClick, GatewayInferenceInputClickSchema, type GatewayInferenceInputComparisonFilter, GatewayInferenceInputComparisonFilterSchema, type GatewayInferenceInputCompoundFilter, GatewayInferenceInputCompoundFilterSchema, type GatewayInferenceInputComputerAction, GatewayInferenceInputComputerActionSchema, type GatewayInferenceInputComputerScreenshotImage, GatewayInferenceInputComputerScreenshotImageSchema, type GatewayInferenceInputComputerTool, type GatewayInferenceInputComputerToolCall, type GatewayInferenceInputComputerToolCallOutput, GatewayInferenceInputComputerToolCallOutputSchema, type GatewayInferenceInputComputerToolCallSafetyCheck, GatewayInferenceInputComputerToolCallSafetyCheckSchema, GatewayInferenceInputComputerToolCallSchema, GatewayInferenceInputComputerToolSchema, type GatewayInferenceInputContent, GatewayInferenceInputContentSchema, type GatewayInferenceInputCoordinate, GatewayInferenceInputCoordinateSchema, type GatewayInferenceInputCreateBatchRequest, GatewayInferenceInputCreateBatchRequestSchema, type GatewayInferenceInputCreateChatCompletionRequest, GatewayInferenceInputCreateChatCompletionRequestSchema, type GatewayInferenceInputCreateCompletionRequest, GatewayInferenceInputCreateCompletionRequestSchema, type GatewayInferenceInputCreateEmbeddingRequest, GatewayInferenceInputCreateEmbeddingRequestSchema, type GatewayInferenceInputCreateFileRequest, GatewayInferenceInputCreateFileRequestSchema, type GatewayInferenceInputCreateFineTuningJobRequest, GatewayInferenceInputCreateFineTuningJobRequestSchema, type GatewayInferenceInputCreateImageEditRequest, GatewayInferenceInputCreateImageEditRequestSchema, type GatewayInferenceInputCreateImageRequest, GatewayInferenceInputCreateImageRequestSchema, type GatewayInferenceInputCreateImageVariationRequest, GatewayInferenceInputCreateImageVariationRequestSchema, type GatewayInferenceInputCreateLogsRequest, GatewayInferenceInputCreateLogsRequestSchema, type GatewayInferenceInputCreateModerationRequest, GatewayInferenceInputCreateModerationRequestSchema, type GatewayInferenceInputCreateOcrRequest, GatewayInferenceInputCreateOcrRequestSchema, type GatewayInferenceInputCreatePromptCompletionRequest, GatewayInferenceInputCreatePromptCompletionRequestSchema, type GatewayInferenceInputCreatePromptRenderRequest, GatewayInferenceInputCreatePromptRenderRequestSchema, type GatewayInferenceInputCreateRerankRequest, GatewayInferenceInputCreateRerankRequestSchema, type GatewayInferenceInputCreateResponse, GatewayInferenceInputCreateResponseSchema, type GatewayInferenceInputCreateSpeechRequest, GatewayInferenceInputCreateSpeechRequestSchema, type GatewayInferenceInputCreateTranscriptionRequest, GatewayInferenceInputCreateTranscriptionRequestSchema, type GatewayInferenceInputCreateTranslationRequest, GatewayInferenceInputCreateTranslationRequestSchema, type GatewayInferenceInputCreateVectorStoreFileBatchRequest, GatewayInferenceInputCreateVectorStoreFileBatchRequestSchema, type GatewayInferenceInputCreateVectorStoreFileRequest, GatewayInferenceInputCreateVectorStoreFileRequestSchema, type GatewayInferenceInputCreateVectorStoreRequest, GatewayInferenceInputCreateVectorStoreRequestSchema, type GatewayInferenceInputCustomLog, GatewayInferenceInputCustomLogSchema, type GatewayInferenceInputDoubleClick, GatewayInferenceInputDoubleClickSchema, type GatewayInferenceInputDrag, GatewayInferenceInputDragSchema, type GatewayInferenceInputEasyInputMessage, GatewayInferenceInputEasyInputMessageSchema, type GatewayInferenceInputFeedbackRequest, GatewayInferenceInputFeedbackRequestSchema, type GatewayInferenceInputFeedbackUpdateRequest, GatewayInferenceInputFeedbackUpdateRequestSchema, type GatewayInferenceInputFile, type GatewayInferenceInputFileCitation, GatewayInferenceInputFileCitationSchema, type GatewayInferenceInputFilePath, GatewayInferenceInputFilePathSchema, GatewayInferenceInputFileSchema, type GatewayInferenceInputFileSearchTool, type GatewayInferenceInputFileSearchToolCall, GatewayInferenceInputFileSearchToolCallSchema, GatewayInferenceInputFileSearchToolSchema, type GatewayInferenceInputFunctionObject, GatewayInferenceInputFunctionObjectSchema, type GatewayInferenceInputFunctionParameters, GatewayInferenceInputFunctionParametersSchema, type GatewayInferenceInputFunctionTool, type GatewayInferenceInputFunctionToolCall, type GatewayInferenceInputFunctionToolCallOutput, GatewayInferenceInputFunctionToolCallOutputSchema, GatewayInferenceInputFunctionToolCallSchema, GatewayInferenceInputFunctionToolSchema, type GatewayInferenceInputGetLogQuery, GatewayInferenceInputGetLogQuerySchema, type GatewayInferenceInputGetResponseQuery, GatewayInferenceInputGetResponseQuerySchema, type GatewayInferenceInputImage, GatewayInferenceInputImageSchema, type GatewayInferenceInputIncludable, GatewayInferenceInputIncludableSchema, type GatewayInferenceInputInputContent, GatewayInferenceInputInputContentSchema, type GatewayInferenceInputInputFile, GatewayInferenceInputInputFileSchema, type GatewayInferenceInputInputImage, GatewayInferenceInputInputImageSchema, type GatewayInferenceInputInputItem, GatewayInferenceInputInputItemSchema, type GatewayInferenceInputInputMessage, type GatewayInferenceInputInputMessageContentList, GatewayInferenceInputInputMessageContentListSchema, GatewayInferenceInputInputMessageSchema, type GatewayInferenceInputInputText, GatewayInferenceInputInputTextSchema, type GatewayInferenceInputItem, type GatewayInferenceInputItemReference, GatewayInferenceInputItemReferenceSchema, GatewayInferenceInputItemSchema, type GatewayInferenceInputKeyPress, GatewayInferenceInputKeyPressSchema, type GatewayInferenceInputListBatchesQuery, GatewayInferenceInputListBatchesQuerySchema, type GatewayInferenceInputListFilesInVectorStoreBatchQuery, GatewayInferenceInputListFilesInVectorStoreBatchQuerySchema, type GatewayInferenceInputListFilesQuery, GatewayInferenceInputListFilesQuerySchema, type GatewayInferenceInputListFineTuningEventsQuery, GatewayInferenceInputListFineTuningEventsQuerySchema, type GatewayInferenceInputListFineTuningJobCheckpointsQuery, GatewayInferenceInputListFineTuningJobCheckpointsQuerySchema, type GatewayInferenceInputListInputItemsQuery, GatewayInferenceInputListInputItemsQuerySchema, type GatewayInferenceInputListModelsQuery, GatewayInferenceInputListModelsQuerySchema, type GatewayInferenceInputListPaginatedFineTuningJobsQuery, GatewayInferenceInputListPaginatedFineTuningJobsQuerySchema, type GatewayInferenceInputListVectorStoreFilesQuery, GatewayInferenceInputListVectorStoreFilesQuerySchema, type GatewayInferenceInputListVectorStoresQuery, GatewayInferenceInputListVectorStoresQuerySchema, type GatewayInferenceInputMessageContentList, GatewayInferenceInputMessageContentListSchema, type GatewayInferenceInputMessageResource, GatewayInferenceInputMessageResourceSchema, type GatewayInferenceInputMetadata, GatewayInferenceInputMetadataSchema, type GatewayInferenceInputModelIdsResponses, GatewayInferenceInputModelIdsResponsesSchema, type GatewayInferenceInputMove, GatewayInferenceInputMoveSchema, type GatewayInferenceInputOpenAIBatchJob, GatewayInferenceInputOpenAIBatchJobSchema, type GatewayInferenceInputOpenAIFinetuneJob, GatewayInferenceInputOpenAIFinetuneJobSchema, type GatewayInferenceInputOutputContent, GatewayInferenceInputOutputContentSchema, type GatewayInferenceInputOutputMessage, GatewayInferenceInputOutputMessageSchema, type GatewayInferenceInputOutputText, GatewayInferenceInputOutputTextSchema, type GatewayInferenceInputParallelToolCalls, GatewayInferenceInputParallelToolCallsSchema, type GatewayInferenceInputPortkeyBatchJob, GatewayInferenceInputPortkeyBatchJobSchema, type GatewayInferenceInputPortkeyFinetuneJob, GatewayInferenceInputPortkeyFinetuneJobSchema, type GatewayInferenceInputReasoning, type GatewayInferenceInputReasoningEffort, GatewayInferenceInputReasoningEffortSchema, type GatewayInferenceInputReasoningItem, GatewayInferenceInputReasoningItemSchema, GatewayInferenceInputReasoningSchema, type GatewayInferenceInputRefusal, GatewayInferenceInputRefusalSchema, type GatewayInferenceInputRerankDocument, GatewayInferenceInputRerankDocumentSchema, type GatewayInferenceInputResponseFormatJsonObject, GatewayInferenceInputResponseFormatJsonObjectSchema, type GatewayInferenceInputResponseFormatJsonSchema, GatewayInferenceInputResponseFormatJsonSchemaSchema, GatewayInferenceInputResponseFormatJsonSchemaSchemaSchema, type GatewayInferenceInputResponseFormatText, GatewayInferenceInputResponseFormatTextSchema, type GatewayInferenceInputScreenshot, GatewayInferenceInputScreenshotSchema, type GatewayInferenceInputScroll, GatewayInferenceInputScrollSchema, type GatewayInferenceInputStaticChunkingStrategy, type GatewayInferenceInputStaticChunkingStrategyRequestParam, GatewayInferenceInputStaticChunkingStrategyRequestParamSchema, GatewayInferenceInputStaticChunkingStrategySchema, type GatewayInferenceInputText, type GatewayInferenceInputTextResponseFormatConfiguration, GatewayInferenceInputTextResponseFormatConfigurationSchema, type GatewayInferenceInputTextResponseFormatJsonSchema, GatewayInferenceInputTextResponseFormatJsonSchemaSchema, GatewayInferenceInputTextSchema, type GatewayInferenceInputTool, type GatewayInferenceInputToolChoiceFunction, GatewayInferenceInputToolChoiceFunctionSchema, type GatewayInferenceInputToolChoiceOptions, GatewayInferenceInputToolChoiceOptionsSchema, type GatewayInferenceInputToolChoiceTypes, GatewayInferenceInputToolChoiceTypesSchema, GatewayInferenceInputToolSchema, type GatewayInferenceInputType, GatewayInferenceInputTypeSchema, type GatewayInferenceInputUpdateVectorStoreRequest, GatewayInferenceInputUpdateVectorStoreRequestSchema, type GatewayInferenceInputUrlCitation, GatewayInferenceInputUrlCitationSchema, type GatewayInferenceInputVectorStoreExpirationAfter, GatewayInferenceInputVectorStoreExpirationAfterSchema, type GatewayInferenceInputVectorStoreFileAttributes, GatewayInferenceInputVectorStoreFileAttributesSchema, type GatewayInferenceInputVertexBatchJob, GatewayInferenceInputVertexBatchJobSchema, type GatewayInferenceInputWait, GatewayInferenceInputWaitSchema, type GatewayInferenceInputWebSearchContextSize, GatewayInferenceInputWebSearchContextSizeSchema, type GatewayInferenceInputWebSearchTool, type GatewayInferenceInputWebSearchToolCall, GatewayInferenceInputWebSearchToolCallSchema, GatewayInferenceInputWebSearchToolSchema, type GatewayInferenceItemResource, GatewayInferenceItemResourceSchema, type GatewayInferenceKeyPress, GatewayInferenceKeyPressSchema, type GatewayInferenceListBatchesResponse, GatewayInferenceListBatchesResponseSchema, type GatewayInferenceListFilesResponse, GatewayInferenceListFilesResponseSchema, type GatewayInferenceListFineTuningJobCheckpointsResponse, GatewayInferenceListFineTuningJobCheckpointsResponseSchema, type GatewayInferenceListFineTuningJobEventsResponse, GatewayInferenceListFineTuningJobEventsResponseSchema, type GatewayInferenceListModelsResponse, GatewayInferenceListModelsResponseSchema, type GatewayInferenceListPaginatedFineTuningJobsResponse, GatewayInferenceListPaginatedFineTuningJobsResponseSchema, type GatewayInferenceListVectorStoreFilesResponse, GatewayInferenceListVectorStoreFilesResponseSchema, type GatewayInferenceListVectorStoresResponse, GatewayInferenceListVectorStoresResponseSchema, type GatewayInferenceLogObject, GatewayInferenceLogObjectSchema, type GatewayInferenceLogRequest, GatewayInferenceLogRequestSchema, type GatewayInferenceLogResponse, GatewayInferenceLogResponseSchema, type GatewayInferenceMetadata, GatewayInferenceMetadataSchema, type GatewayInferenceModel, type GatewayInferenceModelIdsResponses, GatewayInferenceModelIdsResponsesSchema, GatewayInferenceModelSchema, type GatewayInferenceMove, GatewayInferenceMoveSchema, type GatewayInferenceOcrPage, GatewayInferenceOcrPageSchema, type GatewayInferenceOpenAIFile, GatewayInferenceOpenAIFileSchema, type GatewayInferenceOtherChunkingStrategyResponseParam, GatewayInferenceOtherChunkingStrategyResponseParamSchema, type GatewayInferenceOutputContent, GatewayInferenceOutputContentSchema, type GatewayInferenceOutputItem, GatewayInferenceOutputItemSchema, type GatewayInferenceOutputMessage, GatewayInferenceOutputMessageSchema, type GatewayInferenceOutputText, GatewayInferenceOutputTextSchema, type GatewayInferenceParallelToolCalls, GatewayInferenceParallelToolCallsSchema, type GatewayInferencePromptRenderResponse, GatewayInferencePromptRenderResponseSchema, type GatewayInferenceReasoning, type GatewayInferenceReasoningEffort, GatewayInferenceReasoningEffortSchema, type GatewayInferenceReasoningItem, GatewayInferenceReasoningItemSchema, GatewayInferenceReasoningSchema, type GatewayInferenceRefusal, GatewayInferenceRefusalSchema, type GatewayInferenceRequestOptions, type GatewayInferenceRequestResponseObject, GatewayInferenceRequestResponseObjectSchema, type GatewayInferenceRerankResult, GatewayInferenceRerankResultSchema, type GatewayInferenceRerankUsage, GatewayInferenceRerankUsageSchema, type GatewayInferenceResponse, type GatewayInferenceResponseAudioDeltaEvent, GatewayInferenceResponseAudioDeltaEventSchema, type GatewayInferenceResponseAudioDoneEvent, GatewayInferenceResponseAudioDoneEventSchema, type GatewayInferenceResponseAudioTranscriptDeltaEvent, GatewayInferenceResponseAudioTranscriptDeltaEventSchema, type GatewayInferenceResponseAudioTranscriptDoneEvent, GatewayInferenceResponseAudioTranscriptDoneEventSchema, type GatewayInferenceResponseCodeInterpreterCallCodeDeltaEvent, GatewayInferenceResponseCodeInterpreterCallCodeDeltaEventSchema, type GatewayInferenceResponseCodeInterpreterCallCodeDoneEvent, GatewayInferenceResponseCodeInterpreterCallCodeDoneEventSchema, type GatewayInferenceResponseCodeInterpreterCallCompletedEvent, GatewayInferenceResponseCodeInterpreterCallCompletedEventSchema, type GatewayInferenceResponseCodeInterpreterCallInProgressEvent, GatewayInferenceResponseCodeInterpreterCallInProgressEventSchema, type GatewayInferenceResponseCodeInterpreterCallInterpretingEvent, GatewayInferenceResponseCodeInterpreterCallInterpretingEventSchema, type GatewayInferenceResponseCompletedEvent, GatewayInferenceResponseCompletedEventSchema, type GatewayInferenceResponseContentPartAddedEvent, GatewayInferenceResponseContentPartAddedEventSchema, type GatewayInferenceResponseContentPartDoneEvent, GatewayInferenceResponseContentPartDoneEventSchema, type GatewayInferenceResponseCreatedEvent, GatewayInferenceResponseCreatedEventSchema, type GatewayInferenceResponseError, type GatewayInferenceResponseErrorCode, GatewayInferenceResponseErrorCodeSchema, type GatewayInferenceResponseErrorEvent, GatewayInferenceResponseErrorEventSchema, GatewayInferenceResponseErrorSchema, type GatewayInferenceResponseFailedEvent, GatewayInferenceResponseFailedEventSchema, type GatewayInferenceResponseFileSearchCallCompletedEvent, GatewayInferenceResponseFileSearchCallCompletedEventSchema, type GatewayInferenceResponseFileSearchCallInProgressEvent, GatewayInferenceResponseFileSearchCallInProgressEventSchema, type GatewayInferenceResponseFileSearchCallSearchingEvent, GatewayInferenceResponseFileSearchCallSearchingEventSchema, type GatewayInferenceResponseFormatJsonObject, GatewayInferenceResponseFormatJsonObjectSchema, type GatewayInferenceResponseFormatJsonSchema, GatewayInferenceResponseFormatJsonSchemaSchema, GatewayInferenceResponseFormatJsonSchemaSchemaSchema, type GatewayInferenceResponseFormatText, GatewayInferenceResponseFormatTextSchema, type GatewayInferenceResponseFunctionCallArgumentsDeltaEvent, GatewayInferenceResponseFunctionCallArgumentsDeltaEventSchema, type GatewayInferenceResponseFunctionCallArgumentsDoneEvent, GatewayInferenceResponseFunctionCallArgumentsDoneEventSchema, type GatewayInferenceResponseInProgressEvent, GatewayInferenceResponseInProgressEventSchema, type GatewayInferenceResponseIncompleteEvent, GatewayInferenceResponseIncompleteEventSchema, type GatewayInferenceResponseItemList, GatewayInferenceResponseItemListSchema, type GatewayInferenceResponseOutputItemAddedEvent, GatewayInferenceResponseOutputItemAddedEventSchema, type GatewayInferenceResponseOutputItemDoneEvent, GatewayInferenceResponseOutputItemDoneEventSchema, type GatewayInferenceResponseRefusalDeltaEvent, GatewayInferenceResponseRefusalDeltaEventSchema, type GatewayInferenceResponseRefusalDoneEvent, GatewayInferenceResponseRefusalDoneEventSchema, GatewayInferenceResponseSchema, type GatewayInferenceResponseStreamEvent, GatewayInferenceResponseStreamEventSchema, type GatewayInferenceResponseTextAnnotationDeltaEvent, GatewayInferenceResponseTextAnnotationDeltaEventSchema, type GatewayInferenceResponseTextDeltaEvent, GatewayInferenceResponseTextDeltaEventSchema, type GatewayInferenceResponseTextDoneEvent, GatewayInferenceResponseTextDoneEventSchema, type GatewayInferenceResponseUsage, GatewayInferenceResponseUsageSchema, type GatewayInferenceResponseWebSearchCallCompletedEvent, GatewayInferenceResponseWebSearchCallCompletedEventSchema, type GatewayInferenceResponseWebSearchCallInProgressEvent, GatewayInferenceResponseWebSearchCallInProgressEventSchema, type GatewayInferenceResponseWebSearchCallSearchingEvent, GatewayInferenceResponseWebSearchCallSearchingEventSchema, type GatewayInferenceScreenshot, GatewayInferenceScreenshotSchema, type GatewayInferenceScroll, GatewayInferenceScrollSchema, type GatewayInferenceStaticChunkingStrategy, type GatewayInferenceStaticChunkingStrategyResponseParam, GatewayInferenceStaticChunkingStrategyResponseParamSchema, GatewayInferenceStaticChunkingStrategySchema, type GatewayInferenceTextResponseFormatConfiguration, GatewayInferenceTextResponseFormatConfigurationSchema, type GatewayInferenceTextResponseFormatJsonSchema, GatewayInferenceTextResponseFormatJsonSchemaSchema, type GatewayInferenceTool, type GatewayInferenceToolChoiceFunction, GatewayInferenceToolChoiceFunctionSchema, type GatewayInferenceToolChoiceOptions, GatewayInferenceToolChoiceOptionsSchema, type GatewayInferenceToolChoiceTypes, GatewayInferenceToolChoiceTypesSchema, GatewayInferenceToolSchema, type GatewayInferenceTranscriptionSegment, GatewayInferenceTranscriptionSegmentSchema, type GatewayInferenceTranscriptionWord, GatewayInferenceTranscriptionWordSchema, type GatewayInferenceType, GatewayInferenceTypeSchema, type GatewayInferenceUrlCitation, GatewayInferenceUrlCitationSchema, type GatewayInferenceVectorStoreExpirationAfter, GatewayInferenceVectorStoreExpirationAfterSchema, type GatewayInferenceVectorStoreFileAttributes, GatewayInferenceVectorStoreFileAttributesSchema, type GatewayInferenceVectorStoreFileBatchObject, GatewayInferenceVectorStoreFileBatchObjectSchema, type GatewayInferenceVectorStoreFileObject, GatewayInferenceVectorStoreFileObjectSchema, type GatewayInferenceVectorStoreObject, GatewayInferenceVectorStoreObjectSchema, type GatewayInferenceWait, GatewayInferenceWaitSchema, type GatewayInferenceWebSearchContextSize, GatewayInferenceWebSearchContextSizeSchema, type GatewayInferenceWebSearchTool, type GatewayInferenceWebSearchToolCall, GatewayInferenceWebSearchToolCallSchema, GatewayInferenceWebSearchToolSchema, type GatewayIntegration, type GatewayIntegrationConfiguration, type GatewayIntegrationCreateRequest, GatewayIntegrationCreateRequestSchema, type GatewayIntegrationModelUpdate, GatewayIntegrationModelUpdateSchema, type GatewayIntegrationModelsBulkUpdateRequest, GatewayIntegrationModelsBulkUpdateRequestSchema, type GatewayIntegrationModelsRequest, type GatewayIntegrationModelsResponse, GatewayIntegrationModelsResponseSchema, GatewayIntegrationSchema, type GatewayIntegrationUpdateRequest, GatewayIntegrationUpdateRequestSchema, type GatewayIntegrationWorkspace, GatewayIntegrationWorkspaceSchema, type GatewayIntegrationWorkspacesBulkUpdateRequest, GatewayIntegrationWorkspacesBulkUpdateRequestSchema, type GatewayIntegrationWorkspacesRequest, type GatewayIntegrationWorkspacesResponse, GatewayIntegrationWorkspacesResponseSchema, type GatewayJSONKeysParameters, GatewayJSONKeysParametersSchema, type GatewayJSONSchemaParameters, GatewayJSONSchemaParametersSchema, type GatewayJWTParameters, GatewayJWTParametersSchema, type GatewayJsonObject, GatewayJsonObjectSchema, type GatewayJsonValue, GatewayJsonValueSchema, type GatewayKnownApiKeyScope, type GatewayKnownCacheMode, type GatewayKnownConfigStrategy, type GatewayKnownMcpAuthType, type GatewayKnownMcpTransport, type GatewayKnownRateLimitType, type GatewayKnownRateLimitUnit, type GatewayLogExportsClientCancelResponse, GatewayLogExportsClientCancelResponseSchema, type GatewayLogExportsClientCreateRequest, GatewayLogExportsClientCreateRequestSchema, type GatewayLogExportsClientCreateResponse, GatewayLogExportsClientCreateResponseSchema, type GatewayLogExportsClientDownloadResponse, GatewayLogExportsClientDownloadResponseSchema, type GatewayLogExportsClientGetResponse, GatewayLogExportsClientGetResponseSchema, type GatewayLogExportsClientListOptions, GatewayLogExportsClientListOptionsSchema, type GatewayLogExportsClientListResponse, GatewayLogExportsClientListResponseSchema, type GatewayLogExportsClientStartResponse, GatewayLogExportsClientStartResponseSchema, type GatewayLogExportsClientUpdateRequest, GatewayLogExportsClientUpdateRequestSchema, type GatewayLogExportsClientUpdateResponse, GatewayLogExportsClientUpdateResponseSchema, type GatewayLogExportsRequestedData, GatewayLogExportsRequestedDataSchema, type GatewayLogRecord, GatewayLogRecordSchema, type GatewayLogsResponse, GatewayLogsResponseSchema, type GatewayMcpAuthType, GatewayMcpAuthTypeSchema, type GatewayMcpIntegrationWorkspaceItem, GatewayMcpIntegrationWorkspaceItemSchema, type GatewayMcpIntegrationWorkspacesLegacyResponse, GatewayMcpIntegrationWorkspacesLegacyResponseSchema, type GatewayMcpIntegrationWorkspacesListResponse, GatewayMcpIntegrationWorkspacesListResponseSchema, type GatewayMcpServer, type GatewayMcpServerCapabilitiesBulkUpdateResponse, GatewayMcpServerCapabilitiesBulkUpdateResponseSchema, type GatewayMcpServerCapabilitiesCounts, GatewayMcpServerCapabilitiesCountsSchema, type GatewayMcpServerCapabilitiesListResponse, GatewayMcpServerCapabilitiesListResponseSchema, type GatewayMcpServerCapabilityItem, GatewayMcpServerCapabilityItemSchema, type GatewayMcpServerConnectionDeleteResponse, GatewayMcpServerConnectionDeleteResponseSchema, type GatewayMcpServerConnectionItem, GatewayMcpServerConnectionItemSchema, type GatewayMcpServerConnectionsListResponse, GatewayMcpServerConnectionsListResponseSchema, type GatewayMcpServerCreateResponse, GatewayMcpServerCreateResponseSchema, type GatewayMcpServerListItem, GatewayMcpServerListItemSchema, type GatewayMcpServerListResponse, GatewayMcpServerListResponseSchema, type GatewayMcpServerMapping, GatewayMcpServerMappingSchema, type GatewayMcpServerMappingsResponse, GatewayMcpServerMappingsResponseSchema, GatewayMcpServerSchema, type GatewayMcpServerTestResponse, GatewayMcpServerTestResponseSchema, type GatewayMcpServerUserAccessBulkUpdateResponse, GatewayMcpServerUserAccessBulkUpdateResponseSchema, type GatewayMcpServerUserAccessItem, GatewayMcpServerUserAccessItemSchema, type GatewayMcpServerUserAccessListResponse, GatewayMcpServerUserAccessListResponseSchema, type GatewayMcpServersClientCreateRequest, GatewayMcpServersClientCreateRequestSchema, type GatewayMcpServersClientCreateResponse, GatewayMcpServersClientCreateResponseSchema, type GatewayMcpServersClientDeleteConnectionsOptions, GatewayMcpServersClientDeleteConnectionsOptionsSchema, type GatewayMcpServersClientDeleteConnectionsResponse, GatewayMcpServersClientDeleteConnectionsResponseSchema, type GatewayMcpServersClientDeleteResponse, GatewayMcpServersClientDeleteResponseSchema, type GatewayMcpServersClientGetCapabilitiesOptions, GatewayMcpServersClientGetCapabilitiesOptionsSchema, type GatewayMcpServersClientGetCapabilitiesResponse, GatewayMcpServersClientGetCapabilitiesResponseSchema, type GatewayMcpServersClientGetConnectionsOptions, GatewayMcpServersClientGetConnectionsOptionsSchema, type GatewayMcpServersClientGetConnectionsResponse, GatewayMcpServersClientGetConnectionsResponseSchema, type GatewayMcpServersClientGetResponse, GatewayMcpServersClientGetResponseSchema, type GatewayMcpServersClientGetUserAccessOptions, GatewayMcpServersClientGetUserAccessOptionsSchema, type GatewayMcpServersClientGetUserAccessResponse, GatewayMcpServersClientGetUserAccessResponseSchema, type GatewayMcpServersClientListOptions, GatewayMcpServersClientListOptionsSchema, type GatewayMcpServersClientListResponse, GatewayMcpServersClientListResponseSchema, type GatewayMcpServersClientTestResponse, GatewayMcpServersClientTestResponseSchema, type GatewayMcpServersClientUpdateCapabilitiesRequest, GatewayMcpServersClientUpdateCapabilitiesRequestSchema, type GatewayMcpServersClientUpdateCapabilitiesResponse, GatewayMcpServersClientUpdateCapabilitiesResponseSchema, type GatewayMcpServersClientUpdateRequest, GatewayMcpServersClientUpdateRequestSchema, type GatewayMcpServersClientUpdateResponse, GatewayMcpServersClientUpdateResponseSchema, type GatewayMcpServersClientUpdateUserAccessRequest, GatewayMcpServersClientUpdateUserAccessRequestSchema, type GatewayMcpServersClientUpdateUserAccessResponse, GatewayMcpServersClientUpdateUserAccessResponseSchema, type GatewayMcpTransport, GatewayMcpTransportSchema, type GatewayMistralModerationParameters, GatewayMistralModerationParametersSchema, type GatewayModelCalculateConfig, GatewayModelCalculateConfigSchema, type GatewayModelFinetuneConfig, GatewayModelFinetuneConfigSchema, type GatewayModelImagePricing, GatewayModelImagePricingSchema, type GatewayModelPayAsYouGo, GatewayModelPayAsYouGoSchema, type GatewayModelPricingCalculation, GatewayModelPricingCalculationSchema, type GatewayModelPricingConfig, GatewayModelPricingConfigSchema, type GatewayModelPricingRequestOptions, type GatewayModelTokenPrice, GatewayModelTokenPriceSchema, type GatewayModelWhitelistParameters, GatewayModelWhitelistParametersSchema, type GatewayMutableMcpCapabilityType, GatewayMutableMcpCapabilityTypeSchema, type GatewayOpenAIConfiguration, GatewayOpenAIConfigurationSchema, type GatewayOpenValue, type GatewayOrganisationAuthSettingsUpdateRequest, GatewayOrganisationAuthSettingsUpdateRequestSchema, type GatewayOrganisationUpdateRequest, GatewayOrganisationUpdateRequestSchema, type GatewayPANWPrismaParameters, GatewayPANWPrismaParametersSchema, type GatewayPatronusCustomParameters, GatewayPatronusCustomParametersSchema, type GatewayPatronusParameters, GatewayPatronusParametersSchema, type GatewayPayAsYouGoPricing, GatewayPayAsYouGoPricingSchema, type GatewayPillarScanParameters, GatewayPillarScanParametersSchema, type GatewayPlugin, type GatewayPluginCreateRequest, GatewayPluginCreateRequestSchema, GatewayPluginSchema, type GatewayPortkeyLanguageParameters, GatewayPortkeyLanguageParametersSchema, type GatewayPortkeyModerationParameters, GatewayPortkeyModerationParametersSchema, type GatewayPortkeyPIIParameters, GatewayPortkeyPIIParametersSchema, type GatewayPricingAdjustments, type GatewayPricingAdjustmentsRequest, GatewayPricingAdjustmentsRequestSchema, GatewayPricingAdjustmentsSchema, type GatewayPricingConfig, type GatewayPricingConfigRequest, GatewayPricingConfigRequestSchema, GatewayPricingConfigSchema, type GatewayPricingMultiplier, GatewayPricingMultiplierSchema, type GatewayPromptfooParameters, GatewayPromptfooParametersSchema, type GatewayProvider, type GatewayProviderCreateRequest, GatewayProviderCreateRequestSchema, type GatewayProviderCreateResponse, GatewayProviderCreateResponseSchema, type GatewayProviderDetail, GatewayProviderDetailSchema, GatewayProviderSchema, type GatewayProviderUpdateRequest, GatewayProviderUpdateRequestSchema, type GatewayRateLimit, type GatewayRateLimitInput, GatewayRateLimitInputSchema, GatewayRateLimitSchema, type GatewayRateLimitType, GatewayRateLimitTypeSchema, type GatewayRateLimitUnit, GatewayRateLimitUnitSchema, type GatewayRateLimitsClientCreateRequest, GatewayRateLimitsClientCreateRequestSchema, type GatewayRateLimitsClientCreateResponse, GatewayRateLimitsClientCreateResponseSchema, type GatewayRateLimitsClientDeleteResponse, GatewayRateLimitsClientDeleteResponseSchema, type GatewayRateLimitsClientGetOptions, GatewayRateLimitsClientGetOptionsSchema, type GatewayRateLimitsClientGetResponse, GatewayRateLimitsClientGetResponseSchema, type GatewayRateLimitsClientListOptions, GatewayRateLimitsClientListOptionsSchema, type GatewayRateLimitsClientListResponse, GatewayRateLimitsClientListResponseSchema, type GatewayRateLimitsClientUpdateRequest, GatewayRateLimitsClientUpdateRequestSchema, type GatewayRateLimitsClientUpdateResponse, GatewayRateLimitsClientUpdateResponseSchema, type GatewayRateLimitsPolicy, type GatewayRateLimitsPolicyListResponse, GatewayRateLimitsPolicyListResponseSchema, type GatewayRateLimitsPolicyResponse, GatewayRateLimitsPolicyResponseSchema, GatewayRateLimitsPolicySchema, type GatewayRealtimeConnectRequest, GatewayRealtimeConnectRequestSchema, type GatewayRealtimeConnection, type GatewayRealtimeEvent, GatewayRealtimeEventSchema, type GatewayRealtimeOptions, type GatewayRegexMatchParameters, GatewayRegexMatchParametersSchema, type GatewayRequestAwsAccessKeyAuthConfig, GatewayRequestAwsAccessKeyAuthConfigSchema, type GatewayRequestAwsAssumedRoleAuthConfig, GatewayRequestAwsAssumedRoleAuthConfigSchema, type GatewayRequestAwsServiceRoleAuthConfig, GatewayRequestAwsServiceRoleAuthConfigSchema, type GatewayRequestAzureDefaultAuthConfig, GatewayRequestAzureDefaultAuthConfigSchema, type GatewayRequestAzureEntraAuthConfig, GatewayRequestAzureEntraAuthConfigSchema, type GatewayRequestAzureManagedAuthConfig, GatewayRequestAzureManagedAuthConfigSchema, type GatewayRequestBulkUpdateMcpServerCapabilities, GatewayRequestBulkUpdateMcpServerCapabilitiesSchema, type GatewayRequestBulkUpdateMcpServerUserAccess, GatewayRequestBulkUpdateMcpServerUserAccessSchema, type GatewayRequestCondition, GatewayRequestConditionSchema, type GatewayRequestCreateMcpServer, GatewayRequestCreateMcpServerSchema, type GatewayRequestGroupBy, GatewayRequestGroupBySchema, type GatewayRequestHashicorpAppRoleAuthConfig, GatewayRequestHashicorpAppRoleAuthConfigSchema, type GatewayRequestHashicorpKubernetesAuthConfig, GatewayRequestHashicorpKubernetesAuthConfigSchema, type GatewayRequestHashicorpTokenAuthConfig, GatewayRequestHashicorpTokenAuthConfigSchema, type GatewayRequestLogExportsRequestedData, GatewayRequestLogExportsRequestedDataSchema, type GatewayRequestPayAsYouGoPricing, GatewayRequestPayAsYouGoPricingSchema, type GatewayRequestPricingMultiplier, GatewayRequestPricingMultiplierSchema, type GatewayRequestTokenPricing, GatewayRequestTokenPricingSchema, type GatewayRequestUpdateMcpServer, GatewayRequestUpdateMcpServerSchema, type GatewayRequiredMetadataKeysParameters, GatewayRequiredMetadataKeysParametersSchema, type GatewayRoutingCache, GatewayRoutingCacheSchema, type GatewayRoutingConfig, GatewayRoutingConfigSchema, type GatewayRoutingRetry, GatewayRoutingRetrySchema, type GatewayRoutingStrategy, GatewayRoutingStrategySchema, type GatewayRoutingTarget, GatewayRoutingTargetSchema, type GatewaySageMakerConfiguration, GatewaySageMakerConfigurationSchema, type GatewaySecretDirection, type GatewaySecretFieldRule, type GatewaySecretMapping, GatewaySecretMappingSchema, type GatewaySecretOperationMetadata, type GatewaySecretPathSegment, type GatewaySecretReferenceDetailResponse, GatewaySecretReferenceDetailResponseSchema, type GatewaySecretReferenceListItem, GatewaySecretReferenceListItemSchema, type GatewaySecretReferencesClientCreateRequest, GatewaySecretReferencesClientCreateRequestSchema, type GatewaySecretReferencesClientCreateResponse, GatewaySecretReferencesClientCreateResponseSchema, type GatewaySecretReferencesClientDeleteResponse, GatewaySecretReferencesClientDeleteResponseSchema, type GatewaySecretReferencesClientGetResponse, GatewaySecretReferencesClientGetResponseSchema, type GatewaySecretReferencesClientListOptions, GatewaySecretReferencesClientListOptionsSchema, type GatewaySecretReferencesClientListResponse, GatewaySecretReferencesClientListResponseSchema, type GatewaySecretReferencesClientUpdateRequest, GatewaySecretReferencesClientUpdateRequestSchema, type GatewaySecretReferencesClientUpdateResponse, GatewaySecretReferencesClientUpdateResponseSchema, type GatewaySentenceCountParameters, GatewaySentenceCountParametersSchema, type GatewayServiceApiKeyCreateRequest, GatewayServiceApiKeyCreateRequestSchema, type GatewayStream, type GatewaySydeGuardParameters, GatewaySydeGuardParametersSchema, type GatewayTokenPricing, GatewayTokenPricingSchema, type GatewayUpdateExportResponse, GatewayUpdateExportResponseSchema, type GatewayUpdateRateLimitsPolicyRequest, GatewayUpdateRateLimitsPolicyRequestSchema, type GatewayUpdateSecretReferenceRequest, GatewayUpdateSecretReferenceRequestSchema, type GatewayUpdateUsageLimitsPolicyRequest, GatewayUpdateUsageLimitsPolicyRequestSchema, type GatewayUppercaseParameters, GatewayUppercaseParametersSchema, type GatewayUpsertMcpServerMappingRequest, GatewayUpsertMcpServerMappingRequestSchema, type GatewayUpsertMcpServerMappingResponse, GatewayUpsertMcpServerMappingResponseSchema, type GatewayUsageLimit, type GatewayUsageLimitInput, GatewayUsageLimitInputSchema, GatewayUsageLimitSchema, type GatewayUsageLimitsClientCreateRequest, GatewayUsageLimitsClientCreateRequestSchema, type GatewayUsageLimitsClientCreateResponse, GatewayUsageLimitsClientCreateResponseSchema, type GatewayUsageLimitsClientDeleteResponse, GatewayUsageLimitsClientDeleteResponseSchema, type GatewayUsageLimitsClientGetOptions, GatewayUsageLimitsClientGetOptionsSchema, type GatewayUsageLimitsClientGetResponse, GatewayUsageLimitsClientGetResponseSchema, type GatewayUsageLimitsClientListEntitiesOptions, GatewayUsageLimitsClientListEntitiesOptionsSchema, type GatewayUsageLimitsClientListEntitiesResponse, GatewayUsageLimitsClientListEntitiesResponseSchema, type GatewayUsageLimitsClientListOptions, GatewayUsageLimitsClientListOptionsSchema, type GatewayUsageLimitsClientListResponse, GatewayUsageLimitsClientListResponseSchema, type GatewayUsageLimitsClientResetEntityResponse, GatewayUsageLimitsClientResetEntityResponseSchema, type GatewayUsageLimitsClientUpdateRequest, GatewayUsageLimitsClientUpdateRequestSchema, type GatewayUsageLimitsClientUpdateResponse, GatewayUsageLimitsClientUpdateResponseSchema, type GatewayUsageLimitsPolicy, type GatewayUsageLimitsPolicyEntity, type GatewayUsageLimitsPolicyEntityListResponse, GatewayUsageLimitsPolicyEntityListResponseSchema, GatewayUsageLimitsPolicyEntitySchema, type GatewayUsageLimitsPolicyListResponse, GatewayUsageLimitsPolicyListResponseSchema, type GatewayUsageLimitsPolicyResponse, GatewayUsageLimitsPolicyResponseSchema, GatewayUsageLimitsPolicySchema, type GatewayUserApiKeyCreateRequest, GatewayUserApiKeyCreateRequestSchema, type GatewayValidUrlsParameters, GatewayValidUrlsParametersSchema, type GatewayValueKeyUsage, GatewayValueKeyUsageSchema, type GatewayVertexAIConfiguration, GatewayVertexAIConfigurationSchema, type GatewayWebSocket, type GatewayWebSocketFactory, type GatewayWebhookParameters, GatewayWebhookParametersSchema, type GatewayWordCountParameters, GatewayWordCountParametersSchema, type GatewayWorkersAIConfiguration, GatewayWorkersAIConfigurationSchema, type GatewayWorkspace, type GatewayWorkspaceBinding, GatewayWorkspaceBindingSchema, type GatewayWorkspaceCreateRequest, GatewayWorkspaceCreateRequestSchema, type GatewayWorkspaceCreateResponse, GatewayWorkspaceCreateResponseSchema, type GatewayWorkspaceDetail, GatewayWorkspaceDetailSchema, GatewayWorkspaceSchema, type GatewayWorkspaceUpdateRequest, GatewayWorkspaceUpdateRequestSchema, type GatewayWriteResponse, GatewayWriteResponseSchema, type GetTokenOptions, type Goal, type GoalCategoryListResponse, GoalCategoryListResponseSchema, type GoalCategoryOption, GoalCategoryOptionSchema, type GoalListOptions, type GoalListResponse, GoalListResponseSchema, GoalSchema, GoalType, GoalTypeQueryParam, type GroupListResponse, GroupListResponseSchema, GuardrailAction, HEADER_API_KEY, HEADER_AUTH_TOKEN, type HTTPValidationError, HTTPValidationErrorSchema, HTTP_FORCE_RETRY_STATUS_CODES, type HeadersAuthConfig, HeadersAuthConfigSchema, type HuggingfaceConnectionParams, HuggingfaceConnectionParamsSchema, type IODetected, IODetectedSchema, type InitOptions, type InstanceExtraDetails, InstanceExtraDetailsSchema, type InstanceGetResponse, InstanceGetResponseSchema, type InstanceRequest, InstanceRequestSchema, type InstanceResponse, InstanceResponseSchema, type JobAbortResponse, JobAbortResponseSchema, type JobCreateRequest, JobCreateRequestSchema, type JobListResponse, JobListResponseSchema, type JobResponse, JobResponseSchema, JobStatus, JobStatusFilter, type JobTimeRecord, JobTimeRecordSchema, JobType, type JsonNullable, type Label, type LabelCondition, LabelConditionSchema, type LabelKeyList, LabelKeyListSchema, LabelSchema, type LabelValueList, LabelValueListSchema, type LabelsCreateRequest, LabelsCreateRequestSchema, type LabelsResponse, LabelsResponseSchema, type LanguageOption, LanguageOptionSchema, type LatencyChartResponse, LatencyChartResponseSchema, type ListApiKeysResponse, ListApiKeysResponseSchema, type ListConfigVersionsResponse, ListConfigVersionsResponseSchema, type ListConfigsResponse, ListConfigsResponseSchema, type ListCustomRuleSecurityGroupsResponse, ListCustomRuleSecurityGroupsResponseSchema, type ListCustomRulesResponse, ListCustomRulesResponseSchema, type ListDeploymentsResponse, ListDeploymentsResponseSchema, type ListGuardrailsResponse, ListGuardrailsResponseSchema, type ListIntegrationsResponse, ListIntegrationsResponseSchema, type ListMcpIntegrationsResponse, ListMcpIntegrationsResponseSchema, type ListModelSecurityGroupsResponse, ListModelSecurityGroupsResponseSchema, type ListModelSecurityRuleInstancesResponse, ListModelSecurityRuleInstancesResponseSchema, type ListModelSecurityRulesResponse, ListModelSecurityRulesResponseSchema, type ListPluginsResponse, ListPluginsResponseSchema, type ListProvidersResponse, ListProvidersResponseSchema, type ListWorkspacesResponse, ListWorkspacesResponseSchema, type ListingOptions, MAX_AI_PROFILE_NAME_LENGTH, MAX_API_KEY_LENGTH, MAX_CONNECTION_POOL_SIZE, MAX_CONTENT_CONTEXT_LENGTH, MAX_CONTENT_PROMPT_LENGTH, MAX_CONTENT_RESPONSE_LENGTH, MAX_NUMBER_OF_BATCH_SCAN_OBJECTS, MAX_NUMBER_OF_REPORT_IDS, MAX_NUMBER_OF_RETRIES, MAX_NUMBER_OF_SCAN_IDS, MAX_REPORT_ID_STR_LENGTH, MAX_SCAN_ID_STR_LENGTH, MAX_SESSION_ID_STR_LENGTH, MAX_TOKEN_LENGTH, MAX_TRANSACTION_ID_STR_LENGTH, MGMT_API_KEYS_TSG_PATH, MGMT_API_KEY_PATH, MGMT_CLIENT_ID, MGMT_CLIENT_SECRET, MGMT_CUSTOMER_APPS_TSG_PATH, MGMT_CUSTOMER_APP_PATH, MGMT_DASHBOARD_APPLICATIONS_OVERVIEW_PATH, MGMT_DASHBOARD_APPLICATION_PATH, MGMT_DASHBOARD_APPLICATION_VIOLATION_BREAKDOWN_PATH, MGMT_DEPLOYMENT_PROFILES_PATH, MGMT_DLP_PROFILES_PATH, MGMT_ENDPOINT, MGMT_OAUTH_INVALIDATE_PATH, MGMT_OAUTH_TOKEN_PATH, MGMT_PROFILES_TSG_PATH, MGMT_PROFILE_PATH, MGMT_SCAN_LOGS_PATH, MGMT_TOKEN_ENDPOINT, MGMT_TOPICS_TSG_PATH, MGMT_TOPIC_FORCE_PATH, MGMT_TOPIC_PATH, MGMT_TSG_ID, MODEL_SEC_CLIENT_ID, MODEL_SEC_CLIENT_SECRET, MODEL_SEC_DATA_ENDPOINT, MODEL_SEC_EVALUATIONS_PATH, MODEL_SEC_MGMT_ENDPOINT, MODEL_SEC_MODELS_PATH, MODEL_SEC_MODEL_VERSIONS_PATH, MODEL_SEC_PYPI_AUTH_PATH, MODEL_SEC_SCANS_PATH, MODEL_SEC_SECURITY_GROUPS_PATH, MODEL_SEC_SECURITY_RULES_PATH, MODEL_SEC_TOKEN_ENDPOINT, MODEL_SEC_TSG_ID, MODEL_SEC_VIOLATIONS_PATH, type MSCopilotStudioAuthUrlRequest, MSCopilotStudioAuthUrlRequestSchema, type MSCopilotStudioAuthUrlResponse, MSCopilotStudioAuthUrlResponseSchema, type MSCopilotStudioTokenRequest, MSCopilotStudioTokenRequestSchema, type MSCopilotStudioTokenResponse, MSCopilotStudioTokenResponseSchema, type MaliciousCodeProtection, MaliciousCodeProtectionSchema, type MalwareReport, MalwareReportSchema, ManagementClient, type ManagementClientOptions, type MaskedData, MaskedDataSchema, type McEntry, McEntrySchema, type McReport, McReportSchema, type McpIntegration, type McpIntegrationCapabilitiesBulkUpdateRequest, McpIntegrationCapabilitiesBulkUpdateRequestSchema, type McpIntegrationCapabilitiesResponse, McpIntegrationCapabilitiesResponseSchema, type McpIntegrationCapabilitiesUpdateRequest, type McpIntegrationCapabilitiesUpdateResponse, McpIntegrationCapabilitiesUpdateResponseSchema, type McpIntegrationCapability, McpIntegrationCapabilitySchema, type McpIntegrationCapabilityUpdate, McpIntegrationCapabilityUpdateSchema, type McpIntegrationCreateRequest, McpIntegrationCreateRequestSchema, type McpIntegrationDetail, McpIntegrationDetailSchema, type McpIntegrationMetadata, McpIntegrationMetadataSchema, McpIntegrationSchema, type McpIntegrationUpdateRequest, McpIntegrationUpdateRequestSchema, type McpIntegrationWorkspacesBulkUpdateRequest, McpIntegrationWorkspacesBulkUpdateRequestSchema, type McpIntegrationWorkspacesRequest, type McpIntegrationWorkspacesUpdateResponse, McpIntegrationWorkspacesUpdateResponseSchema, type Metadata, type MetadataCriterion, MetadataCriterionSchema, MetadataSchema, type Model, type ModelConfiguration, ModelConfigurationSchema, type ModelList, ModelListSchema, type ModelProtectionItem, ModelProtectionItemSchema, ModelResponseSchema, type ModelScanIssue, ModelScanIssueSchema, ModelScanStatus, ModelSecurityClient, type ModelSecurityClientOptions, ModelSecurityCustomRulesClient, type ModelSecurityCustomRulesClientOptions, type ModelSecurityEvaluationListOptions, type ModelSecurityFileListOptions, type ModelSecurityGroupCreateRequest, ModelSecurityGroupCreateRequestSchema, type ModelSecurityGroupListAllOptions, type ModelSecurityGroupListOptions, type ModelSecurityGroupResponse, ModelSecurityGroupResponseSchema, ModelSecurityGroupState, type ModelSecurityGroupUpdateRequest, ModelSecurityGroupUpdateRequestSchema, ModelSecurityGroupsClient, type ModelSecurityGroupsClientOptions, type ModelSecurityLabelListOptions, type ModelSecurityModelListAllOptions, type ModelSecurityModelListOptions, type ModelSecurityModelVersionFileListAllOptions, type ModelSecurityModelVersionFileListOptions, type ModelSecurityModelVersionListAllOptions, type ModelSecurityModelVersionListOptions, ModelSecurityModelsClient, type ModelSecurityModelsClientOptions, type ModelSecurityPagination, ModelSecurityPaginationSchema, type ModelSecurityRuleInstanceListOptions, type ModelSecurityRuleInstanceResponse, ModelSecurityRuleInstanceResponseSchema, type ModelSecurityRuleInstanceUpdateRequest, ModelSecurityRuleInstanceUpdateRequestSchema, type ModelSecurityRuleListAllOptions, type ModelSecurityRuleListOptions, type ModelSecurityRuleResponse, ModelSecurityRuleResponseSchema, ModelSecurityRulesClient, type ModelSecurityRulesClientOptions, type ModelSecurityScanListAllOptions, type ModelSecurityScanListOptions, ModelSecurityScansClient, type ModelSecurityScansClientOptions, type ModelSecurityViolationListOptions, type ModelVersion, type ModelVersionList, ModelVersionListSchema, ModelVersionResponseSchema, type MultiProfileDataNode, MultiProfileDataNodeSchema, type MultiProfileDetectionRule, MultiProfileDetectionRuleSchema, type MultiTurnConfig, MultiTurnConfigSchema, type MultiTurnStatefulConfig, MultiTurnStatefulConfigSchema, type MultiTurnStatelessConfig, MultiTurnStatelessConfigSchema, type OAuth2AuthConfig, OAuth2AuthConfigSchema, OAuthClient, type OAuthClientOptions, OAuthManagementClient, type OAuthManagementClientOptions, type Oauth2Token, Oauth2TokenSchema, type Offset, OffsetSchema, type OpenAIConnectionParams, OpenAIConnectionParamsSchema, type OrganisationSelfResponse, OrganisationSelfResponseSchema, PAYLOAD_HASH, type Page, type PageDataFilteringProfileResponse, PageDataFilteringProfileResponseSchema, type PageDataPatternResponse, PageDataPatternResponseSchema, type PageDataProfileResponse, PageDataProfileResponseSchema, type PageDictionaryResponse, PageDictionaryResponseSchema, type PageableObject, PageableObjectSchema, type PaginatedScanResults, PaginatedScanResultsSchema, type PaginationOptions, type PaginationPage, type PatternDetection, PatternDetectionSchema, type Policy, type PolicyAppProtection, PolicyAppProtectionSchema, type PolicyLatency, PolicyLatencySchema, PolicySchema, PolicyType, type PrerequisiteModel, PrerequisiteModelSchema, type ProfileListAllOptions, ProfilesClient, type ProfilesClientOptions, ProfilingStatus, type PromptDetailResponse, PromptDetailResponseSchema, type PromptDetected, PromptDetectedSchema, type PromptDetectionDetails, PromptDetectionDetailsSchema, type PromptListAllOptions, type PromptListOptions, type PromptSetListAllOptions, type PromptSetListOptions, type PromptSetStats, PromptSetStatsSchema, type PromptSetSummary, PromptSetSummarySchema, type PromptSetsReportOptions, type PromptSetsReportResponse, PromptSetsReportResponseSchema, type PromptsBySetListOptions, type PropertyAssignment, PropertyAssignmentSchema, type PropertyDefinition, PropertyDefinitionSchema, type PropertyNameCreateRequest, PropertyNameCreateRequestSchema, type PropertyNameCreateResponse, PropertyNameCreateResponseSchema, type PropertyNamesListResponse, PropertyNamesListResponseSchema, type PropertyStatistic, type PropertyStatisticResult, PropertyStatisticResultSchema, PropertyStatisticSchema, type PropertyValueCreateRequest, PropertyValueCreateRequestSchema, type PropertyValueStatistic, PropertyValueStatisticSchema, type PropertyValuesMultipleResponse, PropertyValuesMultipleResponseSchema, type PropertyValuesResponse, PropertyValuesResponseSchema, type PyPIAuthResponse, PyPIAuthResponseSchema, type QuotaDetails, QuotaDetailsSchema, type QuotaSummary, QuotaSummarySchema, RED_TEAM_ADAPTER_PATH, RED_TEAM_ADAPTER_VALIDATE_PATH, RED_TEAM_CATEGORIES_PATH, RED_TEAM_CHANNELS_PATH, RED_TEAM_CHANNELS_STATS_PATH, RED_TEAM_CLIENT_ID, RED_TEAM_CLIENT_SECRET, RED_TEAM_CUSTOM_ATTACKS_REPORT_PATH, RED_TEAM_CUSTOM_ATTACK_PATH, RED_TEAM_DASHBOARD_PATH, RED_TEAM_DATA_ENDPOINT, RED_TEAM_ERROR_LOG_PATH, RED_TEAM_ERROR_LOG_TARGET_PROFILE_PATH, RED_TEAM_EULA_PATH, RED_TEAM_INSTANCES_PATH, RED_TEAM_LANGUAGES_PATH, RED_TEAM_MGMT_DASHBOARD_PATH, RED_TEAM_MGMT_ENDPOINT, RED_TEAM_NETWORK_BROKER_ENDPOINT, RED_TEAM_QUOTA_PATH, RED_TEAM_REGISTRY_CREDENTIALS_PATH, RED_TEAM_REPORT_DYNAMIC_PATH, RED_TEAM_REPORT_PATH, RED_TEAM_REPORT_STATIC_PATH, RED_TEAM_SCAN_PATH, RED_TEAM_SENTIMENT_PATH, RED_TEAM_TARGET_PATH, RED_TEAM_TARGET_VALIDATE_AUTH_PATH, RED_TEAM_TEMPLATE_PATH, RED_TEAM_TOKEN_ENDPOINT, RED_TEAM_TSG_ID, RedTeamAdaptersClient, type RedTeamAdaptersClientOptions, RedTeamCategory, RedTeamClient, type RedTeamClientOptions, RedTeamCustomAttackReportsClient, type RedTeamCustomAttackReportsClientOptions, RedTeamCustomAttacksClient, type RedTeamCustomAttacksClientOptions, RedTeamErrorType, RedTeamEulaClient, type RedTeamEulaClientOptions, RedTeamInstancesClient, type RedTeamInstancesClientOptions, type RedTeamListOptions, RedTeamNetworkBrokerClient, type RedTeamNetworkBrokerClientOptions, type RedTeamPagination, RedTeamPaginationSchema, RedTeamReportsClient, type RedTeamReportsClientOptions, type RedTeamScanListAllOptions, type RedTeamScanListOptions, RedTeamScansClient, type RedTeamScansClientOptions, RedTeamTargetsClient, type RedTeamTargetsClientOptions, type RegistryCredentials, RegistryCredentialsSchema, type RemediationDetail, RemediationDetailSchema, type RemediationResponse, RemediationResponseSchema, type RescuedRetriesResponse, RescuedRetriesResponseSchema, type ResourceModelExtension, ResourceModelExtensionSchema, type ResponseDetected, ResponseDetectedSchema, type ResponseDetectionDetails, ResponseDetectionDetailsSchema, ResponseMode, type RestConnectionParams, RestConnectionParamsSchema, type RiskLevel, RiskLevelSchema, RiskRating, type RuleConfiguration, RuleConfigurationSchema, type RuleEditableField, type RuleEditableFieldDropdown, RuleEditableFieldDropdownSchema, RuleEditableFieldSchema, RuleEditableFieldType, type RuleEvaluationList, RuleEvaluationListSchema, type RuleEvaluationResponse, RuleEvaluationResponseSchema, RuleEvaluationResult, RuleFieldValueKey, type RuleItemConfidenceLevel, RuleItemConfidenceLevelSchema, type RuleItemDetectionTechnique, RuleItemDetectionTechniqueSchema, type RuleItemEdmMatchCriteria, RuleItemEdmMatchCriteriaSchema, type RuleItemMatchType, RuleItemMatchTypeSchema, type RuleItemOccurrenceOperatorType, RuleItemOccurrenceOperatorTypeSchema, RuleOrigin, type RuleRemediation, RuleRemediationSchema, type RuleResultCondition, RuleResultConditionSchema, RuleState, RuleType, type RuntimeSecurityPolicy, type RuntimeSecurityPolicyConfig, RuntimeSecurityPolicyConfigSchema, RuntimeSecurityPolicySchema, type RuntimeSecurityProfileResponse, RuntimeSecurityProfileResponseSchema, SCAN_REPORTS_PATH, SCAN_RESULTS_PATH, SDK_VERSION, SYNC_SCAN_PATH, SafetySubCategory, type ScanBaseResponse, ScanBaseResponseSchema, type ScanCallOptions, type ScanCreateRequest, ScanCreateRequestSchema, type ScanDetails, ScanDetailsSchema, type ScanIdResult, ScanIdResultSchema, type ScanList, ScanListSchema, type ScanLogQueryOptions, ScanLogsClient, type ScanLogsClientOptions, ScanOrigin, type ScanRequest, type ScanRequestContentsInner, ScanRequestContentsInnerSchema, ScanRequestSchema, type ScanResponse, ScanResponseSchema, type ScanResultEntry, ScanResultEntrySchema, type ScanResultForDashboard, ScanResultForDashboardSchema, type ScanStatisticsResponse, ScanStatisticsResponseSchema, type ScanSummary, ScanSummarySchema, Scanner, type ScoreTrendResponse, ScoreTrendResponseSchema, type ScoreTrendSeries, ScoreTrendSeriesSchema, type SecurityProfile, type SecurityProfileListResponse, SecurityProfileListResponseSchema, SecurityProfileSchema, SecuritySubCategory, type SentimentRequest, SentimentRequestSchema, type SentimentResponse, SentimentResponseSchema, SeverityFilter, type SeverityReport, SeverityReportSchema, type SeverityStats, SeverityStatsSchema, type SnapshotVersion, type SnapshotVersionListOptions, type SnapshotVersionListResponse, SnapshotVersionListResponseSchema, SnapshotVersionSchema, SortByDateField, SortByFileField, SortDirection, type SortObject, SortObjectSchema, type SourceAttributes, SourceAttributesSchema, SourceType, type StartProfilingResponse, StartProfilingResponseSchema, type StaticJobMetadata, StaticJobMetadataSchema, type StaticJobRemediation, type StaticJobRemediationRecommendation, StaticJobRemediationRecommendationSchema, StaticJobRemediationSchema, type StaticJobReport, StaticJobReportSchema, type StaticJobReportStats, StaticJobReportStatsSchema, StatusQueryParam, type StreamDetailResponse, StreamDetailResponseSchema, type StreamGoal, StreamGoalSchema, type StreamIterationData, StreamIterationDataSchema, type StreamListResponse, StreamListResponseSchema, StreamType, type StreamingConnectionParams, StreamingConnectionParamsSchema, type SubCategoryModel, SubCategoryModelSchema, type SubCategoryStats, SubCategoryStatsSchema, type SyncScanOptions, TSG_ID_HEADER, type TargetAdditionalContext, TargetAdditionalContextSchema, TargetAuthType, type TargetAuthValidationRequest, TargetAuthValidationRequestSchema, type TargetAuthValidationResponse, TargetAuthValidationResponseSchema, type TargetBackground, TargetBackgroundSchema, type TargetConnectionConfig, TargetConnectionConfigSchema, TargetConnectionType, type TargetContextUpdate, TargetContextUpdateSchema, type TargetCreateRequest, TargetCreateRequestSchema, type TargetJobRequest, TargetJobRequestSchema, type TargetList, type TargetListAllOptions, type TargetListItem, TargetListItemSchema, type TargetListOptions, TargetListSchema, type TargetMetadata, TargetMetadataSchema, type TargetOperationOptions, type TargetProbeRequest, TargetProbeRequestSchema, type TargetProfileResponse, TargetProfileResponseSchema, type TargetReference, TargetReferenceSchema, type TargetResponse, TargetResponseSchema, TargetStatus, type TargetTemplateCollection, TargetTemplateCollectionSchema, TargetType, type TargetUpdateRequest, TargetUpdateRequestSchema, type TcReport, TcReportSchema, type TenantLanguagesResponse, TenantLanguagesResponseSchema, type TgReport, TgReportSchema, ThreatCategory, type ThreatScanReport, ThreatScanReportSchema, type TokenInfo, type TokenStats, TokenStatsSchema, type TokensChartResponse, TokensChartResponseSchema, type ToolDetected, ToolDetectedSchema, type ToolDetectionDetails, ToolDetectionDetailsSchema, type ToolDetectionEntry, ToolDetectionEntrySchema, type ToolDetectionFlags, ToolDetectionFlagsSchema, type ToolEvent, type ToolEventMetadata, ToolEventMetadataSchema, ToolEventSchema, type TopicArray, TopicArraySchema, type TopicGuardrailDetails, TopicGuardrailDetailsSchema, type TopicListAllOptions, type TopicListOptions, type TopicObject, TopicObjectSchema, TopicsClient, type TopicsClientOptions, type URLExclusion, URLExclusionSchema, USER_AGENT, type UpdateChannelRequest, UpdateChannelRequestSchema, type UrlCategory, UrlCategorySchema, type UrlfEntry, UrlfEntrySchema, type UserGroupResponse, UserGroupResponseSchema, type UserTrendsResponse, UserTrendsResponseSchema, type ValidationError, ValidationErrorSchema, Verdict, Verdict as VerdictType, type ViolationList, ViolationListSchema, type ViolationRemediation, ViolationRemediationSchema, type ViolationResponse, ViolationResponseSchema, type ViolationSeverityCounts, ViolationSeverityCountsSchema, type WalkAllOptions, type WebSocketConnectionParams, WebSocketConnectionParamsSchema, type WeightedRegex, WeightedRegexSchema, aiGwOrganisationsAuthSettingsPath, buildDottedObject, collectAll, collectSkipPages, collectSpringPages, globalConfiguration, init, jsonNullable, pageSchema, paginate, redactAIGatewaySecrets, serializeListing, setDottedValue };
|
|
161394
|
+
export { AIGatewayApiKeysClient, type AIGatewayAuditLogListOptions, AIGatewayAuditLogsClient, type AIGatewayChartFilters, AIGatewayChartFiltersSchema, type AIGatewayChartOptions, AIGatewayClient, type AIGatewayClientOptions, AIGatewayConfigsClient, AIGatewayDeploymentsClient, type AIGatewayGroupOptions, AIGatewayGuardrailsClient, AIGatewayInferenceClient, type AIGatewayInferenceClientOptions, AIGatewayIntegrationsClient, AIGatewayLogExportsClient, type AIGatewayLogsOptions, AIGatewayMcpIntegrationsClient, AIGatewayMcpServersClient, AIGatewayModelPricingClient, type AIGatewayModelPricingClientOptions, AIGatewayOrganisationsClient, type AIGatewayPlane, AIGatewayPluginsClient, AIGatewayProvidersClient, AIGatewayRateLimitsClient, type AIGatewayRequestChartOptions, type AIGatewaySecretOperation, AIGatewaySecretReferencesClient, type AIGatewaySubClientOptions, AIGatewayTelemetryClient, type AIGatewayTelemetryClientOptions, AIGatewayUsageLimitsClient, type AIGatewayWindowOptions, type AIGatewayWorkspaceGetOptions, type AIGatewayWorkspaceListOptions, type AIGatewayWorkspaceScopedListOptions, AIGatewayWorkspacesClient, type AIGatewayWorkspacesClientOptions, AIRS_ENDPOINTS, AISecSDKException, type AISecSDKExceptionMetadata, AI_GATEWAY_DEPLOYMENT_STATUSES, AI_GATEWAY_DEPLOYMENT_TYPES, AI_GATEWAY_KNOWN_API_KEY_SCOPES, AI_GATEWAY_KNOWN_CACHE_MODES, AI_GATEWAY_KNOWN_CONFIG_STRATEGIES, AI_GATEWAY_KNOWN_MCP_AUTH_TYPES, AI_GATEWAY_KNOWN_MCP_TRANSPORTS, AI_GATEWAY_KNOWN_RATE_LIMIT_TYPES, AI_GATEWAY_KNOWN_RATE_LIMIT_UNITS, AI_GATEWAY_MUTABLE_MCP_CAPABILITY_TYPES, AI_GATEWAY_REDACTED, AI_GATEWAY_SECRET_FIELDS, AI_GW_ADMIN_ENDPOINT, AI_GW_API_KEYS_SERVICE_PATH, AI_GW_API_KEYS_USER_PATH, AI_GW_AUDIT_LOGS_PATH, AI_GW_CHARTS_PATH, AI_GW_CHART_METRICS, AI_GW_CONFIGS_PATH, AI_GW_DATA_ENDPOINT, AI_GW_DEPLOYMENTS_PATH, AI_GW_GROUPS_PATH, AI_GW_GROUP_COLUMNS, AI_GW_GROUP_DIMENSIONS, AI_GW_GUARDRAILS_PATH, AI_GW_INTEGRATIONS_PATH, AI_GW_LOGS_PATH, AI_GW_MCP_INTEGRATIONS_PATH, AI_GW_ORGANISATIONS_SELF_PATH, AI_GW_PLUGINS_PATH, AI_GW_PROVIDERS_PATH, AI_GW_WORKSPACES_PATH, AI_SEC_API_ENDPOINT, AI_SEC_API_KEY, AI_SEC_API_TOKEN, ASYNC_SCAN_PATH, Action, Action as ActionType, type AdapterConfigResponse, AdapterConfigResponseSchema, type AdapterCreateRequest, AdapterCreateRequestSchema, type AdapterList, type AdapterListAllOptions, type AdapterListItem, AdapterListItemSchema, type AdapterListOptions, AdapterListSchema, type AdapterOperationOptions, type AdapterResponse, AdapterResponseSchema, type AdapterUpdateRequest, AdapterUpdateRequestSchema, type AdapterValidateRequest, AdapterValidateRequestSchema, type AdapterValidateResponse, AdapterValidateResponseSchema, type AdapterVar, type AdapterVarResponse, AdapterVarResponseSchema, AdapterVarSchema, type AdapterVarType, AdapterVarTypeSchema, type AdvancedDataProfileRequest, AdvancedDataProfileRequestSchema, type AgentEntry, AgentEntrySchema, type AgentMeta, AgentMetaSchema, type AgentProtectionItem, AgentProtectionItemSchema, type AgentReport, AgentReportSchema, type AiProfile, AiProfileSchema, type AiSecurityProfile, AiSecurityProfileSchema, ApiEndpointType, type ApiKey, type ApiKeyCreateRequest, ApiKeyCreateRequestSchema, type ApiKeyDPInfo, ApiKeyDPInfoSchema, type ApiKeyDeleteResponse, ApiKeyDeleteResponseSchema, type ApiKeyListAllOptions, type ApiKeyListResponse, ApiKeyListResponseSchema, type ApiKeyRegenerateRequest, ApiKeyRegenerateRequestSchema, ApiKeySchema, ApiKeysClient, type ApiKeysClientOptions, type AppExclusion, AppExclusionSchema, type AsyncScanObject, AsyncScanObjectSchema, type AsyncScanResponse, AsyncScanResponseSchema, type AttackDetailResponse, AttackDetailResponseSchema, type AttackListItem, AttackListItemSchema, type AttackListOptions, type AttackListResponse, AttackListResponseSchema, type AttackMultiTurnDetailResponse, AttackMultiTurnDetailResponseSchema, type AttackMultiTurnOutput, AttackMultiTurnOutputSchema, type AttackOutput, AttackOutputSchema, AttackStatus, AttackType, type AuditResponse, AuditResponseSchema, type AuthConfig, AuthConfigRequestSchema, AuthConfigSchema, type AuthSettingsResponse, AuthSettingsResponseSchema, AuthType, BEARER, type BaseResponse, BaseResponseSchema, type BasicAuthAuthConfig, BasicAuthAuthConfigSchema, BasicAuthLocation, type BatchAssignCustomRuleRequest, BatchAssignCustomRuleRequestSchema, type BatchAssignCustomRuleResponse, BatchAssignCustomRuleResponseSchema, type BedrockAccessConnectionParams, BedrockAccessConnectionParamsSchema, BrandSubCategory, type CacheHitTrendResponse, CacheHitTrendResponseSchema, type CacheSummaryResponse, CacheSummaryResponseSchema, Category, type CategoryModel, CategoryModelSchema, type CategoryReport, CategoryReportSchema, Category as CategoryType, type CgReport, CgReportSchema, type Channel, type ChannelListOptions, type ChannelListPagination, ChannelListPaginationSchema, type ChannelListResponse, ChannelListResponseSchema, ChannelSchema, type ChannelStats, ChannelStatsSchema, ChannelStatus, ChannelStatusSchema, type ChannelStatusType, type ClaraJobMetadata, ClaraJobMetadataSchema, type ClientIdAndCustomerApp, ClientIdAndCustomerAppSchema, type CmdEntry, CmdEntrySchema, type CmdInjectReport, CmdInjectReportSchema, type CollectAllOptions, type ComparisonOperatorType, ComparisonOperatorTypeSchema, type ComplianceFramework, ComplianceFrameworkSchema, type ComplianceReport, ComplianceReportSchema, ComplianceSubCategory, type ComplianceTechnique, ComplianceTechniqueSchema, type ConditionGroup, ConditionGroupSchema, type ConnectionParams, ConnectionParamsRequestSchema, ConnectionParamsSchema, Content, type ContentError, ContentErrorSchema, ContentErrorType, ContentErrorType as ContentErrorTypeType, type ContentOptions, type CostChartResponse, CostChartResponseSchema, type CountByName, CountByNameSchema, type CountChartResponse, CountChartResponseSchema, CountedQuotaEnum, type CreateChannelRequest, CreateChannelRequestSchema, type CreateCustomTopicRequest, CreateCustomTopicRequestSchema, type CreateSecurityProfileRequest, CreateSecurityProfileRequestSchema, type CursorPagination, CursorPaginationSchema, type CustomAttackOutput, CustomAttackOutputSchema, type CustomAttackReportResponse, CustomAttackReportResponseSchema, type CustomAttacksListResponse, CustomAttacksListResponseSchema, type CustomAttacksReportListOptions, type CustomJobMetadata, CustomJobMetadataSchema, type CustomPromptCreateRequest, CustomPromptCreateRequestSchema, type CustomPromptList, type CustomPromptListItem, CustomPromptListItemSchema, CustomPromptListSchema, type CustomPromptResponse, CustomPromptResponseSchema, type CustomPromptSetArchiveRequest, CustomPromptSetArchiveRequestSchema, type CustomPromptSetCreateRequest, CustomPromptSetCreateRequestSchema, type CustomPromptSetList, type CustomPromptSetListActive, CustomPromptSetListActiveSchema, type CustomPromptSetListItem, CustomPromptSetListItemSchema, CustomPromptSetListSchema, type CustomPromptSetReference, CustomPromptSetReferenceSchema, type CustomPromptSetResponse, CustomPromptSetResponseSchema, type CustomPromptSetUpdateRequest, CustomPromptSetUpdateRequestSchema, type CustomPromptSetVersionInfo, CustomPromptSetVersionInfoSchema, type CustomPromptUpdateRequest, CustomPromptUpdateRequestSchema, type CustomRuleAssignment, type CustomRuleAssignmentResult, CustomRuleAssignmentResultSchema, CustomRuleAssignmentSchema, type CustomRuleCondition, CustomRuleConditionSchema, type CustomRuleCreateRequest, CustomRuleCreateRequestSchema, type CustomRuleListItem, CustomRuleListItemSchema, type CustomRuleListOptions, type CustomRuleResponse, CustomRuleResponseSchema, type CustomRuleSecurityGroup, CustomRuleSecurityGroupSchema, CustomRuleSourceTypeSchema, CustomRuleStateSchema, type CustomRuleUpdateRequest, CustomRuleUpdateRequestSchema, type CustomTopic, type CustomTopicListResponse, CustomTopicListResponseSchema, CustomTopicSchema, type CustomerApp, type CustomerAppDeleteResponse, CustomerAppDeleteResponseSchema, type CustomerAppListAllOptions, type CustomerAppListResponse, CustomerAppListResponseSchema, CustomerAppSchema, type CustomerAppWithKeys, CustomerAppWithKeysSchema, CustomerAppsClient, type CustomerAppsClientOptions, DEFAULT_AI_GW_ADMIN_ENDPOINT, DEFAULT_AI_GW_DATA_ENDPOINT, DEFAULT_DLP_ENDPOINT, DEFAULT_ENDPOINT, DEFAULT_MGMT_ENDPOINT, DEFAULT_MODEL_SEC_DATA_ENDPOINT, DEFAULT_MODEL_SEC_MGMT_ENDPOINT, DEFAULT_RED_TEAM_DATA_ENDPOINT, DEFAULT_RED_TEAM_MGMT_ENDPOINT, DEFAULT_RED_TEAM_NETWORK_BROKER_ENDPOINT, DEFAULT_TOKEN_ENDPOINT, DLP_DATA_FILTERING_PROFILES_PATH, DLP_DATA_PATTERNS_PATH, DLP_DATA_PROFILES_PATH, DLP_DICTIONARIES_PATH, type DSDetailResult, DSDetailResultSchema, type DSResultMetadata, DSResultMetadataSchema, type DashboardAppQuery, type DashboardApplication, DashboardApplicationSchema, type DashboardApplicationSessionsBucket, DashboardApplicationSessionsBucketSchema, type DashboardApplicationViolationBreakdown, DashboardApplicationViolationBreakdownSchema, type DashboardApplicationsOverview, type DashboardApplicationsOverviewItem, DashboardApplicationsOverviewItemSchema, type DashboardApplicationsOverviewQuery, DashboardApplicationsOverviewSchema, DashboardClient, type DashboardClientOptions, type DashboardOverviewResponse, DashboardOverviewResponseSchema, type DashboardPagination, DashboardPaginationSchema, type DashboardSessionStats, DashboardSessionStatsSchema, type DataFilteringDetails, DataFilteringDetailsSchema, type DataFilteringProfileListAllParams, type DataFilteringProfileListParams, type DataFilteringProfileRequest, DataFilteringProfileRequestSchema, type DataFilteringProfileResponse, DataFilteringProfileResponseSchema, DataFilteringProfilesClient, type DataFilteringProfilesClientOptions, type DataFilteringRuleDTO, DataFilteringRuleDTOSchema, type DataLeakDetectionMember, DataLeakDetectionMemberSchema, type DataPatternConfidenceLevel, DataPatternConfidenceLevelSchema, type DataPatternDetectionConfig, DataPatternDetectionConfigSchema, type DataPatternLicenseType, DataPatternLicenseTypeSchema, type DataPatternListAllParams, type DataPatternListParams, type DataPatternMatchingRules, DataPatternMatchingRulesSchema, type DataPatternPatchRequest, DataPatternPatchRequestSchema, type DataPatternRequest, DataPatternRequestSchema, type DataPatternResponse, DataPatternResponseSchema, type DataPatternStatus, DataPatternStatusSchema, type DataPatternTags, DataPatternTagsSchema, type DataPatternTechnique, DataPatternTechniqueSchema, type DataPatternType, DataPatternTypeSchema, DataPatternsClient, type DataPatternsClientOptions, type DataProfileListAllParams, type DataProfileListParams, type DataProfilePatchRequest, DataProfilePatchRequestSchema, type DataProfileResponse, DataProfileResponseSchema, type DataProfileStatus, DataProfileStatusSchema, type DataProfileSubtype, DataProfileSubtypeSchema, type DataProfileType, DataProfileTypeSchema, DataProfilesClient, type DataProfilesClientOptions, type DataProtection, DataProtectionSchema, type DatabaseSecurityItem, DatabaseSecurityItemSchema, type DatabricksConnectionParams, DatabricksConnectionParamsSchema, DateRangeFilter, type DbsEntry, DbsEntrySchema, type DbsReport, DbsReportSchema, type DefaultTreeDetectionRule, DefaultTreeDetectionRuleSchema, type DeleteProfileConflict, DeleteProfileConflictSchema, type DeleteProfileResponse, DeleteProfileResponseSchema, type DeleteTopicConflict, DeleteTopicConflictSchema, type DeleteTopicResponse, DeleteTopicResponseSchema, type DeploymentProfileAttribute, DeploymentProfileAttributeSchema, type DeploymentProfileEntry, DeploymentProfileEntrySchema, type DeploymentProfileListOptions, type DeploymentProfileRequest, DeploymentProfileRequestSchema, DeploymentProfilesClient, type DeploymentProfilesClientOptions, type DeploymentProfilesResponse, DeploymentProfilesResponseSchema, type DestinationAttributes, DestinationAttributesSchema, type DetectionRule, type DetectionRuleItem, DetectionRuleItemSchema, DetectionRuleSchema, DetectionServiceName, DetectionServiceName as DetectionServiceNameType, type DetectionServiceResult, DetectionServiceResultSchema, type DetectorViolationBreakdownEntry, DetectorViolationBreakdownEntrySchema, type Device, type DeviceInstance, DeviceInstanceSchema, type DeviceLicense, DeviceLicenseSchema, type DeviceRequest, DeviceRequestSchema, type DeviceResponse, DeviceResponseSchema, DeviceSchema, type DeviceStatus, DeviceStatusSchema, DictionariesClient, type DictionariesClientOptions, type DictionaryCategory, DictionaryCategorySchema, type DictionaryClassification, DictionaryClassificationSchema, type DictionaryDetectionSubTechnique, DictionaryDetectionSubTechniqueSchema, type DictionaryDetectionTechnique, DictionaryDetectionTechniqueSchema, type DictionaryFileInput, type DictionaryGetParams, type DictionaryListAllParams, type DictionaryListParams, type DictionaryMetaDataDTO, DictionaryMetaDataDTOSchema, type DictionaryPatchRequest, DictionaryPatchRequestSchema, type DictionaryRequest, DictionaryRequestSchema, type DictionaryResponse, DictionaryResponseSchema, type DictionaryTags, DictionaryTagsSchema, type DictionaryType, DictionaryTypeSchema, type DictionaryUploadParams, type DlpDataProfile, type DlpDataProfilePolicy, DlpDataProfilePolicySchema, DlpDataProfileSchema, DlpNamespace, type DlpNamespaceOptions, type DlpPatternDetection, DlpPatternDetectionSchema, type DlpProfileListResponse, DlpProfileListResponseSchema, DlpProfilesClient, type DlpProfilesClientOptions, type DlpReport, DlpReportSchema, type DlpRule, DlpRuleSchema, type DynamicJobMetadata, DynamicJobMetadataSchema, type DynamicJobReport, DynamicJobReportSchema, type DynamicJobReportStats, DynamicJobReportStatsSchema, ErrorCodes, type ErrorLog, type ErrorLogListResponse, ErrorLogListResponseSchema, ErrorLogSchema, type ErrorResponse, ErrorResponseSchema, ErrorSource, ErrorStatus, ErrorStatus as ErrorStatusType, type ErrorTrendsResponse, ErrorTrendsResponseSchema, ErrorType, type EulaAcceptRequest, EulaAcceptRequestSchema, type EulaContentResponse, EulaContentResponseSchema, type EulaResponse, EulaResponseSchema, EvalOutcome, type EvalSummary, EvalSummarySchema, type ExceptionRuleDTO, ExceptionRuleDTOSchema, type Exclusions, ExclusionsSchema, type ExpressionOperatorType, ExpressionOperatorTypeSchema, type ExpressionTreeNode, ExpressionTreeNodeSchema, type FeedbackModelsResponse, FeedbackModelsResponseSchema, type FeedbackScoreDistributionResponse, FeedbackScoreDistributionResponseSchema, FileFormat, type FileList, FileListSchema, type FileResponse, FileResponseSchema, type FileScanData, FileScanDataSchema, FileScanResult, FileType, type GatewayAcuvityScanParameters, GatewayAcuvityScanParametersSchema, type GatewayAllowedRequestTypesParameters, GatewayAllowedRequestTypesParametersSchema, type GatewayApiKey, type GatewayApiKeyCreateRequest, GatewayApiKeyCreateRequestSchema, type GatewayApiKeyRotateRequest, GatewayApiKeyRotateRequestSchema, type GatewayApiKeyRotateResponse, GatewayApiKeyRotateResponseSchema, type GatewayApiKeyRotationPolicy, GatewayApiKeyRotationPolicySchema, GatewayApiKeySchema, type GatewayApiKeyScope, GatewayApiKeyScopeSchema, type GatewayApiKeyUpdateRequest, GatewayApiKeyUpdateRequestSchema, type GatewayAporiaParameters, GatewayAporiaParametersSchema, type GatewayAuditLogRecord, GatewayAuditLogRecordSchema, type GatewayAuditLogsResponse, GatewayAuditLogsResponseSchema, type GatewayAzureAIConfiguration, GatewayAzureAIConfigurationSchema, type GatewayAzureContentSafetyParameters, GatewayAzureContentSafetyParametersSchema, type GatewayAzureDeploymentConfig, GatewayAzureDeploymentConfigSchema, type GatewayAzureDeploymentConfiguration, GatewayAzureDeploymentConfigurationSchema, type GatewayAzureOpenAIConfiguration, GatewayAzureOpenAIConfigurationSchema, type GatewayAzurePIIParameters, GatewayAzurePIIParametersSchema, type GatewayBasicParameters, GatewayBasicParametersSchema, type GatewayBedrockConfiguration, GatewayBedrockConfigurationSchema, type GatewayBedrockGuardParameters, GatewayBedrockGuardParametersSchema, type GatewayBulkSyncMcpServerMappingsRequest, GatewayBulkSyncMcpServerMappingsRequestSchema, type GatewayBulkSyncMcpServerMappingsResponse, GatewayBulkSyncMcpServerMappingsResponseSchema, type GatewayCatalogAzureAIConfiguration, GatewayCatalogAzureAIConfigurationSchema, type GatewayCatalogAzureOpenAIConfiguration, GatewayCatalogAzureOpenAIConfigurationSchema, type GatewayCatalogBedrockConfiguration, GatewayCatalogBedrockConfigurationSchema, type GatewayCatalogCortexConfiguration, GatewayCatalogCortexConfigurationSchema, type GatewayCatalogCustomHostConfiguration, GatewayCatalogCustomHostConfigurationSchema, type GatewayCatalogGuardrailParameters, GatewayCatalogGuardrailParametersSchema, type GatewayCatalogHuggingFaceConfiguration, GatewayCatalogHuggingFaceConfigurationSchema, type GatewayCatalogMcpConfiguration, GatewayCatalogMcpConfigurationSchema, type GatewayCatalogOpenAIConfiguration, GatewayCatalogOpenAIConfigurationSchema, type GatewayCatalogProviderConfiguration, GatewayCatalogProviderConfigurationSchema, type GatewayCatalogSageMakerConfiguration, GatewayCatalogSageMakerConfigurationSchema, type GatewayCatalogSecretMapping, GatewayCatalogSecretMappingSchema, type GatewayCatalogVertexAIConfiguration, GatewayCatalogVertexAIConfigurationSchema, type GatewayCatalogWorkersAIConfiguration, GatewayCatalogWorkersAIConfigurationSchema, type GatewayCharacterCountParameters, GatewayCharacterCountParametersSchema, type GatewayChartRecord, GatewayChartRecordSchema, type GatewayChatCompletion, type GatewayChatCompletionChunk, type GatewayChatCompletionRequest, type GatewayCondition, GatewayConditionSchema, type GatewayConfig, type GatewayConfigCacheMode, GatewayConfigCacheModeSchema, type GatewayConfigCreateRequest, GatewayConfigCreateRequestSchema, type GatewayConfigCreateResponse, GatewayConfigCreateResponseSchema, type GatewayConfigDetail, GatewayConfigDetailSchema, GatewayConfigSchema, type GatewayConfigStrategy, GatewayConfigStrategySchema, type GatewayConfigUpdateRequest, GatewayConfigUpdateRequestSchema, type GatewayConfigVersion, GatewayConfigVersionSchema, type GatewayContainsCodeParameters, GatewayContainsCodeParametersSchema, type GatewayContainsParameters, GatewayContainsParametersSchema, type GatewayCortexConfiguration, GatewayCortexConfigurationSchema, type GatewayCreatePolicyResponse, GatewayCreatePolicyResponseSchema, type GatewayCreateRateLimitsPolicyRequest, GatewayCreateRateLimitsPolicyRequestSchema, type GatewayCreateSecretReferenceRequest, GatewayCreateSecretReferenceRequestSchema, type GatewayCreateUsageLimitsPolicyRequest, GatewayCreateUsageLimitsPolicyRequestSchema, type GatewayCustomHostConfiguration, GatewayCustomHostConfigurationSchema, type GatewayDefaultsInput, GatewayDefaultsInputSchema, type GatewayDeployment, type GatewayDeploymentAuthSettingsInput, GatewayDeploymentAuthSettingsInputSchema, type GatewayDeploymentCreateRequest, GatewayDeploymentCreateRequestSchema, type GatewayDeploymentCreateResponse, GatewayDeploymentCreateResponseSchema, type GatewayDeploymentDetail, GatewayDeploymentDetailSchema, type GatewayDeploymentPingResponse, GatewayDeploymentPingResponseSchema, GatewayDeploymentSchema, type GatewayDeploymentStatus, GatewayDeploymentStatusSchema, type GatewayDeploymentTags, GatewayDeploymentTagsSchema, type GatewayDeploymentType, GatewayDeploymentTypeSchema, type GatewayDeploymentUpdateRequest, GatewayDeploymentUpdateRequestSchema, type GatewayDottedValueEntry, type GatewayDownloadLogsResponse, GatewayDownloadLogsResponseSchema, type GatewayEmbeddingRequest, type GatewayEmbeddingResponse, type GatewayEndsWithParameters, GatewayEndsWithParametersSchema, type GatewayExportItem, GatewayExportItemSchema, type GatewayExportListResponse, GatewayExportListResponseSchema, type GatewayExportTaskResponse, GatewayExportTaskResponseSchema, type GatewayGenerationsFilterSchema, GatewayGenerationsFilterSchemaSchema, type GatewayGlobalWorkspaceAccess, type GatewayGlobalWorkspaceAccessInput, GatewayGlobalWorkspaceAccessInputSchema, GatewayGlobalWorkspaceAccessSchema, type GatewayGroupBy, GatewayGroupBySchema, type GatewayGroupRow, GatewayGroupRowSchema, type GatewayGuardrail, type GatewayGuardrailActions, GatewayGuardrailActionsSchema, type GatewayGuardrailCheck, GatewayGuardrailCheckSchema, type GatewayGuardrailCreateRequest, GatewayGuardrailCreateRequestSchema, type GatewayGuardrailCreateResponse, GatewayGuardrailCreateResponseSchema, type GatewayGuardrailDetail, GatewayGuardrailDetailSchema, GatewayGuardrailSchema, type GatewayGuardrailUpdateRequest, GatewayGuardrailUpdateRequestSchema, type GatewayHuggingFaceConfiguration, GatewayHuggingFaceConfigurationSchema, type GatewayInferenceAnalyticsMetrics, GatewayInferenceAnalyticsMetricsSchema, type GatewayInferenceAnnotation, GatewayInferenceAnnotationSchema, type GatewayInferenceBatch, GatewayInferenceBatchSchema, type GatewayInferenceChatCompletionFunctionCallOption, GatewayInferenceChatCompletionFunctionCallOptionSchema, type GatewayInferenceChatCompletionFunctions, GatewayInferenceChatCompletionFunctionsSchema, type GatewayInferenceChatCompletionMessageContentBlock, GatewayInferenceChatCompletionMessageContentBlockSchema, type GatewayInferenceChatCompletionMessageContentPartRedactedThinking, GatewayInferenceChatCompletionMessageContentPartRedactedThinkingSchema, type GatewayInferenceChatCompletionMessageContentPartThinking, GatewayInferenceChatCompletionMessageContentPartThinkingSchema, type GatewayInferenceChatCompletionMessageToolCall, type GatewayInferenceChatCompletionMessageToolCallChunk, GatewayInferenceChatCompletionMessageToolCallChunkSchema, GatewayInferenceChatCompletionMessageToolCallSchema, type GatewayInferenceChatCompletionMessageToolCalls, GatewayInferenceChatCompletionMessageToolCallsSchema, type GatewayInferenceChatCompletionNamedToolChoice, GatewayInferenceChatCompletionNamedToolChoiceSchema, type GatewayInferenceChatCompletionRequestAssistantMessage, GatewayInferenceChatCompletionRequestAssistantMessageSchema, type GatewayInferenceChatCompletionRequestDeveloperMessage, GatewayInferenceChatCompletionRequestDeveloperMessageSchema, type GatewayInferenceChatCompletionRequestFunctionMessage, GatewayInferenceChatCompletionRequestFunctionMessageSchema, type GatewayInferenceChatCompletionRequestMessage, type GatewayInferenceChatCompletionRequestMessageContentPart, type GatewayInferenceChatCompletionRequestMessageContentPartImage, GatewayInferenceChatCompletionRequestMessageContentPartImageSchema, GatewayInferenceChatCompletionRequestMessageContentPartSchema, type GatewayInferenceChatCompletionRequestMessageContentPartText, GatewayInferenceChatCompletionRequestMessageContentPartTextSchema, GatewayInferenceChatCompletionRequestMessageSchema, type GatewayInferenceChatCompletionRequestSystemMessage, GatewayInferenceChatCompletionRequestSystemMessageSchema, type GatewayInferenceChatCompletionRequestToolMessage, GatewayInferenceChatCompletionRequestToolMessageSchema, type GatewayInferenceChatCompletionRequestUserMessage, GatewayInferenceChatCompletionRequestUserMessageSchema, type GatewayInferenceChatCompletionResponseMessage, GatewayInferenceChatCompletionResponseMessageSchema, type GatewayInferenceChatCompletionStreamOptions, GatewayInferenceChatCompletionStreamOptionsSchema, type GatewayInferenceChatCompletionStreamResponseDelta, GatewayInferenceChatCompletionStreamResponseDeltaSchema, type GatewayInferenceChatCompletionTokenLogprob, GatewayInferenceChatCompletionTokenLogprobSchema, type GatewayInferenceChatCompletionTool, type GatewayInferenceChatCompletionToolChoiceOption, GatewayInferenceChatCompletionToolChoiceOptionSchema, GatewayInferenceChatCompletionToolSchema, type GatewayInferenceClick, GatewayInferenceClickSchema, type GatewayInferenceCodeInterpreterFileOutput, GatewayInferenceCodeInterpreterFileOutputSchema, type GatewayInferenceCodeInterpreterTextOutput, GatewayInferenceCodeInterpreterTextOutputSchema, type GatewayInferenceCodeInterpreterToolCall, GatewayInferenceCodeInterpreterToolCallSchema, type GatewayInferenceCodeInterpreterToolOutput, GatewayInferenceCodeInterpreterToolOutputSchema, type GatewayInferenceComparisonFilter, GatewayInferenceComparisonFilterSchema, type GatewayInferenceCompletionUsage, GatewayInferenceCompletionUsageSchema, type GatewayInferenceCompoundFilter, GatewayInferenceCompoundFilterSchema, type GatewayInferenceComputerAction, GatewayInferenceComputerActionSchema, type GatewayInferenceComputerScreenshotImage, GatewayInferenceComputerScreenshotImageSchema, type GatewayInferenceComputerTool, type GatewayInferenceComputerToolCall, type GatewayInferenceComputerToolCallOutputResource, GatewayInferenceComputerToolCallOutputResourceSchema, type GatewayInferenceComputerToolCallSafetyCheck, GatewayInferenceComputerToolCallSafetyCheckSchema, GatewayInferenceComputerToolCallSchema, GatewayInferenceComputerToolSchema, type GatewayInferenceCoordinate, GatewayInferenceCoordinateSchema, type GatewayInferenceCreateChatCompletionRequest, GatewayInferenceCreateChatCompletionRequestSchema, type GatewayInferenceCreateChatCompletionResponse, GatewayInferenceCreateChatCompletionResponseSchema, type GatewayInferenceCreateChatCompletionStreamResponse, GatewayInferenceCreateChatCompletionStreamResponseSchema, type GatewayInferenceCreateCompletionRequest, GatewayInferenceCreateCompletionRequestSchema, type GatewayInferenceCreateCompletionResponse, GatewayInferenceCreateCompletionResponseSchema, type GatewayInferenceCreateEmbeddingResponse, GatewayInferenceCreateEmbeddingResponseSchema, type GatewayInferenceCreateModerationResponse, GatewayInferenceCreateModerationResponseSchema, type GatewayInferenceCreateOcrResponse, GatewayInferenceCreateOcrResponseSchema, type GatewayInferenceCreatePromptCompletionResponse, GatewayInferenceCreatePromptCompletionResponseSchema, type GatewayInferenceCreatePromptCompletionStreamResponse, GatewayInferenceCreatePromptCompletionStreamResponseSchema, type GatewayInferenceCreatePromptRenderResponse, GatewayInferenceCreatePromptRenderResponseSchema, type GatewayInferenceCreateRerankResponse, GatewayInferenceCreateRerankResponseSchema, type GatewayInferenceCreateTranscriptionResponseJson, GatewayInferenceCreateTranscriptionResponseJsonSchema, type GatewayInferenceCreateTranscriptionResponseVerboseJson, GatewayInferenceCreateTranscriptionResponseVerboseJsonSchema, type GatewayInferenceCreateTranslationResponseJson, GatewayInferenceCreateTranslationResponseJsonSchema, type GatewayInferenceCreateTranslationResponseVerboseJson, GatewayInferenceCreateTranslationResponseVerboseJsonSchema, type GatewayInferenceDeleteFileResponse, GatewayInferenceDeleteFileResponseSchema, type GatewayInferenceDeleteModelResponse, GatewayInferenceDeleteModelResponseSchema, type GatewayInferenceDeleteVectorStoreFileResponse, GatewayInferenceDeleteVectorStoreFileResponseSchema, type GatewayInferenceDeleteVectorStoreResponse, GatewayInferenceDeleteVectorStoreResponseSchema, type GatewayInferenceDoubleClick, GatewayInferenceDoubleClickSchema, type GatewayInferenceDrag, GatewayInferenceDragSchema, type GatewayInferenceEmbedding, GatewayInferenceEmbeddingSchema, type GatewayInferenceFeedbackResponse, GatewayInferenceFeedbackResponseSchema, type GatewayInferenceFileCitation, GatewayInferenceFileCitationSchema, type GatewayInferenceFilePath, GatewayInferenceFilePathSchema, type GatewayInferenceFileSearchTool, type GatewayInferenceFileSearchToolCall, GatewayInferenceFileSearchToolCallSchema, GatewayInferenceFileSearchToolSchema, type GatewayInferenceFineTuningIntegration, GatewayInferenceFineTuningIntegrationSchema, type GatewayInferenceFineTuningJob, type GatewayInferenceFineTuningJobCheckpoint, GatewayInferenceFineTuningJobCheckpointSchema, type GatewayInferenceFineTuningJobEvent, GatewayInferenceFineTuningJobEventSchema, GatewayInferenceFineTuningJobSchema, type GatewayInferenceFunctionObject, GatewayInferenceFunctionObjectSchema, type GatewayInferenceFunctionParameters, GatewayInferenceFunctionParametersSchema, type GatewayInferenceFunctionTool, type GatewayInferenceFunctionToolCall, type GatewayInferenceFunctionToolCallOutputResource, GatewayInferenceFunctionToolCallOutputResourceSchema, type GatewayInferenceFunctionToolCallResource, GatewayInferenceFunctionToolCallResourceSchema, GatewayInferenceFunctionToolCallSchema, GatewayInferenceFunctionToolSchema, type GatewayInferenceImage, GatewayInferenceImageSchema, type GatewayInferenceImagesResponse, GatewayInferenceImagesResponseSchema, type GatewayInferenceInputAnnotation, GatewayInferenceInputAnnotationSchema, type GatewayInferenceInputAutoChunkingStrategyRequestParam, GatewayInferenceInputAutoChunkingStrategyRequestParamSchema, type GatewayInferenceInputBedrockBatchJob, GatewayInferenceInputBedrockBatchJobSchema, type GatewayInferenceInputBedrockFinetuneJob, GatewayInferenceInputBedrockFinetuneJobSchema, type GatewayInferenceInputChatCompletionFunctionCallOption, GatewayInferenceInputChatCompletionFunctionCallOptionSchema, type GatewayInferenceInputChatCompletionFunctions, GatewayInferenceInputChatCompletionFunctionsSchema, type GatewayInferenceInputChatCompletionMessageToolCall, GatewayInferenceInputChatCompletionMessageToolCallSchema, type GatewayInferenceInputChatCompletionMessageToolCalls, GatewayInferenceInputChatCompletionMessageToolCallsSchema, type GatewayInferenceInputChatCompletionNamedToolChoice, GatewayInferenceInputChatCompletionNamedToolChoiceSchema, type GatewayInferenceInputChatCompletionRequestAssistantMessage, GatewayInferenceInputChatCompletionRequestAssistantMessageSchema, type GatewayInferenceInputChatCompletionRequestDeveloperMessage, GatewayInferenceInputChatCompletionRequestDeveloperMessageSchema, type GatewayInferenceInputChatCompletionRequestFunctionMessage, GatewayInferenceInputChatCompletionRequestFunctionMessageSchema, type GatewayInferenceInputChatCompletionRequestMessage, type GatewayInferenceInputChatCompletionRequestMessageContentPart, type GatewayInferenceInputChatCompletionRequestMessageContentPartImage, GatewayInferenceInputChatCompletionRequestMessageContentPartImageSchema, GatewayInferenceInputChatCompletionRequestMessageContentPartSchema, type GatewayInferenceInputChatCompletionRequestMessageContentPartText, GatewayInferenceInputChatCompletionRequestMessageContentPartTextSchema, GatewayInferenceInputChatCompletionRequestMessageSchema, type GatewayInferenceInputChatCompletionRequestSystemMessage, GatewayInferenceInputChatCompletionRequestSystemMessageSchema, type GatewayInferenceInputChatCompletionRequestToolMessage, GatewayInferenceInputChatCompletionRequestToolMessageSchema, type GatewayInferenceInputChatCompletionRequestUserMessage, GatewayInferenceInputChatCompletionRequestUserMessageSchema, type GatewayInferenceInputChatCompletionStreamOptions, GatewayInferenceInputChatCompletionStreamOptionsSchema, type GatewayInferenceInputChatCompletionTool, type GatewayInferenceInputChatCompletionToolChoiceOption, GatewayInferenceInputChatCompletionToolChoiceOptionSchema, GatewayInferenceInputChatCompletionToolSchema, type GatewayInferenceInputChunkingStrategyRequestParam, GatewayInferenceInputChunkingStrategyRequestParamSchema, type GatewayInferenceInputClick, GatewayInferenceInputClickSchema, type GatewayInferenceInputComparisonFilter, GatewayInferenceInputComparisonFilterSchema, type GatewayInferenceInputCompoundFilter, GatewayInferenceInputCompoundFilterSchema, type GatewayInferenceInputComputerAction, GatewayInferenceInputComputerActionSchema, type GatewayInferenceInputComputerScreenshotImage, GatewayInferenceInputComputerScreenshotImageSchema, type GatewayInferenceInputComputerTool, type GatewayInferenceInputComputerToolCall, type GatewayInferenceInputComputerToolCallOutput, GatewayInferenceInputComputerToolCallOutputSchema, type GatewayInferenceInputComputerToolCallSafetyCheck, GatewayInferenceInputComputerToolCallSafetyCheckSchema, GatewayInferenceInputComputerToolCallSchema, GatewayInferenceInputComputerToolSchema, type GatewayInferenceInputContent, GatewayInferenceInputContentSchema, type GatewayInferenceInputCoordinate, GatewayInferenceInputCoordinateSchema, type GatewayInferenceInputCreateBatchRequest, GatewayInferenceInputCreateBatchRequestSchema, type GatewayInferenceInputCreateChatCompletionRequest, GatewayInferenceInputCreateChatCompletionRequestSchema, type GatewayInferenceInputCreateCompletionRequest, GatewayInferenceInputCreateCompletionRequestSchema, type GatewayInferenceInputCreateEmbeddingRequest, GatewayInferenceInputCreateEmbeddingRequestSchema, type GatewayInferenceInputCreateFileRequest, GatewayInferenceInputCreateFileRequestSchema, type GatewayInferenceInputCreateFineTuningJobRequest, GatewayInferenceInputCreateFineTuningJobRequestSchema, type GatewayInferenceInputCreateImageEditRequest, GatewayInferenceInputCreateImageEditRequestSchema, type GatewayInferenceInputCreateImageRequest, GatewayInferenceInputCreateImageRequestSchema, type GatewayInferenceInputCreateImageVariationRequest, GatewayInferenceInputCreateImageVariationRequestSchema, type GatewayInferenceInputCreateLogsRequest, GatewayInferenceInputCreateLogsRequestSchema, type GatewayInferenceInputCreateModerationRequest, GatewayInferenceInputCreateModerationRequestSchema, type GatewayInferenceInputCreateOcrRequest, GatewayInferenceInputCreateOcrRequestSchema, type GatewayInferenceInputCreatePromptCompletionRequest, GatewayInferenceInputCreatePromptCompletionRequestSchema, type GatewayInferenceInputCreatePromptRenderRequest, GatewayInferenceInputCreatePromptRenderRequestSchema, type GatewayInferenceInputCreateRerankRequest, GatewayInferenceInputCreateRerankRequestSchema, type GatewayInferenceInputCreateResponse, GatewayInferenceInputCreateResponseSchema, type GatewayInferenceInputCreateSpeechRequest, GatewayInferenceInputCreateSpeechRequestSchema, type GatewayInferenceInputCreateTranscriptionRequest, GatewayInferenceInputCreateTranscriptionRequestSchema, type GatewayInferenceInputCreateTranslationRequest, GatewayInferenceInputCreateTranslationRequestSchema, type GatewayInferenceInputCreateVectorStoreFileBatchRequest, GatewayInferenceInputCreateVectorStoreFileBatchRequestSchema, type GatewayInferenceInputCreateVectorStoreFileRequest, GatewayInferenceInputCreateVectorStoreFileRequestSchema, type GatewayInferenceInputCreateVectorStoreRequest, GatewayInferenceInputCreateVectorStoreRequestSchema, type GatewayInferenceInputCustomLog, GatewayInferenceInputCustomLogSchema, type GatewayInferenceInputDoubleClick, GatewayInferenceInputDoubleClickSchema, type GatewayInferenceInputDrag, GatewayInferenceInputDragSchema, type GatewayInferenceInputEasyInputMessage, GatewayInferenceInputEasyInputMessageSchema, type GatewayInferenceInputFeedbackRequest, GatewayInferenceInputFeedbackRequestSchema, type GatewayInferenceInputFeedbackUpdateRequest, GatewayInferenceInputFeedbackUpdateRequestSchema, type GatewayInferenceInputFile, type GatewayInferenceInputFileCitation, GatewayInferenceInputFileCitationSchema, type GatewayInferenceInputFilePath, GatewayInferenceInputFilePathSchema, GatewayInferenceInputFileSchema, type GatewayInferenceInputFileSearchTool, type GatewayInferenceInputFileSearchToolCall, GatewayInferenceInputFileSearchToolCallSchema, GatewayInferenceInputFileSearchToolSchema, type GatewayInferenceInputFunctionObject, GatewayInferenceInputFunctionObjectSchema, type GatewayInferenceInputFunctionParameters, GatewayInferenceInputFunctionParametersSchema, type GatewayInferenceInputFunctionTool, type GatewayInferenceInputFunctionToolCall, type GatewayInferenceInputFunctionToolCallOutput, GatewayInferenceInputFunctionToolCallOutputSchema, GatewayInferenceInputFunctionToolCallSchema, GatewayInferenceInputFunctionToolSchema, type GatewayInferenceInputGetLogQuery, GatewayInferenceInputGetLogQuerySchema, type GatewayInferenceInputGetResponseQuery, GatewayInferenceInputGetResponseQuerySchema, type GatewayInferenceInputImage, GatewayInferenceInputImageSchema, type GatewayInferenceInputIncludable, GatewayInferenceInputIncludableSchema, type GatewayInferenceInputInputContent, GatewayInferenceInputInputContentSchema, type GatewayInferenceInputInputFile, GatewayInferenceInputInputFileSchema, type GatewayInferenceInputInputImage, GatewayInferenceInputInputImageSchema, type GatewayInferenceInputInputItem, GatewayInferenceInputInputItemSchema, type GatewayInferenceInputInputMessage, type GatewayInferenceInputInputMessageContentList, GatewayInferenceInputInputMessageContentListSchema, GatewayInferenceInputInputMessageSchema, type GatewayInferenceInputInputText, GatewayInferenceInputInputTextSchema, type GatewayInferenceInputItem, type GatewayInferenceInputItemReference, GatewayInferenceInputItemReferenceSchema, GatewayInferenceInputItemSchema, type GatewayInferenceInputKeyPress, GatewayInferenceInputKeyPressSchema, type GatewayInferenceInputListBatchesQuery, GatewayInferenceInputListBatchesQuerySchema, type GatewayInferenceInputListFilesInVectorStoreBatchQuery, GatewayInferenceInputListFilesInVectorStoreBatchQuerySchema, type GatewayInferenceInputListFilesQuery, GatewayInferenceInputListFilesQuerySchema, type GatewayInferenceInputListFineTuningEventsQuery, GatewayInferenceInputListFineTuningEventsQuerySchema, type GatewayInferenceInputListFineTuningJobCheckpointsQuery, GatewayInferenceInputListFineTuningJobCheckpointsQuerySchema, type GatewayInferenceInputListInputItemsQuery, GatewayInferenceInputListInputItemsQuerySchema, type GatewayInferenceInputListModelsQuery, GatewayInferenceInputListModelsQuerySchema, type GatewayInferenceInputListPaginatedFineTuningJobsQuery, GatewayInferenceInputListPaginatedFineTuningJobsQuerySchema, type GatewayInferenceInputListVectorStoreFilesQuery, GatewayInferenceInputListVectorStoreFilesQuerySchema, type GatewayInferenceInputListVectorStoresQuery, GatewayInferenceInputListVectorStoresQuerySchema, type GatewayInferenceInputMessageContentList, GatewayInferenceInputMessageContentListSchema, type GatewayInferenceInputMessageResource, GatewayInferenceInputMessageResourceSchema, type GatewayInferenceInputMetadata, GatewayInferenceInputMetadataSchema, type GatewayInferenceInputModelIdsResponses, GatewayInferenceInputModelIdsResponsesSchema, type GatewayInferenceInputMove, GatewayInferenceInputMoveSchema, type GatewayInferenceInputOpenAIBatchJob, GatewayInferenceInputOpenAIBatchJobSchema, type GatewayInferenceInputOpenAIFinetuneJob, GatewayInferenceInputOpenAIFinetuneJobSchema, type GatewayInferenceInputOutputContent, GatewayInferenceInputOutputContentSchema, type GatewayInferenceInputOutputMessage, GatewayInferenceInputOutputMessageSchema, type GatewayInferenceInputOutputText, GatewayInferenceInputOutputTextSchema, type GatewayInferenceInputParallelToolCalls, GatewayInferenceInputParallelToolCallsSchema, type GatewayInferenceInputPortkeyBatchJob, GatewayInferenceInputPortkeyBatchJobSchema, type GatewayInferenceInputPortkeyFinetuneJob, GatewayInferenceInputPortkeyFinetuneJobSchema, type GatewayInferenceInputReasoning, type GatewayInferenceInputReasoningEffort, GatewayInferenceInputReasoningEffortSchema, type GatewayInferenceInputReasoningItem, GatewayInferenceInputReasoningItemSchema, GatewayInferenceInputReasoningSchema, type GatewayInferenceInputRefusal, GatewayInferenceInputRefusalSchema, type GatewayInferenceInputRerankDocument, GatewayInferenceInputRerankDocumentSchema, type GatewayInferenceInputResponseFormatJsonObject, GatewayInferenceInputResponseFormatJsonObjectSchema, type GatewayInferenceInputResponseFormatJsonSchema, GatewayInferenceInputResponseFormatJsonSchemaSchema, GatewayInferenceInputResponseFormatJsonSchemaSchemaSchema, type GatewayInferenceInputResponseFormatText, GatewayInferenceInputResponseFormatTextSchema, type GatewayInferenceInputScreenshot, GatewayInferenceInputScreenshotSchema, type GatewayInferenceInputScroll, GatewayInferenceInputScrollSchema, type GatewayInferenceInputStaticChunkingStrategy, type GatewayInferenceInputStaticChunkingStrategyRequestParam, GatewayInferenceInputStaticChunkingStrategyRequestParamSchema, GatewayInferenceInputStaticChunkingStrategySchema, type GatewayInferenceInputText, type GatewayInferenceInputTextResponseFormatConfiguration, GatewayInferenceInputTextResponseFormatConfigurationSchema, type GatewayInferenceInputTextResponseFormatJsonSchema, GatewayInferenceInputTextResponseFormatJsonSchemaSchema, GatewayInferenceInputTextSchema, type GatewayInferenceInputTool, type GatewayInferenceInputToolChoiceFunction, GatewayInferenceInputToolChoiceFunctionSchema, type GatewayInferenceInputToolChoiceOptions, GatewayInferenceInputToolChoiceOptionsSchema, type GatewayInferenceInputToolChoiceTypes, GatewayInferenceInputToolChoiceTypesSchema, GatewayInferenceInputToolSchema, type GatewayInferenceInputType, GatewayInferenceInputTypeSchema, type GatewayInferenceInputUpdateVectorStoreRequest, GatewayInferenceInputUpdateVectorStoreRequestSchema, type GatewayInferenceInputUrlCitation, GatewayInferenceInputUrlCitationSchema, type GatewayInferenceInputVectorStoreExpirationAfter, GatewayInferenceInputVectorStoreExpirationAfterSchema, type GatewayInferenceInputVectorStoreFileAttributes, GatewayInferenceInputVectorStoreFileAttributesSchema, type GatewayInferenceInputVertexBatchJob, GatewayInferenceInputVertexBatchJobSchema, type GatewayInferenceInputWait, GatewayInferenceInputWaitSchema, type GatewayInferenceInputWebSearchContextSize, GatewayInferenceInputWebSearchContextSizeSchema, type GatewayInferenceInputWebSearchTool, type GatewayInferenceInputWebSearchToolCall, GatewayInferenceInputWebSearchToolCallSchema, GatewayInferenceInputWebSearchToolSchema, type GatewayInferenceItemResource, GatewayInferenceItemResourceSchema, type GatewayInferenceKeyPress, GatewayInferenceKeyPressSchema, type GatewayInferenceListBatchesResponse, GatewayInferenceListBatchesResponseSchema, type GatewayInferenceListFilesResponse, GatewayInferenceListFilesResponseSchema, type GatewayInferenceListFineTuningJobCheckpointsResponse, GatewayInferenceListFineTuningJobCheckpointsResponseSchema, type GatewayInferenceListFineTuningJobEventsResponse, GatewayInferenceListFineTuningJobEventsResponseSchema, type GatewayInferenceListModelsResponse, GatewayInferenceListModelsResponseSchema, type GatewayInferenceListPaginatedFineTuningJobsResponse, GatewayInferenceListPaginatedFineTuningJobsResponseSchema, type GatewayInferenceListVectorStoreFilesResponse, GatewayInferenceListVectorStoreFilesResponseSchema, type GatewayInferenceListVectorStoresResponse, GatewayInferenceListVectorStoresResponseSchema, type GatewayInferenceLogObject, GatewayInferenceLogObjectSchema, type GatewayInferenceLogRequest, GatewayInferenceLogRequestSchema, type GatewayInferenceLogResponse, GatewayInferenceLogResponseSchema, type GatewayInferenceMetadata, GatewayInferenceMetadataSchema, type GatewayInferenceModel, type GatewayInferenceModelIdsResponses, GatewayInferenceModelIdsResponsesSchema, GatewayInferenceModelSchema, type GatewayInferenceMove, GatewayInferenceMoveSchema, type GatewayInferenceOcrPage, GatewayInferenceOcrPageSchema, type GatewayInferenceOpenAIFile, GatewayInferenceOpenAIFileSchema, type GatewayInferenceOtherChunkingStrategyResponseParam, GatewayInferenceOtherChunkingStrategyResponseParamSchema, type GatewayInferenceOutputContent, GatewayInferenceOutputContentSchema, type GatewayInferenceOutputItem, GatewayInferenceOutputItemSchema, type GatewayInferenceOutputMessage, GatewayInferenceOutputMessageSchema, type GatewayInferenceOutputText, GatewayInferenceOutputTextSchema, type GatewayInferenceParallelToolCalls, GatewayInferenceParallelToolCallsSchema, type GatewayInferencePromptRenderResponse, GatewayInferencePromptRenderResponseSchema, type GatewayInferenceReasoning, type GatewayInferenceReasoningEffort, GatewayInferenceReasoningEffortSchema, type GatewayInferenceReasoningItem, GatewayInferenceReasoningItemSchema, GatewayInferenceReasoningSchema, type GatewayInferenceRefusal, GatewayInferenceRefusalSchema, type GatewayInferenceRequestOptions, type GatewayInferenceRequestResponseObject, GatewayInferenceRequestResponseObjectSchema, type GatewayInferenceRerankResult, GatewayInferenceRerankResultSchema, type GatewayInferenceRerankUsage, GatewayInferenceRerankUsageSchema, type GatewayInferenceResponse, type GatewayInferenceResponseAudioDeltaEvent, GatewayInferenceResponseAudioDeltaEventSchema, type GatewayInferenceResponseAudioDoneEvent, GatewayInferenceResponseAudioDoneEventSchema, type GatewayInferenceResponseAudioTranscriptDeltaEvent, GatewayInferenceResponseAudioTranscriptDeltaEventSchema, type GatewayInferenceResponseAudioTranscriptDoneEvent, GatewayInferenceResponseAudioTranscriptDoneEventSchema, type GatewayInferenceResponseCodeInterpreterCallCodeDeltaEvent, GatewayInferenceResponseCodeInterpreterCallCodeDeltaEventSchema, type GatewayInferenceResponseCodeInterpreterCallCodeDoneEvent, GatewayInferenceResponseCodeInterpreterCallCodeDoneEventSchema, type GatewayInferenceResponseCodeInterpreterCallCompletedEvent, GatewayInferenceResponseCodeInterpreterCallCompletedEventSchema, type GatewayInferenceResponseCodeInterpreterCallInProgressEvent, GatewayInferenceResponseCodeInterpreterCallInProgressEventSchema, type GatewayInferenceResponseCodeInterpreterCallInterpretingEvent, GatewayInferenceResponseCodeInterpreterCallInterpretingEventSchema, type GatewayInferenceResponseCompletedEvent, GatewayInferenceResponseCompletedEventSchema, type GatewayInferenceResponseContentPartAddedEvent, GatewayInferenceResponseContentPartAddedEventSchema, type GatewayInferenceResponseContentPartDoneEvent, GatewayInferenceResponseContentPartDoneEventSchema, type GatewayInferenceResponseCreatedEvent, GatewayInferenceResponseCreatedEventSchema, type GatewayInferenceResponseError, type GatewayInferenceResponseErrorCode, GatewayInferenceResponseErrorCodeSchema, type GatewayInferenceResponseErrorEvent, GatewayInferenceResponseErrorEventSchema, GatewayInferenceResponseErrorSchema, type GatewayInferenceResponseFailedEvent, GatewayInferenceResponseFailedEventSchema, type GatewayInferenceResponseFileSearchCallCompletedEvent, GatewayInferenceResponseFileSearchCallCompletedEventSchema, type GatewayInferenceResponseFileSearchCallInProgressEvent, GatewayInferenceResponseFileSearchCallInProgressEventSchema, type GatewayInferenceResponseFileSearchCallSearchingEvent, GatewayInferenceResponseFileSearchCallSearchingEventSchema, type GatewayInferenceResponseFormatJsonObject, GatewayInferenceResponseFormatJsonObjectSchema, type GatewayInferenceResponseFormatJsonSchema, GatewayInferenceResponseFormatJsonSchemaSchema, GatewayInferenceResponseFormatJsonSchemaSchemaSchema, type GatewayInferenceResponseFormatText, GatewayInferenceResponseFormatTextSchema, type GatewayInferenceResponseFunctionCallArgumentsDeltaEvent, GatewayInferenceResponseFunctionCallArgumentsDeltaEventSchema, type GatewayInferenceResponseFunctionCallArgumentsDoneEvent, GatewayInferenceResponseFunctionCallArgumentsDoneEventSchema, type GatewayInferenceResponseInProgressEvent, GatewayInferenceResponseInProgressEventSchema, type GatewayInferenceResponseIncompleteEvent, GatewayInferenceResponseIncompleteEventSchema, type GatewayInferenceResponseItemList, GatewayInferenceResponseItemListSchema, type GatewayInferenceResponseOutputItemAddedEvent, GatewayInferenceResponseOutputItemAddedEventSchema, type GatewayInferenceResponseOutputItemDoneEvent, GatewayInferenceResponseOutputItemDoneEventSchema, type GatewayInferenceResponseRefusalDeltaEvent, GatewayInferenceResponseRefusalDeltaEventSchema, type GatewayInferenceResponseRefusalDoneEvent, GatewayInferenceResponseRefusalDoneEventSchema, GatewayInferenceResponseSchema, type GatewayInferenceResponseStreamEvent, GatewayInferenceResponseStreamEventSchema, type GatewayInferenceResponseTextAnnotationDeltaEvent, GatewayInferenceResponseTextAnnotationDeltaEventSchema, type GatewayInferenceResponseTextDeltaEvent, GatewayInferenceResponseTextDeltaEventSchema, type GatewayInferenceResponseTextDoneEvent, GatewayInferenceResponseTextDoneEventSchema, type GatewayInferenceResponseUsage, GatewayInferenceResponseUsageSchema, type GatewayInferenceResponseWebSearchCallCompletedEvent, GatewayInferenceResponseWebSearchCallCompletedEventSchema, type GatewayInferenceResponseWebSearchCallInProgressEvent, GatewayInferenceResponseWebSearchCallInProgressEventSchema, type GatewayInferenceResponseWebSearchCallSearchingEvent, GatewayInferenceResponseWebSearchCallSearchingEventSchema, type GatewayInferenceScreenshot, GatewayInferenceScreenshotSchema, type GatewayInferenceScroll, GatewayInferenceScrollSchema, type GatewayInferenceStaticChunkingStrategy, type GatewayInferenceStaticChunkingStrategyResponseParam, GatewayInferenceStaticChunkingStrategyResponseParamSchema, GatewayInferenceStaticChunkingStrategySchema, type GatewayInferenceTextResponseFormatConfiguration, GatewayInferenceTextResponseFormatConfigurationSchema, type GatewayInferenceTextResponseFormatJsonSchema, GatewayInferenceTextResponseFormatJsonSchemaSchema, type GatewayInferenceTool, type GatewayInferenceToolChoiceFunction, GatewayInferenceToolChoiceFunctionSchema, type GatewayInferenceToolChoiceOptions, GatewayInferenceToolChoiceOptionsSchema, type GatewayInferenceToolChoiceTypes, GatewayInferenceToolChoiceTypesSchema, GatewayInferenceToolSchema, type GatewayInferenceTranscriptionSegment, GatewayInferenceTranscriptionSegmentSchema, type GatewayInferenceTranscriptionWord, GatewayInferenceTranscriptionWordSchema, type GatewayInferenceType, GatewayInferenceTypeSchema, type GatewayInferenceUrlCitation, GatewayInferenceUrlCitationSchema, type GatewayInferenceVectorStoreExpirationAfter, GatewayInferenceVectorStoreExpirationAfterSchema, type GatewayInferenceVectorStoreFileAttributes, GatewayInferenceVectorStoreFileAttributesSchema, type GatewayInferenceVectorStoreFileBatchObject, GatewayInferenceVectorStoreFileBatchObjectSchema, type GatewayInferenceVectorStoreFileObject, GatewayInferenceVectorStoreFileObjectSchema, type GatewayInferenceVectorStoreObject, GatewayInferenceVectorStoreObjectSchema, type GatewayInferenceWait, GatewayInferenceWaitSchema, type GatewayInferenceWebSearchContextSize, GatewayInferenceWebSearchContextSizeSchema, type GatewayInferenceWebSearchTool, type GatewayInferenceWebSearchToolCall, GatewayInferenceWebSearchToolCallSchema, GatewayInferenceWebSearchToolSchema, type GatewayIntegration, type GatewayIntegrationConfiguration, type GatewayIntegrationCreateRequest, GatewayIntegrationCreateRequestSchema, type GatewayIntegrationModelUpdate, GatewayIntegrationModelUpdateSchema, type GatewayIntegrationModelsBulkUpdateRequest, GatewayIntegrationModelsBulkUpdateRequestSchema, type GatewayIntegrationModelsRequest, type GatewayIntegrationModelsResponse, GatewayIntegrationModelsResponseSchema, GatewayIntegrationSchema, type GatewayIntegrationUpdateRequest, GatewayIntegrationUpdateRequestSchema, type GatewayIntegrationWorkspace, GatewayIntegrationWorkspaceSchema, type GatewayIntegrationWorkspacesBulkUpdateRequest, GatewayIntegrationWorkspacesBulkUpdateRequestSchema, type GatewayIntegrationWorkspacesRequest, type GatewayIntegrationWorkspacesResponse, GatewayIntegrationWorkspacesResponseSchema, type GatewayJSONKeysParameters, GatewayJSONKeysParametersSchema, type GatewayJSONSchemaParameters, GatewayJSONSchemaParametersSchema, type GatewayJWTParameters, GatewayJWTParametersSchema, type GatewayJsonObject, GatewayJsonObjectSchema, type GatewayJsonValue, GatewayJsonValueSchema, type GatewayKnownApiKeyScope, type GatewayKnownCacheMode, type GatewayKnownConfigStrategy, type GatewayKnownMcpAuthType, type GatewayKnownMcpTransport, type GatewayKnownRateLimitType, type GatewayKnownRateLimitUnit, type GatewayLogExportsClientCancelResponse, GatewayLogExportsClientCancelResponseSchema, type GatewayLogExportsClientCreateRequest, GatewayLogExportsClientCreateRequestSchema, type GatewayLogExportsClientCreateResponse, GatewayLogExportsClientCreateResponseSchema, type GatewayLogExportsClientDownloadResponse, GatewayLogExportsClientDownloadResponseSchema, type GatewayLogExportsClientGetResponse, GatewayLogExportsClientGetResponseSchema, type GatewayLogExportsClientListOptions, GatewayLogExportsClientListOptionsSchema, type GatewayLogExportsClientListResponse, GatewayLogExportsClientListResponseSchema, type GatewayLogExportsClientStartResponse, GatewayLogExportsClientStartResponseSchema, type GatewayLogExportsClientUpdateRequest, GatewayLogExportsClientUpdateRequestSchema, type GatewayLogExportsClientUpdateResponse, GatewayLogExportsClientUpdateResponseSchema, type GatewayLogExportsRequestedData, GatewayLogExportsRequestedDataSchema, type GatewayLogRecord, GatewayLogRecordSchema, type GatewayLogsResponse, GatewayLogsResponseSchema, type GatewayMcpAuthType, GatewayMcpAuthTypeSchema, type GatewayMcpIntegrationWorkspaceItem, GatewayMcpIntegrationWorkspaceItemSchema, type GatewayMcpIntegrationWorkspacesLegacyResponse, GatewayMcpIntegrationWorkspacesLegacyResponseSchema, type GatewayMcpIntegrationWorkspacesListResponse, GatewayMcpIntegrationWorkspacesListResponseSchema, type GatewayMcpServer, type GatewayMcpServerCapabilitiesBulkUpdateResponse, GatewayMcpServerCapabilitiesBulkUpdateResponseSchema, type GatewayMcpServerCapabilitiesCounts, GatewayMcpServerCapabilitiesCountsSchema, type GatewayMcpServerCapabilitiesListResponse, GatewayMcpServerCapabilitiesListResponseSchema, type GatewayMcpServerCapabilityItem, GatewayMcpServerCapabilityItemSchema, type GatewayMcpServerConnectionDeleteResponse, GatewayMcpServerConnectionDeleteResponseSchema, type GatewayMcpServerConnectionItem, GatewayMcpServerConnectionItemSchema, type GatewayMcpServerConnectionsListResponse, GatewayMcpServerConnectionsListResponseSchema, type GatewayMcpServerCreateResponse, GatewayMcpServerCreateResponseSchema, type GatewayMcpServerListItem, GatewayMcpServerListItemSchema, type GatewayMcpServerListResponse, GatewayMcpServerListResponseSchema, type GatewayMcpServerMapping, GatewayMcpServerMappingSchema, type GatewayMcpServerMappingsResponse, GatewayMcpServerMappingsResponseSchema, GatewayMcpServerSchema, type GatewayMcpServerTestResponse, GatewayMcpServerTestResponseSchema, type GatewayMcpServerUserAccessBulkUpdateResponse, GatewayMcpServerUserAccessBulkUpdateResponseSchema, type GatewayMcpServerUserAccessItem, GatewayMcpServerUserAccessItemSchema, type GatewayMcpServerUserAccessListResponse, GatewayMcpServerUserAccessListResponseSchema, type GatewayMcpServersClientCreateRequest, GatewayMcpServersClientCreateRequestSchema, type GatewayMcpServersClientCreateResponse, GatewayMcpServersClientCreateResponseSchema, type GatewayMcpServersClientDeleteConnectionsOptions, GatewayMcpServersClientDeleteConnectionsOptionsSchema, type GatewayMcpServersClientDeleteConnectionsResponse, GatewayMcpServersClientDeleteConnectionsResponseSchema, type GatewayMcpServersClientDeleteResponse, GatewayMcpServersClientDeleteResponseSchema, type GatewayMcpServersClientGetCapabilitiesOptions, GatewayMcpServersClientGetCapabilitiesOptionsSchema, type GatewayMcpServersClientGetCapabilitiesResponse, GatewayMcpServersClientGetCapabilitiesResponseSchema, type GatewayMcpServersClientGetConnectionsOptions, GatewayMcpServersClientGetConnectionsOptionsSchema, type GatewayMcpServersClientGetConnectionsResponse, GatewayMcpServersClientGetConnectionsResponseSchema, type GatewayMcpServersClientGetResponse, GatewayMcpServersClientGetResponseSchema, type GatewayMcpServersClientGetUserAccessOptions, GatewayMcpServersClientGetUserAccessOptionsSchema, type GatewayMcpServersClientGetUserAccessResponse, GatewayMcpServersClientGetUserAccessResponseSchema, type GatewayMcpServersClientListOptions, GatewayMcpServersClientListOptionsSchema, type GatewayMcpServersClientListResponse, GatewayMcpServersClientListResponseSchema, type GatewayMcpServersClientTestResponse, GatewayMcpServersClientTestResponseSchema, type GatewayMcpServersClientUpdateCapabilitiesRequest, GatewayMcpServersClientUpdateCapabilitiesRequestSchema, type GatewayMcpServersClientUpdateCapabilitiesResponse, GatewayMcpServersClientUpdateCapabilitiesResponseSchema, type GatewayMcpServersClientUpdateRequest, GatewayMcpServersClientUpdateRequestSchema, type GatewayMcpServersClientUpdateResponse, GatewayMcpServersClientUpdateResponseSchema, type GatewayMcpServersClientUpdateUserAccessRequest, GatewayMcpServersClientUpdateUserAccessRequestSchema, type GatewayMcpServersClientUpdateUserAccessResponse, GatewayMcpServersClientUpdateUserAccessResponseSchema, type GatewayMcpTransport, GatewayMcpTransportSchema, type GatewayMistralModerationParameters, GatewayMistralModerationParametersSchema, type GatewayModelCalculateConfig, GatewayModelCalculateConfigSchema, type GatewayModelFinetuneConfig, GatewayModelFinetuneConfigSchema, type GatewayModelImagePricing, GatewayModelImagePricingSchema, type GatewayModelPayAsYouGo, GatewayModelPayAsYouGoSchema, type GatewayModelPricingCalculation, GatewayModelPricingCalculationSchema, type GatewayModelPricingConfig, GatewayModelPricingConfigSchema, type GatewayModelPricingRequestOptions, type GatewayModelTokenPrice, GatewayModelTokenPriceSchema, type GatewayModelWhitelistParameters, GatewayModelWhitelistParametersSchema, type GatewayMutableMcpCapabilityType, GatewayMutableMcpCapabilityTypeSchema, type GatewayOpenAIConfiguration, GatewayOpenAIConfigurationSchema, type GatewayOpenValue, type GatewayOrganisationAuthSettingsUpdateRequest, GatewayOrganisationAuthSettingsUpdateRequestSchema, type GatewayOrganisationUpdateRequest, GatewayOrganisationUpdateRequestSchema, type GatewayPANWPrismaParameters, GatewayPANWPrismaParametersSchema, type GatewayPatronusCustomParameters, GatewayPatronusCustomParametersSchema, type GatewayPatronusParameters, GatewayPatronusParametersSchema, type GatewayPayAsYouGoPricing, GatewayPayAsYouGoPricingSchema, type GatewayPillarScanParameters, GatewayPillarScanParametersSchema, type GatewayPlugin, type GatewayPluginCreateRequest, GatewayPluginCreateRequestSchema, GatewayPluginSchema, type GatewayPortkeyLanguageParameters, GatewayPortkeyLanguageParametersSchema, type GatewayPortkeyModerationParameters, GatewayPortkeyModerationParametersSchema, type GatewayPortkeyPIIParameters, GatewayPortkeyPIIParametersSchema, type GatewayPricingAdjustments, type GatewayPricingAdjustmentsRequest, GatewayPricingAdjustmentsRequestSchema, GatewayPricingAdjustmentsSchema, type GatewayPricingConfig, type GatewayPricingConfigRequest, GatewayPricingConfigRequestSchema, GatewayPricingConfigSchema, type GatewayPricingMultiplier, GatewayPricingMultiplierSchema, type GatewayPromptfooParameters, GatewayPromptfooParametersSchema, type GatewayProvider, type GatewayProviderCreateRequest, GatewayProviderCreateRequestSchema, type GatewayProviderCreateResponse, GatewayProviderCreateResponseSchema, type GatewayProviderDetail, GatewayProviderDetailSchema, GatewayProviderSchema, type GatewayProviderUpdateRequest, GatewayProviderUpdateRequestSchema, type GatewayRateLimit, type GatewayRateLimitInput, GatewayRateLimitInputSchema, GatewayRateLimitSchema, type GatewayRateLimitType, GatewayRateLimitTypeSchema, type GatewayRateLimitUnit, GatewayRateLimitUnitSchema, type GatewayRateLimitsClientCreateRequest, GatewayRateLimitsClientCreateRequestSchema, type GatewayRateLimitsClientCreateResponse, GatewayRateLimitsClientCreateResponseSchema, type GatewayRateLimitsClientDeleteResponse, GatewayRateLimitsClientDeleteResponseSchema, type GatewayRateLimitsClientGetOptions, GatewayRateLimitsClientGetOptionsSchema, type GatewayRateLimitsClientGetResponse, GatewayRateLimitsClientGetResponseSchema, type GatewayRateLimitsClientListOptions, GatewayRateLimitsClientListOptionsSchema, type GatewayRateLimitsClientListResponse, GatewayRateLimitsClientListResponseSchema, type GatewayRateLimitsClientUpdateRequest, GatewayRateLimitsClientUpdateRequestSchema, type GatewayRateLimitsClientUpdateResponse, GatewayRateLimitsClientUpdateResponseSchema, type GatewayRateLimitsPolicy, type GatewayRateLimitsPolicyListResponse, GatewayRateLimitsPolicyListResponseSchema, type GatewayRateLimitsPolicyResponse, GatewayRateLimitsPolicyResponseSchema, GatewayRateLimitsPolicySchema, type GatewayRealtimeConnectRequest, GatewayRealtimeConnectRequestSchema, type GatewayRealtimeConnection, type GatewayRealtimeEvent, GatewayRealtimeEventSchema, type GatewayRealtimeOptions, type GatewayRegexMatchParameters, GatewayRegexMatchParametersSchema, type GatewayRequestAwsAccessKeyAuthConfig, GatewayRequestAwsAccessKeyAuthConfigSchema, type GatewayRequestAwsAssumedRoleAuthConfig, GatewayRequestAwsAssumedRoleAuthConfigSchema, type GatewayRequestAwsServiceRoleAuthConfig, GatewayRequestAwsServiceRoleAuthConfigSchema, type GatewayRequestAzureDefaultAuthConfig, GatewayRequestAzureDefaultAuthConfigSchema, type GatewayRequestAzureEntraAuthConfig, GatewayRequestAzureEntraAuthConfigSchema, type GatewayRequestAzureManagedAuthConfig, GatewayRequestAzureManagedAuthConfigSchema, type GatewayRequestBulkUpdateMcpServerCapabilities, GatewayRequestBulkUpdateMcpServerCapabilitiesSchema, type GatewayRequestBulkUpdateMcpServerUserAccess, GatewayRequestBulkUpdateMcpServerUserAccessSchema, type GatewayRequestCondition, GatewayRequestConditionSchema, type GatewayRequestCreateMcpServer, GatewayRequestCreateMcpServerSchema, type GatewayRequestGroupBy, GatewayRequestGroupBySchema, type GatewayRequestHashicorpAppRoleAuthConfig, GatewayRequestHashicorpAppRoleAuthConfigSchema, type GatewayRequestHashicorpKubernetesAuthConfig, GatewayRequestHashicorpKubernetesAuthConfigSchema, type GatewayRequestHashicorpTokenAuthConfig, GatewayRequestHashicorpTokenAuthConfigSchema, type GatewayRequestLogExportsRequestedData, GatewayRequestLogExportsRequestedDataSchema, type GatewayRequestPayAsYouGoPricing, GatewayRequestPayAsYouGoPricingSchema, type GatewayRequestPricingMultiplier, GatewayRequestPricingMultiplierSchema, type GatewayRequestTokenPricing, GatewayRequestTokenPricingSchema, type GatewayRequestUpdateMcpServer, GatewayRequestUpdateMcpServerSchema, type GatewayRequiredMetadataKeysParameters, GatewayRequiredMetadataKeysParametersSchema, type GatewayRoutingCache, GatewayRoutingCacheSchema, type GatewayRoutingConfig, GatewayRoutingConfigSchema, type GatewayRoutingRetry, GatewayRoutingRetrySchema, type GatewayRoutingStrategy, GatewayRoutingStrategySchema, type GatewayRoutingTarget, GatewayRoutingTargetSchema, type GatewaySageMakerConfiguration, GatewaySageMakerConfigurationSchema, type GatewaySecretDirection, type GatewaySecretFieldRule, type GatewaySecretMapping, GatewaySecretMappingSchema, type GatewaySecretOperationMetadata, type GatewaySecretPathSegment, type GatewaySecretReferenceDetailResponse, GatewaySecretReferenceDetailResponseSchema, type GatewaySecretReferenceListItem, GatewaySecretReferenceListItemSchema, type GatewaySecretReferencesClientCreateRequest, GatewaySecretReferencesClientCreateRequestSchema, type GatewaySecretReferencesClientCreateResponse, GatewaySecretReferencesClientCreateResponseSchema, type GatewaySecretReferencesClientDeleteResponse, GatewaySecretReferencesClientDeleteResponseSchema, type GatewaySecretReferencesClientGetResponse, GatewaySecretReferencesClientGetResponseSchema, type GatewaySecretReferencesClientListOptions, GatewaySecretReferencesClientListOptionsSchema, type GatewaySecretReferencesClientListResponse, GatewaySecretReferencesClientListResponseSchema, type GatewaySecretReferencesClientUpdateRequest, GatewaySecretReferencesClientUpdateRequestSchema, type GatewaySecretReferencesClientUpdateResponse, GatewaySecretReferencesClientUpdateResponseSchema, type GatewaySentenceCountParameters, GatewaySentenceCountParametersSchema, type GatewayServiceApiKeyCreateRequest, GatewayServiceApiKeyCreateRequestSchema, type GatewayStream, type GatewaySydeGuardParameters, GatewaySydeGuardParametersSchema, type GatewayTokenPricing, GatewayTokenPricingSchema, type GatewayUpdateExportResponse, GatewayUpdateExportResponseSchema, type GatewayUpdateRateLimitsPolicyRequest, GatewayUpdateRateLimitsPolicyRequestSchema, type GatewayUpdateSecretReferenceRequest, GatewayUpdateSecretReferenceRequestSchema, type GatewayUpdateUsageLimitsPolicyRequest, GatewayUpdateUsageLimitsPolicyRequestSchema, type GatewayUppercaseParameters, GatewayUppercaseParametersSchema, type GatewayUpsertMcpServerMappingRequest, GatewayUpsertMcpServerMappingRequestSchema, type GatewayUpsertMcpServerMappingResponse, GatewayUpsertMcpServerMappingResponseSchema, type GatewayUsageLimit, type GatewayUsageLimitInput, GatewayUsageLimitInputSchema, GatewayUsageLimitSchema, type GatewayUsageLimitsClientCreateRequest, GatewayUsageLimitsClientCreateRequestSchema, type GatewayUsageLimitsClientCreateResponse, GatewayUsageLimitsClientCreateResponseSchema, type GatewayUsageLimitsClientDeleteResponse, GatewayUsageLimitsClientDeleteResponseSchema, type GatewayUsageLimitsClientGetOptions, GatewayUsageLimitsClientGetOptionsSchema, type GatewayUsageLimitsClientGetResponse, GatewayUsageLimitsClientGetResponseSchema, type GatewayUsageLimitsClientListEntitiesOptions, GatewayUsageLimitsClientListEntitiesOptionsSchema, type GatewayUsageLimitsClientListEntitiesResponse, GatewayUsageLimitsClientListEntitiesResponseSchema, type GatewayUsageLimitsClientListOptions, GatewayUsageLimitsClientListOptionsSchema, type GatewayUsageLimitsClientListResponse, GatewayUsageLimitsClientListResponseSchema, type GatewayUsageLimitsClientResetEntityResponse, GatewayUsageLimitsClientResetEntityResponseSchema, type GatewayUsageLimitsClientUpdateRequest, GatewayUsageLimitsClientUpdateRequestSchema, type GatewayUsageLimitsClientUpdateResponse, GatewayUsageLimitsClientUpdateResponseSchema, type GatewayUsageLimitsPolicy, type GatewayUsageLimitsPolicyEntity, type GatewayUsageLimitsPolicyEntityListResponse, GatewayUsageLimitsPolicyEntityListResponseSchema, GatewayUsageLimitsPolicyEntitySchema, type GatewayUsageLimitsPolicyListResponse, GatewayUsageLimitsPolicyListResponseSchema, type GatewayUsageLimitsPolicyResponse, GatewayUsageLimitsPolicyResponseSchema, GatewayUsageLimitsPolicySchema, type GatewayUserApiKeyCreateRequest, GatewayUserApiKeyCreateRequestSchema, type GatewayValidUrlsParameters, GatewayValidUrlsParametersSchema, type GatewayValueKeyUsage, GatewayValueKeyUsageSchema, type GatewayVertexAIConfiguration, GatewayVertexAIConfigurationSchema, type GatewayWebSocket, type GatewayWebSocketFactory, type GatewayWebhookParameters, GatewayWebhookParametersSchema, type GatewayWordCountParameters, GatewayWordCountParametersSchema, type GatewayWorkersAIConfiguration, GatewayWorkersAIConfigurationSchema, type GatewayWorkspace, type GatewayWorkspaceBinding, GatewayWorkspaceBindingSchema, type GatewayWorkspaceCreateRequest, GatewayWorkspaceCreateRequestSchema, type GatewayWorkspaceCreateResponse, GatewayWorkspaceCreateResponseSchema, type GatewayWorkspaceDetail, GatewayWorkspaceDetailSchema, GatewayWorkspaceSchema, type GatewayWorkspaceUpdateRequest, GatewayWorkspaceUpdateRequestSchema, type GatewayWriteResponse, GatewayWriteResponseSchema, type GetTokenOptions, type Goal, type GoalCategoryListResponse, GoalCategoryListResponseSchema, type GoalCategoryOption, GoalCategoryOptionSchema, type GoalListOptions, type GoalListResponse, GoalListResponseSchema, GoalSchema, GoalType, GoalTypeQueryParam, type GroupListResponse, GroupListResponseSchema, GuardrailAction, HEADER_API_KEY, HEADER_AUTH_TOKEN, type HTTPValidationError, HTTPValidationErrorSchema, HTTP_FORCE_RETRY_STATUS_CODES, type HeadersAuthConfig, HeadersAuthConfigSchema, type HuggingfaceConnectionParams, HuggingfaceConnectionParamsSchema, type IODetected, IODetectedSchema, type InitOptions, type InstanceExtraDetails, InstanceExtraDetailsSchema, type InstanceGetResponse, InstanceGetResponseSchema, type InstanceRequest, InstanceRequestSchema, type InstanceResponse, InstanceResponseSchema, type JobAbortResponse, JobAbortResponseSchema, type JobCreateRequest, JobCreateRequestSchema, type JobListResponse, JobListResponseSchema, type JobResponse, JobResponseSchema, JobStatus, JobStatusFilter, type JobTimeRecord, JobTimeRecordSchema, JobType, type JsonNullable, type Label, type LabelCondition, LabelConditionSchema, type LabelKeyList, LabelKeyListSchema, LabelSchema, type LabelValueList, LabelValueListSchema, type LabelsCreateRequest, LabelsCreateRequestSchema, type LabelsResponse, LabelsResponseSchema, type LanguageOption, LanguageOptionSchema, type LatencyChartResponse, LatencyChartResponseSchema, type ListApiKeysResponse, ListApiKeysResponseSchema, type ListConfigVersionsResponse, ListConfigVersionsResponseSchema, type ListConfigsResponse, ListConfigsResponseSchema, type ListCustomRuleSecurityGroupsResponse, ListCustomRuleSecurityGroupsResponseSchema, type ListCustomRulesResponse, ListCustomRulesResponseSchema, type ListDeploymentsResponse, ListDeploymentsResponseSchema, type ListGuardrailsResponse, ListGuardrailsResponseSchema, type ListIntegrationsResponse, ListIntegrationsResponseSchema, type ListMcpIntegrationsResponse, ListMcpIntegrationsResponseSchema, type ListModelSecurityGroupsResponse, ListModelSecurityGroupsResponseSchema, type ListModelSecurityRuleInstancesResponse, ListModelSecurityRuleInstancesResponseSchema, type ListModelSecurityRulesResponse, ListModelSecurityRulesResponseSchema, type ListPluginsResponse, ListPluginsResponseSchema, type ListProvidersResponse, ListProvidersResponseSchema, type ListWorkspacesResponse, ListWorkspacesResponseSchema, type ListingOptions, MAX_AI_PROFILE_NAME_LENGTH, MAX_API_KEY_LENGTH, MAX_CONNECTION_POOL_SIZE, MAX_CONTENT_CONTEXT_LENGTH, MAX_CONTENT_PROMPT_LENGTH, MAX_CONTENT_RESPONSE_LENGTH, MAX_NUMBER_OF_BATCH_SCAN_OBJECTS, MAX_NUMBER_OF_REPORT_IDS, MAX_NUMBER_OF_RETRIES, MAX_NUMBER_OF_SCAN_IDS, MAX_REPORT_ID_STR_LENGTH, MAX_SCAN_ID_STR_LENGTH, MAX_SESSION_ID_STR_LENGTH, MAX_TOKEN_LENGTH, MAX_TRANSACTION_ID_STR_LENGTH, MGMT_API_KEYS_TSG_PATH, MGMT_API_KEY_PATH, MGMT_CLIENT_ID, MGMT_CLIENT_SECRET, MGMT_CUSTOMER_APPS_TSG_PATH, MGMT_CUSTOMER_APP_PATH, MGMT_DASHBOARD_APPLICATIONS_OVERVIEW_PATH, MGMT_DASHBOARD_APPLICATION_PATH, MGMT_DASHBOARD_APPLICATION_VIOLATION_BREAKDOWN_PATH, MGMT_DEPLOYMENT_PROFILES_PATH, MGMT_DLP_PROFILES_PATH, MGMT_ENDPOINT, MGMT_OAUTH_INVALIDATE_PATH, MGMT_OAUTH_TOKEN_PATH, MGMT_PROFILES_TSG_PATH, MGMT_PROFILE_PATH, MGMT_SCAN_LOGS_PATH, MGMT_TOKEN_ENDPOINT, MGMT_TOPICS_TSG_PATH, MGMT_TOPIC_FORCE_PATH, MGMT_TOPIC_PATH, MGMT_TSG_ID, MODEL_SEC_CLIENT_ID, MODEL_SEC_CLIENT_SECRET, MODEL_SEC_DATA_ENDPOINT, MODEL_SEC_EVALUATIONS_PATH, MODEL_SEC_MGMT_ENDPOINT, MODEL_SEC_MODELS_PATH, MODEL_SEC_MODEL_VERSIONS_PATH, MODEL_SEC_PYPI_AUTH_PATH, MODEL_SEC_SCANS_PATH, MODEL_SEC_SECURITY_GROUPS_PATH, MODEL_SEC_SECURITY_RULES_PATH, MODEL_SEC_TOKEN_ENDPOINT, MODEL_SEC_TSG_ID, MODEL_SEC_VIOLATIONS_PATH, type MSCopilotStudioAuthUrlRequest, MSCopilotStudioAuthUrlRequestSchema, type MSCopilotStudioAuthUrlResponse, MSCopilotStudioAuthUrlResponseSchema, type MSCopilotStudioTokenRequest, MSCopilotStudioTokenRequestSchema, type MSCopilotStudioTokenResponse, MSCopilotStudioTokenResponseSchema, type MaliciousCodeProtection, MaliciousCodeProtectionSchema, type MalwareReport, MalwareReportSchema, ManagementClient, type ManagementClientOptions, type MaskedData, MaskedDataSchema, type McEntry, McEntrySchema, type McReport, McReportSchema, type McpIntegration, type McpIntegrationCapabilitiesBulkUpdateRequest, McpIntegrationCapabilitiesBulkUpdateRequestSchema, type McpIntegrationCapabilitiesResponse, McpIntegrationCapabilitiesResponseSchema, type McpIntegrationCapabilitiesUpdateRequest, type McpIntegrationCapabilitiesUpdateResponse, McpIntegrationCapabilitiesUpdateResponseSchema, type McpIntegrationCapability, McpIntegrationCapabilitySchema, type McpIntegrationCapabilityUpdate, McpIntegrationCapabilityUpdateSchema, type McpIntegrationCreateRequest, McpIntegrationCreateRequestSchema, type McpIntegrationDetail, McpIntegrationDetailSchema, type McpIntegrationMetadata, McpIntegrationMetadataSchema, McpIntegrationSchema, type McpIntegrationUpdateRequest, McpIntegrationUpdateRequestSchema, type McpIntegrationWorkspacesBulkUpdateRequest, McpIntegrationWorkspacesBulkUpdateRequestSchema, type McpIntegrationWorkspacesRequest, type McpIntegrationWorkspacesUpdateResponse, McpIntegrationWorkspacesUpdateResponseSchema, type Metadata, type MetadataCriterion, MetadataCriterionSchema, MetadataSchema, type Model, type ModelConfiguration, ModelConfigurationSchema, type ModelList, ModelListSchema, type ModelProtectionItem, ModelProtectionItemSchema, ModelResponseSchema, type ModelScanIssue, ModelScanIssueSchema, ModelScanStatus, ModelSecurityClient, type ModelSecurityClientOptions, ModelSecurityCustomRulesClient, type ModelSecurityCustomRulesClientOptions, type ModelSecurityEvaluationListOptions, type ModelSecurityFileListOptions, type ModelSecurityGroupCreateRequest, ModelSecurityGroupCreateRequestSchema, type ModelSecurityGroupListAllOptions, type ModelSecurityGroupListOptions, type ModelSecurityGroupResponse, ModelSecurityGroupResponseSchema, ModelSecurityGroupState, type ModelSecurityGroupUpdateRequest, ModelSecurityGroupUpdateRequestSchema, ModelSecurityGroupsClient, type ModelSecurityGroupsClientOptions, type ModelSecurityLabelListOptions, type ModelSecurityModelListAllOptions, type ModelSecurityModelListOptions, type ModelSecurityModelVersionFileListAllOptions, type ModelSecurityModelVersionFileListOptions, type ModelSecurityModelVersionListAllOptions, type ModelSecurityModelVersionListOptions, ModelSecurityModelsClient, type ModelSecurityModelsClientOptions, type ModelSecurityPagination, ModelSecurityPaginationSchema, type ModelSecurityRuleInstanceListOptions, type ModelSecurityRuleInstanceResponse, ModelSecurityRuleInstanceResponseSchema, type ModelSecurityRuleInstanceUpdateRequest, ModelSecurityRuleInstanceUpdateRequestSchema, type ModelSecurityRuleListAllOptions, type ModelSecurityRuleListOptions, type ModelSecurityRuleResponse, ModelSecurityRuleResponseSchema, ModelSecurityRulesClient, type ModelSecurityRulesClientOptions, type ModelSecurityScanListAllOptions, type ModelSecurityScanListOptions, ModelSecurityScansClient, type ModelSecurityScansClientOptions, type ModelSecurityViolationListOptions, type ModelVersion, type ModelVersionList, ModelVersionListSchema, ModelVersionResponseSchema, type MultiProfileDataNode, MultiProfileDataNodeSchema, type MultiProfileDetectionRule, MultiProfileDetectionRuleSchema, type MultiTurnConfig, MultiTurnConfigSchema, type MultiTurnStatefulConfig, MultiTurnStatefulConfigSchema, type MultiTurnStatelessConfig, MultiTurnStatelessConfigSchema, type OAuth2AuthConfig, OAuth2AuthConfigSchema, OAuthClient, type OAuthClientOptions, OAuthManagementClient, type OAuthManagementClientOptions, type Oauth2Token, Oauth2TokenSchema, type Offset, OffsetSchema, type OpenAIConnectionParams, OpenAIConnectionParamsSchema, type OrganisationSelfResponse, OrganisationSelfResponseSchema, PAYLOAD_HASH, type Page, type PageDataFilteringProfileResponse, PageDataFilteringProfileResponseSchema, type PageDataPatternResponse, PageDataPatternResponseSchema, type PageDataProfileResponse, PageDataProfileResponseSchema, type PageDictionaryResponse, PageDictionaryResponseSchema, type PageableObject, PageableObjectSchema, type PaginatedScanResults, PaginatedScanResultsSchema, type PaginationOptions, type PaginationPage, type PatternDetection, PatternDetectionSchema, type Policy, type PolicyAppProtection, PolicyAppProtectionSchema, type PolicyLatency, PolicyLatencySchema, PolicySchema, PolicyType, type PrerequisiteModel, PrerequisiteModelSchema, type ProfileListAllOptions, ProfilesClient, type ProfilesClientOptions, ProfilingStatus, type PromptDetailResponse, PromptDetailResponseSchema, type PromptDetected, PromptDetectedSchema, type PromptDetectionDetails, PromptDetectionDetailsSchema, type PromptListAllOptions, type PromptListOptions, type PromptSetListAllOptions, type PromptSetListOptions, type PromptSetStats, PromptSetStatsSchema, type PromptSetSummary, PromptSetSummarySchema, type PromptSetsReportOptions, type PromptSetsReportResponse, PromptSetsReportResponseSchema, type PromptsBySetListOptions, type PropertyAssignment, PropertyAssignmentSchema, type PropertyDefinition, PropertyDefinitionSchema, type PropertyNameCreateRequest, PropertyNameCreateRequestSchema, type PropertyNameCreateResponse, PropertyNameCreateResponseSchema, type PropertyNamesListResponse, PropertyNamesListResponseSchema, type PropertyStatistic, type PropertyStatisticResult, PropertyStatisticResultSchema, PropertyStatisticSchema, type PropertyValueCreateRequest, PropertyValueCreateRequestSchema, type PropertyValueStatistic, PropertyValueStatisticSchema, type PropertyValuesMultipleResponse, PropertyValuesMultipleResponseSchema, type PropertyValuesResponse, PropertyValuesResponseSchema, type PyPIAuthResponse, PyPIAuthResponseSchema, type QuotaDetails, QuotaDetailsSchema, type QuotaSummary, QuotaSummarySchema, RED_TEAM_ADAPTER_PATH, RED_TEAM_ADAPTER_VALIDATE_PATH, RED_TEAM_CATEGORIES_PATH, RED_TEAM_CHANNELS_PATH, RED_TEAM_CHANNELS_STATS_PATH, RED_TEAM_CLIENT_ID, RED_TEAM_CLIENT_SECRET, RED_TEAM_CUSTOM_ATTACKS_REPORT_PATH, RED_TEAM_CUSTOM_ATTACK_PATH, RED_TEAM_DASHBOARD_PATH, RED_TEAM_DATA_ENDPOINT, RED_TEAM_ERROR_LOG_PATH, RED_TEAM_ERROR_LOG_TARGET_PROFILE_PATH, RED_TEAM_EULA_PATH, RED_TEAM_INSTANCES_PATH, RED_TEAM_LANGUAGES_PATH, RED_TEAM_MGMT_DASHBOARD_PATH, RED_TEAM_MGMT_ENDPOINT, RED_TEAM_NETWORK_BROKER_ENDPOINT, RED_TEAM_QUOTA_PATH, RED_TEAM_REGISTRY_CREDENTIALS_PATH, RED_TEAM_REPORT_DYNAMIC_PATH, RED_TEAM_REPORT_PATH, RED_TEAM_REPORT_STATIC_PATH, RED_TEAM_SCAN_PATH, RED_TEAM_SENTIMENT_PATH, RED_TEAM_TARGET_PATH, RED_TEAM_TARGET_VALIDATE_AUTH_PATH, RED_TEAM_TEMPLATE_PATH, RED_TEAM_TOKEN_ENDPOINT, RED_TEAM_TSG_ID, RedTeamAdaptersClient, type RedTeamAdaptersClientOptions, RedTeamCategory, RedTeamClient, type RedTeamClientOptions, RedTeamCustomAttackReportsClient, type RedTeamCustomAttackReportsClientOptions, RedTeamCustomAttacksClient, type RedTeamCustomAttacksClientOptions, RedTeamErrorType, RedTeamEulaClient, type RedTeamEulaClientOptions, RedTeamInstancesClient, type RedTeamInstancesClientOptions, type RedTeamListOptions, RedTeamNetworkBrokerClient, type RedTeamNetworkBrokerClientOptions, type RedTeamPagination, RedTeamPaginationSchema, RedTeamReportsClient, type RedTeamReportsClientOptions, type RedTeamScanListAllOptions, type RedTeamScanListOptions, RedTeamScansClient, type RedTeamScansClientOptions, RedTeamTargetsClient, type RedTeamTargetsClientOptions, type RegistryCredentials, RegistryCredentialsSchema, type RemediationDetail, RemediationDetailSchema, type RemediationResponse, RemediationResponseSchema, type RescuedRetriesResponse, RescuedRetriesResponseSchema, type ResourceModelExtension, ResourceModelExtensionSchema, type ResponseDetected, ResponseDetectedSchema, type ResponseDetectionDetails, ResponseDetectionDetailsSchema, ResponseMode, type RestConnectionParams, RestConnectionParamsSchema, type RiskLevel, RiskLevelSchema, RiskRating, type RuleConfiguration, RuleConfigurationSchema, type RuleEditableField, type RuleEditableFieldDropdown, RuleEditableFieldDropdownSchema, RuleEditableFieldSchema, RuleEditableFieldType, type RuleEvaluationList, RuleEvaluationListSchema, type RuleEvaluationResponse, RuleEvaluationResponseSchema, RuleEvaluationResult, RuleFieldValueKey, type RuleItemConfidenceLevel, RuleItemConfidenceLevelSchema, type RuleItemDetectionTechnique, RuleItemDetectionTechniqueSchema, type RuleItemEdmMatchCriteria, RuleItemEdmMatchCriteriaSchema, type RuleItemMatchType, RuleItemMatchTypeSchema, type RuleItemOccurrenceOperatorType, RuleItemOccurrenceOperatorTypeSchema, RuleOrigin, type RuleRemediation, RuleRemediationSchema, type RuleResultCondition, RuleResultConditionSchema, RuleState, RuleType, type RuntimeSecurityPolicy, type RuntimeSecurityPolicyConfig, RuntimeSecurityPolicyConfigSchema, RuntimeSecurityPolicySchema, type RuntimeSecurityProfileResponse, RuntimeSecurityProfileResponseSchema, SCAN_REPORTS_PATH, SCAN_RESULTS_PATH, SDK_VERSION, SYNC_SCAN_PATH, SafetySubCategory, type ScanBaseResponse, ScanBaseResponseSchema, type ScanCallOptions, type ScanCreateRequest, ScanCreateRequestSchema, type ScanDetails, ScanDetailsSchema, type ScanIdResult, ScanIdResultSchema, type ScanList, ScanListSchema, type ScanLogQueryOptions, ScanLogsClient, type ScanLogsClientOptions, ScanOrigin, type ScanRequest, type ScanRequestContentsInner, ScanRequestContentsInnerSchema, ScanRequestSchema, type ScanResponse, ScanResponseSchema, type ScanResultEntry, ScanResultEntrySchema, type ScanResultForDashboard, ScanResultForDashboardSchema, type ScanStatisticsResponse, ScanStatisticsResponseSchema, type ScanSummary, ScanSummarySchema, Scanner, type ScoreTrendResponse, ScoreTrendResponseSchema, type ScoreTrendSeries, ScoreTrendSeriesSchema, type SecurityProfile, type SecurityProfileListResponse, SecurityProfileListResponseSchema, SecurityProfileSchema, SecuritySubCategory, type SentimentRequest, SentimentRequestSchema, type SentimentResponse, SentimentResponseSchema, SeverityFilter, type SeverityReport, SeverityReportSchema, type SeverityStats, SeverityStatsSchema, type SnapshotVersion, type SnapshotVersionListOptions, type SnapshotVersionListResponse, SnapshotVersionListResponseSchema, SnapshotVersionSchema, SortByDateField, SortByFileField, SortDirection, type SortObject, SortObjectSchema, type SourceAttributes, SourceAttributesSchema, SourceType, type StartProfilingResponse, StartProfilingResponseSchema, type StaticJobMetadata, StaticJobMetadataSchema, type StaticJobRemediation, type StaticJobRemediationRecommendation, StaticJobRemediationRecommendationSchema, StaticJobRemediationSchema, type StaticJobReport, StaticJobReportSchema, type StaticJobReportStats, StaticJobReportStatsSchema, StatusQueryParam, type StreamDetailResponse, StreamDetailResponseSchema, type StreamGoal, StreamGoalSchema, type StreamIterationData, StreamIterationDataSchema, type StreamListResponse, StreamListResponseSchema, StreamType, type StreamingConnectionParams, StreamingConnectionParamsSchema, type SubCategoryModel, SubCategoryModelSchema, type SubCategoryStats, SubCategoryStatsSchema, type SyncScanOptions, TSG_ID_HEADER, type TargetAdditionalContext, TargetAdditionalContextSchema, TargetAuthType, type TargetAuthValidationRequest, TargetAuthValidationRequestSchema, type TargetAuthValidationResponse, TargetAuthValidationResponseSchema, type TargetBackground, TargetBackgroundSchema, type TargetConnectionConfig, TargetConnectionConfigSchema, TargetConnectionType, type TargetContextUpdate, TargetContextUpdateSchema, type TargetCreateRequest, TargetCreateRequestSchema, type TargetJobRequest, TargetJobRequestSchema, type TargetList, type TargetListAllOptions, type TargetListItem, TargetListItemSchema, type TargetListOptions, TargetListSchema, type TargetMetadata, TargetMetadataSchema, type TargetOperationOptions, type TargetProbeRequest, TargetProbeRequestSchema, type TargetProfileResponse, TargetProfileResponseSchema, type TargetReference, TargetReferenceSchema, type TargetResponse, TargetResponseSchema, TargetStatus, type TargetTemplateCollection, TargetTemplateCollectionSchema, TargetType, type TargetUpdateRequest, TargetUpdateRequestSchema, type TcReport, TcReportSchema, type TenantLanguagesResponse, TenantLanguagesResponseSchema, type TgReport, TgReportSchema, ThreatCategory, type ThreatScanReport, ThreatScanReportSchema, type TokenInfo, type TokenStats, TokenStatsSchema, type TokensChartResponse, TokensChartResponseSchema, type ToolDetected, ToolDetectedSchema, type ToolDetectionDetails, ToolDetectionDetailsSchema, type ToolDetectionEntry, ToolDetectionEntrySchema, type ToolDetectionFlags, ToolDetectionFlagsSchema, type ToolEvent, type ToolEventMetadata, ToolEventMetadataSchema, ToolEventSchema, type TopicArray, TopicArraySchema, type TopicGuardrailDetails, TopicGuardrailDetailsSchema, type TopicListAllOptions, type TopicListOptions, type TopicObject, TopicObjectSchema, TopicsClient, type TopicsClientOptions, type URLExclusion, URLExclusionSchema, USER_AGENT, type UpdateChannelRequest, UpdateChannelRequestSchema, type UrlCategory, UrlCategorySchema, type UrlfEntry, UrlfEntrySchema, type UserGroupResponse, UserGroupResponseSchema, type UserTrendsResponse, UserTrendsResponseSchema, type ValidationError, ValidationErrorSchema, Verdict, Verdict as VerdictType, type ViolationList, ViolationListSchema, type ViolationRemediation, ViolationRemediationSchema, type ViolationResponse, ViolationResponseSchema, type ViolationSeverityCounts, ViolationSeverityCountsSchema, type WalkAllOptions, type WebSocketConnectionParams, WebSocketConnectionParamsSchema, type WeightedRegex, WeightedRegexSchema, aiGwOrganisationsAuthSettingsPath, buildDottedObject, collectAll, collectSkipPages, collectSpringPages, globalConfiguration, init, jsonNullable, pageSchema, paginate, redactAIGatewaySecrets, serializeListing, setDottedValue };
|