Skip to content

Commit

Permalink
remove unused interfaces (#21898)
Browse files Browse the repository at this point in the history
* update to be inside core namespace

* update proto references to removed namespace

* remove unused interfaces
  • Loading branch information
m-nash authored Jun 16, 2021
1 parent 5598b19 commit 9de2456
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 225 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Proto.Authorization
/// <summary>
/// Operations over Role Assignments for Role-based access control to ARM resources
/// </summary>
public class RoleAssignmentOperations : ExtensionResourceOperationsBase<RoleAssignment>, IDeletableResource
public class RoleAssignmentOperations : ExtensionResourceOperationsBase<RoleAssignment>
{
/// <summary>
/// Gets the resource type for Role Assignments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Proto.Compute
/// <summary>
/// A class representing the operations that can be performed over a specific availability set.
/// </summary>
public class AvailabilitySetOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, AvailabilitySet>, ITaggableResource<ResourceGroupResourceIdentifier, AvailabilitySet>, IDeletableResource
public class AvailabilitySetOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, AvailabilitySet>
{
/// <summary>
/// Initializes a new instance of the <see cref="GenericResourceOperations"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Proto.Compute
/// <summary>
/// A class representing the operations that can be performed over a specific VirtualMachine.
/// </summary>
public class VirtualMachineOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, VirtualMachine>, ITaggableResource<ResourceGroupResourceIdentifier, VirtualMachine>, IDeletableResource
public class VirtualMachineOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, VirtualMachine>
{
/// <summary>
/// Initializes a new instance of the <see cref="VirtualMachineOperations"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Proto.Compute
/// <summary>
/// A class representing the operations that can be performed over a specific VirtualMachineScaleSet.
/// </summary>
public class VirtualMachineScaleSetOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, VirtualMachineScaleSet>, ITaggableResource<ResourceGroupResourceIdentifier, VirtualMachineScaleSet>, IDeletableResource
public class VirtualMachineScaleSetOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, VirtualMachineScaleSet>
{
/// <summary>
/// Initializes a new instance of the <see cref="VirtualMachineScaleSetOperations"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Proto.Network
/// A class representing the operations that can be performed over a specific LoadBalancer.
/// </summary>
// TODO, ITaggable was not added.
public class LoadBalancerOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, LoadBalancer>, IDeletableResource
public class LoadBalancerOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, LoadBalancer>
{
/// <summary>
/// Initializes a new instance of the <see cref="LoadBalancerOperations"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Proto.Network
/// <summary>
/// A class representing the operations that can be pefroemd over a specific <see cref="NetworkInterface"/>.
/// </summary>
public class NetworkInterfaceOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, NetworkInterface>, ITaggableResource<ResourceGroupResourceIdentifier,NetworkInterface>, IDeletableResource
public class NetworkInterfaceOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, NetworkInterface>
{
internal NetworkInterfaceOperations(GenericResourceOperations genericOperations)
: base(genericOperations, genericOperations.Id)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Proto.Network
/// <summary>
/// A class representing the operations that can be performed over a specific NetworkSecurityGroup.
/// </summary>
public class NetworkSecurityGroupOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, NetworkSecurityGroup>, ITaggableResource<ResourceGroupResourceIdentifier, NetworkSecurityGroup>, IDeletableResource
public class NetworkSecurityGroupOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, NetworkSecurityGroup>
{
/// <summary>
/// Initializes a new instance of the <see cref="NetworkSecurityGroupOperations"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Proto.Network
/// <summary>
/// A class representing the operations that can be performed over a specific NetworkSecurityGroup.
/// </summary>
public class PublicIpAddressOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, PublicIpAddress>, ITaggableResource<ResourceGroupResourceIdentifier, PublicIpAddress>, IDeletableResource
public class PublicIpAddressOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, PublicIpAddress>
{
/// <summary>
/// Initializes a new instance of the <see cref="PublicIpAddressOperations"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Proto.Network
/// <summary>
/// A class representing the operations that can be performed over a specific subnet.
/// </summary>
public class SubnetOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, Subnet>, IDeletableResource
public class SubnetOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, Subnet>
{
/// <summary>
/// Initializes a new instance of the <see cref="SubnetOperations"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Proto.Network
/// <summary>
/// A class representing the operations that can be performed over a specific virtual nerwork.
/// </summary>
public class VirtualNetworkOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, VirtualNetwork>, ITaggableResource<ResourceGroupResourceIdentifier, VirtualNetwork>, IDeletableResource
public class VirtualNetworkOperations : ResourceOperationsBase<ResourceGroupResourceIdentifier, VirtualNetwork>
{
/// <summary>
/// Initializes a new instance of the <see cref="VirtualNetworkOperations"/> class.
Expand Down

0 comments on commit 9de2456

Please sign in to comment.