Skip to content

Commit edef0d3

Browse files
committed
SDK regeneration
1 parent 571ebfe commit edef0d3

File tree

161 files changed

+1334
-4789
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+1334
-4789
lines changed

reference.md

Lines changed: 349 additions & 1510 deletions
Large diffs are not rendered by default.

src/Client.ts

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,15 @@ import { Applications } from "./api/resources/applications/client/Client";
1919
import { ApplicationVersions } from "./api/resources/applicationVersions/client/Client";
2020
import { Jobs } from "./api/resources/jobs/client/Client";
2121
import { Workspaces } from "./api/resources/workspaces/client/Client";
22-
import { Events } from "./api/resources/events/client/Client";
23-
import { Alerts } from "./api/resources/alerts/client/Client";
2422
import { Logs } from "./api/resources/logs/client/Client";
2523
import { MlRepos } from "./api/resources/mlRepos/client/Client";
2624
import { Artifacts } from "./api/resources/artifacts/client/Client";
27-
import { Agents } from "./api/resources/agents/client/Client";
2825
import { Prompts } from "./api/resources/prompts/client/Client";
29-
import { Tools } from "./api/resources/tools/client/Client";
3026
import { Models } from "./api/resources/models/client/Client";
3127
import { ArtifactVersions } from "./api/resources/artifactVersions/client/Client";
3228
import { ModelVersions } from "./api/resources/modelVersions/client/Client";
3329
import { PromptVersions } from "./api/resources/promptVersions/client/Client";
34-
import { ToolVersions } from "./api/resources/toolVersions/client/Client";
35-
import { AgentVersions } from "./api/resources/agentVersions/client/Client";
3630
import { DataDirectories } from "./api/resources/dataDirectories/client/Client";
37-
import { TracingProjects } from "./api/resources/tracingProjects/client/Client";
3831

3932
export declare namespace TrueFoundryClient {
4033
export interface Options {
@@ -71,22 +64,15 @@ export class TrueFoundryClient {
7164
protected _applicationVersions: ApplicationVersions | undefined;
7265
protected _jobs: Jobs | undefined;
7366
protected _workspaces: Workspaces | undefined;
74-
protected _events: Events | undefined;
75-
protected _alerts: Alerts | undefined;
7667
protected _logs: Logs | undefined;
7768
protected _mlRepos: MlRepos | undefined;
7869
protected _artifacts: Artifacts | undefined;
79-
protected _agents: Agents | undefined;
8070
protected _prompts: Prompts | undefined;
81-
protected _tools: Tools | undefined;
8271
protected _models: Models | undefined;
8372
protected _artifactVersions: ArtifactVersions | undefined;
8473
protected _modelVersions: ModelVersions | undefined;
8574
protected _promptVersions: PromptVersions | undefined;
86-
protected _toolVersions: ToolVersions | undefined;
87-
protected _agentVersions: AgentVersions | undefined;
8875
protected _dataDirectories: DataDirectories | undefined;
89-
protected _tracingProjects: TracingProjects | undefined;
9076

9177
constructor(protected readonly _options: TrueFoundryClient.Options) {}
9278

@@ -142,14 +128,6 @@ export class TrueFoundryClient {
142128
return (this._workspaces ??= new Workspaces(this._options));
143129
}
144130

145-
public get events(): Events {
146-
return (this._events ??= new Events(this._options));
147-
}
148-
149-
public get alerts(): Alerts {
150-
return (this._alerts ??= new Alerts(this._options));
151-
}
152-
153131
public get logs(): Logs {
154132
return (this._logs ??= new Logs(this._options));
155133
}
@@ -162,18 +140,10 @@ export class TrueFoundryClient {
162140
return (this._artifacts ??= new Artifacts(this._options));
163141
}
164142

165-
public get agents(): Agents {
166-
return (this._agents ??= new Agents(this._options));
167-
}
168-
169143
public get prompts(): Prompts {
170144
return (this._prompts ??= new Prompts(this._options));
171145
}
172146

173-
public get tools(): Tools {
174-
return (this._tools ??= new Tools(this._options));
175-
}
176-
177147
public get models(): Models {
178148
return (this._models ??= new Models(this._options));
179149
}
@@ -190,22 +160,10 @@ export class TrueFoundryClient {
190160
return (this._promptVersions ??= new PromptVersions(this._options));
191161
}
192162

193-
public get toolVersions(): ToolVersions {
194-
return (this._toolVersions ??= new ToolVersions(this._options));
195-
}
196-
197-
public get agentVersions(): AgentVersions {
198-
return (this._agentVersions ??= new AgentVersions(this._options));
199-
}
200-
201163
public get dataDirectories(): DataDirectories {
202164
return (this._dataDirectories ??= new DataDirectories(this._options));
203165
}
204166

205-
public get tracingProjects(): TracingProjects {
206-
return (this._tracingProjects ??= new TracingProjects(this._options));
207-
}
208-
209167
/**
210168
* Applies a given manifest to create or update resources of specific types, such as provider-account, cluster, workspace, or ml-repo.
211169
*

0 commit comments

Comments
 (0)