From 3b1dccb128445c48ca77a4e9335fa14edce7d24d Mon Sep 17 00:00:00 2001 From: prannair Date: Thu, 21 Mar 2019 11:51:55 -0700 Subject: [PATCH 1/2] Add base interface for virtualnetwork ps class --- .../IVirtualNetworkLinkVirtualNetwork.cs | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/Network/Common/IVirtualNetworkLinkVirtualNetwork.cs diff --git a/src/Network/Common/IVirtualNetworkLinkVirtualNetwork.cs b/src/Network/Common/IVirtualNetworkLinkVirtualNetwork.cs new file mode 100644 index 0000000000..396c488826 --- /dev/null +++ b/src/Network/Common/IVirtualNetworkLinkVirtualNetwork.cs @@ -0,0 +1,22 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Management.Internal.Network.Common +{ + public interface IVirtualNetworkLinkVirtualNetwork + { + string Id { get; set; } + } +} \ No newline at end of file From 1c487ed3833a71cdaaabd111ce09a5149db6612a Mon Sep 17 00:00:00 2001 From: Pranav Nair Date: Fri, 22 Mar 2019 14:09:47 -0700 Subject: [PATCH 2/2] Change interface name to IVirtualNetwork --- ...{IVirtualNetworkLinkVirtualNetwork.cs => IVirtualNetwork.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/Network/Common/{IVirtualNetworkLinkVirtualNetwork.cs => IVirtualNetwork.cs} (94%) diff --git a/src/Network/Common/IVirtualNetworkLinkVirtualNetwork.cs b/src/Network/Common/IVirtualNetwork.cs similarity index 94% rename from src/Network/Common/IVirtualNetworkLinkVirtualNetwork.cs rename to src/Network/Common/IVirtualNetwork.cs index 396c488826..87ef07b623 100644 --- a/src/Network/Common/IVirtualNetworkLinkVirtualNetwork.cs +++ b/src/Network/Common/IVirtualNetwork.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Management.Internal.Network.Common { - public interface IVirtualNetworkLinkVirtualNetwork + public interface IVirtualNetwork { string Id { get; set; } }