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

@@ -988,6 +988,9 @@ func init() {
"200": {
"description": "share updated"
},
"400": {
"description": "bad request"
},
"401": {
"description": "unauthorized"
},
@@ -1721,9 +1724,21 @@ func init() {
"updateShareRequest": {
"type": "object",
"properties": {
"addAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"backendProxyEndpoint": {
"type": "string"
},
"removeAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"shrToken": {
"type": "string"
}
@@ -2728,6 +2743,9 @@ func init() {
"200": {
"description": "share updated"
},
"400": {
"description": "bad request"
},
"401": {
"description": "unauthorized"
},
@@ -3461,9 +3479,21 @@ func init() {
"updateShareRequest": {
"type": "object",
"properties": {
"addAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"backendProxyEndpoint": {
"type": "string"
},
"removeAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"shrToken": {
"type": "string"
}