@cdot65/prisma-airs-sdk 0.21.0 → 0.22.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/dist/index.d.ts CHANGED
@@ -38101,6 +38101,28 @@ declare const GatewayModelPricingConfigSchema: z.ZodObject<{
38101
38101
  }, z.ZodTypeAny, "passthrough">>;
38102
38102
  type GatewayModelPricingConfig = z.infer<typeof GatewayModelPricingConfigSchema>;
38103
38103
 
38104
+ /** Realtime query strings; the upstream contract explicitly permits additional query parameters.
38105
+ * @example `const query: GatewayRealtimeConnectRequest = { model: '@provider/model' };`
38106
+ */
38107
+ declare const GatewayRealtimeConnectRequestSchema: z.ZodPipeline<z.ZodType<GatewayJsonObject, z.ZodTypeDef, GatewayJsonObject>, z.ZodObject<{
38108
+ model: z.ZodOptional<z.ZodString>;
38109
+ }, "strip", z.ZodString, z.objectOutputType<{
38110
+ model: z.ZodOptional<z.ZodString>;
38111
+ }, z.ZodString, "strip">, z.objectInputType<{
38112
+ model: z.ZodOptional<z.ZodString>;
38113
+ }, z.ZodString, "strip">>>;
38114
+ type GatewayRealtimeConnectRequest = z.infer<typeof GatewayRealtimeConnectRequestSchema>;
38115
+ /** Provider event envelope. Event-specific payloads are finite JSON, not a promise of provider support.
38116
+ * @example `const event: GatewayRealtimeEvent = { type: 'session.update', session: { instructions: 'Hello' } };`
38117
+ */
38118
+ interface GatewayRealtimeEvent extends GatewayJsonObject {
38119
+ type: string;
38120
+ }
38121
+ /** Validate the common text-event envelope without closing the provider's evolving event catalog.
38122
+ * @example `GatewayRealtimeEventSchema.parse({ type: 'session.created', session: {} });`
38123
+ */
38124
+ declare const GatewayRealtimeEventSchema: z.ZodEffects<z.ZodEffects<z.ZodType<GatewayJsonObject, z.ZodTypeDef, GatewayJsonObject>, GatewayJsonObject, GatewayJsonObject>, GatewayRealtimeEvent, GatewayJsonObject>;
38125
+
38104
38126
  /** Zod schema for prompt detection detail data. */
