postBucketsIDLabelsWithHttpInfo method
Future<Response>
postBucketsIDLabelsWithHttpInfo(
- String bucketID,
- LabelMapping labelMapping, {
- String? zapTraceSpan,
Add a label to a bucket
Note: This method returns the HTTP Response
.
Parameters:
-
String bucketID (required): The bucket ID.
-
LabelMapping labelMapping (required): Label to add
-
String zapTraceSpan: OpenTracing span context
Implementation
Future<Response> postBucketsIDLabelsWithHttpInfo(
String bucketID,
LabelMapping labelMapping, {
String? zapTraceSpan,
}) async {
final path =
r'/buckets/{bucketID}/labels'.replaceAll('{bucketID}', bucketID);
// ignore: prefer_final_locals
Object? postBody = labelMapping;
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,
);
}