@@ -19,22 +19,15 @@ import { Applications } from "./api/resources/applications/client/Client";
1919import { ApplicationVersions } from "./api/resources/applicationVersions/client/Client" ;
2020import { Jobs } from "./api/resources/jobs/client/Client" ;
2121import { 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" ;
2422import { Logs } from "./api/resources/logs/client/Client" ;
2523import { MlRepos } from "./api/resources/mlRepos/client/Client" ;
2624import { Artifacts } from "./api/resources/artifacts/client/Client" ;
27- import { Agents } from "./api/resources/agents/client/Client" ;
2825import { Prompts } from "./api/resources/prompts/client/Client" ;
29- import { Tools } from "./api/resources/tools/client/Client" ;
3026import { Models } from "./api/resources/models/client/Client" ;
3127import { ArtifactVersions } from "./api/resources/artifactVersions/client/Client" ;
3228import { ModelVersions } from "./api/resources/modelVersions/client/Client" ;
3329import { 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" ;
3630import { DataDirectories } from "./api/resources/dataDirectories/client/Client" ;
37- import { TracingProjects } from "./api/resources/tracingProjects/client/Client" ;
3831
3932export 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