Skip to content

Commit

Permalink
Merge pull request #23 from arangodb-managed/OAS-9483
Browse files Browse the repository at this point in the history
OAS-9483 Add new InitialDiskSize field for NoteBook
  • Loading branch information
jwierzbo authored Apr 11, 2024
2 parents 8b226d8 + e69efc4 commit a698175
Show file tree
Hide file tree
Showing 5 changed files with 140 additions and 88 deletions.
9 changes: 8 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17846,7 +17846,14 @@ <h3 id="arangodb.cloud.notebook.v1.NotebookModel">NotebookModel</h3>
<td><p>GPU units allocated to the notebook.
1 GPU unit equals 1 physical / virtual GPU. </p></td>
</tr>


<tr>
<td>initial_disk_size</td>
<td><a href="#int32">int32</a></td>
<td></td>
<td><p>Initial amount of disk space (in GiB) available to the notebook. </p></td>
</tr>

</tbody>
</table>

Expand Down
193 changes: 115 additions & 78 deletions notebook/v1/notebook.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion notebook/v1/notebook.proto
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ message NotebookModel {
int32 min_disk_size = 6;
// GPU units allocated to the notebook.
// 1 GPU unit equals 1 physical / virtual GPU.
float gpu = 7;
float gpu = 7;
// Initial amount of disk space (in GiB) available to the notebook.
int32 initial_disk_size = 8;
}

// List of notebook models.
Expand Down
4 changes: 2 additions & 2 deletions notebook/v1/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const (
// APIMajorVersion contains major version of this API
APIMajorVersion = 1
// APIMinorVersion contains minor version of this API
APIMinorVersion = 0
APIMinorVersion = 1
// APIPatchVersion contains patch version of this API
APIPatchVersion = 4
APIPatchVersion = 0
)
Loading

0 comments on commit a698175

Please sign in to comment.