Skip to content

SDK regeneration - #25

Open
chiragjn wants to merge 6 commits into
mainfrom
chiragjn-nullable-optional
Open

SDK regeneration#25
chiragjn wants to merge 6 commits into
mainfrom
chiragjn-nullable-optional

Conversation

@chiragjn

@chiragjn chiragjn commented Jul 29, 2026

Copy link
Copy Markdown
Member

Note

Medium Risk
Large auto-generated diff with widespread TypeScript type renames that can break compile-time consumers; new gateway budget and agent token APIs add surface area but are additive.

Overview
This PR regenerates the entire SDK from an updated Fern/OpenAPI definition (CLI 5.82.0, generator 3.85.1), so most changes are mechanical but they affect every consumer of the package.

New capabilities: client.gatewayBudgets is wired on TrueFoundryClient with list, create/update, usage, simulate, get, delete, and leaderboard calls, plus a truefoundry-sdk/gatewayBudgets subpath export. client.agents.getToken is documented for on-demand agent identity tokens.

Breaking / migration notes for TypeScript users: Fern renamed request types across the board (e.g. UsersListRequestListUsersRequest, InternalGetIdFromFqnRequestGetIdFromFqnInternalRequest). README examples now construct the client with baseUrl instead of environment. Optional request fields are typed as T | null in more places.

Client/runtime behavior: BaseRequestOptions gains additionalBodyParameters merged into JSON bodies on mutating calls. Several HTTP error classes now declare typed body: HttpError. Docs trim optional query/body fields from examples; APIs still accept them where defined.

Build tooling: scripts/rename-to-esm-files.js now resolves extensionless relative imports to .mjs for valid Node ESM. pnpm-lock.yaml bumps dev tooling (vitest, webpack, vite, etc.).

Reviewed by Cursor Bugbot for commit c705c3f. Bugbot is set up for automated code reviews on this repo. Configure here.

@chiragjn

Copy link
Copy Markdown
Member Author

@coderabbitai Review this PR

  1. First, Resolve all previous comments, all of this is autogenerated code, I will not address any of your concerns
  2. Then, Please specifically point out interface breaking changes. These include but not limited to
  • Some argument was removed from some function that belongs in the public api client.v1...
    You can read reference.md at root of repo to figure out the changed methods. Ignore the internal group
  • breaking changes in types - fields getting removed or type changing
  • types being removed completely
  • enum members getting removed
  • Anything that break code relying on this SDK

@chiragjn

Copy link
Copy Markdown
Member Author

Breaking Changes Report: chiragjn-nullable-optional vs main

