You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The /buckets/{bucketID}/members has defined response type as ResourceOwners:
'/buckets/{bucketID}/members':
get:
tags:
- Users
- Bucketssummary: List all users with member privileges for a bucketparameters:
- $ref: '#/components/parameters/TraceSpan'
- in: pathname: bucketIDschema:
type: stringrequired: truedescription: ID of the bucketresponses:
'200':
description: a list of bucket memberscontent:
application/json:
schema:
$ref: "#/components/schemas/ResourceOwners"default:
description: unexpected errorcontent:
application/json:
schema:
$ref: "#/components/schemas/Error"
but the return type should be ResourceMembers.
The /buckets/{bucketID}/owners has defined response type as ResourceMembers:
'/buckets/{bucketID}/owners':
get:
tags:
- Users
- Bucketssummary: List all owners of a bucketparameters:
- $ref: '#/components/parameters/TraceSpan'
- in: pathname: bucketIDschema:
type: stringrequired: truedescription: ID of the bucketresponses:
'200':
description: a list of bucket ownerscontent:
application/json:
schema:
$ref: "#/components/schemas/ResourceMembers"default:
description: unexpected errorcontent:
application/json:
schema:
$ref: "#/components/schemas/Error"
but the return type should be ResourceOwners.
The text was updated successfully, but these errors were encountered:
The
/buckets/{bucketID}/members
has defined response type asResourceOwners
:but the return type should be
ResourceMembers
.The
/buckets/{bucketID}/owners
has defined response type asResourceMembers
:but the return type should be
ResourceOwners
.The text was updated successfully, but these errors were encountered: