Skip to content

Commit 458839f

Browse files
author
SDK Automation
committed
Generated from d7aec541537099657f4bd9c2f6ecf50347189c69
fixed prettier error
1 parent 222e592 commit 458839f

File tree

116 files changed

+24573
-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.

116 files changed

+24573
-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.resources.v2019_08_01</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-resources</artifactId>
18+
<version>1.0.0-beta</version>
19+
<packaging>jar</packaging>
20+
<name>Microsoft Azure SDK for Resources Management</name>
21+
<description>This package contains Microsoft Resources 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>
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.resources.v2019_08_01;
10+
11+
import java.util.List;
12+
import com.fasterxml.jackson.annotation.JsonProperty;
13+
14+
/**
15+
* The type of the paths for alias.
16+
*/
17+
public class AliasPathType {
18+
/**
19+
* The path of an alias.
20+
*/
21+
@JsonProperty(value = "path")
22+
private String path;
23+
24+
/**
25+
* The API versions.
26+
*/
27+
@JsonProperty(value = "apiVersions")
28+
private List<String> apiVersions;
29+
30+
/**
31+
* Get the path of an alias.
32+
*
33+
* @return the path value
34+
*/
35+
public String path() {
36+
return this.path;
37+
}
38+
39+
/**
40+
* Set the path of an alias.
41+
*
42+
* @param path the path value to set
43+
* @return the AliasPathType object itself.
44+
*/
45+
public AliasPathType withPath(String path) {
46+
this.path = path;
47+
return this;
48+
}
49+
50+
/**
51+
* Get the API versions.
52+
*
53+
* @return the apiVersions value
54+
*/
55+
public List<String> apiVersions() {
56+
return this.apiVersions;
57+
}
58+
59+
/**
60+
* Set the API versions.
61+
*
62+
* @param apiVersions the apiVersions value to set
63+
* @return the AliasPathType object itself.
64+
*/
65+
public AliasPathType withApiVersions(List<String> apiVersions) {
66+
this.apiVersions = apiVersions;
67+
return this;
68+
}
69+
70+
}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.resources.v2019_08_01;
10+
11+
import java.util.List;
12+
import com.fasterxml.jackson.annotation.JsonProperty;
13+
14+
/**
15+
* The alias type.
16+
*/
17+
public class AliasType {
18+
/**
19+
* The alias name.
20+
*/
21+
@JsonProperty(value = "name")
22+
private String name;
23+
24+
/**
25+
* The paths for an alias.
26+
*/
27+
@JsonProperty(value = "paths")
28+
private List<AliasPathType> paths;
29+
30+
/**
31+
* Get the alias name.
32+
*
33+
* @return the name value
34+
*/
35+
public String name() {
36+
return this.name;
37+
}
38+
39+
/**
40+
* Set the alias name.
41+
*
42+
* @param name the name value to set
43+
* @return the AliasType object itself.
44+
*/
45+
public AliasType withName(String name) {
46+
this.name = name;
47+
return this;
48+
}
49+
50+
/**
51+
* Get the paths for an alias.
52+
*
53+
* @return the paths value
54+
*/
55+
public List<AliasPathType> paths() {
56+
return this.paths;
57+
}
58+
59+
/**
60+
* Set the paths for an alias.
61+
*
62+
* @param paths the paths value to set
63+
* @return the AliasType object itself.
64+
*/
65+
public AliasType withPaths(List<AliasPathType> paths) {
66+
this.paths = paths;
67+
return this;
68+
}
69+
70+
}
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
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.resources.v2019_08_01;
10+
11+
import com.fasterxml.jackson.annotation.JsonProperty;
12+
13+
/**
14+
* Deployment dependency information.
15+
*/
16+
public class BasicDependency {
17+
/**
18+
* The ID of the dependency.
19+
*/
20+
@JsonProperty(value = "id")
21+
private String id;
22+
23+
/**
24+
* The dependency resource type.
25+
*/
26+
@JsonProperty(value = "resourceType")
27+
private String resourceType;
28+
29+
/**
30+
* The dependency resource name.
31+
*/
32+
@JsonProperty(value = "resourceName")
33+
private String resourceName;
34+
35+
/**
36+
* Get the ID of the dependency.
37+
*
38+
* @return the id value
39+
*/
40+
public String id() {
41+
return this.id;
42+
}
43+
44+
/**
45+
* Set the ID of the dependency.
46+
*
47+
* @param id the id value to set
48+
* @return the BasicDependency object itself.
49+
*/
50+
public BasicDependency withId(String id) {
51+
this.id = id;
52+
return this;
53+
}
54+
55+
/**
56+
* Get the dependency resource type.
57+
*
58+
* @return the resourceType value
59+
*/
60+
public String resourceType() {
61+
return this.resourceType;
62+
}
63+
64+
/**
65+
* Set the dependency resource type.
66+
*
67+
* @param resourceType the resourceType value to set
68+
* @return the BasicDependency object itself.
69+
*/
70+
public BasicDependency withResourceType(String resourceType) {
71+
this.resourceType = resourceType;
72+
return this;
73+
}
74+
75+
/**
76+
* Get the dependency resource name.
77+
*
78+
* @return the resourceName value
79+
*/
80+
public String resourceName() {
81+
return this.resourceName;
82+
}
83+
84+
/**
85+
* Set the dependency resource name.
86+
*
87+
* @param resourceName the resourceName value to set
88+
* @return the BasicDependency object itself.
89+
*/
90+
public BasicDependency withResourceName(String resourceName) {
91+
this.resourceName = resourceName;
92+
return this;
93+
}
94+
95+
}

0 commit comments

Comments
 (0)