Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added projectid to sandbox #382

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions api/docs/html/pub/sandbox/v1alpha1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,13 @@ <h3 id="pub.sandbox.v1alpha1.Sandbox">Sandbox</h3>
<td><p> </p></td>
</tr>

<tr>
<td>project_id</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p>Optional. For sandboxes created with a project_id. </p></td>
</tr>

</tbody>
</table>

Expand Down
1 change: 1 addition & 0 deletions api/docs/markdown/pub/sandbox/v1alpha1/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ API to manage Jetify Sandbox environments
| created_at | [google.protobuf.Timestamp](#google-protobuf-Timestamp) | | The time the sandbox was created. |
| updated_at | [google.protobuf.Timestamp](#google-protobuf-Timestamp) | | The time the sandbox was last updated. |
| name | [string](#string) | | |
| project_id | [string](#string) | | Optional. For sandboxes created with a project_id. |



Expand Down
147 changes: 79 additions & 68 deletions api/go/gen/pub/sandbox/v1alpha1/sandbox.pb.go

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

4 changes: 2 additions & 2 deletions api/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jetify/client",
"version": "0.8.0-dev",
"version": "0.9.0-dev",
"description": "Jetify client library for Node.js and the browser",
"keywords": [
"jetify",
Expand Down Expand Up @@ -49,4 +49,4 @@
"engines": {
"node": ">=18"
}
}
}
8 changes: 8 additions & 0 deletions api/ts/src/gen/pub/sandbox/v1alpha1/sandbox_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,13 @@ export class Sandbox extends Message<Sandbox> {
*/
name = "";

/**
* Optional. For sandboxes created with a project_id.
*
* @generated from field: string project_id = 12;
*/
projectId = "";

constructor(data?: PartialMessage<Sandbox>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -717,6 +724,7 @@ export class Sandbox extends Message<Sandbox> {
{ no: 9, name: "created_at", kind: "message", T: Timestamp },
{ no: 10, name: "updated_at", kind: "message", T: Timestamp },
{ no: 11, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 12, name: "project_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
]);

static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Sandbox {
Expand Down