Skip to content

Commit 0ff9d7d

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

File tree

118 files changed

+19484
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+19484
-0
lines changed
Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
<!--
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
-->
8+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9+
<modelVersion>4.0.0</modelVersion>
10+
<groupId>com.microsoft.azure.avs.v2020_07_17_preview</groupId>
11+
<parent>
12+
<groupId>com.microsoft.azure</groupId>
13+
<artifactId>azure-arm-parent</artifactId>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
16+
</parent>
17+
<artifactId>azure-mgmt-avs</artifactId>
18+
<version>1.0.0-beta</version>
19+
<packaging>jar</packaging>
20+
<name>Microsoft Azure SDK for AVS Management</name>
21+
<description>This package contains Microsoft AVS Management SDK.</description>
22+
<url>https://github.com/Azure/azure-sdk-for-java</url>
23+
<licenses>
24+
<license>
25+
<name>The MIT License (MIT)</name>
26+
<url>http://opensource.org/licenses/MIT</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
30+
<scm>
31+
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
32+
<connection>scm:git:[email protected]:Azure/azure-sdk-for-java.git</connection>
33+
<tag>HEAD</tag>
34+
</scm>
35+
<properties>
36+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37+
<legal><![CDATA[[INFO] Any downloads listed may be third party software. Microsoft grants you no rights for third party software.]]></legal>
38+
</properties>
39+
<developers>
40+
<developer>
41+
<id>microsoft</id>
42+
<name>Microsoft</name>
43+
</developer>
44+
</developers>
45+
<dependencies>
46+
<dependency>
47+
<groupId>com.microsoft.azure</groupId>
48+
<artifactId>azure-client-runtime</artifactId>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.microsoft.azure</groupId>
52+
<artifactId>azure-arm-client-runtime</artifactId>
53+
</dependency>
54+
<dependency>
55+
<groupId>junit</groupId>
56+
<artifactId>junit</artifactId>
57+
<scope>test</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>com.microsoft.azure</groupId>
61+
<artifactId>azure-client-authentication</artifactId>
62+
<scope>test</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.microsoft.azure</groupId>
66+
<artifactId>azure-mgmt-resources</artifactId>
67+
<scope>test</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.microsoft.azure</groupId>
71+
<artifactId>azure-arm-client-runtime</artifactId>
72+
<type>test-jar</type>
73+
<scope>test</scope>
74+
<!--Below version for test jar needs to be removed, this will be done as part of v1-runtime 1.6.7-->
75+
<version>1.6.5</version>
76+
</dependency>
77+
</dependencies>
78+
<build>
79+
<plugins>
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-jar-plugin</artifactId>
83+
<configuration>
84+
<archive>
85+
<manifest>
86+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
87+
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
88+
</manifest>
89+
</archive>
90+
</configuration>
91+
</plugin>
92+
<plugin>
93+
<groupId>org.codehaus.mojo</groupId>
94+
<artifactId>build-helper-maven-plugin</artifactId>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-compiler-plugin</artifactId>
99+
<version>3.1</version>
100+
<configuration>
101+
<source>1.7</source>
102+
<target>1.7</target>
103+
<annotationProcessors>
104+
<annotationProcessor>
105+
com.microsoft.azure.management.apigeneration.LangDefinitionProcessor
106+
</annotationProcessor>
107+
</annotationProcessors>
108+
<debug>true</debug>
109+
<optimize>true</optimize>
110+
<compilerArguments>
111+
<AaddGeneratedAnnotation>true</AaddGeneratedAnnotation>
112+
<Adebug>true</Adebug>
113+
</compilerArguments>
114+
</configuration>
115+
</plugin>
116+
<plugin>
117+
<groupId>org.apache.maven.plugins</groupId>
118+
<artifactId>maven-javadoc-plugin</artifactId>
119+
<version>2.8</version>
120+
<configuration>
121+
<excludePackageNames>*.implementation.*;*.utils.*;com.microsoft.schemas._2003._10.serialization;*.blob.core.search</excludePackageNames>
122+
<bottom>
123+
<![CDATA[<code>
124+
/**
125+
<br />* Copyright (c) Microsoft Corporation. All rights reserved.
126+
<br />* Licensed under the MIT License. See License.txt in the project root for
127+
<br />* license information.
128+
<br />*/
129+
</code>]]>
130+
</bottom>
131+
</configuration>
132+
</plugin>
133+
</plugins>
134+
</build>
135+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.avs.v2020_07_17_preview;
10+
11+
import com.microsoft.azure.arm.model.HasInner;
12+
import com.microsoft.azure.arm.resources.models.HasManager;
13+
import com.microsoft.azure.management.avs.v2020_07_17_preview.implementation.AVSManager;
14+
import com.microsoft.azure.management.avs.v2020_07_17_preview.implementation.AdminCredentialsInner;
15+
16+
/**
17+
* Type representing AdminCredentials.
18+
*/
19+
public interface AdminCredentials extends HasInner<AdminCredentialsInner>, HasManager<AVSManager> {
20+
/**
21+
* @return the nsxtPassword value.
22+
*/
23+
String nsxtPassword();
24+
25+
/**
26+
* @return the nsxtUsername value.
27+
*/
28+
String nsxtUsername();
29+
30+
/**
31+
* @return the vcenterPassword value.
32+
*/
33+
String vcenterPassword();
34+
35+
/**
36+
* @return the vcenterUsername value.
37+
*/
38+
String vcenterUsername();
39+
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.avs.v2020_07_17_preview;
10+
11+
import com.microsoft.azure.arm.collection.SupportsCreating;
12+
import rx.Completable;
13+
import rx.Observable;
14+
import com.microsoft.azure.management.avs.v2020_07_17_preview.implementation.AuthorizationsInner;
15+
import com.microsoft.azure.arm.model.HasInner;
16+
17+
/**
18+
* Type representing Authorizations.
19+
*/
20+
public interface Authorizations extends SupportsCreating<ExpressRouteAuthorization.DefinitionStages.Blank>, HasInner<AuthorizationsInner> {
21+
/**
22+
* Get an ExpressRoute Circuit Authorization by name in a private cloud.
23+
*
24+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
25+
* @param privateCloudName Name of the private cloud
26+
* @param authorizationName Name of the ExpressRoute Circuit Authorization in the private cloud
27+
* @throws IllegalArgumentException thrown if parameters fail the validation
28+
* @return the observable for the request
29+
*/
30+
Observable<ExpressRouteAuthorization> getAsync(String resourceGroupName, String privateCloudName, String authorizationName);
31+
32+
/**
33+
* List ExpressRoute Circuit Authorizations in a private cloud.
34+
*
35+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
36+
* @param privateCloudName Name of the private cloud
37+
* @throws IllegalArgumentException thrown if parameters fail the validation
38+
* @return the observable for the request
39+
*/
40+
Observable<ExpressRouteAuthorization> listAsync(final String resourceGroupName, final String privateCloudName);
41+
42+
/**
43+
* Delete an ExpressRoute Circuit Authorization in a private cloud.
44+
*
45+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
46+
* @param privateCloudName Name of the private cloud
47+
* @param authorizationName Name of the ExpressRoute Circuit Authorization in the private cloud
48+
* @throws IllegalArgumentException thrown if parameters fail the validation
49+
* @return the observable for the request
50+
*/
51+
Completable deleteAsync(String resourceGroupName, String privateCloudName, String authorizationName);
52+
53+
}
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.avs.v2020_07_17_preview;
10+
11+
import com.fasterxml.jackson.annotation.JsonProperty;
12+
13+
/**
14+
* An ExpressRoute Circuit.
15+
*/
16+
public class Circuit {
17+
/**
18+
* CIDR of primary subnet.
19+
*/
20+
@JsonProperty(value = "primarySubnet", access = JsonProperty.Access.WRITE_ONLY)
21+
private String primarySubnet;
22+
23+
/**
24+
* CIDR of secondary subnet.
25+
*/
26+
@JsonProperty(value = "secondarySubnet", access = JsonProperty.Access.WRITE_ONLY)
27+
private String secondarySubnet;
28+
29+
/**
30+
* Identifier of the ExpressRoute Circuit (Microsoft Colo only).
31+
*/
32+
@JsonProperty(value = "expressRouteID", access = JsonProperty.Access.WRITE_ONLY)
33+
private String expressRouteID;
34+
35+
/**
36+
* ExpressRoute Circuit private peering identifier.
37+
*/
38+
@JsonProperty(value = "expressRoutePrivatePeeringID", access = JsonProperty.Access.WRITE_ONLY)
39+
private String expressRoutePrivatePeeringID;
40+
41+
/**
42+
* Get cIDR of primary subnet.
43+
*
44+
* @return the primarySubnet value
45+
*/
46+
public String primarySubnet() {
47+
return this.primarySubnet;
48+
}
49+
50+
/**
51+
* Get cIDR of secondary subnet.
52+
*
53+
* @return the secondarySubnet value
54+
*/
55+
public String secondarySubnet() {
56+
return this.secondarySubnet;
57+
}
58+
59+
/**
60+
* Get identifier of the ExpressRoute Circuit (Microsoft Colo only).
61+
*
62+
* @return the expressRouteID value
63+
*/
64+
public String expressRouteID() {
65+
return this.expressRouteID;
66+
}
67+
68+
/**
69+
* Get expressRoute Circuit private peering identifier.
70+
*
71+
* @return the expressRoutePrivatePeeringID value
72+
*/
73+
public String expressRoutePrivatePeeringID() {
74+
return this.expressRoutePrivatePeeringID;
75+
}
76+
77+
}

0 commit comments

Comments
 (0)