Skip to content

Commit

Permalink
Generated from 176fb8294b5144a904d3a02afb4a14bee8ec11b2
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Sep 23, 2020
1 parent 378d920 commit 3f36a5e
Show file tree
Hide file tree
Showing 20 changed files with 2,106 additions and 154 deletions.
4 changes: 2 additions & 2 deletions sdk/compute/mgmt-v2020_06_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.3.2</version>
<relativePath>../../parents/azure-arm-parent/pom.xml</relativePath>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-compute</artifactId>
<version>1.0.0-beta</version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public interface VirtualMachine extends HasInner<VirtualMachineInner>, Indexable
/**
* @return the resources value.
*/
List<VirtualMachineVirtualMachineExtension> resources();
List<VirtualMachineExtension> resources();

/**
* @return the securityProfile value.
Expand Down Expand Up @@ -173,7 +173,7 @@ public interface VirtualMachine extends HasInner<VirtualMachineInner>, Indexable
/**
* The entirety of the VirtualMachine definition.
*/
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithResourceGroup, DefinitionStages.WithLocation, DefinitionStages.WithCreate {
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithLocation, DefinitionStages.WithLocation, DefinitionStages.WithCreate {
}

/**
Expand All @@ -183,19 +183,19 @@ interface DefinitionStages {
/**
* The first stage of a VirtualMachine definition.
*/
interface Blank extends WithResourceGroup {
interface Blank extends WithLocation {
}

/**
* The stage of the virtualmachine definition allowing to specify Location.
*/
interface WithResourceGroup {
interface WithLocation {
/**
* Specifies resourceGroupName.
* @param resourceGroupName The name of the resource group
* @return the next definition stage
*/
WithLocation withExistingResourceGroup(String resourceGroupName);
WithLocation withExistingLocation(String resourceGroupName);
}

/**
Expand Down
Loading

0 comments on commit 3f36a5e

Please sign in to comment.