postBucketsIDOwnersWithHttpInfo method

Future<Response> postBucketsIDOwnersWithHttpInfo(
  1. String bucketID,
  2. AddResourceMemberRequestBody addResourceMemberRequestBody, {
  3. String? zapTraceSpan,
})

Add an owner to a bucket

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> postBucketsIDOwnersWithHttpInfo(
  String bucketID,
  AddResourceMemberRequestBody addResourceMemberRequestBody, {
  String? zapTraceSpan,
}) async {
  final path =
      r'/buckets/{bucketID}/owners'.replaceAll('{bucketID}', bucketID);

  // ignore: prefer_final_locals
  Object? postBody = addResourceMemberRequestBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  if (zapTraceSpan != null) {
    headerParams[r'Zap-Trace-Span'] = parameterToString(zapTraceSpan);
  }

  const authNames = <String>[
    'BasicAuthentication',
    'QuerystringAuthentication',
    'TokenAuthentication'
  ];
  const contentTypes = <String>['application/json'];

  return apiClient.invokeAPI(
    path,
    'POST',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes[0],
    authNames,
  );
}