File tree 3 files changed +1092
-1030
lines changed
src/main/java/com/azure/resourcemanager
3 files changed +1092
-1030
lines changed Original file line number Diff line number Diff line change 54
54
<dependency >
55
55
<groupId >com.azure.resourcemanager</groupId >
56
56
<artifactId >azure-resourcemanager</artifactId >
57
- <version >2.0 .0</version >
57
+ <version >2.1 .0</version >
58
58
</dependency >
59
59
<dependency >
60
60
<groupId >com.azure</groupId >
61
61
<artifactId >azure-identity</artifactId >
62
- <version >1.1.3 </version >
62
+ <version >1.2.0 </version >
63
63
</dependency >
64
64
<dependency >
65
65
<groupId >commons-net</groupId >
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ public static boolean runSample(final AzureResourceManager azureResourceManager)
104
104
.withNewDataDisk (10 )
105
105
.withNewDataDisk (dataDiskCreatable )
106
106
.withExistingDataDisk (tuple .getT1 ())
107
- .withSize (VirtualMachineSizeTypes .STANDARD_D3_V2 )
107
+ .withSize (VirtualMachineSizeTypes .fromString ( "Standard_D2a_v4" ) )
108
108
.createAsync ();
109
109
}),
110
110
Mono .defer (() -> {
@@ -119,7 +119,7 @@ public static boolean runSample(final AzureResourceManager azureResourceManager)
119
119
.withPopularLinuxImage (KnownLinuxVirtualMachineImage .UBUNTU_SERVER_16_04_LTS )
120
120
.withRootUsername (userName )
121
121
.withRootPassword (password )
122
- .withSize (VirtualMachineSizeTypes .STANDARD_D3_V2 )
122
+ .withSize (VirtualMachineSizeTypes .fromString ( "Standard_D2a_v4" ) )
123
123
.createAsync ();
124
124
})
125
125
)
You can’t perform that action at this time.
0 commit comments