Skip to content

Commit 984828e

Browse files
authored
feat(qaas): add session parameters (scaleway#2683)
1 parent 9f796ee commit 984828e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

api/qaas/v1alpha1/qaas_sdk.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,6 +1276,9 @@ type Session struct {
12761276

12771277
// ModelID: default computation model ID to be executed by job assigned to this session.
12781278
ModelID *string `json:"model_id"`
1279+
1280+
// Parameters: platform configuration parameters applied to this session.
1281+
Parameters *string `json:"parameters"`
12791282
}
12801283

12811284
// CancelJobRequest: cancel job request.
@@ -1372,6 +1375,9 @@ type CreateSessionRequest struct {
13721375

13731376
// ModelID: default computation model ID to be executed by job assigned to this session.
13741377
ModelID *string `json:"model_id,omitempty"`
1378+
1379+
// Parameters: optional platform configuration parameters applied to this session.
1380+
Parameters *string `json:"parameters,omitempty"`
13751381
}
13761382

13771383
// DeleteJobRequest: delete job request.

0 commit comments

Comments
 (0)