update shares to include add/remove access grants (#432)

This commit is contained in:
Michael Quigley
2024-03-06 11:57:03 -05:00
parent 47005abff6
commit 8d368b2b1e
7 changed files with 190 additions and 3 deletions

View File

@ -17,9 +17,15 @@ import (
// swagger:model updateShareRequest
type UpdateShareRequest struct {
// add access grants
AddAccessGrants []string `json:"addAccessGrants"`
// backend proxy endpoint
BackendProxyEndpoint string `json:"backendProxyEndpoint,omitempty"`
// remove access grants
RemoveAccessGrants []string `json:"removeAccessGrants"`
// shr token
ShrToken string `json:"shrToken,omitempty"`
}