diff --git a/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/VirtualMachineScaleSet.java b/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/VirtualMachineScaleSet.java index 28558f7375ff..71d2ec540d89 100644 --- a/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/VirtualMachineScaleSet.java +++ b/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/VirtualMachineScaleSet.java @@ -123,7 +123,7 @@ public interface VirtualMachineScaleSet extends boolean overProvisionEnabled(); /** - * @return the sku of the virtual machines in the scale set + * @return the SKU of the virtual machines in the scale set */ VirtualMachineScaleSetSkuTypes sku(); @@ -137,14 +137,14 @@ public interface VirtualMachineScaleSet extends * in the scale set. *
* A primary internal load balancer associated with the primary network interfaces of the scale set - * virtual machine will be also belongs to this network + * virtual machine will be also belong to this network *
* @throws IOException the IO exception */ Network primaryNetwork() throws IOException; /** - * @return the internet facing load balancer associated with the primary network interface of + * @return the internet-facing load balancer associated with the primary network interface of * the virtual machines in the scale set. * * @throws IOException the IO exception @@ -152,15 +152,15 @@ public interface VirtualMachineScaleSet extends LoadBalancer primaryInternetFacingLoadBalancer() throws IOException; /** - * @return the internet facing load balancer's backends associated with the primary network interface + * @return the internet-facing load balancer's backends associated with the primary network interface * of the virtual machines in the scale set * * @throws IOException the IO exception */ - Map- * By default all the backend and inbound NAT pool of the load balancer will be associated with the primary + * By default all the backends and inbound NAT pools of the load balancer will be associated with the primary * network interface of the scale set virtual machines unless subset of them is selected in the next stages * {@link WithPrimaryInternetFacingLoadBalancerBackendOrNatPool}. *
@@ -316,7 +316,7 @@ interface WithPrimaryInternetFacingLoadBalancer { WithPrimaryInternetFacingLoadBalancerBackendOrNatPool withPrimaryInternetFacingLoadBalancer(LoadBalancer loadBalancer); /** - * Specifies that no public load balancer needs to be associated with virtual machine scale set. + * Specifies that no public load balancer needs to be associated with the virtual machine scale set. * * @return the next stage of the virtual machine scale set definition */ @@ -325,14 +325,14 @@ interface WithPrimaryInternetFacingLoadBalancer { /** * The stage of the virtual machine scale set definition allowing to specify an internal load balancer for - * the primary network interface of the scale set virtual machines. + * the primary network interface of the virtual machines in the scale set. */ interface WithPrimaryInternalLoadBalancer { /** * Specify the internal load balancer where it's backends and/or NAT pools can be assigned to the primary network * interface of the scale set virtual machines. *
- * By default all the backend and inbound NAT pool of the load balancer will be associated with the primary + * By default all the backends and inbound NAT pools of the load balancer will be associated with the primary * network interface of the scale set virtual machines unless subset of them is selected in the next stages * {@link WithInternalLoadBalancerBackendOrNatPool}. *
@@ -352,12 +352,12 @@ interface WithPrimaryInternalLoadBalancer { /** * The stage of the virtual machine scale set definition allowing to associate backend pool and/or inbound NAT pool - * of the internet facing load balancer selected in the previous state {@link WithPrimaryInternetFacingLoadBalancer} - * with the primary network interface of the scale set virtual machines. + * of the internet-facing load balancer selected in the previous state {@link WithPrimaryInternetFacingLoadBalancer} + * with the primary network interface of the virtual machines in the scale set. */ interface WithPrimaryInternetFacingLoadBalancerBackendOrNatPool extends WithPrimaryInternetFacingLoadBalancerNatPool { /** - * Associate internet facing load balancer backends with the primary network interface of the scale set virtual machines. + * Associate internet-facing load balancer backends with the primary network interface of the the virtual machines in the scale set. * * @param backendNames the backend names * @return the next stage of the virtual machine scale set definition @@ -372,7 +372,7 @@ interface WithPrimaryInternetFacingLoadBalancerBackendOrNatPool extends WithPrim */ interface WithPrimaryInternetFacingLoadBalancerNatPool extends WithPrimaryInternalLoadBalancer { /** - * Associate internet facing load balancer inbound NAT pools with the the primary network interface of the + * Associate internet-facing load balancer inbound NAT pools with the the primary network interface of the * scale set virtual machines. * * @param natPoolNames the inbound NAT pool names @@ -388,7 +388,7 @@ interface WithPrimaryInternetFacingLoadBalancerNatPool extends WithPrimaryIntern */ interface WithInternalLoadBalancerBackendOrNatPool extends WithCreate { /** - * Associate internal load balancer backends with the primary network interface of the scale set virtual machines. + * Associate internal load balancer backends with the primary network interface of the virtual machines in the scale set. * * @param backendNames the backend names * @return the next stage of the virtual machine scale set definition @@ -438,7 +438,7 @@ interface WithOS { /** * Specifies the version of a marketplace Windows image needs to be used. * - * @param imageReference describes publisher, offer, sku and version of the market-place image + * @param imageReference describes publisher, offer, SKU and version of the market-place image * @return the next stage of the virtual machine scale set definition */ WithAdminUserName withSpecificWindowsImageVersion(ImageReference imageReference); @@ -477,7 +477,7 @@ interface WithOS { /** * Specifies the version of a market-place Linux image needs to be used. * - * @param imageReference describes publisher, offer, sku and version of the market-place image + * @param imageReference describes publisher, offer, SKU and version of the market-place image * @return the next stage of the virtual machine scale set definition */ WithRootUserName withSpecificLinuxImageVersion(ImageReference imageReference); @@ -771,16 +771,16 @@ interface UpdateStages { */ interface WithPrimaryLoadBalancer extends WithPrimaryInternalLoadBalancer { /** - * Specifies load balancer to tbe used as the internet facing load balancer for the virtual machines in the + * Specifies load balancer to tbe used as the internet-facing load balancer for the virtual machines in the * scale set. *
- * This will replace the current internet facing load balancer associated with the virtual machines in the + * This will replace the current internet-facing load balancer associated with the virtual machines in the * scale set (if any). * By default all the backend and inbound NAT pool of the load balancer will be associated with the primary * network interface of the scale set virtual machines unless subset of them is selected in the next stages * {@link WithPrimaryInternetFacingLoadBalancerBackendOrNatPool}. *
- * @param loadBalancer the primary internet facing load balancer + * @param loadBalancer the primary internet-facing load balancer * @return the next stage of the virtual machine scale set update allowing to choose backends or inbound * nat pool from the load balancer. */ @@ -789,12 +789,12 @@ interface WithPrimaryLoadBalancer extends WithPrimaryInternalLoadBalancer { /** * The stage of the virtual machine scale set update allowing to associate backend pool and/or inbound NAT pool - * of the internet facing load balancer selected in the previous state {@link WithPrimaryLoadBalancer} + * of the internet-facing load balancer selected in the previous state {@link WithPrimaryLoadBalancer} * with the primary network interface of the scale set virtual machines. */ interface WithPrimaryInternetFacingLoadBalancerBackendOrNatPool extends WithPrimaryInternetFacingLoadBalancerNatPool { /** - * Associate internet facing load balancer backends with the primary network interface of the scale set virtual machines. + * Associate internet-facing load balancer backends with the primary network interface of the scale set virtual machines. * * @param backendNames the backend names * @return the next stage of the virtual machine scale set update allowing to choose inbound nat pool from @@ -810,7 +810,7 @@ interface WithPrimaryInternetFacingLoadBalancerBackendOrNatPool extends WithPrim */ interface WithPrimaryInternetFacingLoadBalancerNatPool extends WithPrimaryInternalLoadBalancer { /** - * Associate internet facing load balancer inbound NAT pools with the the primary network interface of the + * Associate internet-facing load balancer inbound NAT pools with the the primary network interface of the * scale set virtual machines. * * @param natPoolNames the inbound NAT pool names @@ -834,7 +834,7 @@ interface WithPrimaryInternalLoadBalancer extends WithApply { * network interface of the scale set virtual machines unless subset of them is selected in the next stages * {@link WithPrimaryInternalLoadBalancerBackendOrNatPool}. * - * @param loadBalancer the primary internet facing load balancer + * @param loadBalancer the primary internet-facing load balancer * @return the next stage of the virtual machine scale set update allowing to choose backends or inbound * nat pool from the load balancer */ @@ -864,7 +864,7 @@ interface WithPrimaryInternalLoadBalancerBackendOrNatPool extends WithPrimaryInt */ interface WithPrimaryInternalLoadBalancerNatPool extends WithApply { /** - * Associate internet facing load balancer inbound NAT pools with the the primary network interface of the + * Associate internet-facing load balancer inbound NAT pools with the the primary network interface of the * scale set virtual machines. * * @param natPoolNames the inbound NAT pool names @@ -874,21 +874,21 @@ interface WithPrimaryInternalLoadBalancerNatPool extends WithApply { } /** - * The stage of the virtual machine scale set update allowing to change Sku for the virtual machines in the scale set. + * The stage of the virtual machine scale set update allowing to change SKU for the virtual machines in the scale set. */ interface WithSku { /** - * Specifies sku for the virtual machines in the scale set. + * Specifies the SKU for the virtual machines in the scale set. * - * @param skuType the sku type + * @param skuType the SKU type * @return the next stage of the virtual machine scale set update */ WithApply withSku(VirtualMachineScaleSetSkuTypes skuType); /** - * Specifies sku for the virtual machines in the scale set. + * Specifies the SKU for the virtual machines in the scale set. * - * @param sku a sku from the list of available sizes for the virtual machines in this scale set + * @param sku a SKU from the list of available sizes for the virtual machines in this scale set * @return the next stage of the virtual machine scale set update */ WithApply withSku(VirtualMachineScaleSetSku sku); @@ -945,7 +945,7 @@ interface WithExtension { */ interface WithoutPrimaryLoadBalancer { /** - * Remove the internet facing load balancer associated to the primary network interface configuration. + * Remove the internet-facing load balancer associated to the primary network interface configuration. *
* This removes the association between primary network interface configuration and all backend and
* inbound NAT pools in the load balancer.
@@ -973,7 +973,7 @@ interface WithoutPrimaryLoadBalancer {
*/
interface WithoutPrimaryLoadBalancerBackend {
/**
- * Removes association between the primary network interface configuration and backend of the internet facing
+ * Removes association between the primary network interface configuration and backend of the internet-facing
* load balancer.
*
* @param backendNames the existing backend names to remove
@@ -997,7 +997,7 @@ interface WithoutPrimaryLoadBalancerBackend {
interface WithoutPrimaryLoadBalancerNatPool {
/**
* Removes association between the primary network interface configuration and inbound NAT pool of the
- * internet facing load balancer.
+ * internet-facing load balancer.
*
* @param natPoolNames the name of an existing inbound NAT pools to remove
* @return the next stage of the virtual machine scale set update
diff --git a/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/implementation/VirtualMachineScaleSetImpl.java b/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/implementation/VirtualMachineScaleSetImpl.java
index fd1672da35d1..2e2be227c00d 100644
--- a/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/implementation/VirtualMachineScaleSetImpl.java
+++ b/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/implementation/VirtualMachineScaleSetImpl.java
@@ -229,7 +229,7 @@ public LoadBalancer primaryInternetFacingLoadBalancer() throws IOException {
}
@Override
- public Map