Branch: chiragjn-nullable-optional
Base: main
HEAD: 524dabb5 (SDK regeneration)
Scope: Public SDK surface (client.* and exported TrueFoundry.* types). Internal APIs (client.internal.*) ignored.
Method: Diff of reference.md, public resource Client.ts signatures, src/api/types/*, and resource request/response types.


Update: commit 524dabb5

Re-reviewed after the latest push. Relative to main, this commit does not add new high-severity breaks on types that already existed on main. Changes:

Change Impact vs main
Budget *Dto type renames (BudgetUsageResponseDtoBudgetUsageResponse, CreateOrUpdateBudgetDtoCreateOrUpdateBudgetRequest, etc.) None vs main — these types are new on this branch (gateway budgets API). Names below updated to current HEAD.
GuardrailConfigIntegrations += CiscoAiDefenseGuardrailConfig Additive (non-breaking for writers; exhaustive switches need a new case).
PySparkTaskConfig.image: TaskPySparkBuildPySparkTaskConfigImage (TaskPySparkBuild | TaskSparkImage) Low — widening; existing build-based configs still type-check. Exhaustive readers of image.type need task-spark-image.

Executive summary

This regeneration is breaking for TypeScript consumers, even though most client.* call sites that only pass object literals will keep compiling.

Highest-impact categories:

  1. Mass request/response type renames (38) with old names fully removed — any import type { UsersListRequest } style usage breaks.
  2. Query param union narrowing — fields that accepted string | string[] (or number | number[]) now only accept arrays.
  3. Removed / renamed exported types and enum members (ResourceType, BuildStatus, GatewayLoggingRule, ExternalIdentity, etc.).
  4. Structural type changes in manifests/models (gateway logging, agent user messages, identity discriminator).
  5. Widespread | null on optional fields (337 model fields across 86 types) — stricter null checks under strictNullChecks.

No public client.* methods were removed. Argument positions were not removed from public methods; breakages are primarily in named types, param shapes, and model fields.


1. Public client method surface

1.1 Removed methods

None (public, non-internal).

1.2 Added methods (non-breaking)

Method Notes / types
client.gatewayBudgets.list TrueFoundry.GatewayBudget[]
client.gatewayBudgets.createOrUpdate request: CreateOrUpdateBudgetRequestGatewayBudget
client.gatewayBudgets.get TrueFoundry.GatewayBudget
client.gatewayBudgets.delete void
client.gatewayBudgets.getLeaderboard TrueFoundry.BudgetUsageResponse
client.gatewayBudgets.getMyUsage TrueFoundry.BudgetUsageResponse
client.gatewayBudgets.simulate request: SimulateBudgetRequestBudgetUsageResponse
client.agents.getToken TrueFoundry.GetAgentIdentityTokenResponse

1.3 Return type rename

Method main branch
client.applications.cancelDeployment ApplicationsCancelDeploymentResponse CancelDeploymentApplicationsResponse

2. HIGH: Request/response type renames (old names removed)

Fern renamed request/response types from {Resource}{Action}Request to {Action}{Resource}Request (and similar). Old type names are deleted — no aliases remain.

Call sites using untyped object literals are usually fine. Code that imports or annotates the old names will not compile.

Client method Removed type Replacement
client.agentSkillVersions.list AgentSkillVersionsListRequest ListAgentSkillVersionsRequest
client.agentSkills.list AgentSkillsListRequest ListAgentSkillsRequest
client.agentVersions.list AgentVersionsListRequest ListAgentVersionsRequest
client.agents.list AgentsListRequest ListAgentsRequest
client.alerts.list AlertsListRequest ListAlertsRequest
client.applicationVersions.list ApplicationVersionsListRequest ListApplicationVersionsRequest
client.applications.cancelDeployment ApplicationsCancelDeploymentResponse CancelDeploymentApplicationsResponse
client.applications.list ApplicationsListRequest ListApplicationsRequest
client.artifactVersions.list ArtifactVersionsListRequest ListArtifactVersionsRequest
client.artifacts.list ArtifactsListRequest ListArtifactsRequest
client.clusters.getAddons ClustersGetAddonsRequest GetAddonsClustersRequest
client.clusters.list ClustersListRequest ListClustersRequest
client.dataDirectories.delete DataDirectoriesDeleteRequest DeleteDataDirectoriesRequest
client.dataDirectories.list DataDirectoriesListRequest ListDataDirectoriesRequest
client.environments.list EnvironmentsListRequest ListEnvironmentsRequest
client.events.get EventsGetRequest GetEventsRequest
client.jobs.listRuns JobsListRunsRequest ListRunsJobsRequest
client.jobs.terminate JobsTerminateRequest TerminateJobsRequest
client.logs.get LogsGetRequest GetLogsRequest
client.mlRepos.list MlReposListRequest ListMlReposRequest
client.modelVersions.list ModelVersionsListRequest ListModelVersionsRequest
client.models.list ModelsListRequest ListModelsRequest
client.personalAccessTokens.get PersonalAccessTokensGetRequest GetPersonalAccessTokensRequest
client.personalAccessTokens.list PersonalAccessTokensListRequest ListPersonalAccessTokensRequest
client.promptVersions.list PromptVersionsListRequest ListPromptVersionsRequest
client.prompts.list PromptsListRequest ListPromptsRequest
client.runs.getMetricHistory RunsGetMetricHistoryRequest GetMetricHistoryRunsRequest
client.secretGroups.delete SecretGroupsDeleteRequest DeleteSecretGroupsRequest
client.secretGroups.list SecretGroupsListRequest ListSecretGroupsRequest
client.secrets.delete SecretsDeleteRequest DeleteSecretsRequest
client.teams.list TeamsListRequest ListTeamsRequest
client.teams.listManagers TeamsListManagersRequest ListManagersTeamsRequest
client.teams.listMembers TeamsListMembersRequest ListMembersTeamsRequest
client.users.delete UsersDeleteRequest DeleteUsersRequest
client.users.list UsersListRequest ListUsersRequest
client.virtualAccounts.list VirtualAccountsListRequest ListVirtualAccountsRequest
client.workspaces.list WorkspacesListRequest ListWorkspacesRequest
client.workspaces.search WorkspacesSearchRequest SearchWorkspacesRequest

Nested request enum/type renames (also removed)

Removed Replacement
AgentsListRequestType ListAgentsRequestType
ApplicationsListRequestDeviceTypeFilter ListApplicationsRequestDeviceTypeFilter
ApplicationsListRequestLifecycleStage ListApplicationsRequestLifecycleStage

3. HIGH: Query parameter union narrowing

These fields previously accepted a single value or an array. They now accept only an array (plus | null). Passing a bare string/number is a type error.

Method Field main branch
client.agents.list attributes `string string[]`
client.artifactVersions.list runIds `string string[]`
client.artifactVersions.list runSteps `number number[]`
client.clusters.getAddons attributes `string string[]`
client.clusters.list attributes `string string[]`
client.events.get podNames `string string[]`
client.jobs.listRuns triggeredBy `string string[]`
client.jobs.listRuns versionNumbers `number number[]`
client.logs.get podNames `string string[]`
client.mlRepos.list attributes `string string[]`
client.modelVersions.list runIds `string string[]`
client.modelVersions.list runSteps `number number[]`
client.secretGroups.list attributes `string string[]`
client.teams.list attributes `string string[]`
client.virtualAccounts.list ownedByTeams `string string[]`
client.workspaces.list attributes `string string[]`

Migration: wrap scalars in an array, e.g. attributes: "x"attributes: ["x"].


4. HIGH: Removed / renamed exported types

Removed type Replacement / notes
TrueFoundry.ResourceType Replaced in UpdateUserRolesRequest.resourceType by UpdateUserRolesRequestResourceType (resource-local). Global ResourceType export is gone.
TrueFoundry.BuildStatus Renamed to DeploymentBuildStatus (same string values: STARTED / SUCCEEDED / FAILED). Used by DeploymentBuild.status.
TrueFoundry.IChangeOperation Renamed to IChangeType (same values: REMOVE / ADD / UPDATE). Used by IChange.type.
TrueFoundry.GatewayLoggingRule Removed with no type alias. Gateway logging config shape changed (see §5).
TrueFoundry.GatewayLoggingWhen Renamed to LoggingWhen.
TrueFoundry.ApplicationsCancelDeploymentResponse CancelDeploymentApplicationsResponse

5. HIGH: Structural / semantic type changes

5.1 GatewayLoggingConfig reshaped

main:

interface GatewayLoggingConfig {
  type: "gateway-logging-config";
  name: string;
  rules: GatewayLoggingRule[];  // each rule: { id, when, tracingProjectFqn }
}

branch:

interface GatewayLoggingConfig {
  type: "gateway-logging-config";
  name: string;
  when?: LoggingWhen;
  log: boolean;
  redactWith?: Redaction;
}

Breaks any client.apply / manifest code that built logging configs with rules.

5.2 TrueFoundryAgentUserMessage discriminator changed

main branch
Discriminator field role: "user" type: "user.message"

Field role was removed; field type was added.

5.3 IdentityProviderBackedIdentity.type value changed

main branch
"idp-backed" "identity-provider-backed"

Breaks discriminators / switch cases / equality checks on this literal.

5.4 Subject.subjectType type renamed

main branch
TrueFoundry.SubjectType TrueFoundry.SubjectSubjectType

SubjectType still exists as a separate export but no longer includes ExternalIdentity (see §6). Subject.subjectType now points at SubjectSubjectType (also without ExternalIdentity).

5.5 GcpGkeIntegration.location type renamed

main branch
TrueFoundry.GcpRegion TrueFoundry.GcpGkeIntegrationLocation

5.6 TrueFoundryApplyResponse.data typed more specifically

main branch
Record<string, unknown> TrueFoundryApplyResponseData | null (union of concrete resource types)

This can break code that treated data as a loose record or mutated it freely.

5.7 Empty response interfaces → type aliases

Several empty interface Foo {} became type Foo = {} (e.g. ActivateUserResponse, EmptyResponse, DeleteUserResponse, …). Usually non-breaking in practice; mention only if consumers relied on interface merging.


6. HIGH: Enum / const-object member removals

Enum Removed member Value
SubjectType ExternalIdentity "external-identity"
RoleBindingSubjectType ExternalIdentity "external-identity"

Code comparing subjects/role-bindings against "external-identity" or SubjectType.ExternalIdentity will break.

Enum additions (non-breaking)

New members were added to GcpRegion, VertexRegion, McpServerOAuth2GrantType, RoleWithResourceResourceType, budget mode enums, VirtualModelModelType, etc. Additive only.


7. MEDIUM: Removed interface fields

Type Removed field Was
BudgetV2Alert notifyBreachingUser boolean?
GatewayLoggingConfig rules GatewayLoggingRule[]
TrueFoundryAgentUserMessage role "user"

8. MEDIUM: Fields that became optional

Reading code that assumes these are always present may need guards:

Type Field
AgentIdentityManifest ownedBy
McpServerOAuth2 tokenUrl
McpServerOAuth2 jwtSource
TeamBudgetConfig when
TenantBudgetConfig when

9. MEDIUM: Widespread | null on optional model fields

337 fields across 86 types changed from T? / T optional patterns to include | null (typical Fern nullable+optional regeneration).

Impact: under strictNullChecks, assigning these fields to non-nullable locals, or calling methods without null checks, becomes a type error. Runtime JSON with explicit null is now accurately typed.

Most affected types (by field count):

Type # fields gaining | null
Application 22
AddonComponent 20
Deployment 13
DeploymentBuild 13
Session 13
UserMetadata 13
JobRun 10
VirtualAccount 10
DeploymentStatus 9
ApplicationSummary 8
Recommendation 8
Alert 7
InternalArtifactVersion 7
Secret 7
InternalModelVersion 6
SecretVersion 6
UpgradeData 6
ModelVersion 5
SecretGroup 5
Subject 5
ApplicationDebugInfo 4
Artifact 4
ArtifactVersion 4
Environment 4
MlRepo 4
Full list of files with nullability additions
Type Fields
Account id, createdAt, updatedAt
AddonComponent appName, namespace, applicationId, description, path, addonFolder, installed, status, version, manifest, installationSource, unsupportedClusterTypes, required, knownCrDs, source, upgrades, labels, recommendations, workspaceId, metadata
AddonComponentStatus healthStatus, syncStatus
Agent id, latestVersionDetails, createdBy
AgentSkill createdAt, updatedAt, latestVersion
AgentSkillVersion createdAt, updatedAt
AgentVersion id, metadata, createdBySubject
AgentVersionMetadata promptVariables
Alert id, resolvedTime, applicationId, tenantName, updatedAt, createdAt, applicationDebugInfoId
Application id, fqn, name, type, tenantName, metadata, workspaceId, lastVersion, activeVersion, applicationSetId, createdAt, updatedAt, recommendations, alerts, alertsSummary, applicationDebugInfos, potentialProblems, workspaceFqn, createdBy, deployment, activeDeploymentId, lastDeploymentId
ApplicationDebugInfo id, application, createdAt, updatedAt
ApplicationMetadata paused
ApplicationSummary id, fqn, name, type, metadata, workspaceId, activeVersion, applicationSetId
Artifact createdAt, updatedAt, latestVersion, runSteps
ArtifactManifest description
ArtifactVersion createdAt, updatedAt, usageCodeSnippet, tags
BaseService env
BaseWorkbenchInput env
ChatPromptManifest description, variables
Cluster createdBySubject, createdBy
ClusterGateway uid, isTieBreaker
ContainerTaskConfig env
DataDirectory usageCodeSnippet
DataDirectoryManifest description
DatabricksJobTaskConfig jobParameters, timeoutSeconds, env
Deployment id, version, fqn, applicationId, application, createdAt, updatedAt, deploymentBuilds, deploymentStatuses, currentStatusId, currentStatus, appliedRecommendations, createdBy
DeploymentBuild id, deploymentId, componentName, build, buildId, imageUri, name, getLogsUrl, tailLogsUrl, logsStartTs, metadata, createdAt, updatedAt
DeploymentStatus id, deploymentId, status, state, transition, message, retryCount, createdAt, updatedAt
Environment id, priority, optimizeFor, createdBy
Event name, firstTimestamp, namespace
EventInvolvedObject apiVersion, namespace, containerName
FileInfo fileSize, signedUrl, lastModified
GatewayConfiguration id, createdAt, updatedAt
GetAutoProvisioningStateResponse state
GetSuggestedDeploymentEndpointResponse path, gateway
GetVirtualAccountResponse token
GitRepositoryExistsResponse id
HttpError code, details
IChange value, oldValue, changes
InternalArtifactVersion createdAt, updatedAt, usageCodeSnippet, tags, artifactSize, artifactMetadata, internalMetadata
InternalModelVersion createdAt, updatedAt, usageCodeSnippet, metrics, deployable, artifactSize
Job env
JobRun endTime, duration, error, triggeredBy, triggeredBySubject, exitCode, sparkUi, applicationId, deploymentId, tenantName
JobTriggerInput command, params
Jwt metadata
ListFilesRequest path, limit, pageToken
Log jobName, containerName
Metadata jobRunNameAlias
Metric value, timestamp, step
MlRepo numRuns, artifactTypeCounts, datasetsCount, tracingProjectsCount
Model createdAt, updatedAt, latestVersion, runSteps
ModelManifest description
ModelVersion createdAt, updatedAt, usageCodeSnippet, metrics, deployable
MultiPartUpload s3CompatibleUploadId, azureBlobBlockIds
Pagination offset, limit
PresignedUrlObject headers
Prompt createdAt, updatedAt, latestVersion, runSteps
PromptVersion createdAt, updatedAt, usageCodeSnippet
PySparkTaskConfig sparkConf, env
PythonTaskConfig env
Recommendation id, clusterId, applicationId, deploymentId, applicationVersion, appliedDeploymentId, createdAt, updatedAt
SearchRunsResponse total, nextPageToken
Secret value, createdBySubject, createdAt, updatedAt, secretVersions, activeDeploymentsCount, createdBy
SecretGroup id, fqn, integrationId, manifest, createdBy
SecretVersion value, version, secret, secretId, createdAt, updatedAt
Session userName, subjectControllerName, subjectPatName, subjectExternalIdentitySlug, email, tenantName, metadata, createdAt, isBillingEnabled, actor, serviceAccountMetadata, account, rootAccount
SessionActor organization
SparkJob env, sparkConf
SparkJobTriggerInput mainClass, mainApplicationFile, arguments
Subject subjectSlug, subjectDisplayName, subjectPatName, subjectControllerName, subjectExternalIdentitySlug
SubjectPermission resourceName, resourceFqn
SyncTokenInSecretStoreInfo error
Team members, metadata, roles
TeamMetadata createdByScim, scimExternalId
TokenPagination limit, nextPageToken, previousPageToken
TraceSpan feedbacks
TransformersFramework libraryName, pipelineTag, baseModel
TrueFoundryApplyResponse existingManifest, action
UpdateSecretInput value
UpgradeData diff, currentManifest, desiredManifest, upgradePossible, conflictFields, hasConflict
UsageCodeSnippet libraries, icon
User roles, rolesWithResource, accounts, lastAccessedAt
UserMetadata sub, imageUrl, pictureDownloadPath, displayName, userObject, inviteAccepted, registeredInIdp, preference, groups, tenantRoleManagedBy, ssoName, scimUserObject, createdByScim
UserResource resourceName
VirtualAccount manifest, jwtId, lastAccessedAt, isExpired, jwts, metadata, roleIds, rolesWithResource, createdBy, nextScheduledRotation
Workspace environmentId, isSystemWs, createdBy

Request types show the same pattern (~159 optional query fields gained | null) in addition to renames/narrowing above.


10. Union expansions (additive / low risk)

These widen unions and are generally non-breaking for writers; readers with exhaustive switches may need new cases:

Type Change
HeaderRoutingConfig Added ComplexityBasedLoadBalancing
GuardrailConfigIntegrations Added NomaSecurityGuardrailConfig, CiscoAiDefenseGuardrailConfig
TrueFoundryApplyRequestManifest (and delete/existing variants) Added AgentChannelManifest
TrueFoundryApplyResponseData New concrete union replacing Record<string, unknown>
PySparkTaskConfig.image Was TaskPySparkBuild; now PySparkTaskConfigImage = TaskPySparkBuild | TaskSparkImage (new prebuilt-image option)

11. What did not break (for clarity)

  • No public methods removed from client.* (excluding internal).
  • No required method arguments removed from public clients.
  • No fields became newly required (optional → required count: 0).
  • Trailing-comma-only signature formatting churn is not a runtime/API break.

12. Suggested consumer migration checklist

  • Re-export / re-import renamed request types (UsersListRequestListUsersRequest, etc.).
  • Replace ResourceType with UpdateUserRolesRequestResourceType (or string literals).
  • Replace BuildStatusDeploymentBuildStatus, IChangeOperationIChangeType, GatewayLoggingWhenLoggingWhen.
  • Convert scalar multi-value query params to arrays (attributes, podNames, runIds, …).
  • Update gateway logging manifests to the new when / log / redactWith shape.
  • Update agent user messages: role: "user"type: "user.message".
  • Update identity discriminator: "idp-backed""identity-provider-backed".
  • Remove uses of SubjectType.ExternalIdentity / RoleBindingSubjectType.ExternalIdentity.
  • Add null checks for response fields that are now T | null | undefined.
  • Update cancelDeployment return type name if annotated.

Appendix A: Complete request type rename map

Old New
AgentSkillVersionsListRequest ListAgentSkillVersionsRequest
AgentSkillsListRequest ListAgentSkillsRequest
AgentVersionsListRequest ListAgentVersionsRequest
AgentsListRequest ListAgentsRequest
AlertsListRequest ListAlertsRequest
ApplicationVersionsListRequest ListApplicationVersionsRequest
ApplicationsCancelDeploymentResponse CancelDeploymentApplicationsResponse
ApplicationsListRequest ListApplicationsRequest
ArtifactVersionsListRequest ListArtifactVersionsRequest
ArtifactsListRequest ListArtifactsRequest
ClustersGetAddonsRequest GetAddonsClustersRequest
ClustersListRequest ListClustersRequest
DataDirectoriesDeleteRequest DeleteDataDirectoriesRequest
DataDirectoriesListRequest ListDataDirectoriesRequest
EnvironmentsListRequest ListEnvironmentsRequest
EventsGetRequest GetEventsRequest
JobsListRunsRequest ListRunsJobsRequest
JobsTerminateRequest TerminateJobsRequest
LogsGetRequest GetLogsRequest
MlReposListRequest ListMlReposRequest
ModelVersionsListRequest ListModelVersionsRequest
ModelsListRequest ListModelsRequest
PersonalAccessTokensGetRequest GetPersonalAccessTokensRequest
PersonalAccessTokensListRequest ListPersonalAccessTokensRequest
PromptVersionsListRequest ListPromptVersionsRequest
PromptsListRequest ListPromptsRequest
RunsGetMetricHistoryRequest GetMetricHistoryRunsRequest
SecretGroupsDeleteRequest DeleteSecretGroupsRequest
SecretGroupsListRequest ListSecretGroupsRequest
SecretsDeleteRequest DeleteSecretsRequest
TeamsListRequest ListTeamsRequest
TeamsListManagersRequest ListManagersTeamsRequest
TeamsListMembersRequest ListMembersTeamsRequest
UsersDeleteRequest DeleteUsersRequest
UsersListRequest ListUsersRequest
VirtualAccountsListRequest ListVirtualAccountsRequest
WorkspacesListRequest ListWorkspacesRequest
WorkspacesSearchRequest SearchWorkspacesRequest

Generated against main...HEAD (524dabb5) on branch chiragjn-nullable-optional. Internal group excluded per review scope. Last updated after commit 524dabb5.

@coderabbitai

coderabbitai Bot commented Jul 29, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 2507 files, which is 2357 over the limit of 150.

To get a review, narrow the scope:
• coderabbit review --committed # exclude uncommitted changes
• coderabbit review --dir # limit to a subdirectory
• coderabbit review --base # compare against a closer base

Upgrade to Pro+ to raise the limit.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: ddf7c6c3-892b-4acc-9870-626f0cd44038

📥 Commits

Reviewing files that changed from the base of the PR and between 5051c66 and c705c3f.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (2531)
  • .fern/metadata.json
  • README.md
  • package.json
  • reference.md
  • scripts/rename-to-esm-files.js
  • src/BaseClient.ts
  • src/Client.ts
  • src/api/client/requests/TrueFoundryApplyRequest.ts
  • src/api/client/requests/TrueFoundryDeleteRequest.ts
  • src/api/errors/BadRequestError.ts
  • src/api/errors/ConflictError.ts
  • src/api/errors/ExpectationFailedError.ts
  • src/api/errors/FailedDependencyError.ts
  • src/api/errors/ForbiddenError.ts
  • src/api/errors/InternalServerError.ts
  • src/api/errors/MethodNotAllowedError.ts
  • src/api/errors/NotFoundError.ts
  • src/api/errors/NotImplementedError.ts
  • src/api/errors/UnauthorizedError.ts
  • src/api/errors/UnprocessableEntityError.ts
  • src/api/resources/agentSkillVersions/client/Client.ts
  • src/api/resources/agentSkillVersions/client/requests/ListAgentSkillVersionsRequest.ts
  • src/api/resources/agentSkillVersions/client/requests/index.ts
  • src/api/resources/agentSkills/client/Client.ts
  • src/api/resources/agentSkills/client/requests/ApplyAgentSkillRequest.ts
  • src/api/resources/agentSkills/client/requests/ListAgentSkillsRequest.ts
  • src/api/resources/agentSkills/client/requests/index.ts
  • src/api/resources/agentVersions/client/Client.ts
  • src/api/resources/agentVersions/client/requests/ListAgentVersionsRequest.ts
  • src/api/resources/agentVersions/client/requests/index.ts
  • src/api/resources/agents/client/Client.ts
  • src/api/resources/agents/client/requests/CreateOrUpdateAgentRequest.ts
  • src/api/resources/agents/client/requests/ListAgentsRequest.ts
  • src/api/resources/agents/client/requests/index.ts
  • src/api/resources/agents/types/AgentsListRequestType.ts
  • src/api/resources/agents/types/ListAgentsRequestType.ts
  • src/api/resources/agents/types/index.ts
  • src/api/resources/alerts/client/Client.ts
  • src/api/resources/alerts/client/requests/ListAlertsRequest.ts
  • src/api/resources/alerts/client/requests/index.ts
  • src/api/resources/applicationVersions/client/Client.ts
  • src/api/resources/applicationVersions/client/requests/ListApplicationVersionsRequest.ts
  • src/api/resources/applicationVersions/client/requests/index.ts
  • src/api/resources/applications/client/Client.ts
  • src/api/resources/applications/client/requests/CreateDeploymentRequest.ts
  • src/api/resources/applications/client/requests/ListApplicationsRequest.ts
  • src/api/resources/applications/client/requests/index.ts
  • src/api/resources/applications/types/ApplicationsListRequestDeviceTypeFilter.ts
  • src/api/resources/applications/types/ApplicationsListRequestLifecycleStage.ts
  • src/api/resources/applications/types/CancelDeploymentApplicationsResponse.ts
  • src/api/resources/applications/types/ListApplicationsRequestDeviceTypeFilter.ts
  • src/api/resources/applications/types/ListApplicationsRequestLifecycleStage.ts
  • src/api/resources/applications/types/index.ts
  • src/api/resources/artifactVersions/client/Client.ts
  • src/api/resources/artifactVersions/client/requests/ListArtifactVersionsRequest.ts
  • src/api/resources/artifactVersions/client/requests/StageArtifactRequest.ts
  • src/api/resources/artifactVersions/client/requests/index.ts
  • src/api/resources/artifactVersions/types/StageArtifactRequestManifest.ts
  • src/api/resources/artifacts/client/Client.ts
  • src/api/resources/artifacts/client/requests/ApplyArtifactRequest.ts
  • src/api/resources/artifacts/client/requests/ListArtifactsRequest.ts
  • src/api/resources/artifacts/client/requests/index.ts
  • src/api/resources/clusters/client/Client.ts
  • src/api/resources/clusters/client/requests/CreateOrUpdateClusterRequest.ts
  • src/api/resources/clusters/client/requests/GetAddonsClustersRequest.ts
  • src/api/resources/clusters/client/requests/ListClustersRequest.ts
  • src/api/resources/clusters/client/requests/index.ts
  • src/api/resources/dataDirectories/client/Client.ts
  • src/api/resources/dataDirectories/client/requests/ApplyDataDirectoryRequest.ts
  • src/api/resources/dataDirectories/client/requests/DeleteDataDirectoriesRequest.ts
  • src/api/resources/dataDirectories/client/requests/ListDataDirectoriesRequest.ts
  • src/api/resources/dataDirectories/client/requests/index.ts
  • src/api/resources/environments/client/Client.ts
  • src/api/resources/environments/client/requests/CreateOrUpdateEnvironmentRequest.ts
  • src/api/resources/environments/client/requests/ListEnvironmentsRequest.ts
  • src/api/resources/environments/client/requests/index.ts
  • src/api/resources/events/client/Client.ts
  • src/api/resources/events/client/requests/GetEventsRequest.ts
  • src/api/resources/events/client/requests/index.ts
  • src/api/resources/gatewayBudgets/client/Client.ts
  • src/api/resources/gatewayBudgets/client/index.ts
  • src/api/resources/gatewayBudgets/client/requests/CreateOrUpdateBudgetRequest.ts
  • src/api/resources/gatewayBudgets/client/requests/GetLeaderboardGatewayBudgetsRequest.ts
  • src/api/resources/gatewayBudgets/client/requests/ListGatewayBudgetsRequest.ts
  • src/api/resources/gatewayBudgets/client/requests/SimulateBudgetRequest.ts
  • src/api/resources/gatewayBudgets/client/requests/index.ts
  • src/api/resources/gatewayBudgets/exports.ts
  • src/api/resources/gatewayBudgets/index.ts
  • src/api/resources/gatewayBudgets/types/CreateOrUpdateBudgetRequestManifest.ts
  • src/api/resources/gatewayBudgets/types/ListGatewayBudgetsRequestType.ts
  • src/api/resources/gatewayBudgets/types/index.ts
  • src/api/resources/index.ts
  • src/api/resources/internal/client/Client.ts
  • src/api/resources/internal/client/requests/GetIdFromFqnInternalRequest.ts
  • src/api/resources/internal/client/requests/index.ts
  • src/api/resources/internal/resources/aiGateway/client/Client.ts
  • src/api/resources/internal/resources/aiGateway/types/AiGatewayGetGatewayConfigRequestType.ts
  • src/api/resources/internal/resources/aiGateway/types/GetGatewayConfigAiGatewayRequestType.ts
  • src/api/resources/internal/resources/aiGateway/types/index.ts
  • src/api/resources/internal/resources/applications/client/Client.ts
  • src/api/resources/internal/resources/applications/client/requests/ApplicationsGetPodTemplateHashToDeploymentVersionRequest.ts
  • src/api/resources/internal/resources/applications/client/requests/GetPodTemplateHashToDeploymentVersionApplicationsRequest.ts
  • src/api/resources/internal/resources/applications/client/requests/PromoteRolloutApplicationsRequest.ts
  • src/api/resources/internal/resources/applications/client/requests/index.ts
  • src/api/resources/internal/resources/artifactVersions/client/Client.ts
  • src/api/resources/internal/resources/artifactVersions/client/requests/ListArtifactVersionsRequest.ts
  • src/api/resources/internal/resources/artifactVersions/client/requests/index.ts
  • src/api/resources/internal/resources/buildLogs/client/Client.ts
  • src/api/resources/internal/resources/buildLogs/client/requests/GetBuildLogsRequest.ts
  • src/api/resources/internal/resources/buildLogs/client/requests/index.ts
  • src/api/resources/internal/resources/clusters/client/Client.ts
  • src/api/resources/internal/resources/deployments/client/Client.ts
  • src/api/resources/internal/resources/deployments/client/requests/GetSuggestedEndpointDeploymentsRequest.ts
  • src/api/resources/internal/resources/deployments/client/requests/index.ts
  • src/api/resources/internal/resources/dockerRegistries/client/Client.ts
  • src/api/resources/internal/resources/dockerRegistries/client/requests/GetCredentialsDockerRegistriesRequest.ts
  • src/api/resources/internal/resources/dockerRegistries/client/requests/index.ts
  • src/api/resources/internal/resources/index.ts
  • src/api/resources/internal/resources/metrics/client/Client.ts
  • src/api/resources/internal/resources/metrics/client/requests/GetChartsMetricsRequest.ts
  • src/api/resources/internal/resources/metrics/client/requests/index.ts
  • src/api/resources/internal/resources/metrics/types/GetChartsMetricsRequestFilterEntity.ts
  • src/api/resources/internal/resources/metrics/types/MetricsGetChartsRequestFilterEntity.ts
  • src/api/resources/internal/resources/metrics/types/index.ts
  • src/api/resources/internal/resources/users/client/Client.ts
  • src/api/resources/internal/resources/vcs/client/Client.ts
  • src/api/resources/internal/resources/vcs/client/requests/GitRepositoryExistsRequest.ts
  • src/api/resources/internal/resources/workflows/client/Client.ts
  • src/api/resources/internal/resources/workflows/client/requests/ExecuteWorkflowRequest.ts
  • src/api/resources/internal/resources/workflows/types/ExecuteWorkflowWorkflowsResponse.ts
  • src/api/resources/internal/resources/workflows/types/index.ts
  • src/api/resources/jobs/client/Client.ts
  • src/api/resources/jobs/client/requests/ListRunsJobsRequest.ts
  • src/api/resources/jobs/client/requests/TerminateJobsRequest.ts
  • src/api/resources/jobs/client/requests/TriggerJobRequest.ts
  • src/api/resources/jobs/client/requests/index.ts
  • src/api/resources/jobs/types/TriggerJobRequestInput.ts
  • src/api/resources/logs/client/Client.ts
  • src/api/resources/logs/client/requests/GetLogsRequest.ts
  • src/api/resources/logs/client/requests/index.ts
  • src/api/resources/mlRepos/client/Client.ts
  • src/api/resources/mlRepos/client/requests/ApplyMlRepoRequest.ts
  • src/api/resources/mlRepos/client/requests/ListMlReposRequest.ts
  • src/api/resources/mlRepos/client/requests/index.ts
  • src/api/resources/modelVersions/client/Client.ts
  • src/api/resources/modelVersions/client/requests/ApplyModelVersionTagsRequest.ts
  • src/api/resources/modelVersions/client/requests/ListModelVersionsRequest.ts
  • src/api/resources/modelVersions/client/requests/index.ts
  • src/api/resources/models/client/Client.ts
  • src/api/resources/models/client/requests/ApplyModelRequest.ts
  • src/api/resources/models/client/requests/ListModelsRequest.ts
  • src/api/resources/models/client/requests/index.ts
  • src/api/resources/personalAccessTokens/client/Client.ts
  • src/api/resources/personalAccessTokens/client/requests/CreatePersonalAccessTokenRequest.ts
  • src/api/resources/personalAccessTokens/client/requests/GetPersonalAccessTokensRequest.ts
  • src/api/resources/personalAccessTokens/client/requests/ListPersonalAccessTokensRequest.ts
  • src/api/resources/personalAccessTokens/client/requests/index.ts
  • src/api/resources/personalAccessTokens/types/CreatePersonalAccessTokenRequestTokenType.ts
  • src/api/resources/promptVersions/client/Client.ts
  • src/api/resources/promptVersions/client/requests/ApplyPromptVersionTagsRequest.ts
  • src/api/resources/promptVersions/client/requests/ListPromptVersionsRequest.ts
  • src/api/resources/promptVersions/client/requests/index.ts
  • src/api/resources/prompts/client/Client.ts
  • src/api/resources/prompts/client/requests/ApplyPromptRequest.ts
  • src/api/resources/prompts/client/requests/ListPromptsRequest.ts
  • src/api/resources/prompts/client/requests/index.ts
  • src/api/resources/runs/client/Client.ts
  • src/api/resources/runs/client/requests/CreateRunRequest.ts
  • src/api/resources/runs/client/requests/GetMetricHistoryRunsRequest.ts
  • src/api/resources/runs/client/requests/ListMetricHistoryRequest.ts
  • src/api/resources/runs/client/requests/LogBatchRequest.ts
  • src/api/resources/runs/client/requests/SearchRunsRequest.ts
  • src/api/resources/runs/client/requests/UpdateRunRequest.ts
  • src/api/resources/runs/client/requests/index.ts
  • src/api/resources/secretGroups/client/Client.ts
  • src/api/resources/secretGroups/client/requests/CreateOrUpdateSecretGroupRequest.ts
  • src/api/resources/secretGroups/client/requests/CreateSecretGroupRequest.ts
  • src/api/resources/secretGroups/client/requests/DeleteSecretGroupsRequest.ts
  • src/api/resources/secretGroups/client/requests/ListSecretGroupsRequest.ts
  • src/api/resources/secretGroups/client/requests/UpdateSecretGroupRequest.ts
  • src/api/resources/secretGroups/client/requests/index.ts
  • src/api/resources/secrets/client/Client.ts
  • src/api/resources/secrets/client/requests/DeleteSecretsRequest.ts
  • src/api/resources/secrets/client/requests/ListSecretsRequest.ts
  • src/api/resources/secrets/client/requests/index.ts
  • src/api/resources/teams/client/Client.ts
  • src/api/resources/teams/client/requests/ApplyTeamRequest.ts
  • src/api/resources/teams/client/requests/ListManagersTeamsRequest.ts
  • src/api/resources/teams/client/requests/ListMembersTeamsRequest.ts
  • src/api/resources/teams/client/requests/ListTeamsRequest.ts
  • src/api/resources/teams/client/requests/index.ts
  • src/api/resources/traces/client/Client.ts
  • src/api/resources/traces/client/requests/QuerySpansRequest.ts
  • src/api/resources/traces/types/QuerySpansRequestFiltersItem.ts
  • src/api/resources/users/client/Client.ts
  • src/api/resources/users/client/requests/ActivateUserRequest.ts
  • src/api/resources/users/client/requests/DeactivateUserRequest.ts
  • src/api/resources/users/client/requests/DeleteUsersRequest.ts
  • src/api/resources/users/client/requests/ListUsersRequest.ts
  • src/api/resources/users/client/requests/RegisterUsersRequest.ts
  • src/api/resources/users/client/requests/UpdateUserRolesRequest.ts
  • src/api/resources/users/client/requests/UsersDeleteRequest.ts
  • src/api/resources/users/client/requests/index.ts
  • src/api/resources/users/index.ts
  • src/api/resources/users/types/UpdateUserRolesRequestResourceType.ts
  • src/api/resources/users/types/index.ts
  • src/api/resources/virtualAccounts/client/Client.ts
  • src/api/resources/virtualAccounts/client/requests/ApplyVirtualAccountRequest.ts
  • src/api/resources/virtualAccounts/client/requests/ListVirtualAccountsRequest.ts
  • src/api/resources/virtualAccounts/client/requests/index.ts
  • src/api/resources/workspaces/client/Client.ts
  • src/api/resources/workspaces/client/requests/CreateOrUpdateWorkspaceRequest.ts
  • src/api/resources/workspaces/client/requests/ListWorkspacesRequest.ts
  • src/api/resources/workspaces/client/requests/SearchWorkspacesRequest.ts
  • src/api/resources/workspaces/client/requests/index.ts
  • src/api/types/Account.ts
  • src/api/types/ActivateUserResponse.ts
  • src/api/types/AddonComponent.ts
  • src/api/types/AddonComponentName.ts
  • src/api/types/AddonComponentStatus.ts
  • src/api/types/Agent.ts
  • src/api/types/AgentChannel.ts
  • src/api/types/AgentChannelAgent.ts
  • src/api/types/AgentChannelConfig.ts
  • src/api/types/AgentChannelManifest.ts
  • src/api/types/AgentChannelSlackAuth.ts
  • src/api/types/AgentChannelSlackBotTokenAuth.ts
  • src/api/types/AgentChannelSlackConfig.ts
  • src/api/types/AgentFramework.ts
  • src/api/types/AgentIdentity.ts
  • src/api/types/AgentIdentityConfig.ts
  • src/api/types/AgentIdentityManifest.ts
  • src/api/types/AgentManifest.ts
  • src/api/types/AgentSkill.ts
  • src/api/types/AgentSkillManifest.ts
  • src/api/types/AgentSkillManifestSource.ts
  • src/api/types/AgentSkillVersion.ts
  • src/api/types/AgentSource.ts
  • src/api/types/AgentVersion.ts
  • src/api/types/AgentVersionMetadata.ts
  • src/api/types/Ai21Integrations.ts
  • src/api/types/Ai21Model.ts
  • src/api/types/Ai21ProviderAccount.ts
  • src/api/types/AktoGuardrailConfig.ts
  • src/api/types/Alert.ts
  • src/api/types/AlertConfig.ts
  • src/api/types/AlertConfigEntity.ts
  • src/api/types/AlertConfigResource.ts
  • src/api/types/AlertConfigResourceType.ts
  • src/api/types/AlertSeverity.ts
  • src/api/types/AlertStatus.ts
  • src/api/types/AllDataAccessRule.ts
  • src/api/types/AllDataAccessRuleFiltersItem.ts
  • src/api/types/AnthropicIntegrations.ts
  • src/api/types/AnthropicModel.ts
  • src/api/types/AnthropicProviderAccount.ts
  • src/api/types/Application.ts
  • src/api/types/ApplicationDebugInfo.ts
  • src/api/types/ApplicationLifecycleStage.ts
  • src/api/types/ApplicationMetadata.ts
  • src/api/types/ApplicationSet.ts
  • src/api/types/ApplicationSetComponentsItem.ts
  • src/api/types/ApplicationSummary.ts
  • src/api/types/ApplicationType.ts
  • src/api/types/Artifact.ts
  • src/api/types/ArtifactManifest.ts
  • src/api/types/ArtifactManifestSource.ts
  • src/api/types/ArtifactVersion.ts
  • src/api/types/ArtifactsDownload.ts
  • src/api/types/ArtifactsDownloadArtifactsItem.ts
  • src/api/types/AssistantMessage.ts
  • src/api/types/AssistantMessageContent.ts
  • src/api/types/AssistantMessageContentOneItem.ts
  • src/api/types/AsyncService.ts
  • src/api/types/AsyncServiceAutoscaling.ts
  • src/api/types/AsyncServiceAutoscalingMetrics.ts
  • src/api/types/AsyncServiceReplicas.ts
  • src/api/types/AwsBedrockAssumedRoleBasedAuth.ts
  • src/api/types/AwsBedrockGuardrailConfig.ts
  • src/api/types/AwsBedrockGuardrailConfigAuthData.ts
  • src/api/types/AwsBedrockGuardrailConfigConfig.ts
  • src/api/types/AwsBedrockGuardrailConfigOperation.ts
  • src/api/types/AwsBedrockMantleIntegrations.ts
  • src/api/types/AwsBedrockMantleProviderAccount.ts
  • src/api/types/AwsBedrockMantleProviderAccountAuthData.ts
  • src/api/types/AwsBedrockProviderAccount.ts
  • src/api/types/AwsBedrockProviderAccountAuthData.ts
  • src/api/types/AwsClaudePlatformAssumedRoleBasedAuth.ts
  • src/api/types/AwsClaudePlatformIntegrations.ts
  • src/api/types/AwsClaudePlatformModel.ts
  • src/api/types/AwsClaudePlatformProviderAccount.ts
  • src/api/types/AwsClaudePlatformProviderAccountAuthData.ts
  • src/api/types/AwsEcr.ts
  • src/api/types/AwsEcrAuthData.ts
  • src/api/types/AwsEksIntegration.ts
  • src/api/types/AwsEksIntegrationAuthData.ts
  • src/api/types/AwsIntegrations.ts
  • src/api/types/AwsParameterStore.ts
  • src/api/types/AwsParameterStoreAuthData.ts
  • src/api/types/AwsProviderAccount.ts
  • src/api/types/AwsProviderAccountAuthData.ts
  • src/api/types/AwsRegion.ts
  • src/api/types/AwsS3.ts
  • src/api/types/AwsS3AuthData.ts
  • src/api/types/AwsSagemakerProviderAccount.ts
  • src/api/types/AwsSagemakerProviderAccountAuthData.ts
  • src/api/types/AwsSecretsManager.ts
  • src/api/types/AwsSecretsManagerAuthData.ts
  • src/api/types/AzureAksIntegration.ts
  • src/api/types/AzureBlobStorage.ts
  • src/api/types/AzureContainerRegistry.ts
  • src/api/types/AzureContentSafetyCategory.ts
  • src/api/types/AzureContentSafetyGuardrailConfig.ts
  • src/api/types/AzureContentSafetyGuardrailConfigAuthData.ts
  • src/api/types/AzureContentSafetyGuardrailConfigConfig.ts
  • src/api/types/AzureFoundryModel.ts
  • src/api/types/AzureFoundryModelAuthData.ts
  • src/api/types/AzureFoundryProviderAccount.ts
  • src/api/types/AzureIntegrations.ts
  • src/api/types/AzureOpenAiModel.ts
  • src/api/types/AzureOpenAiModelDeploymentType.ts
  • src/api/types/AzureOpenAiProviderAccount.ts
  • src/api/types/AzureOpenAiProviderAccountAuthData.ts
  • src/api/types/AzurePiiCategory.ts
  • src/api/types/AzurePiiGuardrailConfig.ts
  • src/api/types/AzurePiiGuardrailConfigAuthData.ts
  • src/api/types/AzurePiiGuardrailConfigConfig.ts
  • src/api/types/AzurePiiGuardrailConfigConfigDomain.ts
  • src/api/types/AzurePiiGuardrailConfigOperation.ts
  • src/api/types/AzurePromptShieldGuardrailConfig.ts
  • src/api/types/AzurePromptShieldGuardrailConfigAuthData.ts
  • src/api/types/AzureProviderAccount.ts
  • src/api/types/AzureReposIntegration.ts
  • src/api/types/AzureReposIntegrationAuthData.ts
  • src/api/types/AzureVault.ts
  • src/api/types/BaseOAuth2Login.ts
  • src/api/types/BaseOAuth2LoginJwtSource.ts
  • src/api/types/BaseRemoteAgent.ts
  • src/api/types/BaseService.ts
  • src/api/types/BaseServiceImage.ts
  • src/api/types/BaseServiceMountsItem.ts
  • src/api/types/BaseWorkbenchInput.ts
  • src/api/types/BaseWorkbenchInputMountsItem.ts
  • src/api/types/BasetenIntegrations.ts
  • src/api/types/BasetenModel.ts
  • src/api/types/BasetenProviderAccount.ts
  • src/api/types/BedrockMantleModel.ts
  • src/api/types/BedrockModel.ts
  • src/api/types/BitbucketDataCenterIntegration.ts
  • src/api/types/BitbucketIntegration.ts
  • src/api/types/BitbucketIntegrationAuthData.ts
  • src/api/types/BitbucketIntegrations.ts
  • src/api/types/BitbucketProviderAccount.ts
  • src/api/types/BlobStorageReference.ts
  • src/api/types/BudgetAlert.ts
  • src/api/types/BudgetConfig.ts
  • src/api/types/BudgetEntityUsage.ts
  • src/api/types/BudgetLimitUnit.ts
  • src/api/types/BudgetRule.ts
  • src/api/types/BudgetUsageEntry.ts
  • src/api/types/BudgetUsageEntryMode.ts
  • src/api/types/BudgetUsageEntryType.ts
  • src/api/types/BudgetUsageResponse.ts
  • src/api/types/BudgetV2Alert.ts
  • src/api/types/BudgetV2AppliesTo.ts
  • src/api/types/BudgetV2AppliesToMetadata.ts
  • src/api/types/BudgetV2AppliesToPerModel.ts
  • src/api/types/BudgetV2AppliesToPerUser.ts
  • src/api/types/BudgetV2AppliesToPerVirtualAccount.ts
  • src/api/types/BudgetV2InNotInFilter.ts
  • src/api/types/BudgetV2Limits.ts
  • src/api/types/BudgetV2OverrideLimits.ts
  • src/api/types/BudgetV2PerMetadataOverride.ts
  • src/api/types/BudgetV2PerModelOverride.ts
  • src/api/types/BudgetV2PerUserOverride.ts
  • src/api/types/BudgetV2PerVirtualAccountOverride.ts
  • src/api/types/BudgetV2SubjectsTeamScoped.ts
  • src/api/types/BudgetV2SubjectsTenantScoped.ts
  • src/api/types/BudgetV2WhenTeamScoped.ts
  • src/api/types/BudgetV2WhenTenantScoped.ts
  • src/api/types/Build.ts
  • src/api/types/BuildBuildSource.ts
  • src/api/types/BuildBuildSpec.ts
  • src/api/types/BuildInfo.ts
  • src/api/types/BuildStatus.ts
  • src/api/types/Canary.ts
  • src/api/types/CartesiaModel.ts
  • src/api/types/CartesiaProviderAccount.ts
  • src/api/types/CartesiaProviderAccountCartesiaVersion.ts
  • src/api/types/CedarGuardrailConfig.ts
  • src/api/types/CerebrasIntegrations.ts
  • src/api/types/CerebrasModel.ts
  • src/api/types/CerebrasProviderAccount.ts
  • src/api/types/ChangePasswordResponse.ts
  • src/api/types/ChatMessageTurn.ts
  • src/api/types/ChatPromptManifest.ts
  • src/api/types/ChatPromptManifestCacheConfig.ts
  • src/api/types/ChatPromptManifestMcpServersItem.ts
  • src/api/types/ChatPromptManifestResponseFormat.ts
  • src/api/types/ChatPromptManifestRoutingConfig.ts
  • src/api/types/CiscoAiDefenseGuardrailConfig.ts
  • src/api/types/CiscoAiDefenseGuardrailConfigConfig.ts
  • src/api/types/CiscoAiDefenseGuardrailConfigConfigRegion.ts
  • src/api/types/CiscoAiDefenseKeyAuth.ts
  • src/api/types/ClouderaIntegrations.ts
  • src/api/types/ClouderaModel.ts
  • src/api/types/ClouderaProviderAccount.ts
  • src/api/types/ClouderaProviderAccountAuthData.ts
  • src/api/types/Cluster.ts
  • src/api/types/ClusterGateway.ts
  • src/api/types/ClusterManifest.ts
  • src/api/types/ClusterManifestClusterType.ts
  • src/api/types/ClusterManifestWorkbenchConfig.ts
  • src/api/types/ClusterType.ts
  • src/api/types/CodeSafetyLinterGuardrailConfig.ts
  • src/api/types/Codeserver.ts
  • src/api/types/CohereIntegrations.ts
  • src/api/types/CohereModel.ts
  • src/api/types/CohereProviderAccount.ts
  • src/api/types/ComplexityBasedLoadBalanceTarget.ts
  • src/api/types/ComplexityBasedLoadBalanceTargetTier.ts
  • src/api/types/ComplexityBasedLoadBalancing.ts
  • src/api/types/ComplexityBasedLoadBalancingClassificationStrategy.ts
  • src/api/types/ComplexityStickyRouting.ts
  • src/api/types/Config.ts
  • src/api/types/ContainerTaskConfig.ts
  • src/api/types/ContainerTaskConfigImage.ts
  • src/api/types/ContainerTaskConfigMountsItem.ts
  • src/api/types/CoreNatsOutputConfig.ts
  • src/api/types/CreateRunResponse.ts
  • src/api/types/CrowdStrikeAidrGuardrailConfig.ts
  • src/api/types/CrowdStrikeAidrGuardrailConfigOperation.ts
  • src/api/types/CustomAgentServerAuth.ts
  • src/api/types/CustomBlobStorage.ts
  • src/api/types/CustomEndpoint.ts
  • src/api/types/CustomEndpointIntegrations.ts
  • src/api/types/CustomEndpointProviderAccount.ts
  • src/api/types/CustomEndpointProviderAccountEndpointType.ts
  • src/api/types/CustomEndpointProviderAccountRoutingType.ts
  • src/api/types/CustomGuardrailConfig.ts
  • src/api/types/CustomGuardrailConfigAuthData.ts
  • src/api/types/CustomGuardrailConfigOperation.ts
  • src/api/types/CustomGuardrailConfigTarget.ts
  • src/api/types/CustomHelmRepo.ts
  • src/api/types/CustomIntegrations.ts
  • src/api/types/CustomJwtAuthIntegration.ts
  • src/api/types/CustomProviderAccount.ts
  • src/api/types/CustomUsernamePasswordArtifactsRegistry.ts
  • src/api/types/DataAccessRule.ts
  • src/api/types/DataAccessRuleBase.ts
  • src/api/types/DataDirectory.ts
  • src/api/types/DataDirectoryManifest.ts
  • src/api/types/DataDirectoryManifestSource.ts
  • src/api/types/DatabricksIntegrations.ts
  • src/api/types/DatabricksJobTaskConfig.ts
  • src/api/types/DatabricksJobTaskConfigImage.ts
  • src/api/types/DatabricksModel.ts
  • src/api/types/DatabricksProviderAccount.ts
  • src/api/types/DatabricksProviderAccountAuthData.ts
  • src/api/types/DeactivateUserResponse.ts
  • src/api/types/DeepgramModel.ts
  • src/api/types/DeepgramProviderAccount.ts
  • src/api/types/DeepinfraIntegrations.ts
  • src/api/types/DeepinfraModel.ts
  • src/api/types/DeepinfraProviderAccount.ts
  • src/api/types/DeletePersonalAccessTokenResponse.ts
  • src/api/types/DeleteSecretGroupResponse.ts
  • src/api/types/DeleteTeamResponse.ts
  • src/api/types/DeleteUserResponse.ts
  • src/api/types/DeleteVirtualAccountResponse.ts
  • src/api/types/DeleteWorkspaceResponse.ts
  • src/api/types/Deployment.ts
  • src/api/types/DeploymentBuild.ts
  • src/api/types/DeploymentBuildStatus.ts
  • src/api/types/DeploymentManifest.ts
  • src/api/types/DeploymentStatus.ts
  • src/api/types/DeploymentStatusValue.ts
  • src/api/types/DeploymentTransition.ts
  • src/api/types/DeveloperMessage.ts
  • src/api/types/DeveloperMessageContent.ts
  • src/api/types/DockerFileBuild.ts
  • src/api/types/DockerFileBuildCommand.ts
  • src/api/types/DockerhubIntegrations.ts
  • src/api/types/DockerhubProviderAccount.ts
  • src/api/types/DockerhubRegistry.ts
  • src/api/types/ElevenLabsModel.ts
  • src/api/types/ElevenLabsProviderAccount.ts
  • src/api/types/EmailNotificationChannel.ts
  • src/api/types/EmptyResponse.ts
  • src/api/types/EnforcingStrategy.ts
  • src/api/types/EnkryptAiGuardrailConfig.ts
  • src/api/types/EnkryptAiGuardrailConfigOperation.ts
  • src/api/types/Environment.ts
  • src/api/types/EnvironmentManifest.ts
  • src/api/types/EnvironmentOptimizeFor.ts
  • src/api/types/Event.ts
  • src/api/types/EventChart.ts
  • src/api/types/EventChartCategory.ts
  • src/api/types/EventInvolvedObject.ts
  • src/api/types/ExternalIdentityProvider.ts
  • src/api/types/FiddlerGuardType.ts
  • src/api/types/FiddlerGuardrailConfig.ts
  • src/api/types/FiddlerGuardrailConfigConfig.ts
  • src/api/types/FileInfo.ts
  • src/api/types/FlyteLaunchPlan.ts
  • src/api/types/FlyteLaunchPlanSpec.ts
  • src/api/types/FlyteTask.ts
  • src/api/types/FlyteTaskCustom.ts
  • src/api/types/FlyteTaskCustomTruefoundry.ts
  • src/api/types/FlyteTaskTemplate.ts
  • src/api/types/FlyteWorkflow.ts
  • src/api/types/FlyteWorkflowTemplate.ts
  • src/api/types/GatewayBudget.ts
  • src/api/types/GatewayBudgetManifest.ts
  • src/api/types/GatewayConfig.ts
  • src/api/types/GatewayConfiguration.ts
  • src/api/types/GatewayDataAccessConfig.ts
  • src/api/types/GatewayDataCreatedByFilter.ts
  • src/api/types/GatewayDataCreatedByFilterOperator.ts
  • src/api/types/GatewayDataMetadataFilter.ts
  • src/api/types/GatewayDataMetadataFilterOperator.ts
  • src/api/types/GatewayDataRoutingConfig.ts
  • src/api/types/GatewayDataRoutingConfigDestination.ts
  • src/api/types/GatewayDataRoutingConfigDestinationCondition.ts
  • src/api/types/GatewayDataRoutingConfigDestinationControlPlaneManagedStorage.ts
  • src/api/types/GatewayDataRoutingConfigDestinationControlPlaneManagedStorageRegion.ts
  • src/api/types/GatewayDataRoutingConfigDestinationStorage.ts
  • src/api/types/GatewayDataRoutingConfigDestinationStorageStorage.ts
  • src/api/types/GatewayDataType.ts
  • src/api/types/GatewayInstallation.ts
  • src/api/types/GatewayLoggingConfig.ts
  • src/api/types/GatewayLoggingRule.ts
  • src/api/types/GatewayLoggingWhen.ts
  • src/api/types/GatewayMetadataConfig.ts
  • src/api/types/GatewayMetadataRule.ts
  • src/api/types/GatewayOtelConfig.ts
  • src/api/types/GatewayOtelConfigOtelMetricsExporterConfig.ts
  • src/api/types/GatewayOtelConfigOtelTracesExporterConfig.ts
  • src/api/types/GatewayRequestMetadataFilter.ts
  • src/api/types/GatewayRequestMetadataFilterOperator.ts
  • src/api/types/GatewayRequestMetadataFilterValue.ts
  • src/api/types/GcpGcr.ts
  • src/api/types/GcpGcs.ts
  • src/api/types/GcpGkeIntegration.ts
  • src/api/types/GcpGkeIntegrationLocation.ts
  • src/api/types/GcpGsm.ts
  • src/api/types/GcpIntegrations.ts
  • src/api/types/GcpKeyFileAuth.ts
  • src/api/types/GcpKeyFileAuthKeyFileContent.ts
  • src/api/types/GcpProviderAccount.ts
  • src/api/types/GcpRegion.ts
  • src/api/types/GeminiModel.ts
  • src/api/types/GenericSecretStoreIntegration.ts
  • src/api/types/GetAgentIdentityTokenResponse.ts
  • src/api/types/GetAgentResponse.ts
  • src/api/types/GetAgentSkillResponse.ts
  • src/api/types/GetAgentSkillVersionResponse.ts
  • src/api/types/GetAgentVersionResponse.ts
  • src/api/types/GetAlertsResponse.ts
  • src/api/types/GetApplicationDeploymentResponse.ts
  • src/api/types/GetApplicationResponse.ts
  • src/api/types/GetArtifactResponse.ts
  • src/api/types/GetArtifactVersionResponse.ts
  • src/api/types/GetAutoProvisioningStateResponse.ts
  • src/api/types/GetChartsResponse.ts
  • src/api/types/GetClusterResponse.ts
  • src/api/types/GetDataDirectoryResponse.ts
  • src/api/types/GetEnvironmentResponse.ts
  • src/api/types/GetEventsResponse.ts
  • src/api/types/GetJobRunResponse.ts
  • src/api/types/GetLogsResponse.ts
  • src/api/types/GetMetricHistoryResponse.ts
  • src/api/types/GetMlRepoResponse.ts
  • src/api/types/GetModelResponse.ts
  • src/api/types/GetModelVersionResponse.ts
  • src/api/types/GetOrCreatePersonalAccessTokenResponse.ts
  • src/api/types/GetPromptResponse.ts
  • src/api/types/GetPromptVersionResponse.ts
  • src/api/types/GetRunResponse.ts
  • src/api/types/GetSecretGroupResponse.ts
  • src/api/types/GetSecretResponse.ts
  • src/api/types/GetSignedUrLsRequest.ts
  • src/api/types/GetSignedUrLsResponse.ts
  • src/api/types/GetSuggestedDeploymentEndpointResponse.ts
  • src/api/types/GetTeamPermissionsResponse.ts
  • src/api/types/GetTeamResponse.ts
  • src/api/types/GetUserPermissionsResponse.ts
  • src/api/types/GetUserResourcesResponse.ts
  • src/api/types/GetUserResponse.ts
  • src/api/types/GetUserTeamsResponse.ts
  • src/api/types/GetVirtualAccountResponse.ts
  • src/api/types/GetWorkspaceResponse.ts
  • src/api/types/GitRepositoryExistsResponse.ts
  • src/api/types/GithubIntegration.ts
  • src/api/types/GithubIntegrationAuthData.ts
  • src/api/types/GithubProviderAccount.ts
  • src/api/types/GitlabIntegration.ts
  • src/api/types/GitlabIntegrationAuthData.ts
  • src/api/types/GitlabProviderAccount.ts
  • src/api/types/GlobalSettings.ts
  • src/api/types/GoogleGeminiProviderAccount.ts
  • src/api/types/GoogleModelArmorGuardrailConfig.ts
  • src/api/types/GoogleModelArmorGuardrailConfigAuthData.ts
  • src/api/types/GoogleModelArmorGuardrailConfigConfig.ts
  • src/api/types/GoogleModelArmorGuardrailConfigOperation.ts
  • src/api/types/GoogleModelArmorKeyFileAuth.ts
  • src/api/types/GoogleModelArmorKeyFileAuthKeyFileContent.ts
  • src/api/types/GoogleVertexProviderAccount.ts
  • src/api/types/GoogleVertexProviderAccountAuthData.ts
  • src/api/types/Graph.ts
  • src/api/types/GraphChartType.ts
  • src/api/types/GraySwanCygnalGuardrailConfig.ts
  • src/api/types/GraySwanCygnalGuardrailConfigConfig.ts
  • src/api/types/GraySwanCygnalGuardrailConfigConfigReasoningMode.ts
  • src/api/types/GroqIntegrations.ts
  • src/api/types/GroqModel.ts
  • src/api/types/GroqProviderAccount.ts
  • src/api/types/GuardrailConfigGroup.ts
  • src/api/types/GuardrailConfigIntegrations.ts
  • src/api/types/GuardrailsConfig.ts
  • src/api/types/GuardrailsRule.ts
  • src/api/types/GuardrailsWhen.ts
  • src/api/types/HashicorpAppRoleAuth.ts
  • src/api/types/HashicorpIntegrations.ts
  • src/api/types/HashicorpProviderAccount.ts
  • src/api/types/HashicorpVaultIntegration.ts
  • src/api/types/HashicorpVaultIntegrationAuthData.ts
  • src/api/types/HeaderRoutingConfig.ts
  • src/api/types/HealthProbe.ts
  • src/api/types/Helm.ts
  • src/api/types/HelmSource.ts
  • src/api/types/HeuristicClassificationStrategy.ts
  • src/api/types/HeuristicFallbackStrategy.ts
  • src/api/types/HttpError.ts
  • src/api/types/HttpErrorCode.ts
  • src/api/types/IChange.ts
  • src/api/types/IChangeOperation.ts
  • src/api/types/IChangeType.ts
  • src/api/types/IdentityProviderBackedIdentity.ts
  • src/api/types/IdentityProviderMapping.ts
  • src/api/types/Image.ts
  • src/api/types/ImageCommand.ts
  • src/api/types/ImageContentPart.ts
  • src/api/types/ImageContentPartImageUrl.ts
  • src/api/types/ImageContentPartImageUrlUrl.ts
  • src/api/types/InNotIn.ts
  • src/api/types/InNotInOperator.ts
  • src/api/types/InNotInOperatorCondition.ts
  • src/api/types/InferMethodName.ts
  • src/api/types/InfraProviderAccount.ts
  • src/api/types/InlineSpecSource.ts
  • src/api/types/InlineSpecSourceOpenapiSpec.ts
  • src/api/types/InputOutputBasedCostMetricValue.ts
  • src/api/types/Intercept.ts
  • src/api/types/InterceptRulesItem.ts
  • src/api/types/InterceptRulesItemAction.ts
  • src/api/types/InternalArtifactVersion.ts
  • src/api/types/InternalListArtifactVersionsResponse.ts
  • src/api/types/InternalListArtifactVersionsResponseDataItem.ts
  • src/api/types/InternalModelVersion.ts
  • src/api/types/JFrogIntegrations.ts
  • src/api/types/JfrogArtifactsRegistry.ts
  • src/api/types/JfrogProviderAccount.ts
  • src/api/types/Job.ts
  • src/api/types/JobAlert.ts
  • src/api/types/JobImage.ts
  • src/api/types/JobMountsItem.ts
  • src/api/types/JobRun.ts
  • src/api/types/JobRunStatus.ts
  • src/api/types/JobRunsSortBy.ts
  • src/api/types/JobTrigger.ts
  • src/api/types/JobTriggerInput.ts
  • src/api/types/JobTriggerInputCommand.ts
  • src/api/types/JsonSchemaResponseFormat.ts
  • src/api/types/Jwt.ts
  • src/api/types/JwtAuthConfig.ts
  • src/api/types/JwtTokenType.ts
  • src/api/types/KafkaInputConfig.ts
  • src/api/types/KafkaOutputConfig.ts
  • src/api/types/KeySpec.ts
  • src/api/types/KeyValueSpec.ts
  • src/api/types/LatencyBasedLoadBalanceTarget.ts
  • src/api/types/LatencyBasedLoadBalancing.ts
  • src/api/types/LatencyBasedLoadBalancingRule.ts
  • src/api/types/LegacyAgentManifest.ts
  • src/api/types/LibraryName.ts
  • src/api/types/ListAgentSkillVersionsResponse.ts
  • src/api/types/ListAgentSkillsResponse.ts
  • src/api/types/ListAgentVersionsResponse.ts
  • src/api/types/ListAgentsResponse.ts
  • src/api/types/ListApplicationDeploymentsResponse.ts
  • src/api/types/ListApplicationsResponse.ts
  • src/api/types/ListArtifactVersionsResponse.ts
  • src/api/types/ListArtifactsResponse.ts
  • src/api/types/ListBudgetsResponse.ts
  • src/api/types/ListClusterAddonsResponse.ts
  • src/api/types/ListClustersResponse.ts
  • src/api/types/ListDataDirectoriesResponse.ts
  • src/api/types/ListEnvironmentsResponse.ts
  • src/api/types/ListFilesRequest.ts
  • src/api/types/ListFilesResponse.ts
  • src/api/types/ListJobRunResponse.ts
  • src/api/types/ListMetricHistoryResponse.ts
  • src/api/types/ListMlReposResponse.ts
  • src/api/types/ListModelVersionsResponse.ts
  • src/api/types/ListModelsResponse.ts
  • src/api/types/ListPersonalAccessTokenResponse.ts
  • src/api/types/ListPromptVersionsResponse.ts
  • src/api/types/ListPromptsResponse.ts
  • src/api/types/ListSecretGroupResponse.ts
  • src/api/types/ListSecretsResponse.ts
  • src/api/types/ListTeamManagersResponse.ts
  • src/api/types/ListTeamMembersResponse.ts
  • src/api/types/ListTeamsResponse.ts
  • src/api/types/ListUsersResponse.ts
  • src/api/types/ListVirtualAccountResponse.ts
  • src/api/types/ListWorkspacesResponse.ts
  • src/api/types/LlmClassificationStrategy.ts
  • src/api/types/LlmClassificationStrategyFallbackStrategy.ts
  • src/api/types/LoadBalanceTarget.ts
  • src/api/types/LoadBalancingConfig.ts
  • src/api/types/LoadBalancingRule.ts
  • src/api/types/LocalArtifactSource.ts
  • src/api/types/Log.ts
  • src/api/types/LoggingMode.ts
  • src/api/types/LoggingWhen.ts
  • src/api/types/LogsResponse.ts
  • src/api/types/LogsSearchFilterType.ts
  • src/api/types/LogsSearchOperatorType.ts
  • src/api/types/LogsSortingDirection.ts
  • src/api/types/McpServer.ts
  • src/api/types/McpServerAuth.ts
  • src/api/types/McpServerAuthStatusInfo.ts
  • src/api/types/McpServerAuthStatusInfoMethod.ts
  • src/api/types/McpServerAuthStatusInfoStatus.ts
  • src/api/types/McpServerEnvAuth.ts
  • src/api/types/McpServerEnvAuthAuthLevel.ts
  • src/api/types/McpServerHeaderAuth.ts
  • src/api/types/McpServerHeaderAuthAuthLevel.ts
  • src/api/types/McpServerIntegration.ts
  • src/api/types/McpServerIntegrationTransport.ts
  • src/api/types/McpServerIntegrations.ts
  • src/api/types/McpServerManifest.ts
  • src/api/types/McpServerOAuth2.ts
  • src/api/types/McpServerOAuth2GrantType.ts
  • src/api/types/McpServerOAuth2JwtSource.ts
  • src/api/types/McpServerOAuth2Provider.ts
  • src/api/types/McpServerOAuth2ProviderOktaIdJagSettings.ts
  • src/api/types/McpServerOAuth2ProviderOktaSettings.ts
  • src/api/types/McpServerProviderAccount.ts
  • src/api/types/McpServerSource.ts
  • src/api/types/McpServerWithFqn.ts
  • src/api/types/McpServerWithUrl.ts
  • src/api/types/McpToolSetting.ts
  • src/api/types/McpToolsOperator.ts
  • src/api/types/McpToolsOperatorCondition.ts
  • src/api/types/Metadata.ts
  • src/api/types/Metric.ts
  • src/api/types/MetricCollection.ts
  • src/api/types/MimeType.ts
  • src/api/types/MistralAiIntegrations.ts
  • src/api/types/MistralAiModel.ts
  • src/api/types/MistralAiProviderAccount.ts
  • src/api/types/MlRepo.ts
  • src/api/types/MlRepoManifest.ts
  • src/api/types/Model.ts
  • src/api/types/ModelConfiguration.ts
  • src/api/types/ModelCostMetric.ts
  • src/api/types/ModelManifest.ts
  • src/api/types/ModelManifestFramework.ts
  • src/api/types/ModelManifestSource.ts
  • src/api/types/ModelProviderAccount.ts
  • src/api/types/ModelType.ts
  • src/api/types/ModelVersion.ts
  • src/api/types/MsTeamsIntegrations.ts
  • src/api/types/MsTeamsProviderAccount.ts
  • src/api/types/MsTeamsWebhookIntegration.ts
  • src/api/types/MultiPartUpload.ts
  • src/api/types/MultiPartUploadResponse.ts
  • src/api/types/MultiPartUploadStorageProvider.ts
  • src/api/types/NativeSnowflakeFlyteTaskTemplate.ts
  • src/api/types/NatsInputConfig.ts
  • src/api/types/NatsOutputConfig.ts
  • src/api/types/NodeSelector.ts
  • src/api/types/NodeSelectorCapacityType.ts
  • src/api/types/NomaSecurityApiKeyAuth.ts
  • src/api/types/NomaSecurityGuardrailConfig.ts
  • src/api/types/NomaSecurityGuardrailConfigConfig.ts
  • src/api/types/NomicIntegrations.ts
  • src/api/types/NomicModel.ts
  • src/api/types/NomicProviderAccount.ts
  • src/api/types/Notebook.ts
  • src/api/types/NotificationTarget.ts
  • src/api/types/NotificationTargetForAlertRule.ts
  • src/api/types/NvidiaMiggpu.ts
  • src/api/types/NvidiaMiggpuProfile.ts
  • src/api/types/OAuth2LoginProvider.ts
  • src/api/types/OcrCostMetric.ts
  • src/api/types/OcrCostMetricValue.ts
  • src/api/types/OllamaIntegrations.ts
  • src/api/types/OllamaModel.ts
  • src/api/types/OllamaProviderAccount.ts
  • src/api/types/OpaAuth.ts
  • src/api/types/OpaGuardrailConfig.ts
  • src/api/types/OpenAiIntegrations.ts
  • src/api/types/OpenAiModel.ts
  • src/api/types/OpenAiModerationsGuardrailConfig.ts
  • src/api/types/OpenApiSpecSource.ts
  • src/api/types/OpenApimcpServerManifest.ts
  • src/api/types/OpenApimcpToolSetting.ts
  • src/api/types/OpenApimcpToolSettingMethod.ts
  • src/api/types/OpenRouterIntegrations.ts
  • src/api/types/OpenRouterModel.ts
  • src/api/types/OpenRouterProviderAccount.ts
  • src/api/types/OpenaiProviderAccount.ts
  • src/api/types/Operation.ts
  • src/api/types/OtelExporterHttpConfigBase.ts
  • src/api/types/OtelExporterHttpConfigBaseEncoding.ts
  • src/api/types/OtelMetricsExporterGrpcConfig.ts
  • src/api/types/OtelMetricsExporterHttpConfig.ts
  • src/api/types/OtelTracesExporterCommonConfig.ts
  • src/api/types/OtelTracesExporterGrpcConfig.ts
  • src/api/types/OtelTracesExporterHttpConfig.ts
  • src/api/types/OwnDataAccessRule.ts
  • src/api/types/PagerDutyIntegration.ts
  • src/api/types/PagerDutyIntegrations.ts
  • src/api/types/PagerDutyProviderAccount.ts
  • src/api/types/Pagination.ts
  • src/api/types/PalmIntegrations.ts
  • src/api/types/PalmModel.ts
  • src/api/types/PalmProviderAccount.ts
  • src/api/types/PaloAltoPrismaAirsGuardrailConfig.ts
  • src/api/types/PaloAltoPrismaAirsGuardrailConfigConfig.ts
  • src/api/types/PaloAltoPrismaAirsGuardrailConfigConfigMode.ts
  • src/api/types/Param.ts
  • src/api/types/ParamParamType.ts
  • src/api/types/Parameters.ts
  • src/api/types/ParametersStop.ts
  • src/api/types/PatronusAnswerRelevanceEvaluator.ts
  • src/api/types/PatronusEvaluator.ts
  • src/api/types/PatronusGliderCriteria.ts
  • src/api/types/PatronusGliderEvaluator.ts
  • src/api/types/PatronusGuardrailConfig.ts
  • src/api/types/PatronusGuardrailConfigConfig.ts
  • src/api/types/PatronusGuardrailConfigConfigTarget.ts
  • src/api/types/PatronusJudgeCriteria.ts
  • src/api/types/PatronusJudgeEvaluator.ts
  • src/api/types/PatronusPhiEvaluator.ts
  • src/api/types/PatronusPiiEvaluator.ts
  • src/api/types/PatronusToxicityEvaluator.ts
  • src/api/types/PerMillionCharactersCostMetric.ts
  • src/api/types/PerMillionCharactersCostMetricValue.ts
  • src/api/types/PerMinuteOfAudioCostMetric.ts
  • src/api/types/PerMinuteOfAudioCostMetricValue.ts
  • src/api/types/PerThousandEmbeddingTokensCostMetric.ts
  • src/api/types/PerThousandTokensCostMetric.ts
  • src/api/types/PeriodUsage.ts
  • src/api/types/PermissionSetV2.ts
  • src/api/types/PermissionSetV2ResourceType.ts
  • src/api/types/PerplexityAiModel.ts
  • src/api/types/PerplexityAiProviderAccount.ts
  • src/api/types/PerplexityIntegrations.ts
  • src/api/types/PersonalAccessTokenManifest.ts
  • src/api/types/PersonalAccessTokenManifestTokenType.ts
  • src/api/types/Policy.ts
  • src/api/types/PolicyEntityTypes.ts
  • src/api/types/PolicyManifest.ts
  • src/api/types/PolicyManifestMode.ts
  • src/api/types/PolicyManifestOperation.ts
  • src/api/types/PolicyVersion.ts
  • src/api/types/Port.ts
  • src/api/types/PortAppProtocol.ts
  • src/api/types/PortAuth.ts
  • src/api/types/PortProtocol.ts
  • src/api/types/PresetRegexPattern.ts
  • src/api/types/PresetRegexPatternEnum.ts
  • src/api/types/PresignedUrlObject.ts
  • src/api/types/PriorityBasedLoadBalanceTarget.ts
  • src/api/types/PriorityBasedLoadBalancing.ts
  • src/api/types/PriorityBasedLoadBalancingRule.ts
  • src/api/types/PrivatePricingTier.ts
  • src/api/types/PrometheusAlertRule.ts
  • src/api/types/Prompt.ts
  • src/api/types/PromptSource.ts
  • src/api/types/PromptVersion.ts
  • src/api/types/ProviderAccount.ts
  • src/api/types/ProviderAccountProvider.ts
  • src/api/types/ProviderAccounts.ts
  • src/api/types/ProviderIntegration.ts
  • src/api/types/ProviderIntegrationType.ts
  • src/api/types/PySparkTaskConfig.ts
  • src/api/types/PySparkTaskConfigImage.ts
  • src/api/types/PythonBuild.ts
  • src/api/types/PythonBuildCommand.ts
  • src/api/types/PythonBuildPythonDependencies.ts
  • src/api/types/PythonTaskConfig.ts
  • src/api/types/PythonTaskConfigImage.ts
  • src/api/types/PythonTaskConfigMountsItem.ts
  • src/api/types/QuayArtifactsRegistry.ts
  • src/api/types/QuayIntegrations.ts
  • src/api/types/QuayProviderAccount.ts
  • src/api/types/QuerySpansResponse.ts
  • src/api/types/RStudio.ts
  • src/api/types/RateLimitConfig.ts
  • src/api/types/RateLimitRule.ts
  • src/api/types/RateLimitUnit.ts
  • src/api/types/Recommendation.ts
  • src/api/types/Redaction.ts
  • src/api/types/RegexGuardrailConfig.ts
  • src/api/types/RegexGuardrailConfigConfig.ts
  • src/api/types/RegexGuardrailConfigOperation.ts
  • src/api/types/RegisterUsersResponse.ts
  • src/api/types/RemoteAgent.ts
  • src/api/types/RemoteMcpServerManifest.ts
  • src/api/types/ResourceType.ts
  • src/api/types/Resources.ts
  • src/api/types/ResourcesDevicesItem.ts
  • src/api/types/ResourcesNode.ts
  • src/api/types/ResponseFormatJsonSchema.ts
  • src/api/types/RevokeAllPersonalAccessTokenResponse.ts
  • src/api/types/Role.ts
  • src/api/types/RoleBinding.ts
  • src/api/types/RoleBindingManifest.ts
  • src/api/types/RoleBindingSubject.ts
  • src/api/types/RoleBindingSubjectType.ts
  • src/api/types/RoleResourceType.ts
  • src/api/types/RoleWithResource.ts
  • src/api/types/RoleWithResourceResourceType.ts
  • src/api/types/Run.ts
  • src/api/types/RunData.ts
  • src/api/types/RunInfo.ts
  • src/api/types/SagemakerAssumedRoleBasedAuth.ts
  • src/api/types/SagemakerModel.ts
  • src/api/types/SambaNovaIntegrations.ts
  • src/api/types/SambaNovaModel.ts
  • src/api/types/SambaNovaProviderAccount.ts
  • src/api/types/Schedule.ts
  • src/api/types/ScheduleConcurrencyPolicy.ts
  • src/api/types/SearchRunsResponse.ts
  • src/api/types/Secret.ts
  • src/api/types/SecretDetectionGuardrailConfig.ts
  • src/api/types/SecretDetectionGuardrailConfigOperation.ts
  • src/api/types/SecretGroup.ts
  • src/api/types/SecretGroupManifest.ts
  • src/api/types/SecretVersion.ts
  • src/api/types/SelfHostedAgent.ts
  • src/api/types/SelfHostedModel.ts
  • src/api/types/SelfHostedModelAuthData.ts
  • src/api/types/SelfHostedModelIntegrations.ts
  • src/api/types/SelfHostedModelModelServer.ts
  • src/api/types/SelfHostedModelProviderAccount.ts
  • src/api/types/Service.ts
  • src/api/types/ServiceAutoscaling.ts
  • src/api/types/ServiceAutoscalingMetrics.ts
  • src/api/types/ServiceReplicas.ts
  • src/api/types/ServiceRolloutStrategy.ts
  • src/api/types/Session.ts
  • src/api/types/SessionActor.ts
  • src/api/types/Settings.ts
  • src/api/types/SklearnFramework.ts
  • src/api/types/SklearnModelSchema.ts
  • src/api/types/SklearnSerializationFormat.ts
  • src/api/types/SlackBotIntegration.ts
  • src/api/types/SlackIntegrations.ts
  • src/api/types/SlackProviderAccount.ts
  • src/api/types/SlackWebhookIntegration.ts
  • src/api/types/SmallestAiModel.ts
  • src/api/types/SmallestAiProviderAccount.ts
  • src/api/types/SnowflakeCortexIntegrations.ts
  • src/api/types/SnowflakeCortexModel.ts
  • src/api/types/SnowflakeCortexProviderAccount.ts
  • src/api/types/SortDirection.ts
  • src/api/types/SpanAttributeFilter.ts
  • src/api/types/SpanAttributeFilterOperator.ts
  • src/api/types/SpanAttributeFilterValue.ts
  • src/api/types/SpanFieldFilter.ts
  • src/api/types/SpanFieldFilterOperator.ts
  • src/api/types/SpanFieldFilterSpanFieldName.ts
  • src/api/types/SpanFieldFilterValue.ts
  • src/api/types/SparkDriverConfig.ts
  • src/api/types/SparkExecutorConfig.ts
  • src/api/types/SparkExecutorConfigInstances.ts
  • src/api/types/SparkImageBuild.ts
  • src/api/types/SparkImageBuildBuildSource.ts
  • src/api/types/SparkJob.ts
  • src/api/types/SparkJobEntrypoint.ts
  • src/api/types/SparkJobImage.ts
  • src/api/types/SparkJobTrigger.ts
  • src/api/types/SparkJobTriggerInput.ts
  • src/api/types/SqlSanitizerGuardrailConfig.ts
  • src/api/types/SqlSanitizerGuardrailConfigOperation.ts
  • src/api/types/SqsInputConfig.ts
  • src/api/types/SqsOutputConfig.ts
  • src/api/types/SqsQueueMetricConfig.ts
  • src/api/types/SqsQueueMetricConfigAuth.ts
  • src/api/types/SshServer.ts
  • src/api/types/StaticFallbackStrategy.ts
  • src/api/types/StaticFallbackStrategyDefaultTier.ts
  • src/api/types/StdioMcpServerManifest.ts
  • src/api/types/StickyRouting.ts
  • src/api/types/StickySessionIdentifier.ts
  • src/api/types/StickySessionIdentifierSource.ts
  • src/api/types/Subject.ts
  • src/api/types/SubjectClause.ts
  • src/api/types/SubjectConditionGroup.ts
  • src/api/types/SubjectConditionGroupOperator.ts
  • src/api/types/SubjectPermission.ts
  • src/api/types/SubjectSubjectType.ts
  • src/api/types/SubjectType.ts
  • src/api/types/SyncTokenInSecretStoreInfo.ts
  • src/api/types/SyncVirtualAccountTokenResponse.ts
  • src/api/types/SystemMessage.ts
  • src/api/types/SystemMessageContent.ts
  • src/api/types/TargetClause.ts
  • src/api/types/TargetConditionGroup.ts
  • src/api/types/TaskSparkImage.ts
  • src/api/types/Team.ts
  • src/api/types/TeamBudgetConfig.ts
  • src/api/types/TeamBudgetConfigMode.ts
  • src/api/types/TeamDataAccessRule.ts
  • src/api/types/TeamManifest.ts
  • src/api/types/TeamMetadata.ts
  • src/api/types/TeamSubjectRow.ts
  • src/api/types/TenantBudgetConfig.ts
  • src/api/types/TenantBudgetConfigMode.ts
  • src/api/types/TerminateJobResponse.ts
  • src/api/types/TextContentPart.ts
  • src/api/types/TextContentPartText.ts
  • src/api/types/TfyContentModerationGuardrailConfig.ts
  • src/api/types/TfyContentModerationGuardrailConfigConfig.ts
  • src/api/types/TfyManagedMcpServerManifest.ts
  • src/api/types/TfyMetadataGuardrailConfig.ts
  • src/api/types/TfyMetadataGuardrailConfigConfig.ts
  • src/api/types/TfyPiiGuardrailConfig.ts
  • src/api/types/TfyPiiGuardrailConfigConfig.ts
  • src/api/types/TfyPiiGuardrailConfigOperation.ts
  • src/api/types/TfyPromptInjectionGuardrailConfig.ts
  • src/api/types/TogetherAiIntegrations.ts
  • src/api/types/TogetherAiModel.ts
  • src/api/types/TogetherAiProviderAccount.ts
  • src/api/types/TokenPagination.ts
  • src/api/types/ToolCall.ts
  • src/api/types/ToolMessage.ts
  • src/api/types/ToolMessageContent.ts
  • src/api/types/ToolSchema.ts
  • src/api/types/TraceSpan.ts
  • src/api/types/TracingProject.ts
  • src/api/types/TracingProjectManifest.ts
  • src/api/types/TracingProjectStorageConfig.ts
  • src/api/types/TransformersFramework.ts
  • src/api/types/TriggerJobRunResponse.ts
  • src/api/types/TrojAiGuardrailConfig.ts
  • src/api/types/TrojAiGuardrailConfigOperation.ts
  • src/api/types/TrueFoundryAgentConfig.ts
  • src/api/types/TrueFoundryAgentContextManagementConfig.ts
  • src/api/types/TrueFoundryAgentGitSourceSkill.ts
  • src/api/types/TrueFoundryAgentManifest.ts
  • src/api/types/TrueFoundryAgentMcpServer.ts
  • src/api/types/TrueFoundryAgentMcpServerInline.ts
  • src/api/types/TrueFoundryAgentMcpServerRegistry.ts
  • src/api/types/TrueFoundryAgentModel.ts
  • src/api/types/TrueFoundryAgentResponseFormat.ts
  • src/api/types/TrueFoundryAgentSandboxAuthData.ts
  • src/api/types/TrueFoundryAgentSandboxAuthInject.ts
  • src/api/types/TrueFoundryAgentSandboxAuthInjectMatch.ts
  • src/api/types/TrueFoundryAgentSandboxBasicAuthData.ts
  • src/api/types/TrueFoundryAgentSandboxConfig.ts
  • src/api/types/TrueFoundryAgentSandboxGitAuthInject.ts
  • src/api/types/TrueFoundryAgentSandboxNetworkPolicy.ts
  • src/api/types/TrueFoundryAgentSkill.ts
  • src/api/types/TrueFoundryAgentTrueFoundrySkill.ts
  • src/api/types/TrueFoundryAgentUserMessage.ts
  • src/api/types/TrueFoundryApplyRequestManifest.ts
  • src/api/types/TrueFoundryApplyResponse.ts
  • src/api/types/TrueFoundryApplyResponseAction.ts
  • src/api/types/TrueFoundryApplyResponseData.ts
  • src/api/types/TrueFoundryApplyResponseExistingManifest.ts
  • src/api/types/TrueFoundryDeleteRequestManifest.ts
  • src/api/types/TrueFoundryDeleteResponse.ts
  • src/api/types/TrueFoundryIntegrations.ts
  • src/api/types/TrueFoundryProviderAccount.ts
  • src/api/types/TruefoundryBackedIdentity.ts
  • src/api/types/TruefoundryFlyteTaskTemplate.ts
  • src/api/types/TtlIntegrations.ts
  • src/api/types/TtlProviderAccount.ts
  • src/api/types/UpdateRunResponse.ts
  • src/api/types/UpdateSecretInput.ts
  • src/api/types/UpdateUserRolesResponse.ts
  • src/api/types/UpgradeData.ts
  • src/api/types/UsageCodeSnippet.ts
  • src/api/types/User.ts
  • src/api/types/UserMessage.ts
  • src/api/types/UserMessageContent.ts
  • src/api/types/UserMessageContentOneItem.ts
  • src/api/types/UserMetadata.ts
  • src/api/types/UserMetadataTenantRoleManagedBy.ts
  • src/api/types/UserResource.ts
  • src/api/types/ValueConstraint.ts
  • src/api/types/VertexKeyFileAuth.ts
  • src/api/types/VertexKeyFileAuthKeyFileContent.ts
  • src/api/types/VertexModel.ts
  • src/api/types/VertexRegion.ts
  • src/api/types/VertexWifFileAuth.ts
  • src/api/types/VertexWifFileAuthKeyFileContent.ts
  • src/api/types/VirtualAccount.ts
  • src/api/types/VirtualAccountManifest.ts
  • src/api/types/VirtualAccountManifestTokenType.ts
  • src/api/types/VirtualMcpServerIntegration.ts
  • src/api/types/VirtualMcpServerManifest.ts
  • src/api/types/VirtualMcpServerSource.ts
  • src/api/types/VirtualModel.ts
  • src/api/types/VirtualModelModelType.ts
  • src/api/types/VirtualModelProviderAccount.ts
  • src/api/types/Volume.ts
  • src/api/types/VolumeBrowser.ts
  • src/api/types/VolumeConfig.ts
  • src/api/types/WaferIntegrations.ts
  • src/api/types/WaferModel.ts
  • src/api/types/WaferProviderAccount.ts
  • src/api/types/WebhookIntegration.ts
  • src/api/types/WebhookIntegrationAuthData.ts
  • src/api/types/WebhookIntegrations.ts
  • src/api/types/WebhookProviderAccount.ts
  • src/api/types/WeightBasedLoadBalancing.ts
  • src/api/types/WeightBasedLoadBalancingRule.ts
  • src/api/types/WorkerConfig.ts
  • src/api/types/WorkerConfigInputConfig.ts
  • src/api/types/WorkerConfigOutputConfig.ts
  • src/api/types/Workflow.ts
  • src/api/types/WorkflowAlert.ts
  • src/api/types/WorkflowFlyteEntitiesItem.ts
  • src/api/types/WorkflowSource.ts
  • src/api/types/Workspace.ts
  • src/api/types/WorkspaceManifest.ts
  • src/api/types/XaiIntegrations.ts
  • src/api/types/XaiModel.ts
  • src/api/types/XaiProviderAccount.ts
  • src/api/types/XgBoostFramework.ts
  • src/api/types/XgBoostSerializationFormat.ts
  • src/api/types/index.ts
  • src/auth/BearerAuthProvider.ts
  • src/core/fetcher/Fetcher.ts
  • src/core/fetcher/Headers.ts
  • src/core/fetcher/createRequestUrl.ts
  • src/core/fetcher/getFetchFn.ts
  • src/core/fetcher/getResponseBody.ts
  • src/core/fetcher/makePassthroughRequest.ts
  • src/core/fetcher/redactUrl.ts
  • src/core/fetcher/requestWithRetries.ts
  • src/core/headers.ts
  • src/core/requestBody.ts
  • src/core/runtime/index.ts
  • src/core/runtime/runtime.ts
  • src/core/schemas/builders/object-like/getObjectLikeUtils.ts
  • src/core/schemas/builders/record/record.ts
  • src/core/url/QueryStringBuilder.ts
  • src/core/url/index.ts
  • src/errors/TrueFoundryError.ts
  • src/errors/TrueFoundryTimeoutError.ts
  • src/errors/handleNonStatusCodeError.ts
  • src/serialization/client/requests/TrueFoundryApplyRequest.ts
  • src/serialization/client/requests/TrueFoundryDeleteRequest.ts
  • src/serialization/resources/agentSkills/client/requests/ApplyAgentSkillRequest.ts
  • src/serialization/resources/agents/client/requests/CreateOrUpdateAgentRequest.ts
  • src/serialization/resources/agents/types/AgentsListRequestType.ts
  • src/serialization/resources/agents/types/ListAgentsRequestType.ts
  • src/serialization/resources/agents/types/index.ts
  • src/serialization/resources/applications/client/requests/CreateDeploymentRequest.ts
  • src/serialization/resources/applications/types/ApplicationsCancelDeploymentResponse.ts
  • src/serialization/resources/applications/types/ApplicationsListRequestDeviceTypeFilter.ts
  • src/serialization/resources/applications/types/ApplicationsListRequestLifecycleStage.ts
  • src/serialization/resources/applications/types/CancelDeploymentApplicationsResponse.ts
  • src/serialization/resources/applications/types/ListApplicationsRequestDeviceTypeFilter.ts
  • src/serialization/resources/applications/types/ListApplicationsRequestLifecycleStage.ts
  • src/serialization/resources/applications/types/index.ts
  • src/serialization/resources/artifactVersions/client/requests/ApplyArtifactVersionTagsRequest.ts
  • src/serialization/resources/artifactVersions/client/requests/MarkStageArtifactFailureRequest.ts
  • src/serialization/resources/artifactVersions/client/requests/StageArtifactRequest.ts
  • src/serialization/resources/artifactVersions/types/StageArtifactRequestManifest.ts
  • src/serialization/resources/artifacts/client/requests/ApplyArtifactRequest.ts
  • src/serialization/resources/clusters/client/requests/CreateOrUpdateClusterRequest.ts
  • src/serialization/resources/dataDirectories/client/requests/ApplyDataDirectoryRequest.ts
  • src/serialization/resources/dataDirectories/client/requests/DeleteFilesRequest.ts
  • src/serialization/resources/environments/client/delete.ts
  • src/serialization/resources/environments/client/requests/CreateOrUpdateEnvironmentRequest.ts
  • src/serialization/resources/gatewayBudgets/client/index.ts
  • src/serialization/resources/gatewayBudgets/client/requests/CreateOrUpdateBudgetRequest.ts
  • src/serialization/resources/gatewayBudgets/client/requests/SimulateBudgetRequest.ts
  • src/serialization/resources/gatewayBudgets/client/requests/index.ts
  • src/serialization/resources/gatewayBudgets/index.ts
  • src/serialization/resources/gatewayBudgets/types/CreateOrUpdateBudgetRequestManifest.ts
  • src/serialization/resources/gatewayBudgets/types/ListGatewayBudgetsRequestType.ts
  • src/serialization/resources/gatewayBudgets/types/index.ts
  • src/serialization/resources/index.ts
  • src/serialization/resources/internal/client/getIdFromFqn.ts
  • src/serialization/resources/internal/resources/aiGateway/types/AiGatewayGetGatewayConfigRequestType.ts
  • src/serialization/resources/internal/resources/aiGateway/types/GetGatewayConfigAiGatewayRequestType.ts
  • src/serialization/resources/internal/resources/aiGateway/types/index.ts
  • src/serialization/resources/internal/resources/applications/client/getPodTemplateHashToDeploymentVersion.ts
  • src/serialization/resources/internal/resources/deployments/client/getBuilds.ts
  • src/serialization/resources/internal/resources/deployments/client/getDeploymentStatuses.ts
  • src/serialization/resources/internal/resources/deployments/client/requests/GenerateCodeUploadPresignedUrlRequest.ts
  • src/serialization/resources/internal/resources/dockerRegistries/client/requests/CreateDockerRepositoryRequest.ts
  • src/serialization/resources/internal/resources/index.ts
  • src/serialization/resources/internal/resources/metrics/types/GetChartsMetricsRequestFilterEntity.ts
  • src/serialization/resources/internal/resources/metrics/types/MetricsGetChartsRequestFilterEntity.ts
  • src/serialization/resources/internal/resources/metrics/types/index.ts
  • src/serialization/resources/internal/resources/vcs/client/requests/GetAuthenticatedVcsurlRequest.ts
  • src/serialization/resources/internal/resources/vcs/client/requests/GitRepositoryExistsRequest.ts
  • src/serialization/resources/internal/resources/workflows/client/requests/ExecuteWorkflowRequest.ts
  • src/serialization/resources/internal/resources/workflows/types/ExecuteWorkflowWorkflowsResponse.ts
  • src/serialization/resources/internal/resources/workflows/types/WorkflowsExecuteWorkflowResponse.ts
  • src/serialization/resources/internal/resources/workflows/types/index.ts
  • src/serialization/resources/jobs/client/requests/TriggerJobRequest.ts
  • src/serialization/resources/jobs/types/TriggerJobRequestInput.ts
  • src/serialization/resources/mlRepos/client/requests/ApplyMlRepoRequest.ts
  • src/serialization/resources/modelVersions/client/requests/ApplyModelVersionTagsRequest.ts
  • src/serialization/resources/models/client/requests/ApplyModelRequest.ts
  • src/serialization/resources/personalAccessTokens/client/requests/CreatePersonalAccessTokenRequest.ts
  • src/serialization/resources/personalAccessTokens/client/requests/RevokeAllPersonalAccessTokenRequest.ts
  • src/serialization/resources/personalAccessTokens/types/CreatePersonalAccessTokenRequestTokenType.ts
  • src/serialization/resources/promptVersions/client/requests/ApplyPromptVersionTagsRequest.ts
  • src/serialization/resources/prompts/client/requests/ApplyPromptRequest.ts
  • src/serialization/resources/runs/client/requests/CreateRunRequest.ts
  • src/serialization/resources/runs/client/requests/DeleteTagRequest.ts
  • src/serialization/resources/runs/client/requests/ListMetricHistoryRequest.ts
  • src/serialization/resources/runs/client/requests/LogBatchRequest.ts
  • src/serialization/resources/runs/client/requests/LogMetricRequest.ts
  • src/serialization/resources/runs/client/requests/LogParamRequest.ts
  • src/serialization/resources/runs/client/requests/SearchRunsRequest.ts
  • src/serialization/resources/runs/client/requests/SetTagRequest.ts
  • src/serialization/resources/runs/client/requests/UpdateRunRequest.ts
  • src/serialization/resources/secretGroups/client/requests/CreateOrUpdateSecretGroupRequest.ts
  • src/serialization/resources/secretGroups/client/requests/CreateSecretGroupRequest.ts
  • src/serialization/resources/secretGroups/client/requests/UpdateSecretGroupRequest.ts
  • src/serialization/resources/secrets/client/delete.ts
  • src/serialization/resources/secrets/client/requests/ListSecretsRequest.ts
  • src/serialization/resources/teams/client/requests/ApplyTeamRequest.ts
  • src/serialization/resources/traces/client/requests/QuerySpansRequest.ts
  • src/serialization/resources/traces/types/QuerySpansRequestFiltersItem.ts
  • src/serialization/resources/users/client/requests/ActivateUserRequest.ts
  • src/serialization/resources/users/client/requests/ChangePasswordRequest.ts
  • src/serialization/resources/users/client/requests/DeactivateUserRequest.ts
  • src/serialization/resources/users/client/requests/InviteUserRequest.ts
  • src/serialization/resources/users/client/requests/RegisterUsersRequest.ts
  • src/serialization/resources/users/client/requests/UpdateUserRolesRequest.ts
  • src/serialization/resources/users/index.ts
  • src/serialization/resources/users/types/UpdateUserRolesRequestResourceType.ts
  • src/serialization/resources/users/types/index.ts
  • src/serialization/resources/virtualAccounts/client/requests/ApplyVirtualAccountRequest.ts
  • src/serialization/resources/virtualAccounts/client/requests/RegenerateVirtualAccountTokenRequest.ts
  • src/serialization/resources/workspaces/client/requests/CreateOrUpdateWorkspaceRequest.ts
  • src/serialization/types/A2AAgentSkill.ts
  • src/serialization/types/A2AFramework.ts
  • src/serialization/types/Account.ts
  • src/serialization/types/AccountInfo.ts
  • src/serialization/types/ActivateUserResponse.ts
  • src/serialization/types/AddOnComponentSource.ts
  • src/serialization/types/AddonComponent.ts
  • src/serialization/types/AddonComponentName.ts
  • src/serialization/types/AddonComponentStatus.ts
  • src/serialization/types/Agent.ts
  • src/serialization/types/AgentChannel.ts
  • src/serialization/types/AgentChannelAgent.ts
  • src/serialization/types/AgentChannelConfig.ts
  • src/serialization/types/AgentChannelManifest.ts
  • src/serialization/types/AgentChannelSlackAuth.ts
  • src/serialization/types/AgentChannelSlackBotTokenAuth.ts
  • src/serialization/types/AgentChannelSlackConfig.ts
  • src/serialization/types/AgentFramework.ts
  • src/serialization/types/AgentIdentity.ts
  • src/serialization/types/AgentIdentityAutoRotate.ts
  • src/serialization/types/AgentIdentityConfig.ts
  • src/serialization/types/AgentIdentityManifest.ts
  • src/serialization/types/AgentIdentityOwnedBy.ts
  • src/serialization/types/AgentIdentityProviderMapping.ts
  • src/serialization/types/AgentIdentitySecretStoreConfig.ts
  • src/serialization/types/AgentManifest.ts
  • src/serialization/types/AgentSkill.ts
  • src/serialization/types/AgentSkillManifest.ts
  • src/serialization/types/AgentSkillManifestSource.ts
  • src/serialization/types/AgentSkillSourceBlobStorage.ts
  • src/serialization/types/AgentSkillSourceInline.ts
  • src/serialization/types/AgentSkillSourceLocal.ts
  • src/serialization/types/AgentSkillVersion.ts
  • src/serialization/types/AgentSource.ts
  • src/serialization/types/AgentVersion.ts
  • src/serialization/types/AgentVersionMetadata.ts
  • src/serialization/types/Ai21Integrations.ts
  • src/serialization/types/Ai21KeyAuth.ts
  • src/serialization/types/Ai21Model.ts
  • src/serialization/types/Ai21ProviderAccount.ts
  • src/serialization/types/AiFeaturesSettings.ts
  • src/serialization/types/AktoGuardrailConfig.ts
  • src/serialization/types/AktoGuardrailConfigConfig.ts
  • src/serialization/types/AktoTokenAuth.ts
  • src/serialization/types/Alert.ts
  • src/serialization/types/AlertConfig.ts
  • src/serialization/types/AlertConfigEntity.ts
  • src/serialization/types/AlertConfigResource.ts
  • src/serialization/types/AlertConfigResourceType.ts
  • src/serialization/types/AlertSeverity.ts
  • src/serialization/types/AlertStatus.ts
  • src/serialization/types/AllDataAccessRule.ts
  • src/serialization/types/AllDataAccessRuleFiltersItem.ts
  • src/serialization/types/AllowedValuesConstraint.ts
  • src/serialization/types/AmqpInputConfig.ts
  • src/serialization/types/AmqpMetricConfig.ts
  • src/serialization/types/AmqpOutputConfig.ts
  • src/serialization/types/AnthropicIntegrations.ts
  • src/serialization/types/AnthropicKeyAuth.ts
  • src/serialization/types/AnthropicModel.ts
  • src/serialization/types/AnthropicProviderAccount.ts
  • src/serialization/types/Application.ts
  • src/serialization/types/ApplicationDebugInfo.ts
  • src/serialization/types/ApplicationLifecycleStage.ts
  • src/serialization/types/ApplicationMetadata.ts
  • src/serialization/types/ApplicationProblem.ts
  • src/serialization/types/ApplicationSet.ts
  • src/serialization/types/ApplicationSetComponentsItem.ts
  • src/serialization/types/ApplicationSummary.ts
  • src/serialization/types/ApplicationType.ts
  • src/serialization/types/Artifact.ts
  • src/serialization/types/ArtifactManifest.ts
  • src/serialization/types/ArtifactManifestSource.ts
  • src/serialization/types/ArtifactPath.ts
  • src/serialization/types/ArtifactType.ts
  • src/serialization/types/ArtifactVersion.ts
  • src/serialization/types/ArtifactsCacheVolume.ts
  • src/serialization/types/ArtifactsDownload.ts
  • src/serialization/types/ArtifactsDownloadArtifactsItem.ts
  • src/serialization/types/AssistantMessage.ts
  • src/serialization/types/AssistantMessageContent.ts
  • src/serialization/types/AssistantMessageContentOneItem.ts
  • src/serialization/types/AsyncProcessorSidecar.ts
  • src/serialization/types/AsyncService.ts
  • src/serialization/types/AsyncServiceAutoscaling.ts
  • src/serialization/types/AsyncServiceAutoscalingMetrics.ts
  • src/serialization/types/AsyncServiceReplicas.ts
  • src/serialization/types/AutoRotate.ts
  • src/serialization/types/Autoshutdown.ts
  • src/serialization/types/AwsAccessKeyAuth.ts
  • src/serialization/types/AwsAccessKeyBasedAuth.ts
  • src/serialization/types/AwsAssumedRoleBasedAuth.ts
  • src/serialization/types/AwsBedrockApiKeyAuth.ts
  • src/serialization/types/AwsBedrockAssumedRoleBasedAuth.ts
  • src/serialization/types/AwsBedrockGuardrailConfig.ts
  • src/serialization/types/AwsBedrockGuardrailConfigAuthData.ts
  • src/serialization/types/AwsBedrockGuardrailConfigConfig.ts
  • src/serialization/types/AwsBedrockGuardrailConfigOperation.ts
  • src/serialization/types/AwsBedrockMantleIntegrations.ts
  • src/serialization/types/AwsBedrockMantleProviderAccount.ts
  • src/serialization/types/AwsBedrockMantleProviderAccountAuthData.ts
  • src/serialization/types/AwsBedrockProviderAccount.ts
  • src/serialization/types/AwsBedrockProviderAccountAuthData.ts
  • src/serialization/types/AwsClaudePlatformApiKeyAuth.ts
  • src/serialization/types/AwsClaudePlatformAssumedRoleBasedAuth.ts
  • src/serialization/types/AwsClaudePlatformIntegrations.ts
  • src/serialization/types/AwsClaudePlatformModel.ts
  • src/serialization/types/AwsClaudePlatformProviderAccount.ts
  • src/serialization/types/AwsClaudePlatformProviderAccountAuthData.ts
  • src/serialization/types/AwsEcr.ts
  • src/serialization/types/AwsEcrAuthData.ts
  • src/serialization/types/AwsEksIntegration.ts
  • src/serialization/types/AwsEksIntegrationAuthData.ts
  • src/serialization/types/AwsInferentia.ts
  • src/serialization/types/AwsIntegrations.ts
  • src/serialization/types/AwsParameterStore.ts
  • src/serialization/types/AwsParameterStoreAuthData.ts
  • src/serialization/types/AwsProviderAccount.ts
  • src/serialization/types/AwsProviderAccountAuthData.ts
  • src/serialization/types/AwsRegion.ts
  • src/serialization/types/AwsS3.ts
  • src/serialization/types/AwsS3AuthData.ts
  • src/serialization/types/AwsSagemakerProviderAccount.ts
  • src/serialization/types/AwsSagemakerProviderAccountAuthData.ts
  • src/serialization/types/AwsSecretsManager.ts
  • src/serialization/types/AwsSecretsManagerAuthData.ts
  • src/serialization/types/AwsSqsAccessKeyBasedAuth.ts
  • src/serialization/types/AwsSqsAssumedRoleBasedAuth.ts
  • src/serialization/types/AzureAksIntegration.ts
  • src/serialization/types/AzureBasicAuth.ts
  • src/serialization/types/AzureBlobStorage.ts
  • src/serialization/types/AzureCertificateAuth.ts
  • src/serialization/types/AzureClientSecretAuth.ts
  • src/serialization/types/AzureConnectionStringAuth.ts
  • src/serialization/types/AzureContainerRegistry.ts
  • src/serialization/types/AzureContentSafetyCategory.ts
  • src/serialization/types/AzureContentSafetyGuardrailConfig.ts
  • src/serialization/types/AzureContentSafetyGuardrailConfigAuthData.ts
  • src/serialization/types/AzureContentSafetyGuardrailConfigConfig.ts
  • src/serialization/types/AzureFoundryModel.ts
  • src/serialization/types/AzureFoundryModelAuthData.ts
  • src/serialization/types/AzureFoundryProviderAccount.ts
  • src/serialization/types/AzureIntegrations.ts
  • src/serialization/types/AzureKeyAuth.ts
  • src/serialization/types/AzureOAuth.ts
  • src/serialization/types/AzureOpenAiModel.ts
  • src/serialization/types/AzureOpenAiModelDeploymentType.ts
  • src/serialization/types/AzureOpenAiProviderAccount.ts
  • src/serialization/types/AzureOpenAiProviderAccountAuthData.ts
  • src/serialization/types/AzurePiiCategory.ts
  • src/serialization/types/AzurePiiGuardrailConfig.ts
  • src/serialization/types/AzurePiiGuardrailConfigAuthData.ts
  • src/serialization/types/AzurePiiGuardrailConfigConfig.ts
  • src/serialization/types/AzurePiiGuardrailConfigConfigDomain.ts
  • src/serialization/types/AzurePiiGuardrailConfigOperation.ts
  • src/serialization/types/AzurePromptShieldGuardrailConfig.ts
  • src/serialization/types/AzurePromptShieldGuardrailConfigAuthData.ts
  • src/serialization/types/AzurePromptShieldGuardrailConfigConfig.ts
  • src/serialization/types/AzureProviderAccount.ts
  • src/serialization/types/AzureReposIntegration.ts
  • src/serialization/types/AzureReposIntegrationAuthData.ts
  • src/serialization/types/AzureVault.ts
  • src/serialization/types/AzureWorkloadIdentityAuth.ts
  • src/serialization/types/BaseArtifactVersion.ts
  • src/serialization/types/BaseAutoscaling.ts
  • src/serialization/types/BaseOAuth2Login.ts
  • src/serialization/types/BaseOAuth2LoginJwtSource.ts
  • src/serialization/types/BaseRemoteAgent.ts
  • src/serialization/types/BaseService.ts
  • src/serialization/types/BaseServiceImage.ts
  • src/serialization/types/BaseServiceMountsItem.ts
  • src/serialization/types/BaseWorkbenchInput.ts
  • src/serialization/types/BaseWorkbenchInputMountsItem.ts
  • src/serialization/types/BasetenIntegrations.ts
  • src/serialization/types/BasetenKeyAuth.ts
  • src/serialization/types/BasetenModel.ts
  • src/serialization/types/BasetenProviderAccount.ts
  • src/serialization/types/BasicAuthCreds.ts
  • src/serialization/types/BedrockMantleModel.ts
  • src/serialization/types/BedrockModel.ts
  • src/serialization/types/BitbucketDataCenterIntegration.ts
  • src/serialization/types/BitbucketIntegration.ts
  • src/serialization/types/BitbucketIntegrationAuthData.ts
  • src/serialization/types/BitbucketIntegrations.ts
  • src/serialization/types/BitbucketProviderAccount.ts
  • src/serialization/types/BlobStorageReference.ts
  • src/serialization/types/BlueGreen.ts
  • src/serialization/types/BudgetAlert.ts
  • src/serialization/types/BudgetConfig.ts
  • src/serialization/types/BudgetEntityUsage.ts
  • src/serialization/types/BudgetLimitUnit.ts
  • src/serialization/types/BudgetRule.ts
  • src/serialization/types/BudgetUsageEntry.ts
  • src/serialization/types/BudgetUsageEntryMode.ts
  • src/serialization/types/BudgetUsageEntryType.ts
  • src/serialization/types/BudgetUsageResponse.ts
  • src/serialization/types/BudgetV2Alert.ts
  • src/serialization/types/BudgetV2AppliesTo.ts
  • src/serialization/types/BudgetV2AppliesToAggregate.ts
  • src/serialization/types/BudgetV2AppliesToMetadata.ts
  • src/serialization/types/BudgetV2AppliesToPerModel.ts
  • src/serialization/types/BudgetV2AppliesToPerUser.ts
  • src/serialization/types/BudgetV2AppliesToPerVirtualAccount.ts
  • src/serialization/types/BudgetV2InNotInFilter.ts
  • src/serialization/types/BudgetV2Limits.ts
  • src/serialization/types/BudgetV2OverrideLimits.ts
  • src/serialization/types/BudgetV2PerMetadataOverride.ts
  • src/serialization/types/BudgetV2PerModelOverride.ts
  • src/serialization/types/BudgetV2PerUserOverride.ts
  • src/serialization/types/BudgetV2PerVirtualAccountOverride.ts
  • src/serialization/types/BudgetV2SubjectsTeamScoped.ts
  • src/serialization/types/BudgetV2SubjectsTenantScoped.ts
  • src/serialization/types/BudgetV2WhenTeamScoped.ts
  • src/serialization/types/BudgetV2WhenTenantScoped.ts
  • src/serialization/types/BudgetWhen.ts
  • src/serialization/types/Build.ts
  • src/serialization/types/BuildBuildSource.ts
  • src/serialization/types/BuildBuildSpec.ts
  • src/serialization/types/BuildInfo.ts
  • src/serialization/types/BuildSecret.ts
  • src/serialization/types/BuildStatus.ts
  • src/serialization/types/Canary.ts
  • src/serialization/types/CanaryStep.ts
  • src/serialization/types/CartesiaApiKeyAuth.ts
  • src/serialization/types/CartesiaModel.ts
  • src/serialization/types/CartesiaProviderAccount.ts
  • src/serialization/types/CartesiaProviderAccountCartesiaVersion.ts
  • src/serialization/types/CedarGuardrailConfig.ts
  • src/serialization/types/CedarGuardrailConfigConfig.ts
  • src/serialization/types/CerebrasIntegrations.ts
  • src/serialization/types/CerebrasKeyAuth.ts
  • src/serialization/types/CerebrasModel.ts
  • src/serialization/types/CerebrasProviderAccount.ts
  • src/serialization/types/ChangePasswordResponse.ts
  • src/serialization/types/ChatMessageTurn.ts
  • src/serialization/types/ChatPromptManifest.ts
  • src/serialization/types/ChatPromptManifestCacheConfig.ts
  • src/serialization/types/ChatPromptManifestMcpServersItem.ts
  • src/serialization/types/ChatPromptManifestResponseFormat.ts
  • src/serialization/types/ChatPromptManifestRoutingConfig.ts
  • src/serialization/types/CiscoAiDefenseGuardrailConfig.ts
  • src/serialization/types/CiscoAiDefenseGuardrailConfigConfig.ts
  • src/serialization/types/CiscoAiDefenseGuardrailConfigConfigRegion.ts
  • src/serialization/types/CiscoAiDefenseKeyAuth.ts
  • src/serialization/types/ClouderaIntegrations.ts
  • src/serialization/types/ClouderaModel.ts
  • src/serialization/types/ClouderaProviderAccount.ts
  • src/serialization/types/ClouderaProviderAccountAuthData.ts
  • src/serialization/types/ClouderaTokenAuth.ts
  • src/serialization/types/ClouderaWorkloadAuthToken.ts
  • src/serialization/types/Cluster.ts
  • src/serialization/types/ClusterGateway.ts
  • src/serialization/types/ClusterManifest.ts
  • src/serialization/types/ClusterManifestClusterType.ts
  • src/serialization/types/ClusterManifestMonitoring.ts
  • src/serialization/types/ClusterManifestNodeLabelKeys.ts
  • src/serialization/types/ClusterManifestWorkbenchConfig.ts
  • src/serialization/types/ClusterType.ts
  • src/serialization/types/CodeSafetyLinterGuardrailConfig.ts
  • src/serialization/types/Codeserver.ts
  • src/serialization/types/CohereIntegrations.ts
  • src/serialization/types/CohereKeyAuth.ts
  • src/serialization/types/CohereModel.ts
  • src/serialization/types/CohereProviderAccount.ts
  • src/serialization/types/Collaborator.ts
  • src/serialization/types/CommonToolsSettings.ts
  • src/serialization/types/ComplexityBasedLoadBalanceTarget.ts
  • src/serialization/types/ComplexityBasedLoadBalanceTargetTier.ts
  • src/serialization/types/ComplexityBasedLoadBalancing.ts
  • src/serialization/types/ComplexityBasedLoadBalancingClassificationStrategy.ts
  • src/serialization/types/ComplexityStickyRouting.ts
  • src/serialization/types/Config.ts
  • src/serialization/types/ContainerTaskConfig.ts
  • src/serialization/types/ContainerTaskConfigImage.ts
  • src/serialization/types/ContainerTaskConfigMountsItem.ts
  • src/serialization/types/CoreNatsOutputConfig.ts
  • src/serialization/types/CpuUtilizationMetric.ts
  • src/serialization/types/CreateDockerRepositoryResponse.ts
  • src/serialization/types/CreateMultiPartUploadRequest.ts
  • src/serialization/types/CreatePersonalAccessTokenResponse.ts
  • src/serialization/types/CreateRunResponse.ts
  • src/serialization/types/CronMetric.ts
  • src/serialization/types/CrowdStrikeAidrGuardrailConfig.ts
  • src/serialization/types/CrowdStrikeAidrGuardrailConfigConfig.ts
  • src/serialization/types/CrowdStrikeAidrGuardrailConfigOperation.ts
  • src/serialization/types/CrowdStrikeAidrKeyAuth.ts
  • src/serialization/types/CustomAgentServerAuth.ts
  • src/serialization/types/CustomBasicAuth.ts
  • src/serialization/types/CustomBearerAuth.ts
  • src/serialization/types/CustomBlobStorage.ts
  • src/serialization/types/CustomEndpoint.ts
  • src/serialization/types/CustomEndpointIntegrations.ts
  • src/serialization/types/CustomEndpointProviderAccount.ts
  • src/serialization/types/CustomEndpointProviderAccountEndpointType.ts
  • src/serialization/types/CustomEndpointProviderAccountRoutingType.ts
  • src/serialization/types/CustomEndpointTargetConfig.ts
  • src/serialization/types/CustomFramework.ts
  • src/serialization/types/CustomGuardrailConfig.ts
  • src/serialization/types/CustomGuardrailConfigAuthData.ts
  • src/serialization/types/CustomGuardrailConfigConfig.ts
  • src/serialization/types/CustomGuardrailConfigOperation.ts
  • src/serialization/types/CustomGuardrailConfigTarget.ts
  • src/serialization/types/CustomHeaderAuth.ts
  • src/serialization/types/CustomHelmRepo.ts
  • src/serialization/types/CustomIntegrations.ts
  • src/serialization/types/CustomJwtAuthIntegration.ts
  • src/serialization/types/CustomProviderAccount.ts
  • src/serialization/types/CustomRegexPattern.ts
  • src/serialization/types/CustomServerHeaderAuth.ts
  • src/serialization/types/CustomServerPassthrough.ts
  • src/serialization/types/CustomTlsSettings.ts
  • src/serialization/types/CustomUsernamePasswordArtifactsRegistry.ts
  • src/serialization/types/DataAccessRule.ts
  • src/serialization/types/DataAccessRuleBase.ts
  • src/serialization/types/DataDirectory.ts
  • src/serialization/types/DataDirectoryManifest.ts
  • src/serialization/types/DataDirectoryManifestSource.ts
  • src/serialization/types/DatabricksApiKeyAuth.ts
  • src/serialization/types/DatabricksIntegrations.ts
  • src/serialization/types/DatabricksJobTaskConfig.ts
  • src/serialization/types/DatabricksJobTaskConfigImage.ts
  • src/serialization/types/DatabricksModel.ts
  • src/serialization/types/DatabricksProviderAccount.ts
  • src/serialization/types/DatabricksProviderAccountAuthData.ts
  • src/serialization/types/DatabricksServicePrincipalAuth.ts
  • src/serialization/types/DeactivateUserResponse.ts
  • src/serialization/types/DeepgramApiKeyAuth.ts
  • src/serialization/types/DeepgramModel.ts
  • src/serialization/types/DeepgramProviderAccount.ts
  • src/serialization/types/DeepinfraIntegrations.ts
  • src/serialization/types/DeepinfraKeyAuth.ts
  • src/serialization/types/DeepinfraModel.ts
  • src/serialization/types/DeepinfraProviderAccount.ts
  • src/serialization/types/DeleteApplicationResponse.ts
  • src/serialization/types/DeleteClusterResponse.ts
  • src/serialization/types/DeleteJobRunResponse.ts
  • src/serialization/types/DeletePersonalAccessTokenResponse.ts
  • src/serialization/types/DeleteSecretGroupResponse.ts
  • src/serialization/types/DeleteTeamResponse.ts
  • src/serialization/types/DeleteUserResponse.ts
  • src/serialization/types/DeleteVirtualAccountResponse.ts
  • src/serialization/types/DeleteWorkspaceResponse.ts
  • src/serialization/types/Deployment.ts
  • src/serialization/types/DeploymentBuild.ts
  • src/serialization/types/DeploymentBuildStatus.ts
  • src/serialization/types/DeploymentManifest.ts
  • src/serialization/types/DeploymentStatus.ts
  • src/serialization/types/DeploymentStatusValue.ts
  • src/serialization/types/DeploymentTransition.ts
  • src/serialization/types/DeveloperMessage.ts
  • src/serialization/types/DeveloperMessageContent.ts
  • src/serialization/types/DockerFileBuild.ts
  • src/serialization/types/DockerFileBuildCommand.ts
  • src/serialization/types/DockerhubBasicAuth.ts
  • src/serialization/types/DockerhubIntegrations.ts
  • src/serialization/types/DockerhubProviderAccount.ts
  • src/serialization/types/DockerhubRegistry.ts
  • src/serialization/types/DynamicVolumeConfig.ts
  • src/serialization/types/ElevenLabsApiKeyAuth.ts
  • src/serialization/types/ElevenLabsModel.ts
  • src/serialization/types/ElevenLabsProviderAccount.ts
  • src/serialization/types/Email.ts
  • src/serialization/types/EmailNotificationChannel.ts
  • src/serialization/types/EmptyResponse.ts
  • src/serialization/types/Endpoint.ts
  • src/serialization/types/EnforcingStrategy.ts
  • src/serialization/types/EnkryptAiGuardrailConfig.ts
  • src/serialization/types/EnkryptAiGuardrailConfigConfig.ts
  • src/serialization/types/EnkryptAiGuardrailConfigOperation.ts
  • src/serialization/types/EnkryptAiKeyAuth.ts
  • src/serialization/types/Environment.ts
  • src/serialization/types/EnvironmentColor.ts
  • src/serialization/types/EnvironmentManifest.ts
  • src/serialization/types/EnvironmentOptimizeFor.ts
  • src/serialization/types/Event.ts
  • src/serialization/types/EventChart.ts
  • src/serialization/types/EventChartCategory.ts
  • src/serialization/types/EventInvolvedObject.ts
  • src/serialization/types/ExactMatchCacheConfig.ts
  • src/serialization/types/ExternalBlobStorageSource.ts
  • src/serialization/types/ExternalIdentityProvider.ts
  • src/serialization/types/FastAiFramework.ts
  • src/serialization/types/FiddlerGuardType.ts
  • src/serialization/types/FiddlerGuardrailConfig.ts
  • src/serialization/types/FiddlerGuardrailConfigConfig.ts
  • src/serialization/types/FiddlerKeyAuth.ts
  • src/serialization/types/FileInfo.ts
  • src/serialization/types/FlyteLaunchPlan.ts
  • src/serialization/types/FlyteLaunchPlanId.ts
  • src/serialization/types/FlyteLaunchPlanSpec.ts
  • src/serialization/types/FlyteTask.ts
  • src/serialization/types/FlyteTaskCustom.ts
  • src/serialization/types/FlyteTaskCustomTruefoundry.ts
  • src/serialization/types/FlyteTaskId.ts
  • src/serialization/types/FlyteTaskTemplate.ts
  • src/serialization/types/FlyteWorkflow.ts
  • src/serialization/types/FlyteWorkflowId.ts
  • src/serialization/types/FlyteWorkflowTemplate.ts
  • src/serialization/types/ForwardAction.ts
  • src/serialization/types/Function.ts
  • src/serialization/types/FunctionSchema.ts
  • src/serialization/types/GatewayBudget.ts
  • src/serialization/types/GatewayBudgetManifest.ts
  • src/serialization/types/GatewayConfig.ts
  • src/serialization/types/GatewayConfiguration.ts
  • src/serialization/types/GatewayDataAccessConfig.ts
  • src/serialization/types/GatewayDataCreatedByFilter.ts
  • src/serialization/types/GatewayDataCreatedByFilterOperator.ts
  • src/serialization/types/GatewayDataMetadataFilter.ts
  • src/serialization/types/GatewayDataMetadataFilterOperator.ts
  • src/serialization/types/GatewayDataRoutingConfig.ts
  • src/serialization/types/GatewayDataRoutingConfigDestination.ts
  • src/serialization/types/GatewayDataRoutingConfigDestinationCondition.ts
  • src/serialization/types/GatewayDataRoutingConfigDestinationControlPlaneManagedStorage.ts
  • src/serialization/types/GatewayDataRoutingConfigDestinationControlPlaneManagedStorageRegion.ts
  • src/serialization/types/GatewayDataRoutingConfigDestinationCreatedByCondition.ts
  • src/serialization/types/GatewayDataRoutingConfigDestinationCustomerManagedStorage.ts
  • src/serialization/types/GatewayDataRoutingConfigDestinationMetadataCondition.ts
  • src/serialization/types/GatewayDataRoutingConfigDestinationStorage.ts
  • src/serialization/types/GatewayDataRoutingConfigDestinationStorageStorage.ts
  • src/serialization/types/GatewayDataType.ts
  • src/serialization/types/GatewayInstallation.ts
  • src/serialization/types/GatewayLoggingConfig.ts
  • src/serialization/types/GatewayLoggingRule.ts
  • src/serialization/types/GatewayLoggingWhen.ts
  • src/serialization/types/GatewayMetadataConfig.ts
  • src/serialization/types/GatewayMetadataRule.ts
  • src/serialization/types/GatewayMetadataWhen.ts
  • src/serialization/types/GatewayOtelConfig.ts
  • src/serialization/types/GatewayOtelConfigOtelMetricsExporterConfig.ts
  • src/serialization/types/GatewayOtelConfigOtelTracesExporterConfig.ts
  • src/serialization/types/GatewayRequestMetadataFilter.ts
  • src/serialization/types/GatewayRequestMetadataFilterOperator.ts
  • src/serialization/types/GatewayRequestMetadataFilterValue.ts
  • src/serialization/types/GcpApiKeyAuth.ts
  • src/serialization/types/GcpGcr.ts
  • src/serialization/types/GcpGcs.ts
  • src/serialization/types/GcpGkeIntegration.ts
  • src/serialization/types/GcpGkeIntegrationLocation.ts
  • src/serialization/types/GcpGsm.ts
  • src/serialization/types/GcpIntegrations.ts
  • src/serialization/types/GcpKeyFileAuth.ts
  • src/serialization/types/GcpKeyFileAuthKeyFileContent.ts
  • src/serialization/types/GcpProviderAccount.ts
  • src/serialization/types/GcpRegion.ts
  • src/serialization/types/GcpTpu.ts
  • src/serialization/types/GeminiModel.ts
  • src/serialization/types/GenericSecretStoreIntegration.ts
  • src/serialization/types/GetAgentIdentityTokenResponse.ts
  • src/serialization/types/GetAgentResponse.ts
  • src/serialization/types/GetAgentSkillResponse.ts
  • src/serialization/types/GetAgentSkillVersionResponse.ts
  • src/serialization/types/GetAgentVersionResponse.ts
  • src/serialization/types/GetAlertsResponse.ts
  • src/serialization/types/GetApplicationDeploymentResponse.ts
  • src/serialization/types/GetApplicationResponse.ts
  • src/serialization/types/GetArtifactResponse.ts
  • src/serialization/types/GetArtifactVersionResponse.ts
  • src/serialization/types/GetAuthenticatedVcsurlResponse.ts
  • src/serialization/types/GetAutoProvisioningStateResponse.ts
  • src/serialization/types/GetChartsResponse.ts
  • src/serialization/types/GetClusterResponse.ts
  • src/serialization/types/GetDataDirectoryResponse.ts
  • src/serialization/types/GetDockerRegistryCredentialsResponse.ts
  • src/serialization/types/GetEnvironmentResponse.ts
  • src/serialization/types/GetEventsResponse.ts
  • src/serialization/types/GetJobRunResponse.ts
  • src/serialization/types/GetLogsResponse.ts
  • src/serialization/types/GetMetricHistoryResponse.ts
  • src/serialization/types/GetMlRepoResponse.ts
  • src/serialization/types/GetModelResponse.ts
  • src/serialization/types/GetModelVersionResponse.ts
  • src/serialization/types/GetOrCreatePersonalAccessTokenResponse.ts
  • src/serialization/types/GetPromptResponse.ts
  • src/serialization/types/GetPromptVersionResponse.ts
  • src/serialization/types/GetRunResponse.ts
  • src/serialization/types/GetSecretGroupResponse.ts
  • src/serialization/types/GetSecretResponse.ts
  • src/serialization/types/GetSignedUrLsRequest.ts
  • src/serialization/types/GetSignedUrLsResponse.ts
  • src/serialization/types/GetSuggestedDeploymentEndpointResponse.ts
  • src/serialization/types/GetTeamPermissionsResponse.ts
  • src/serialization/types/GetTeamResponse.ts
  • src/serialization/types/GetTokenForVirtualAccountResponse.ts
  • src/serialization/types/GetUserPermissionsResponse.ts
  • src/serialization/types/GetUserResourcesResponse.ts
  • src/serialization/types/GetUserResponse.ts
  • src/serialization/types/GetUserTeamsResponse.ts
  • src/serialization/types/GetVirtualAccountResponse.ts
  • src/serialization/types/GetWorkspaceResponse.ts
  • src/serialization/types/GitHelmRepo.ts
  • src/serialization/types/GitRepositoryExistsResponse.ts
  • src/serialization/types/GitSource.ts
  • src/serialization/types/GithubIntegration.ts
  • src/serialization/types/GithubIntegrationAuthData.ts
  • src/serialization/types/GithubProviderAccount.ts
  • src/serialization/types/GitlabIntegration.ts
  • src/serialization/types/GitlabIntegrationAuthData.ts
  • src/serialization/types/GitlabProviderAccount.ts
  • src/serialization/types/GlobalSettings.ts
  • src/serialization/types/GluonFramework.ts
  • src/serialization/types/GoogleGeminiProviderAccount.ts
  • src/serialization/types/GoogleModelArmorApiKeyAuth.ts
  • src/serialization/types/GoogleModelArmorGuardrailConfig.ts
  • src/serialization/types/GoogleModelArmorGuardrailConfigAuthData.ts
  • src/serialization/types/GoogleModelArmorGuardrailConfigConfig.ts
  • src/serialization/types/GoogleModelArmorGuardrailConfigOperation.ts
  • src/serialization/types/GoogleModelArmorKeyFileAuth.ts
  • src/serialization/types/GoogleModelArmorKeyFileAuthKeyFileContent.ts
  • src/serialization/types/GoogleVertexProviderAccount.ts
  • src/serialization/types/GoogleVertexProviderAccountAuthData.ts
  • src/serialization/types/Graph.ts
  • src/serialization/types/GraphChartType.ts
  • src/serialization/types/GraySwanCygnalApiKeyAuth.ts
  • src/serialization/types/GraySwanCygnalGuardrailConfig.ts
  • src/serialization/types/GraySwanCygnalGuardrailConfigConfig.ts
  • src/serialization/types/GraySwanCygnalGuardrailConfigConfigReasoningMode.ts
  • src/serialization/types/GroqIntegrations.ts
  • src/serialization/types/GroqKeyAuth.ts
  • src/serialization/types/GroqModel.ts
  • src/serialization/types/GroqProviderAccount.ts
  • src/serialization/types/GuardrailConfigGroup.ts
  • src/serialization/types/GuardrailConfigIntegrations.ts
  • src/serialization/types/GuardrailSettings.ts
  • src/serialization/types/Guardrails.ts
  • src/serialization/types/GuardrailsConfig.ts
  • src/serialization/types/GuardrailsRule.ts
  • src/serialization/types/GuardrailsWhen.ts
  • src/serialization/types/H2OFramework.ts
  • src/serialization/types/HashicorpAppRoleAuth.ts
  • src/serialization/types/HashicorpIntegrations.ts
  • src/serialization/types/HashicorpProviderAccount.ts
  • src/serialization/types/HashicorpTokenAuth.ts
  • src/serialization/types/HashicorpVaultIntegration.ts
  • src/serialization/types/HashicorpVaultIntegrationAuthData.ts
  • src/serialization/types/HeaderMatch.ts
  • src/serialization/types/HeaderRoutingConfig.ts
  • src/serialization/types/HeadersOverride.ts
  • src/serialization/types/HealthProbe.ts
  • src/serialization/types/Helm.ts
  • src/serialization/types/HelmRepo.ts
  • src/serialization/types/HelmSource.ts
  • src/serialization/types/HeuristicClassificationStrategy.ts
  • src/serialization/types/HeuristicFallbackStrategy.ts
  • src/serialization/types/HostedA2AAgent.ts
  • src/serialization/types/HttpError.ts
  • src/serialization/types/HttpErrorCode.ts
  • src/serialization/types/HttpProbe.ts
  • src/serialization/types/HuggingfaceArtifactSource.ts
  • src/serialization/types/IChange.ts
  • src/serialization/types/IChangeOperation.ts
  • src/serialization/types/IChangeType.ts
  • src/serialization/types/IdentityProviderBackedIdentity.ts
  • src/serialization/types/IdentityProviderMapping.ts
  • src/serialization/types/Image.ts
  • src/serialization/types/ImageCommand.ts
  • src/serialization/types/ImageContentPart.ts
  • src/serialization/types/ImageContentPartImageUrl.ts
  • src/serialization/types/ImageContentPartImageUrlUrl.ts
  • src/serialization/types/InNotIn.ts
  • src/serialization/types/InNotInOperator.ts
  • src/serialization/types/InNotInOperatorCondition.ts
  • src/serialization/types/InferMethodName.ts
  • src/serialization/types/InfraProviderAccount.ts
  • src/serialization/types/IngressControllerConfig.ts
  • src/serialization/types/InlineSpecSource.ts
  • src/serialization/types/InlineSpecSourceOpenapiSpec.ts
  • src/serialization/types/InputOutputBasedCostMetricValue.ts
  • src/serialization/types/Intercept.ts
  • src/serialization/types/InterceptRulesItem.ts
  • src/serialization/types/InterceptRulesItemAction.ts
  • src/serialization/types/InternalArtifactVersion.ts
  • src/serialization/types/InternalListArtifactVersionsResponse.ts
  • src/serialization/types/InternalListArtifactVersionsResponseDataItem.ts
  • src/serialization/types/InternalModelVersion.ts
  • src/serialization/types/InviteUserResponse.ts
  • src/serialization/types/IsClusterConnectedResponse.ts
  • src/serialization/types/JFrogIntegrations.ts
  • src/serialization/types/JfrogArtifactsRegistry.ts
  • src/serialization/types/JfrogBasicAuth.ts
  • src/serialization/types/JfrogProviderAccount.ts
  • src/serialization/types/Job.ts
  • src/serialization/types/JobAlert.ts
  • src/serialization/types/JobImage.ts
  • src/serialization/types/JobMountsItem.ts
  • src/serialization/types/JobRun.ts
  • src/serialization/types/JobRunStatus.ts
  • src/serialization/types/JobRunsSortBy.ts
  • src/serialization/types/JobTrigger.ts
  • src/serialization/types/JobTriggerInput.ts
  • src/serialization/types/JobTriggerInputCommand.ts
  • src/serialization/types/JsonObjectResponseFormat.ts
  • src/serialization/types/JsonSchema.ts
  • src/serialization/types/JsonSchemaResponseFormat.ts
  • src/serialization/types/Jwt.ts
  • src/serialization/types/JwtAuthConfig.ts
  • src/serialization/types/JwtAuthConfigClaimsItem.ts
  • src/serialization/types/JwtTokenType.ts
  • src/serialization/types/KafkaInputConfig.ts
  • src/serialization/types/KafkaMetricConfig.ts
  • src/serialization/types/KafkaOutputConfig.ts
  • src/serialization/types/KafkaSaslAuth.ts
  • src/serialization/types/KerasFramework.ts
  • src/serialization/types/KeyPresenceSpec.ts
  • src/serialization/types/KeySpec.ts
  • src/serialization/types/KeyValueSpec.ts
  • src/serialization/types/Kustomize.ts
  • src/serialization/types/LatencyBasedLoadBalanceTarget.ts
  • src/serialization/types/LatencyBasedLoadBalancing.ts
  • src/serialization/types/LatencyBasedLoadBalancingRule.ts
  • src/serialization/types/LegacyAgentManifest.ts
  • src/serialization/types/LibraryName.ts
  • src/serialization/types/LightGbmFramework.ts
  • src/serialization/types/ListAgentSkillVersionsResponse.ts
  • src/serialization/types/ListAgentSkillsResponse.ts
  • src/serialization/types/ListAgentVersionsResponse.ts
  • src/serialization/types/ListAgentsResponse.ts
  • src/serialization/types/ListApplicationDeploymentsResponse.ts
  • src/serialization/types/ListApplicationsResponse.ts
  • src/serialization/types/ListArtifactVersionsResponse.ts
  • src/serialization/types/ListArtifactsResponse.ts
  • src/serialization/types/ListBudgetsResponse.ts
  • src/serialization/types/ListClusterAddonsResponse.ts
  • src/serialization/types/ListClustersResponse.ts
  • src/serialization/types/ListDataDirectoriesResponse.ts
  • src/serialization/types/ListEnvironmentsResponse.ts
  • src/serialization/types/ListFilesRequest.ts
  • src/serialization/types/ListFilesResponse.ts
  • src/serialization/types/ListJobRunResponse.ts
  • src/serialization/types/ListMetricHistoryResponse.ts
  • src/serialization/types/ListMlReposResponse.ts
  • src/serialization/types/ListModelVersionsResponse.ts
  • src/serialization/types/ListModelsResponse.ts
  • src/serialization/types/ListPersonalAccessTokenResponse.ts
  • src/serialization/types/ListPromptVersionsResponse.ts
  • src/serialization/types/ListPromptsResponse.ts
  • src/serialization/types/ListSecretGroupResponse.ts
  • src/serialization/types/ListSecretsResponse.ts
  • src/serialization/types/ListTeamManagersResponse.ts
  • src/serialization/types/ListTeamMembersResponse.ts
  • src/serialization/types/ListTeamsResponse.ts
  • src/serialization/types/ListUsersResponse.ts
  • src/serialization/types/ListVirtualAccountResponse.ts
  • src/serialization/types/ListWorkspacesResponse.ts
  • src/serialization/types/LlmClassificationStrategy.ts
  • src/serialization/types/LlmClassificationStrategyFallbackStrategy.ts
  • src/serialization/types/LoadBalanceTarget.ts
  • src/serialization/types/LoadBalancingConfig.ts
  • src/serialization/types/LoadBalancingRule.ts
  • src/serialization/types/LoadBalancingWhen.ts
  • src/serialization/types/LocalArtifactSource.ts
  • src/serialization/types/LocalModelSource.ts
  • src/serialization/types/LocalSource.ts
  • src/serialization/types/Log.ts
  • src/serialization/types/LoggingConfig.ts
  • src/serialization/types/LoggingMode.ts
  • src/serialization/types/LoggingModeAlways.ts
  • src/serialization/types/LoggingModeHeaderControlled.ts
  • src/serialization/types/LoggingModeNever.ts
  • src/serialization/types/LoggingWhen.ts
  • src/serialization/types/LogsResponse.ts
  • src/serialization/types/LogsSearchFilterType.ts
  • src/serialization/types/LogsSearchOperatorType.ts
  • src/serialization/types/LogsSortingDirection.ts
  • src/serialization/types/Manual.ts
  • src/serialization/types/McpServer.ts
  • src/serialization/types/McpServerAuth.ts
  • src/serialization/types/McpServerAuthStatusInfo.ts
  • src/serialization/types/McpServerAuthStatusInfoMethod.ts
  • src/serialization/types/McpServerAuthStatusInfoStatus.ts
  • src/serialization/types/McpServerEnvAuth.ts
  • src/serialization/types/McpServerEnvAuthAuthLevel.ts
  • src/serialization/types/McpServerHeaderAuth.ts
  • src/serialization/types/McpServerHeaderAuthAuthLevel.ts
  • src/serialization/types/McpServerHeaderOverrideAuth.ts
  • src/serialization/types/McpServerIntegration.ts
  • src/serialization/types/McpServerIntegrationTransport.ts
  • src/serialization/types/McpServerIntegrations.ts
  • src/serialization/types/McpServerManifest.ts
  • src/serialization/types/McpServerOAuth2.ts
  • src/serialization/types/McpServerOAuth2GrantType.ts
  • src/serialization/types/McpServerOAuth2JwtSource.ts
  • src/serialization/types/McpServerOAuth2Provider.ts
  • src/serialization/types/McpServerOAuth2ProviderAuth0Settings.ts
  • src/serialization/types/McpServerOAuth2ProviderOktaIdJagSettings.ts
  • src/serialization/types/McpServerOAuth2ProviderOktaSettings.ts
  • src/serialization/types/McpServerPassthrough.ts
  • src/serialization/types/McpServerProviderAccount.ts
  • src/serialization/types/McpServerSource.ts
  • src/serialization/types/McpServerToolDetails.ts
  • src/serialization/types/McpServerWithFqn.ts
  • src/serialization/types/McpServerWithUrl.ts
  • src/serialization/types/McpTool.ts
  • src/serialization/types/McpToolAnnotations.ts
  • src/serialization/types/McpToolSetting.ts
  • src/serialization/types/McpToolTarget.ts
  • src/serialization/types/McpToolsOperator.ts
  • src/serialization/types/McpToolsOperatorCondition.ts
  • src/serialization/types/Metadata.ts
  • src/serialization/types/Metric.ts
  • src/serialization/types/MetricCollection.ts
  • src/serialization/types/MimeType.ts
  • src/serialization/types/MirrorAction.ts
  • src/serialization/types/MistralAiIntegrations.ts
  • src/serialization/types/MistralAiKeyAuth.ts
  • src/serialization/types/MistralAiModel.ts
  • src/serialization/types/MistralAiProviderAccount.ts
  • src/serialization/types/MlRepo.ts
  • src/serialization/types/MlRepoManifest.ts
  • src/serialization/types/Model.ts
  • src/serialization/types/ModelConfiguration.ts
  • src/serialization/types/ModelCostMetric.ts
  • src/serialization/types/ModelManifest.ts
  • src/serialization/types/ModelManifestFramework.ts
  • src/serialization/types/ModelManifestSource.ts
  • src/serialization/types/ModelProviderAccount.ts
  • src/serialization/types/ModelType.ts
  • src/serialization/types/ModelVersion.ts
  • src/serialization/types/ModelVersionEnvironment.ts
  • src/serialization/types/MsTeamsIntegrations.ts
  • src/serialization/types/MsTeamsProviderAccount.ts
  • src/serialization/types/MsTeamsWebhook.ts
  • src/serialization/types/MsTeamsWebhookAuth.ts
  • src/serialization/types/MsTeamsWebhookIntegration.ts
  • src/serialization/types/MultiPartUpload.ts
  • src/serialization/types/MultiPartUploadResponse.ts
  • src/serialization/types/MultiPartUploadStorageProvider.ts
  • src/serialization/types/NativeSnowflakeFlyteTaskTemplate.ts
  • src/serialization/types/NatsInputConfig.ts
  • src/serialization/types/NatsMetricConfig.ts
  • src/serialization/types/NatsOutputConfig.ts
  • src/serialization/types/NatsUserPasswordAuth.ts
  • src/serialization/types/NodeSelector.ts
  • src/serialization/types/NodeSelectorCapacityType.ts
  • src/serialization/types/Nodepool.ts
  • src/serialization/types/NodepoolSelector.ts
  • src/serialization/types/NomaSecurityApiKeyAuth.ts
  • src/serialization/types/NomaSecurityGuardrailConfig.ts
  • src/serialization/types/NomaSecurityGuardrailConfigConfig.ts
  • src/serialization/types/NomicIntegrations.ts
  • src/serialization/types/NomicKeyAuth.ts
  • src/serialization/types/NomicModel.ts
  • src/serialization/types/NomicProviderAccount.ts
  • src/serialization/types/NonNegativeFloat.ts
  • src/serialization/types/Notebook.ts
  • src/serialization/types/NotebookConfig.ts
  • src/serialization/types/NotificationTarget.ts
  • src/serialization/types/NotificationTargetForAlertRule.ts
  • src/serialization/types/NvidiaGpu.ts
  • src/serialization/types/NvidiaMiggpu.ts
  • src/serialization/types/NvidiaMiggpuProfile.ts
  • src/serialization/types/NvidiaTimeslicingGpu.ts
  • src/serialization/types/OAuth2LoginProvider.ts
  • src/serialization/types/OciRepo.ts
  • src/serialization/types/OcrCostMetric.ts
  • src/serialization/types/OcrCostMetricValue.ts
  • src/serialization/types/OllamaIntegrations.ts
  • src/serialization/types/OllamaKeyAuth.ts
  • src/serialization/types/OllamaModel.ts
  • src/serialization/types/OllamaProviderAccount.ts
  • src/serialization/types/OnnxFramework.ts
  • src/serialization/types/OpaAuth.ts
  • src/serialization/types/OpaBearerAuth.ts
  • src/serialization/types/OpaGuardrailConfig.ts
  • src/serialization/types/OpaGuardrailConfigConfig.ts
  • src/serialization/types/OpaHeaderAuth.ts
  • src/serialization/types/OpenAiIntegrations.ts
  • src/serialization/types/OpenAiModel.ts
  • src/serialization/types/OpenAiModerationsGuardrailConfig.ts
  • src/serialization/types/OpenAiModerationsGuardrailConfigConfig.ts
  • src/serialization/types/OpenApiSpecSource.ts
  • src/serialization/types/OpenApimcpServerManifest.ts
  • src/serialization/types/OpenApimcpToolSetting.ts
  • src/serialization/types/OpenApimcpToolSettingMethod.ts
  • src/serialization/types/OpenRouterApiKeyAuth.ts
  • src/serialization/types/OpenRouterIntegrations.ts
  • src/serialization/types/OpenRouterModel.ts
  • src/serialization/types/OpenRouterProviderAccount.ts
  • src/serialization/types/OpenaiApiKeyAuth.ts
  • src/serialization/types/OpenaiProviderAccount.ts
  • src/serialization/types/Operation.ts
  • src/serialization/types/OtelExporterGrpcConfigBase.ts
  • src/serialization/types/OtelExporterHttpConfigBase.ts
  • src/serialization/types/OtelExporterHttpConfigBaseEncoding.ts
  • src/serialization/types/OtelMetricsExporterGrpcConfig.ts
  • src/serialization/types/OtelMetricsExporterHttpConfig.ts
  • src/serialization/types/OtelTracesExporterCommonConfig.ts
  • src/serialization/types/OtelTracesExporterGrpcConfig.ts
  • src/serialization/types/OtelTracesExporterHttpConfig.ts
  • src/serialization/types/OtelTracesExporterSpanAttributeFilter.ts
  • src/serialization/types/OwnDataAccessRule.ts
  • src/serialization/types/OwnedBy.ts
  • src/serialization/types/PaddleFramework.ts
  • src/serialization/types/PagerDuty.ts
  • src/serialization/types/PagerDutyIntegration.ts
  • src/serialization/types/PagerDutyIntegrationKeyAuth.ts
  • src/serialization/types/PagerDutyIntegrations.ts
  • src/serialization/types/PagerDutyProviderAccount.ts
  • src/serialization/types/Pagination.ts
  • src/serialization/types/PalmIntegrations.ts
  • src/serialization/types/PalmKeyAuth.ts
  • src/serialization/types/PalmModel.ts
  • src/serialization/types/PalmProviderAccount.ts
  • src/serialization/types/PaloAltoPrismaAirsGuardrailConfig.ts
  • src/serialization/types/PaloAltoPrismaAirsGuardrailConfigConfig.ts
  • src/serialization/types/PaloAltoPrismaAirsGuardrailConfigConfigMode.ts
  • src/serialization/types/PaloAltoPrismaAirsKeyAuth.ts
  • src/serialization/types/Param.ts
  • src/serialization/types/ParamParamType.ts
  • src/serialization/types/Parameters.ts
  • src/serialization/types/ParametersStop.ts
  • src/serialization/types/PatronusAnswerRelevanceCriteria.ts
  • src/serialization/types/PatronusAnswerRelevanceEvaluator.ts
  • src/serialization/types/PatronusEvaluator.ts
  • src/serialization/types/PatronusGliderCriteria.ts
  • src/serialization/types/PatronusGliderEvaluator.ts
  • src/serialization/types/PatronusGuardrailConfig.ts
  • src/serialization/types/PatronusGuardrailConfigConfig.ts
  • src/serialization/types/PatronusGuardrailConfigConfigTarget.ts
  • src/serialization/types/PatronusJudgeCriteria.ts
  • src/serialization/types/PatronusJudgeEvaluator.ts
  • src/serialization/types/PatronusKeyAuth.ts
  • src/serialization/types/PatronusPhiCriteria.ts
  • src/serialization/types/PatronusPhiEvaluator.ts
  • src/serialization/types/PatronusPiiCriteria.ts
  • src/serialization/types/PatronusPiiEvaluator.ts
  • src/serialization/types/PatronusToxicityCriteria.ts
  • src/serialization/types/PatronusToxicityEvaluator.ts
  • src/serialization/types/PerMillionCharactersCostMetric.ts
  • src/serialization/types/PerMillionCharactersCostMetricValue.ts
  • src/serialization/types/PerMinuteOfAudioCostMetric.ts
  • src/serialization/types/PerMinuteOfAudioCostMetricValue.ts
  • src/serialization/types/PerThousandEmbeddingTokensCostMetric.ts
  • src/serialization/types/PerThousandTokensCostMetric.ts
  • src/serialization/types/PeriodUsage.ts
  • src/serialization/types/PermissionSetV2.ts
  • src/serialization/types/PermissionSetV2ResourceType.ts
  • src/serialization/types/Permissions.ts
  • src/serialization/types/PerplexityAiKeyAuth.ts
  • src/serialization/types/PerplexityAiModel.ts
  • src/serialization/types/PerplexityAiProviderAccount.ts
  • src/serialization/types/PerplexityIntegrations.ts
  • src/serialization/types/PersonalAccessTokenManifest.ts
  • src/serialization/types/PersonalAccessTokenManifestTokenType.ts
  • src/serialization/types/Pip.ts
  • src/serialization/types/Poetry.ts
  • src/serialization/types/Policy.ts
  • src/serialization/types/PolicyActions.ts
  • src/serialization/types/PolicyEntityTypes.ts
  • src/serialization/types/PolicyFilters.ts
  • src/serialization/types/PolicyManifest.ts
  • src/serialization/types/PolicyManifestMode.ts
  • src/serialization/types/PolicyManifestOperation.ts
  • src/serialization/types/PolicyMutationOperation.ts
  • src/serialization/types/PolicyValidationOperation.ts
  • src/serialization/types/PolicyVersion.ts
  • src/serialization/types/Port.ts
  • src/serialization/types/PortAppProtocol.ts
  • src/serialization/types/PortAuth.ts
  • src/serialization/types/PortProtocol.ts
  • src/serialization/types/PresetRegexPattern.ts
  • src/serialization/types/PresetRegexPatternEnum.ts
  • src/serialization/types/PresignedUrlObject.ts
  • src/serialization/types/PriorityBasedLoadBalanceTarget.ts
  • src/serialization/types/PriorityBasedLoadBalancing.ts
  • src/serialization/types/PriorityBasedLoadBalancingRule.ts
  • src/serialization/types/PrivatePricingTier.ts
  • src/serialization/types/PrometheusAlertRule.ts
  • src/serialization/types/Prompt.ts
  • src/serialization/types/PromptSource.ts
  • src/serialization/types/PromptVersion.ts
  • src/serialization/types/ProviderAccount.ts
  • src/serialization/types/ProviderAccountProvider.ts
  • src/serialization/types/ProviderAccounts.ts
  • src/serialization/types/ProviderIntegration.ts
  • src/serialization/types/ProviderIntegrationType.ts
  • src/serialization/types/PublicCostMetric.ts
  • src/serialization/types/PySparkTaskConfig.ts
  • src/serialization/types/PySparkTaskConfigImage.ts
  • src/serialization/types/PyTorchFramework.ts
  • src/serialization/types/PythonBuild.ts
  • src/serialization/types/PythonBuildCommand.ts
  • src/serialization/types/PythonBuildPythonDependencies.ts
  • src/serialization/types/PythonTaskConfig.ts
  • src/serialization/types/PythonTaskConfigImage.ts
  • src/serialization/types/PythonTaskConfigMountsItem.ts
  • src/serialization/types/QuayArtifactsRegistry.ts
  • src/serialization/types/QuayBasicAuth.ts
  • src/serialization/types/QuayIntegrations.ts
  • src/serialization/types/QuayProviderAccount.ts
  • src/serialization/types/QuerySpansResponse.ts
  • src/serialization/types/RStudio.ts
  • src/serialization/types/RateLimitConfig.ts
  • src/serialization/types/RateLimitRule.ts
  • src/serialization/types/RateLimitUnit.ts
  • src/serialization/types/RateLimitWhen.ts
  • src/serialization/types/Recommendation.ts
  • src/serialization/types/Redaction.ts
  • src/serialization/types/RefusalContentPart.ts
  • src/serialization/types/RegexConstraint.ts
  • src/serialization/types/RegexGuardrailConfig.ts
  • src/serialization/types/RegexGuardrailConfigConfig.ts
  • src/serialization/types/RegexGuardrailConfigOperation.ts
  • src/serialization/types/RegisterUsersResponse.ts
  • src/serialization/types/RemoteAgent.ts
  • src/serialization/types/RemoteMcpServerManifest.ts
  • src/serialization/types/RemoteSource.ts
  • src/serialization/types/RemoteSpecSource.ts
  • src/serialization/types/ResourceType.ts
  • src/serialization/types/Resources.ts
  • src/serialization/types/ResourcesDevicesItem.ts
  • src/serialization/types/ResourcesNode.ts
  • src/serialization/types/ResponseFormatJsonObject.ts
  • src/serialization/types/ResponseFormatJsonSchema.ts
  • src/serialization/types/ResponseFormatJsonSchemaJsonSchema.ts
  • src/serialization/types/ResponseFormatText.ts
  • src/serialization/types/RetryConfig.ts
  • src/serialization/types/RevokeAllPersonalAccessTokenResponse.ts
  • src/serialization/types/Role.ts
  • src/serialization/types/RoleBinding.ts
  • src/serialization/types/RoleBindingManifest.ts
  • src/serialization/types/RoleBindingPermission.ts
  • src/serialization/types/RoleBindingSubject.ts
  • src/serialization/types/RoleBindingSubjectType.ts
  • src/serialization/types/RoleManifest.ts
  • src/serialization/types/RoleResourceType.ts
  • src/serialization/types/RoleWithResource.ts
  • src/serialization/types/RoleWithResourceResourceType.ts
  • src/serialization/types/Rolling.ts
  • src/serialization/types/RpsMetric.ts
  • src/serialization/types/Run.ts
  • src/serialization/types/RunData.ts
  • src/serialization/types/RunInfo.ts
  • src/serialization/types/RunParam.ts
  • src/serialization/types/RunTag.ts
  • src/serialization/types/RunTagInput.ts
  • src/serialization/types/SagemakerAssumedRoleBasedAuth.ts
  • src/serialization/types/SagemakerModel.ts
  • src/serialization/types/SambaNovaIntegrations.ts
  • src/serialization/types/SambaNovaKeyAuth.ts
  • src/serialization/types/SambaNovaModel.ts
  • src/serialization/types/SambaNovaProviderAccount.ts
  • src/serialization/types/SampleAgentInput.ts
  • src/serialization/types/Schedule.ts
  • src/serialization/types/ScheduleConcurrencyPolicy.ts
  • src/serialization/types/SearchRunsResponse.ts
  • src/serialization/types/Secret.ts
  • src/serialization/types/SecretDetectionGuardrailConfig.ts
  • src/serialization/types/SecretDetectionGuardrailConfigConfig.ts
  • src/serialization/types/SecretDetectionGuardrailConfigOperation.ts
  • src/serialization/types/SecretGroup.ts
  • src/serialization/types/SecretGroupManifest.ts
  • src/serialization/types/SecretInput.ts
  • src/serialization/types/SecretMount.ts
  • src/serialization/types/SecretStoreConfig.ts
  • src/serialization/types/SecretVersion.ts
  • src/serialization/types/SelfHostedAgent.ts
  • src/serialization/types/SelfHostedModel.ts
  • src/serialization/types/SelfHostedModelAuthData.ts
  • src/serialization/types/SelfHostedModelIntegrations.ts
  • src/serialization/types/SelfHostedModelModelServer.ts
  • src/serialization/types/SelfHostedModelProviderAccount.ts
  • src/serialization/types/SemanticCacheConfig.ts
  • src/serialization/types/SemanticCacheSettings.ts
  • src/serialization/types/Service.ts
  • src/serialization/types/ServiceAutoscaling.ts
  • src/serialization/types/ServiceAutoscalingMetrics.ts
  • src/serialization/types/ServiceReplicas.ts
  • src/serialization/types/ServiceRolloutStrategy.ts
  • src/serialization/types/Session.ts
  • src/serialization/types/SessionAccount.ts
  • src/serialization/types/SessionActor.ts
  • src/serialization/types/SessionTeam.ts
  • src/serialization/types/Settings.ts
  • src/serialization/types/SignedUrl.ts
  • src/serialization/types/SklearnFramework.ts
  • src/serialization/types/SklearnModelSchema.ts
  • src/serialization/types/SklearnSerializationFormat.ts
  • src/serialization/types/SlaCutoff.ts
  • src/serialization/types/SlackBot.ts
  • src/serialization/types/SlackBotAuth.ts
  • src/serialization/types/SlackBotIntegration.ts
  • src/serialization/types/SlackIntegrations.ts
  • src/serialization/types/SlackProviderAccount.ts
  • src/serialization/types/SlackWebhook.ts
  • src/serialization/types/SlackWebhookAuth.ts
  • src/serialization/types/SlackWebhookIntegration.ts
  • src/serialization/types/SmallestAiApiKeyAuth.ts
  • src/serialization/types/SmallestAiModel.ts
  • src/serialization/types/SmallestAiProviderAccount.ts
  • src/serialization/types/SmtpCredentials.ts
  • src/serialization/types/SnowflakeConfig.ts
  • src/serialization/types/SnowflakeCortexIntegrations.ts
  • src/serialization/types/SnowflakeCortexModel.ts
  • src/serialization/types/SnowflakeCortexPatTokenAuth.ts
  • src/serialization/types/SnowflakeCortexProviderAccount.ts
  • src/serialization/types/SnowflakeSql.ts
  • src/serialization/types/SnowflakeTaskConfig.ts
  • src/serialization/types/SortDirection.ts
  • src/serialization/types/SpaCyFramework.ts
  • src/serialization/types/SpanAttributeFilter.ts
  • src/serialization/types/SpanAttributeFilterOperator.ts
  • src/serialization/types/SpanAttributeFilterValue.ts
  • src/serialization/types/SpanFieldFilter.ts
  • src/serialization/types/SpanFieldFilterOperator.ts
  • src/serialization/types/SpanFieldFilterSpanFieldName.ts
  • src/serialization/types/SpanFieldFilterValue.ts
  • src/serialization/types/SparkBuild.ts
  • src/serialization/types/SparkConfig.ts
  • src/serialization/types/SparkDriverConfig.ts
  • src/serialization/types/SparkExecutorConfig.ts
  • src/serialization/types/SparkExecutorConfigInstances.ts
  • src/serialization/types/SparkExecutorDynamicScaling.ts
  • src/serialization/types/SparkExecutorFixedInstances.ts
  • src/serialization/types/SparkImage.ts
  • src/serialization/types/SparkImageBuild.ts
  • src/serialization/types/SparkImageBuildBuildSource.ts
  • src/serialization/types/SparkJob.ts
  • src/serialization/types/SparkJobEntrypoint.ts
  • src/serialization/types/SparkJobImage.ts
  • src/serialization/types/SparkJobJavaEntrypoint.ts
  • src/serialization/types/SparkJobPythonEntrypoint.ts
  • src/serialization/types/SparkJobPythonNotebookEntrypoint.ts
  • src/serialization/types/SparkJobScalaEntrypoint.ts
  • src/serialization/types/SparkJobScalaNotebookEntrypoint.ts
  • src/serialization/types/SparkJobTrigger.ts
  • src/serialization/types/SparkJobTriggerInput.ts
  • src/serialization/types/SqlSanitizerGuardrailConfig.ts
  • src/serialization/types/SqlSanitizerGuardrailConfigConfig.ts
  • src/serialization/types/SqlSanitizerGuardrailConfigOperation.ts
  • src/serialization/types/SqsInputConfig.ts
  • src/serialization/types/SqsOutputConfig.ts
  • src/serialization/types/SqsQueueMetricConfig.ts
  • src/serialization/types/SqsQueueMetricConfigAuth.ts
  • src/serialization/types/SshServer.ts
  • src/serialization/types/SshServerConfig.ts
  • src/serialization/types/StageArtifactResponse.ts
  • src/serialization/types/StaticFallbackStrategy.ts
  • src/serialization/types/StaticFallbackStrategyDefaultTier.ts
  • src/serialization/types/StaticVolumeConfig.ts
  • src/serialization/types/StatsModelsFramework.ts
  • src/serialization/types/StdioMcpServerManifest.ts
  • src/serialization/types/StickyRouting.ts
  • src/serialization/types/StickySessionIdentifier.ts
  • src/serialization/types/StickySessionIdentifierSource.ts
  • src/serialization/types/StringDataMount.ts
  • src/serialization/types/SubAgent.ts
  • src/serialization/types/Subject.ts
  • src/serialization/types/SubjectClause.ts
  • src/serialization/types/SubjectConditionGroup.ts
  • src/serialization/types/SubjectConditionGroupOperator.ts
  • src/serialization/types/SubjectPermission.ts
  • src/serialization/types/SubjectSubjectType.ts
  • src/serialization/types/SubjectType.ts
  • src/serialization/types/SyncTokenInSecretStoreInfo.ts
  • src/serialization/types/SyncVirtualAccountTokenResponse.ts
  • src/serialization/types/SystemMessage.ts
  • src/serialization/types/SystemMessageContent.ts
  • src/serialization/types/TargetClause.ts
  • src/serialization/types/TargetConditionGroup.ts
  • src/serialization/types/TaskDockerFileBuild.ts
  • src/serialization/types/TaskPySparkBuild.ts
  • src/serialization/types/TaskPythonBuild.ts
  • src/serialization/types/TaskSparkImage.ts
  • src/serialization/types/Team.ts
  • src/serialization/types/TeamBudgetConfig.ts
  • src/serialization/types/TeamBudgetConfigMode.ts
  • src/serialization/types/TeamDataAccessRule.ts
  • src/serialization/types/TeamManifest.ts
  • src/serialization/types/TeamMetadata.ts
  • src/serialization/types/TeamOwnedBy.ts
  • src/serialization/types/TeamSubjectRow.ts
  • src/serialization/types/TenantBudgetConfig.ts
  • src/serialization/types/TenantBudgetConfigMode.ts
  • src/serialization/types/TensorFlowFramework.ts
  • src/serialization/types/TerminateJobResponse.ts
  • src/serialization/types/TextContentPart.ts
  • src/serialization/types/TextContentPartText.ts
  • src/serialization/types/TfyContentModerationGuardrailConfig.ts
  • src/serialization/types/TfyContentModerationGuardrailConfigConfig.ts
  • src/serialization/types/TfyManagedMcpServerManifest.ts
  • src/serialization/types/TfyManagedMcpServerOAuth.ts
  • src/serialization/types/TfyMetadataGuardrailConfig.ts
  • src/serialization/types/TfyMetadataGuardrailConfigConfig.ts
  • src/serialization/types/TfyPiiGuardrailConfig.ts
  • src/serialization/types/TfyPiiGuardrailConfigConfig.ts
  • src/serialization/types/TfyPiiGuardrailConfigOperation.ts
  • src/serialization/types/TfyPromptInjectionGuardrailConfig.ts
  • src/serialization/types/TogetherAiIntegrations.ts
  • src/serialization/types/TogetherAiKeyAuth.ts
  • src/serialization/types/TogetherAiModel.ts
  • src/serialization/types/TogetherAiProviderAccount.ts
  • src/serialization/types/TokenPagination.ts
  • src/serialization/types/ToolCall.ts
  • src/serialization/types/ToolMessage.ts
  • src/serialization/types/ToolMessageContent.ts
  • src/serialization/types/ToolSchema.ts
  • src/serialization/types/TraceSpan.ts
  • src/serialization/types/TracingProject.ts
  • src/serialization/types/TracingProjectControlPlaneManagedStorage.ts
  • src/serialization/types/TracingProjectCustomerManagedStorage.ts
  • src/serialization/types/TracingProjectManifest.ts
  • src/serialization/types/TracingProjectStorageConfig.ts
  • src/serialization/types/TransformersFramework.ts
  • src/serialization/types/TriggerJobRunResponse.ts
  • src/serialization/types/TrojAiClientIdAuth.ts
  • src/serialization/types/TrojAiGuardrailConfig.ts
  • src/serialization/types/TrojAiGuardrailConfigConfig.ts
  • src/serialization/types/TrojAiGuardrailConfigOperation.ts
  • src/serialization/types/TrueFoundryAgentAskUserQuestionsConfig.ts
  • src/serialization/types/TrueFoundryAgentCompactionConfig.ts
  • src/serialization/types/TrueFoundryAgentConfig.ts
  • src/serialization/types/TrueFoundryAgentContextManagementConfig.ts
  • src/serialization/types/TrueFoundryAgentDynamicSubAgentsConfig.ts
  • src/serialization/types/TrueFoundryAgentGenerativeUiConfig.ts
  • src/serialization/types/TrueFoundryAgentGitSourceSkill.ts
  • src/serialization/types/TrueFoundryAgentLargeToolResponseConfig.ts
  • src/serialization/types/TrueFoundryAgentManifest.ts
  • src/serialization/types/TrueFoundryAgentMcpServer.ts
  • src/serialization/types/TrueFoundryAgentMcpServerInline.ts
  • src/serialization/types/TrueFoundryAgentMcpServerRegistry.ts
  • src/serialization/types/TrueFoundryAgentModel.ts
  • src/serialization/types/TrueFoundryAgentModelParams.ts
  • src/serialization/types/TrueFoundryAgentResponseFormat.ts
  • src/serialization/types/TrueFoundryAgentSandboxAuthData.ts
  • src/serialization/types/TrueFoundryAgentSandboxAuthInject.ts
  • src/serialization/types/TrueFoundryAgentSandboxAuthInjectMatch.ts
  • src/serialization/types/TrueFoundryAgentSandboxBasicAuthData.ts
  • src/serialization/types/TrueFoundryAgentSandboxConfig.ts
  • src/serialization/types/TrueFoundryAgentSandboxGitAuthInject.ts
  • src/serialization/types/TrueFoundryAgentSandboxNetworkPolicy.ts
  • src/serialization/types/TrueFoundryAgentSkill.ts
  • src/serialization/types/TrueFoundryAgentTrueFoundrySkill.ts
  • src/serialization/types/TrueFoundryAgentUserMessage.ts
  • src/serialization/types/TrueFoundryAgentVariable.ts
  • src/serialization/types/TrueFoundryApplyRequestManifest.ts
  • src/serialization/types/TrueFoundryApplyResponse.ts
  • src/serialization/types/TrueFoundryApplyResponseAction.ts
  • src/serialization/types/TrueFoundryApplyResponseData.ts
  • src/serialization/types/TrueFoundryApplyResponseExistingManifest.ts
  • src/serialization/types/TrueFoundryArtifactSource.ts
  • src/serialization/types/TrueFoundryDbssm.ts
  • src/serialization/types/TrueFoundryDeleteRequestManifest.ts
  • src/serialization/types/TrueFoundryDeleteResponse.ts
  • src/serialization/types/TrueFoundryIntegrations.ts
  • src/serialization/types/TrueFoundryInteractiveLogin.ts
  • src/serialization/types/TrueFoundryManagedSource.ts
  • src/serialization/types/TrueFoundryProviderAccount.ts
  • src/serialization/types/TruefoundryBackedIdentity.ts
  • src/serialization/types/TruefoundryFlyteTaskTemplate.ts
  • src/serialization/types/TtlIntegrations.ts
  • src/serialization/types/TtlProviderAccount.ts
  • src/serialization/types/TtlRegistry.ts
  • src/serialization/types/UpdateRunResponse.ts
  • src/serialization/types/UpdateSecretInput.ts
  • src/serialization/types/UpdateUserRolesResponse.ts
  • src/serialization/types/UpgradeData.ts
  • src/serialization/types/UploadSpecSource.ts
  • src/serialization/types/UsageCodeSnippet.ts
  • src/serialization/types/User.ts
  • src/serialization/types/UserMessage.ts
  • src/serialization/types/UserMessageContent.ts
  • src/serialization/types/UserMessageContentOneItem.ts
  • src/serialization/types/UserMetadata.ts
  • src/serialization/types/UserMetadataTenantRoleManagedBy.ts
  • src/serialization/types/UserResource.ts
  • src/serialization/types/UserTeamInfo.ts
  • src/serialization/types/Uv.ts
  • src/serialization/types/ValueConstraint.ts
  • src/serialization/types/VcsTokenAuthData.ts
  • src/serialization/types/VcsoAuthAuthData.ts
  • src/serialization/types/VertexKeyFileAuth.ts
  • src/serialization/types/VertexKeyFileAuthKeyFileContent.ts
  • src/serialization/types/VertexModel.ts
  • src/serialization/types/VertexRegion.ts
  • src/serialization/types/VertexWifFileAuth.ts
  • src/serialization/types/VertexWifFileAuthKeyFileContent.ts
  • src/serialization/types/VirtualAccount.ts
  • src/serialization/types/VirtualAccountManifest.ts
  • src/serialization/types/VirtualAccountManifestTokenType.ts
  • src/serialization/types/VirtualAccountOwnedBy.ts
  • src/serialization/types/VirtualMcpServerIntegration.ts
  • src/serialization/types/VirtualMcpServerManifest.ts
  • src/serialization/types/VirtualMcpServerSource.ts
  • src/serialization/types/VirtualModel.ts
  • src/serialization/types/VirtualModelModelType.ts
  • src/serialization/types/VirtualModelProviderAccount.ts
  • src/serialization/types/Volume.ts
  • src/serialization/types/VolumeBrowser.ts
  • src/serialization/types/VolumeConfig.ts
  • src/serialization/types/VolumeMount.ts
  • src/serialization/types/WaferApiKeyAuth.ts
  • src/serialization/types/WaferIntegrations.ts
  • src/serialization/types/WaferModel.ts
  • src/serialization/types/WaferProviderAccount.ts
  • src/serialization/types/WebhookBasicAuth.ts
  • src/serialization/types/WebhookBearerAuth.ts
  • src/serialization/types/WebhookIntegration.ts
  • src/serialization/types/WebhookIntegrationAuthData.ts
  • src/serialization/types/WebhookIntegrations.ts
  • src/serialization/types/WebhookProviderAccount.ts
  • src/serialization/types/WeightBasedLoadBalancing.ts
  • src/serialization/types/WeightBasedLoadBalancingRule.ts
  • src/serialization/types/WorkbenchImage.ts
  • src/serialization/types/WorkerConfig.ts
  • src/serialization/types/WorkerConfigInputConfig.ts
  • src/serialization/types/WorkerConfigOutputConfig.ts
  • src/serialization/types/Workflow.ts
  • src/serialization/types/WorkflowAlert.ts
  • src/serialization/types/WorkflowFlyteEntitiesItem.ts
  • src/serialization/types/WorkflowSource.ts
  • src/serialization/types/Workspace.ts
  • src/serialization/types/WorkspaceManifest.ts
  • src/serialization/types/XaiIntegrations.ts
  • src/serialization/types/XaiKeyAuth.ts
  • src/serialization/types/XaiModel.ts
  • src/serialization/types/XaiProviderAccount.ts
  • src/serialization/types/XgBoostFramework.ts
  • src/serialization/types/XgBoostModelSchema.ts
  • src/serialization/types/XgBoostSerializationFormat.ts
  • src/serialization/types/index.ts
  • tests/custom.test.ts
  • tests/setup.ts
  • tests/tsconfig.json
  • tests/unit/fetcher/Fetcher.test.ts
  • tests/unit/fetcher/createRequestUrl.test.ts
  • tests/unit/fetcher/getResponseBody.test.ts
  • tests/unit/fetcher/makePassthroughRequest.test.ts
  • tests/unit/fetcher/makeRequest.test.ts
  • tests/unit/fetcher/requestWithRetries.test.ts
  • tests/unit/url/QueryStringBuilder.test.ts
  • tests/wire/agentSkillVersions.test.ts
  • tests/wire/agentSkills.test.ts
  • tests/wire/agentVersions.test.ts
  • tests/wire/agents.test.ts
  • tests/wire/alerts.test.ts
  • tests/wire/applicationVersions.test.ts
  • tests/wire/applications.test.ts
  • tests/wire/artifactVersions.test.ts
  • tests/wire/artifacts.test.ts
  • tests/wire/clusters.test.ts
  • tests/wire/dataDirectories.test.ts
  • tests/wire/environments.test.ts
  • tests/wire/events.test.ts
  • tests/wire/gatewayBudgets.test.ts
  • tests/wire/internal.test.ts
  • tests/wire/internal/aiGateway.test.ts
  • tests/wire/internal/applications.test.ts
  • tests/wire/internal/artifactVersions.test.ts
  • tests/wire/internal/buildLogs.test.ts
  • tests/wire/internal/clusters.test.ts
  • tests/wire/internal/deployments.test.ts
  • tests/wire/internal/dockerRegistries.test.ts
  • tests/wire/internal/metrics.test.ts
  • tests/wire/internal/users.test.ts
  • tests/wire/internal/vcs.test.ts
  • tests/wire/internal/workflows.test.ts
  • tests/wire/jobs.test.ts
  • tests/wire/logs.test.ts
  • tests/wire/main.test.ts
  • tests/wire/mlRepos.test.ts
  • tests/wire/modelVersions.test.ts
  • tests/wire/models.test.ts
  • tests/wire/personalAccessTokens.test.ts
  • tests/wire/promptVersions.test.ts
  • tests/wire/prompts.test.ts
  • tests/wire/runs.test.ts
  • tests/wire/secretGroups.test.ts
  • tests/wire/secrets.test.ts
  • tests/wire/teams.test.ts
  • tests/wire/traces.test.ts
  • tests/wire/users.test.ts
  • tests/wire/virtualAccounts.test.ts
  • tests/wire/workspaces.test.ts
  • tsconfig.base.json
  • tsconfig.cjs.json
  • tsconfig.esm.json
  • tsconfig.json
  • vitest.config.mts

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant