getBucketsWithHttpInfo method

Future<Response> getBucketsWithHttpInfo({
  1. String? zapTraceSpan,
  2. int? offset,
  3. int? limit,
  4. String? after,
  5. String? org,
  6. String? orgID,
  7. String? name,
  8. String? id,
})

List all buckets

Note: This method returns the HTTP Response.

Parameters:

  • String zapTraceSpan: OpenTracing span context

  • int offset:

  • int limit:

  • String after: The last resource ID from which to seek from (but not including). This is to be used instead of offset.

  • String org: The name of the organization.

  • String orgID: The organization ID.

  • String name: Only returns buckets with a specific name.

  • String id: Only returns buckets with a specific ID.

Implementation

Future<Response> getBucketsWithHttpInfo({
  String? zapTraceSpan,
  int? offset,
  int? limit,
  String? after,
  String? org,
  String? orgID,
  String? name,
  String? id,
}) async {
  final path = r'/buckets';

  // ignore: prefer_final_locals
  Object? postBody;

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

  if (offset != null) {
    queryParams
        .addAll(_convertParametersForCollectionFormat('', 'offset', offset));
  }
  if (limit != null) {
    queryParams
        .addAll(_convertParametersForCollectionFormat('', 'limit', limit));
  }
  if (after != null) {
    queryParams
        .addAll(_convertParametersForCollectionFormat('', 'after', after));
  }
  if (org != null) {
    queryParams.addAll(_convertParametersForCollectionFormat('', 'org', org));
  }
  if (orgID != null) {
    queryParams
        .addAll(_convertParametersForCollectionFormat('', 'orgID', orgID));
  }
  if (name != null) {
    queryParams
        .addAll(_convertParametersForCollectionFormat('', 'name', name));
  }
  if (id != null) {
    queryParams.addAll(_convertParametersForCollectionFormat('', 'id', id));
  }

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

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

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