blob: 0eecc07291a44952d28c2c8ce59d5c10f145caf1 [file] [log] [blame]
// Copyright 2017 The LUCI Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
syntax = "proto3";
option go_package = "go.chromium.org/luci/machine-db/api/crimson/v1;crimson";
package crimson;
// A request to delete a physical or virtual host from the database.
message DeleteHostRequest {
// The name of the host to delete.
string name = 1;
// The VLAN the host belongs to.
int64 vlan = 2;
}