update share endpoint tweaks (#834)

This commit is contained in:
Michael Quigley
2025-02-04 10:33:39 -05:00
parent 0a8c5f2054
commit fc4a32b301
12 changed files with 356 additions and 94 deletions

View File

@ -1610,7 +1610,26 @@ func init() {
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/updateShareRequest"
"properties": {
"addAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"backendProxyEndpoint": {
"type": "string"
},
"removeAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"shrToken": {
"type": "string"
}
}
}
}
],
@ -2214,29 +2233,6 @@ func init() {
}
}
},
"updateShareRequest": {
"type": "object",
"properties": {
"addAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"backendProxyEndpoint": {
"type": "string"
},
"removeAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"shrToken": {
"type": "string"
}
}
},
"version": {
"type": "string"
}
@ -3791,7 +3787,26 @@ func init() {
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/updateShareRequest"
"properties": {
"addAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"backendProxyEndpoint": {
"type": "string"
},
"removeAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"shrToken": {
"type": "string"
}
}
}
}
],
@ -4451,29 +4466,6 @@ func init() {
}
}
},
"updateShareRequest": {
"type": "object",
"properties": {
"addAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"backendProxyEndpoint": {
"type": "string"
},
"removeAccessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"shrToken": {
"type": "string"
}
}
},
"version": {
"type": "string"
}