File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/ResourceManager/Compute/Commands.Compute/Common Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 19
19
20
20
namespace Microsoft . Azure . Commands . Compute
21
21
{
22
- public partial class ComputeClient
22
+ public class ComputeClient
23
23
{
24
- public IComputeManagementClient ComputeManagementClient { get ; set ; }
25
-
24
+ public IComputeManagementClient ComputeManagementClient { get ; private set ; }
25
+
26
26
public Action < string > VerboseLogger { get ; set ; }
27
27
28
28
public Action < string > ErrorLogger { get ; set ; }
@@ -32,9 +32,9 @@ public ComputeClient(AzureContext context)
32
32
{
33
33
}
34
34
35
- public ComputeClient ( IComputeManagementClient resourceManagementClient )
35
+ public ComputeClient ( IComputeManagementClient computeManagementClient )
36
36
{
37
- ComputeManagementClient = resourceManagementClient ;
37
+ ComputeManagementClient = computeManagementClient ;
38
38
}
39
39
}
40
40
}
You can’t perform that action at this time.
0 commit comments