From d104ba0b7c425690b4381b3f86e7d7faded17913 Mon Sep 17 00:00:00 2001 From: fangyuancai Date: Mon, 6 Feb 2023 18:43:28 +0000 Subject: [PATCH] rm old file. --- .../network/v1/networkValidationInterface.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 crd/apis/network/v1/networkValidationInterface.go diff --git a/crd/apis/network/v1/networkValidationInterface.go b/crd/apis/network/v1/networkValidationInterface.go deleted file mode 100644 index 15185a1ee..000000000 --- a/crd/apis/network/v1/networkValidationInterface.go +++ /dev/null @@ -1,17 +0,0 @@ -package v1 - -import ( - "context" - - v1 "k8s.io/cloud-provider-gcp/crd/apis/network/v1" -) - -// NetworkValidationClient knows how to get/list network and get/list interface objects. -type NetworkValidationClient interface { - // GetNetworkInterface find the interfaceList object. - GetNetworkInterface(ctx context.Context, networkName string, network *v1.Network) - // ListNetwork list all the network under the networkName. - ListNetworks(ctx context.Context, networkList *v1.NetworkList) - // ListNetworkInterface list all the interface resources under the networkinterface namespace - ListNetworkInterfaces(ctx context.Context, networkInterfaceList *v1.NetworkInterfaceList) -}