Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sdk/avs/mgmt-v2020_03_20/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<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-avs</artifactId>
<version>1.0.0</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for AVS Management</name>
<description>This package contains Microsoft AVS Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public interface ExpressRouteAuthorization extends HasInner<ExpressRouteAuthoriz
/**
* The entirety of the ExpressRouteAuthorization definition.
*/
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithPrivateCloud, DefinitionStages.WithAuthorization, DefinitionStages.WithCreate {
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithPrivateCloud, DefinitionStages.WithCreate {
}

/**
Expand All @@ -78,19 +78,7 @@ interface WithPrivateCloud {
* @param privateCloudName The name of the private cloud
* @return the next definition stage
*/
WithAuthorization withExistingPrivateCloud(String resourceGroupName, String privateCloudName);
}

/**
* The stage of the expressrouteauthorization definition allowing to specify Authorization.
*/
interface WithAuthorization {
/**
* Specifies authorization.
* @param authorization An ExpressRoute Circuit Authorization
* @return the next definition stage
*/
WithCreate withAuthorization(Object authorization);
WithCreate withExistingPrivateCloud(String resourceGroupName, String privateCloudName);
}

/**
Expand All @@ -104,24 +92,12 @@ interface WithCreate extends Creatable<ExpressRouteAuthorization> {
/**
* The template for a ExpressRouteAuthorization update operation, containing all the settings that can be modified.
*/
interface Update extends Appliable<ExpressRouteAuthorization>, UpdateStages.WithAuthorization {
interface Update extends Appliable<ExpressRouteAuthorization> {
}

/**
* Grouping of ExpressRouteAuthorization update stages.
*/
interface UpdateStages {
/**
* The stage of the expressrouteauthorization update allowing to specify Authorization.
*/
interface WithAuthorization {
/**
* Specifies authorization.
* @param authorization An ExpressRoute Circuit Authorization
* @return the next update stage
*/
Update withAuthorization(Object authorization);
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public interface HcxEnterpriseSite extends HasInner<HcxEnterpriseSiteInner>, Ind
/**
* The entirety of the HcxEnterpriseSite definition.
*/
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithPrivateCloud, DefinitionStages.WithHcxEnterpriseSite, DefinitionStages.WithCreate {
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithPrivateCloud, DefinitionStages.WithCreate {
}

/**
Expand All @@ -73,19 +73,7 @@ interface WithPrivateCloud {
* @param privateCloudName The name of the private cloud
* @return the next definition stage
*/
WithHcxEnterpriseSite withExistingPrivateCloud(String resourceGroupName, String privateCloudName);
}

/**
* The stage of the hcxenterprisesite definition allowing to specify HcxEnterpriseSite.
*/
interface WithHcxEnterpriseSite {
/**
* Specifies hcxEnterpriseSite.
* @param hcxEnterpriseSite The HCX Enterprise Site
* @return the next definition stage
*/
WithCreate withHcxEnterpriseSite(Object hcxEnterpriseSite);
WithCreate withExistingPrivateCloud(String resourceGroupName, String privateCloudName);
}

/**
Expand All @@ -99,24 +87,12 @@ interface WithCreate extends Creatable<HcxEnterpriseSite> {
/**
* The template for a HcxEnterpriseSite update operation, containing all the settings that can be modified.
*/
interface Update extends Appliable<HcxEnterpriseSite>, UpdateStages.WithHcxEnterpriseSite {
interface Update extends Appliable<HcxEnterpriseSite> {
}

/**
* Grouping of HcxEnterpriseSite update stages.
*/
interface UpdateStages {
/**
* The stage of the hcxenterprisesite update allowing to specify HcxEnterpriseSite.
*/
interface WithHcxEnterpriseSite {
/**
* Specifies hcxEnterpriseSite.
* @param hcxEnterpriseSite The HCX Enterprise Site
* @return the next update stage
*/
Update withHcxEnterpriseSite(Object hcxEnterpriseSite);
}

}
}
Loading