@daocloud-proto/ghippo 0.45.0-rc2 → 0.45.0-rc3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/v1alpha1/workspace.pb.ts +3 -0
package/package.json
CHANGED
package/v1alpha1/workspace.pb.ts
CHANGED
|
@@ -540,6 +540,9 @@ export class Workspace {
|
|
|
540
540
|
static BindExclusiveResourceToWorkspace(req: BindExclusiveResourceToWorkspaceRequest, initReq?: fm.InitReq): Promise<BindExclusiveResourceToWorkspaceResponse> {
|
|
541
541
|
return fm.fetchReq<BindExclusiveResourceToWorkspaceRequest, BindExclusiveResourceToWorkspaceResponse>(`/apis/ghippo.io/v1alpha1/workspaces/${req["workspaceId"]}/bind-exclusiveresource`, {...initReq, method: "POST", body: JSON.stringify(req, fm.replacer)})
|
|
542
542
|
}
|
|
543
|
+
static BindExclusiveResourceToWorkspaceWithoutAuthz(req: BindExclusiveResourceToWorkspaceRequest, initReq?: fm.InitReq): Promise<BindExclusiveResourceToWorkspaceResponse> {
|
|
544
|
+
return fm.fetchReq<BindExclusiveResourceToWorkspaceRequest, BindExclusiveResourceToWorkspaceResponse>(`/v1alpha1.workspace.Workspace/BindExclusiveResourceToWorkspaceWithoutAuthz`, {...initReq, method: "POST", body: JSON.stringify(req, fm.replacer)})
|
|
545
|
+
}
|
|
543
546
|
static BindSharedResourceToWorkspace(req: BindSharedResourceToWorkspaceRequest, initReq?: fm.InitReq): Promise<BindSharedResourceToWorkspaceResponse> {
|
|
544
547
|
return fm.fetchReq<BindSharedResourceToWorkspaceRequest, BindSharedResourceToWorkspaceResponse>(`/apis/ghippo.io/v1alpha1/workspaces/${req["workspaceId"]}/bind-sharedresource`, {...initReq, method: "POST", body: JSON.stringify(req, fm.replacer)})
|
|
545
548
|
}
|