Skip to content

Commit 15ddbe7

Browse files
committed
SDK regeneration
1 parent eecd34d commit 15ddbe7

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

reference.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4198,7 +4198,15 @@ Creates or updates an MLRepo entity based on the provided manifest.
41984198
```typescript
41994199
await client.mlRepos.createOrUpdate({
42004200
manifest: {
4201-
key: "value",
4201+
type: "ml-repo",
4202+
name: "name",
4203+
storage_integration_fqn: "storage_integration_fqn",
4204+
collaborators: [
4205+
{
4206+
subject: "subject",
4207+
role_id: "role_id",
4208+
},
4209+
],
42024210
},
42034211
});
42044212
```

src/api/resources/mlRepos/client/Client.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,13 @@ export class MlRepos {
4545
* @example
4646
* await client.mlRepos.createOrUpdate({
4747
* manifest: {
48-
* "key": "value"
48+
* type: "ml-repo",
49+
* name: "name",
50+
* storage_integration_fqn: "storage_integration_fqn",
51+
* collaborators: [{
52+
* subject: "subject",
53+
* role_id: "role_id"
54+
* }]
4955
* }
5056
* })
5157
*/

src/api/resources/mlRepos/client/requests/ApplyMlRepoRequest.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,23 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5+
import * as TrueFoundry from "../../../../index";
6+
57
/**
68
* @example
79
* {
810
* manifest: {
9-
* "key": "value"
11+
* type: "ml-repo",
12+
* name: "name",
13+
* storage_integration_fqn: "storage_integration_fqn",
14+
* collaborators: [{
15+
* subject: "subject",
16+
* role_id: "role_id"
17+
* }]
1018
* }
1119
* }
1220
*/
1321
export interface ApplyMlRepoRequest {
1422
/** MLRepo manifest */
15-
manifest: Record<string, unknown>;
23+
manifest: TrueFoundry.MlRepoManifest;
1624
}

0 commit comments

Comments
 (0)