patchCoreV1NamespacedEndpoints method

Future<Endpoints> patchCoreV1NamespacedEndpoints({
  1. required Endpoints body,
  2. required String name,
  3. required String namespace,
  4. bool? pretty,
  5. PatchType patchType = PatchType.mergePatch,
})

Partially update the specified Endpoints.

name Name of the Endpoints.

namespace Object name and auth scope, such as for teams and projects.

pretty If true, then the output is pretty printed.

Implementation

Future<api_core_v1.Endpoints> patchCoreV1NamespacedEndpoints({
  required api_core_v1.Endpoints body,
  required String name,
  required String namespace,
  bool? pretty,
  PatchType patchType = PatchType.mergePatch,
}) async {
  final queryStrings = <String, Object>{};
  if (pretty != null) {
    queryStrings['pretty'] = pretty;
  }

  final query =
      queryStrings.isEmpty ? '' : '?${_joinQueryStrings(queryStrings)}';

  final jsonBody = jsonEncode(body.toJson());
  final result = await _patchJsonMap(
      '/api/v1/namespaces/$namespace/endpoints/$name$query',
      jsonBody,
      patchType);
  return api_core_v1.Endpoints.fromJson(result);
}