Skip to content

Commit 517c3f9

Browse files
author
SDKAuto
committed
CodeGen from PR 11695 in Azure/azure-rest-api-specs
Merge 912f3b048f9a73be0d8260a9acd6d2b85729365f into 11e915c47baf981dc5613fd782fccef4bc942a42
1 parent c417552 commit 517c3f9

File tree

7 files changed

+40
-133
lines changed

7 files changed

+40
-133
lines changed

sdk/avs/mgmt-v2020_03_20/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<parent>
1212
<groupId>com.microsoft.azure</groupId>
1313
<artifactId>azure-arm-parent</artifactId>
14-
<version>1.3.2</version>
15-
<relativePath>../../parents/azure-arm-parent/pom.xml</relativePath>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
1616
</parent>
1717
<artifactId>azure-mgmt-avs</artifactId>
18-
<version>1.0.0</version>
18+
<version>1.0.0-beta</version>
1919
<packaging>jar</packaging>
2020
<name>Microsoft Azure SDK for AVS Management</name>
2121
<description>This package contains Microsoft AVS Management SDK.</description>

sdk/avs/mgmt-v2020_03_20/src/main/java/com/microsoft/azure/management/avs/v2020_03_20/ExpressRouteAuthorization.java

Lines changed: 3 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public interface ExpressRouteAuthorization extends HasInner<ExpressRouteAuthoriz
5555
/**
5656
* The entirety of the ExpressRouteAuthorization definition.
5757
*/
58-
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithPrivateCloud, DefinitionStages.WithAuthorization, DefinitionStages.WithCreate {
58+
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithPrivateCloud, DefinitionStages.WithCreate {
5959
}
6060

6161
/**
@@ -78,19 +78,7 @@ interface WithPrivateCloud {
7878
* @param privateCloudName The name of the private cloud
7979
* @return the next definition stage
8080
*/
81-
WithAuthorization withExistingPrivateCloud(String resourceGroupName, String privateCloudName);
82-
}
83-
84-
/**
85-
* The stage of the expressrouteauthorization definition allowing to specify Authorization.
86-
*/
87-
interface WithAuthorization {
88-
/**
89-
* Specifies authorization.
90-
* @param authorization An ExpressRoute Circuit Authorization
91-
* @return the next definition stage
92-
*/
93-
WithCreate withAuthorization(Object authorization);
81+
WithCreate withExistingPrivateCloud(String resourceGroupName, String privateCloudName);
9482
}
9583

9684
/**
@@ -104,24 +92,12 @@ interface WithCreate extends Creatable<ExpressRouteAuthorization> {
10492
/**
10593
* The template for a ExpressRouteAuthorization update operation, containing all the settings that can be modified.
10694
*/
107-
interface Update extends Appliable<ExpressRouteAuthorization>, UpdateStages.WithAuthorization {
95+
interface Update extends Appliable<ExpressRouteAuthorization> {
10896
}
10997

11098
/**
11199
* Grouping of ExpressRouteAuthorization update stages.
112100
*/
113101
interface UpdateStages {
114-
/**
115-
* The stage of the expressrouteauthorization update allowing to specify Authorization.
116-
*/
117-
interface WithAuthorization {
118-
/**
119-
* Specifies authorization.
120-
* @param authorization An ExpressRoute Circuit Authorization
121-
* @return the next update stage
122-
*/
123-
Update withAuthorization(Object authorization);
124-
}
125-
126102
}
127103
}

sdk/avs/mgmt-v2020_03_20/src/main/java/com/microsoft/azure/management/avs/v2020_03_20/HcxEnterpriseSite.java

Lines changed: 3 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public interface HcxEnterpriseSite extends HasInner<HcxEnterpriseSiteInner>, Ind
5050
/**
5151
* The entirety of the HcxEnterpriseSite definition.
5252
*/
53-
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithPrivateCloud, DefinitionStages.WithHcxEnterpriseSite, DefinitionStages.WithCreate {
53+
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithPrivateCloud, DefinitionStages.WithCreate {
5454
}
5555

5656
/**
@@ -73,19 +73,7 @@ interface WithPrivateCloud {
7373
* @param privateCloudName The name of the private cloud
7474
* @return the next definition stage
7575
*/
76-
WithHcxEnterpriseSite withExistingPrivateCloud(String resourceGroupName, String privateCloudName);
77-
}
78-
79-
/**
80-
* The stage of the hcxenterprisesite definition allowing to specify HcxEnterpriseSite.
81-
*/
82-
interface WithHcxEnterpriseSite {
83-
/**
84-
* Specifies hcxEnterpriseSite.
85-
* @param hcxEnterpriseSite The HCX Enterprise Site
86-
* @return the next definition stage
87-
*/
88-
WithCreate withHcxEnterpriseSite(Object hcxEnterpriseSite);
76+
WithCreate withExistingPrivateCloud(String resourceGroupName, String privateCloudName);
8977
}
9078

9179
/**
@@ -99,24 +87,12 @@ interface WithCreate extends Creatable<HcxEnterpriseSite> {
9987
/**
10088
* The template for a HcxEnterpriseSite update operation, containing all the settings that can be modified.
10189
*/
102-
interface Update extends Appliable<HcxEnterpriseSite>, UpdateStages.WithHcxEnterpriseSite {
90+
interface Update extends Appliable<HcxEnterpriseSite> {
10391
}
10492

10593
/**
10694
* Grouping of HcxEnterpriseSite update stages.
10795
*/
10896
interface UpdateStages {
109-
/**
110-
* The stage of the hcxenterprisesite update allowing to specify HcxEnterpriseSite.
111-
*/
112-
interface WithHcxEnterpriseSite {
113-
/**
114-
* Specifies hcxEnterpriseSite.
115-
* @param hcxEnterpriseSite The HCX Enterprise Site
116-
* @return the next update stage
117-
*/
118-
Update withHcxEnterpriseSite(Object hcxEnterpriseSite);
119-
}
120-
12197
}
12298
}

0 commit comments

Comments
 (0)