File tree Expand file tree Collapse file tree 3 files changed +26
-4
lines changed
src/api/resources/mlRepos/client Expand file tree Collapse file tree 3 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -4198,7 +4198,15 @@ Creates or updates an MLRepo entity based on the provided manifest.
4198
4198
``` typescript
4199
4199
await client .mlRepos .createOrUpdate ({
4200
4200
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
+ ],
4202
4210
},
4203
4211
});
4204
4212
```
Original file line number Diff line number Diff line change @@ -45,7 +45,13 @@ export class MlRepos {
45
45
* @example
46
46
* await client.mlRepos.createOrUpdate({
47
47
* 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
+ * }]
49
55
* }
50
56
* })
51
57
*/
Original file line number Diff line number Diff line change 2
2
* This file was auto-generated by Fern from our API Definition.
3
3
*/
4
4
5
+ import * as TrueFoundry from "../../../../index" ;
6
+
5
7
/**
6
8
* @example
7
9
* {
8
10
* 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
+ * }]
10
18
* }
11
19
* }
12
20
*/
13
21
export interface ApplyMlRepoRequest {
14
22
/** MLRepo manifest */
15
- manifest : Record < string , unknown > ;
23
+ manifest : TrueFoundry . MlRepoManifest ;
16
24
}
You can’t perform that action at this time.
0 commit comments