Skip to content

Commit

Permalink
Merge pull request #22 from arangodb-managed/OAS-9276
Browse files Browse the repository at this point in the history
OAS-9276 | Add ListDeploymentModelsRequest.deployment_id as optional field
  • Loading branch information
Robert-Stam authored Mar 7, 2024
2 parents fedd760 + 479f3e0 commit 8b226d8
Show file tree
Hide file tree
Showing 6 changed files with 464 additions and 376 deletions.
800 changes: 427 additions & 373 deletions data/v1/data.pb.go

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions data/v1/data.pb.gw.go

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

5 changes: 4 additions & 1 deletion data/v1/data.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// DISCLAIMER
//
// Copyright 2020-2023 ArangoDB GmbH, Cologne, Germany
// Copyright 2020-2024 ArangoDB GmbH, Cologne, Germany
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -903,6 +903,9 @@ message DeploymentModelList {
message ListDeploymentModelsRequest {
// Identifier of project that will own a deployment.
string project_id = 1;
// Optional identifier of a deployment, so the current model can be added to the list if needed
// This deployment should be inside the provided project
string deployment_id = 2;
}

// CPUSize specifies the a specific level of CPU for a node.
Expand Down
4 changes: 2 additions & 2 deletions data/v1/version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// DISCLAIMER
//
// Copyright 2020-2023 ArangoDB GmbH, Cologne, Germany
// Copyright 2020-2024 ArangoDB GmbH, Cologne, Germany
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -28,5 +28,5 @@ const (
// APIMinorVersion contains minor version of this API
APIMinorVersion = 8
// APIPatchVersion contains patch version of this API
APIPatchVersion = 18
APIPatchVersion = 19
)
8 changes: 8 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11440,6 +11440,14 @@ <h3 id="arangodb.cloud.data.v1.ListDeploymentModelsRequest">ListDeploymentModels
<td><p>Identifier of project that will own a deployment. </p></td>
</tr>

<tr>
<td>deployment_id</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p>Optional identifier of a deployment, so the current model can be added to the list if needed
This deployment should be inside the provided project </p></td>
</tr>

</tbody>
</table>

Expand Down
5 changes: 5 additions & 0 deletions typescript/data/v1/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1292,6 +1292,11 @@ export interface ListDeploymentModelsRequest {
// Identifier of project that will own a deployment.
// string
project_id?: string;

// Optional identifier of a deployment, so the current model can be added to the list if needed
// This deployment should be inside the provided project
// string
deployment_id?: string;
}

// Request arguments for ListDeploymentsByFilter.
Expand Down

0 comments on commit 8b226d8

Please sign in to comment.