deleteNetworkingV1CollectionNamespacedNetworkPolicy method

Future<Status> deleteNetworkingV1CollectionNamespacedNetworkPolicy({
  1. required String namespace,
  2. bool? pretty,
})

Delete collection of NetworkPolicy.

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

pretty If true, then the output is pretty printed.

Implementation

Future<apimachinery_pkg_apis_meta_v1.Status>
    deleteNetworkingV1CollectionNamespacedNetworkPolicy({
  required String namespace,
  bool? pretty,
}) async {
  final queryStrings = <String, Object>{};
  if (pretty != null) {
    queryStrings['pretty'] = pretty;
  }

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

  final result = await _deleteJsonMap(
      '/apis/networking.k8s.io/v1/namespaces/$namespace/networkpolicies$query');
  return apimachinery_pkg_apis_meta_v1.Status.fromJson(result);
}