insert method

Future<Folder> insert(
  1. Folder request,
  2. String bucket, {
  3. bool? recursive,
  4. String? $fields,
})

Creates a new folder.

Only applicable to buckets with hierarchical namespace enabled.

request - The metadata request object.

Request parameters:

bucket - Name of the bucket in which the folder resides.

recursive - If true, any parent folder which doesn’t exist will be created automatically.

$fields - Selector specifying which fields to include in a partial response.

Completes with a Folder.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<Folder> insert(
  Folder request,
  core.String bucket, {
  core.bool? recursive,
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if (recursive != null) 'recursive': ['${recursive}'],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'b/' + commons.escapeVariable('$bucket') + '/folders';

  final response_ = await _requester.request(
    url_,
    'POST',
    body: body_,
    queryParams: queryParams_,
  );
  return Folder.fromJson(response_ as core.Map<core.String, core.dynamic>);
}