Skip to content
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
92 changes: 92 additions & 0 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1408,6 +1408,14 @@ <h2>Table of Contents</h2>
<a href="#metalstack.api.v2.TenantServiceInvitesListResponse"><span class="badge">M</span>TenantServiceInvitesListResponse</a>
</li>

<li>
<a href="#metalstack.api.v2.TenantServiceLeaveRequest"><span class="badge">M</span>TenantServiceLeaveRequest</a>
</li>

<li>
<a href="#metalstack.api.v2.TenantServiceLeaveResponse"><span class="badge">M</span>TenantServiceLeaveResponse</a>
</li>

<li>
<a href="#metalstack.api.v2.TenantServiceListRequest"><span class="badge">M</span>TenantServiceListRequest</a>
</li>
Expand Down Expand Up @@ -1778,6 +1786,14 @@ <h2>Table of Contents</h2>
<a href="#metalstack.api.v2.ProjectServiceInvitesListResponse"><span class="badge">M</span>ProjectServiceInvitesListResponse</a>
</li>

<li>
<a href="#metalstack.api.v2.ProjectServiceLeaveRequest"><span class="badge">M</span>ProjectServiceLeaveRequest</a>
</li>

<li>
<a href="#metalstack.api.v2.ProjectServiceLeaveResponse"><span class="badge">M</span>ProjectServiceLeaveResponse</a>
</li>

<li>
<a href="#metalstack.api.v2.ProjectServiceListRequest"><span class="badge">M</span>ProjectServiceListRequest</a>
</li>
Expand Down Expand Up @@ -11850,6 +11866,37 @@ <h3 id="metalstack.api.v2.TenantServiceInvitesListResponse">TenantServiceInvites



<h3 id="metalstack.api.v2.TenantServiceLeaveRequest">TenantServiceLeaveRequest</h3>
<p>TenantServiceLeaveTenantRequest is used to leave a tenant</p>


<table class="field-table">
<thead>
<tr><td>Field</td><td>Type</td><td>Label</td><td>Description</td></tr>
</thead>
<tbody>

<tr>
<td>login</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p>Login of the tenant </p></td>
</tr>

</tbody>
</table>





<h3 id="metalstack.api.v2.TenantServiceLeaveResponse">TenantServiceLeaveResponse</h3>
<p>TenantServiceLeaveTenantResponse is the response payload to a leave tenant request</p>





<h3 id="metalstack.api.v2.TenantServiceListRequest">TenantServiceListRequest</h3>
<p>TenantServiceListRequest is the request payload of the tenant list request</p>

Expand Down Expand Up @@ -12151,6 +12198,13 @@ <h3 id="metalstack.api.v2.TenantService">TenantService</h3>
<td><p>Delete a tenant</p></td>
</tr>

<tr>
<td>Leave</td>
<td><a href="#metalstack.api.v2.TenantServiceLeaveRequest">TenantServiceLeaveRequest</a></td>
<td><a href="#metalstack.api.v2.TenantServiceLeaveResponse">TenantServiceLeaveResponse</a></td>
<td><p>Leave remove a member of a tenant</p></td>
</tr>

<tr>
<td>RemoveMember</td>
<td><a href="#metalstack.api.v2.TenantServiceRemoveMemberRequest">TenantServiceRemoveMemberRequest</a></td>
Expand Down Expand Up @@ -14355,6 +14409,37 @@ <h3 id="metalstack.api.v2.ProjectServiceInvitesListResponse">ProjectServiceInvit



<h3 id="metalstack.api.v2.ProjectServiceLeaveRequest">ProjectServiceLeaveRequest</h3>
<p>ProjectServiceLeaveRequest is used to leave a project</p>


<table class="field-table">
<thead>
<tr><td>Field</td><td>Type</td><td>Label</td><td>Description</td></tr>
</thead>
<tbody>

<tr>
<td>project</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p>Project is the uuid of the project </p></td>
</tr>

</tbody>
</table>





<h3 id="metalstack.api.v2.ProjectServiceLeaveResponse">ProjectServiceLeaveResponse</h3>
<p>ProjectServiceLeaveResponse is the response payload to a leave project request</p>





<h3 id="metalstack.api.v2.ProjectServiceListRequest">ProjectServiceListRequest</h3>
<p>ProjectServiceListRequest is the request payload to list all projects</p>

Expand Down Expand Up @@ -14656,6 +14741,13 @@ <h3 id="metalstack.api.v2.ProjectService">ProjectService</h3>
<td><p>Update a project</p></td>
</tr>

<tr>
<td>Leave</td>
<td><a href="#metalstack.api.v2.ProjectServiceLeaveRequest">ProjectServiceLeaveRequest</a></td>
<td><a href="#metalstack.api.v2.ProjectServiceLeaveResponse">ProjectServiceLeaveResponse</a></td>
<td><p>Leave project</p></td>
</tr>

<tr>
<td>RemoveMember</td>
<td><a href="#metalstack.api.v2.ProjectServiceRemoveMemberRequest">ProjectServiceRemoveMemberRequest</a></td>
Expand Down
34 changes: 34 additions & 0 deletions go/metalstack/api/v2/apiv2connect/project.connect.go

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

34 changes: 34 additions & 0 deletions go/metalstack/api/v2/apiv2connect/tenant.connect.go

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

Loading
Loading