38105
38127
  declare const PromptDetectionDetailsSchema: z.ZodObject<{
38106
38128
  toxic_content_details: z.ZodOptional<z.ZodObject<{
@@ -154326,8 +154348,8 @@ declare const MAX_NUMBER_OF_BATCH_SCAN_OBJECTS = 20;
154326
154348
  declare const MAX_CONNECTION_POOL_SIZE = 100;
154327
154349
  declare const MAX_NUMBER_OF_RETRIES = 5;
154328
154350
  declare const HTTP_FORCE_RETRY_STATUS_CODES: number[];
154329
- declare const SDK_VERSION = "0.21.0";
154330
- declare const USER_AGENT = "PAN-AIRS/0.21.0-typescript-sdk";
154351
+ declare const SDK_VERSION = "0.22.0";
154352
+ declare const USER_AGENT = "PAN-AIRS/0.22.0-typescript-sdk";
154331
154353
  declare const DEFAULT_MGMT_ENDPOINT = "https://api.sase.paloaltonetworks.com/aisec";
154332
154354
  declare const DEFAULT_TOKEN_ENDPOINT = "https://auth.apps.paloaltonetworks.com/oauth2/access_token";
154333
154355
  declare const MGMT_CLIENT_ID = "PANW_MGMT_CLIENT_ID";
@@ -160467,7 +160489,8 @@ declare class AIGatewayMcpServersClient {
160467
160489
  */
160468
160490
  getCapabilities(mcpServerId: string, opts?: GatewayMcpServersClientGetCapabilitiesOptions): Promise<GatewayMcpServersClientGetCapabilitiesResponse>;
160469
160491
  /** Bulk Update MCP Server Capabilities.
160470
- * @experimental No discovered tool was available on the owned server; contract-tested only.
160492
+ * @experimental Owned tool-capability updates and eventual runtime visibility were verified
160493
+ * on 2026-09-07. Prompt/resource variants and authenticated upstreams remain unverified.
160471
160494
  * @example `await gw.mcpServers.updateCapabilities('resource-id', body);`
160472
160495
  */
160473
160496
  updateCapabilities(mcpServerId: string, body: GatewayMcpServersClientUpdateCapabilitiesRequest): Promise<GatewayMcpServersClientUpdateCapabilitiesResponse>;
@@ -160530,7 +160553,8 @@ declare class AIGatewayUsageLimitsClient {
160530
160553
  */
160531
160554
  listEntities(policyUsageLimitsId: string, opts?: GatewayUsageLimitsClientListEntitiesOptions): Promise<GatewayUsageLimitsClientListEntitiesResponse>;
160532
160555
  /** Reset Usage Limits Policy Entity.
160533
- * @experimental No traffic-derived entity existed on the isolated policy; existing counters were not reset.
160556
+ * @experimental Owned traffic-derived counters were reset and independently audited
160557
+ * on 2026-09-07. Experimental stability is retained; existing counters are never test fixtures.
160534
160558
  * @example `await gw.usageLimits.resetEntity('resource-id', 'resource-id');`
160535
160559
  */
160536
160560
  resetEntity(policyUsageLimitsId: string, entityId: string): Promise<GatewayUsageLimitsClientResetEntityResponse>;
@@ -160655,6 +160679,57 @@ interface GatewayStream<T> extends AsyncIterableIterator<T> {
160655
160679
  cancel(reason?: unknown): Promise<void>;
160656
160680
  }
160657
160681
 
160682
+ /** Node-style WebSocket adapter. Use a reviewed implementation; the SDK does not implement framing.
160683
+ * @example `const factory: GatewayWebSocketFactory = (url, options) => new WebSocket(url, options);`
160684
+ */
160685
+ interface GatewayWebSocket {
160686
+ readonly readyState: number;
160687
+ readonly bufferedAmount: number;
160688
+ /** Subscribe to Node-style socket events.
160689
+ * @example `socket.on('open', () => console.log('upgraded'));`
160690
+ */
160691
+ on(event: string, listener: (...args: unknown[]) => void): unknown;
160692
+ /** Remove the exact registered listener.
160693
+ * @example `socket.off('open', onOpen);`
160694
+ */
160695
+ off(event: string, listener: (...args: unknown[]) => void): unknown;
160696
+ /** Send one UTF-8 text frame and report transport errors through the callback.
160697
+ * @example `socket.send(JSON.stringify(event), onSent);`
160698
+ */
160699
+ send(data: string, callback: (error?: Error) => void): void;
160700
+ /** Initiate a WebSocket close handshake.
160701
+ * @example `socket.close(1000);`
160702
+ */
160703
+ close(code: number): void;
160704
+ /** Force termination when a handshake or graceful close cannot finish.
160705
+ * @example `socket.terminate();`
160706
+ */
160707
+ terminate(): void;
160708
+ }
160709
+ /** Explicit caller-owned transport, compatible with Node's `ws` package; never a browser credential workaround.
160710
+ * @example `const factory: GatewayWebSocketFactory = (url, options) => new WebSocket(url, options);`
160711
+ */
160712
+ type GatewayWebSocketFactory = (url: string, options: {
160713
+ headers: Record<string, string>;
160714
+ handshakeTimeout: number;
160715
+ followRedirects: false;
160716
+ perMessageDeflate: false;
160717
+ maxPayload: number;
160718
+ }) => GatewayWebSocket;
160719
+ /** Single-consumer, bounded provider-event connection. An upgrade is not a provider-ready session.
160720
+ * @example `for await (const event of connection) { if (event.type === 'session.created') break; }`
160721
+ */
160722
+ interface GatewayRealtimeConnection extends AsyncIterableIterator<GatewayRealtimeEvent> {
160723
+ /** Queue a validated event, without replay or a provider-delivery guarantee. Errors reach iteration.
160724
+ * @example `connection.send({ type: 'response.create', response: { output_modalities: ['text'] } });`
160725
+ */
160726
+ send(event: GatewayRealtimeEvent): void;
160727
+ /** Close even if iteration never starts; breaking iteration also closes the owned socket.
160728
+ * @example `await connection.cancel();`
160729
+ */
160730
+ cancel(): Promise<void>;
160731
+ }
160732
+
160658
160733
  /** @internal Inherited by the public inference client; no separate credentials or token cache. */
160659
160734
  declare abstract class AIGatewayRuntimeResourcesClient {
160660
160735
  protected abstract runtimeRequestOptions(options: GatewayInferenceRequestOptions): Pick<RequestSpec, 'baseUrl' | 'auth' | 'numRetries' | 'timeoutMs' | 'signal' | 'fetch' | 'headers' | 'redirect' | 'omitDebugBody'>;
@@ -160938,6 +161013,16 @@ interface GatewayInferenceRequestOptions {
160938
161013
  /** x-portkey-* routing/observability headers or OpenAI-Beta; authentication cannot be overridden. */
160939
161014
  headers?: Record<string, string>;
160940
161015
  }
161016
+ /** Explicit WebSocket transport and resource bounds. Realtime never inherits HTTP retries.
161017
+ * @example `const options: GatewayRealtimeOptions = { webSocketFactory: (url, options) => new WebSocket(url, options) };`
161018
+ */
161019
+ interface GatewayRealtimeOptions extends Omit<GatewayInferenceRequestOptions, 'numRetries'> {
161020
+ webSocketFactory: GatewayWebSocketFactory;
161021
+ handshakeTimeoutMs?: number;
161022
+ maxEventBytes?: number;
161023
+ maxBufferedEvents?: number;
161024
+ maxBufferedBytes?: number;
161025
+ }
160941
161026
  /** Prisma gateway runtime inference, independent of management OAuth and SCM plane URLs.
160942
161027
  * @example
160943
161028
  * ```ts
@@ -160964,6 +161049,19 @@ declare class AIGatewayInferenceClient extends AIGatewayRuntimeResourcesClient {
160964
161049
  redirect: "error";
160965
161050
  omitDebugBody: boolean;
160966
161051
  };
161052
+ /** Open a bounded realtime WebSocket on the explicitly configured gateway.
161053
+ * HTTP 101 proves an upgrade, not provider session readiness. Provider errors remain events.
161054
+ * @experimental The prescribed-model live probe upgrades, then returns invalid_model.
161055
+ * @example
161056
+ * ```ts
161057
+ * const connection = await inference.connectRealtime({ model: '@provider/model' }, {
161058
+ * webSocketFactory: (url, options) => new WebSocket(url, options),
161059
+ * });
161060
+ * try { for await (const event of connection) console.log(event.type); }
161061
+ * finally { await connection.cancel(); }
161062
+ * ```
161063
+ */
161064
+ connectRealtime(opts: GatewayRealtimeConnectRequest, options: GatewayRealtimeOptions): Promise<GatewayRealtimeConnection>;
160967
161065
  /** Create a legacy text completion; stream=true returns a cancellable iterator.
160968
161066
  * @experimental The deployed route exists, but the prescribed model returns HTTP 404.
160969
161067
  * Outside stability guarantees until live-verified; the SDK never substitutes a model.
@@ -161187,4 +161285,4 @@ declare function buildDottedObject(entries: readonly GatewayDottedValueEntry[]):
161187
161285
  */
161188
161286
  declare function setDottedValue(input: GatewayJsonObject, path: string, value: GatewayJsonValue): GatewayJsonObject;
161189
161287
 
161190
- export { AIGatewayApiKeysClient, type AIGatewayAuditLogListOptions, AIGatewayAuditLogsClient, 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 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 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 };
161288
+ export { AIGatewayApiKeysClient, type AIGatewayAuditLogListOptions, AIGatewayAuditLogsClient, 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 };