Skip to content

Commit

Permalink
Generated from fe8321f89cad17d70f0da2f3d3a1a4d05f1a8ac1
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Oct 23, 2020
1 parent cc52031 commit 37a9a86
Show file tree
Hide file tree
Showing 163 changed files with 22,950 additions and 0 deletions.
135 changes: 135 additions & 0 deletions sdk/databoxedge/mgmt-v2019_03_01/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
<!--
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.databoxedge.v2019_03_01</groupId>
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-databoxedge</artifactId>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for DataBoxEdge Management</name>
<description>This package contains Microsoft DataBoxEdge Management SDK.</description>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:[email protected]:Azure/azure-sdk-for-java.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<legal><![CDATA[[INFO] Any downloads listed may be third party software. Microsoft grants you no rights for third party software.]]></legal>
</properties>
<developers>
<developer>
<id>microsoft</id>
<name>Microsoft</name>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-client-runtime</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-client-runtime</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-client-authentication</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-mgmt-resources</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-client-runtime</artifactId>
<type>test-jar</type>
<scope>test</scope>
<!--Below version for test jar needs to be removed, this will be done as part of v1-runtime 1.6.7-->
<version>1.6.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<annotationProcessors>
<annotationProcessor>
com.microsoft.azure.management.apigeneration.LangDefinitionProcessor
</annotationProcessor>
</annotationProcessors>
<debug>true</debug>
<optimize>true</optimize>
<compilerArguments>
<AaddGeneratedAnnotation>true</AaddGeneratedAnnotation>
<Adebug>true</Adebug>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<excludePackageNames>*.implementation.*;*.utils.*;com.microsoft.schemas._2003._10.serialization;*.blob.core.search</excludePackageNames>
<bottom>
<![CDATA[<code>
/**
<br />* Copyright (c) Microsoft Corporation. All rights reserved.
<br />* Licensed under the MIT License. See License.txt in the project root for
<br />* license information.
<br />*/
</code>]]>
</bottom>
</configuration>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/

package com.microsoft.azure.management.databoxedge.v2019_03_01;

import com.microsoft.azure.ProxyResource;

/**
* Represents the base class for all object models.
*/
public class ARMBaseModel extends ProxyResource {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/

package com.microsoft.azure.management.databoxedge.v2019_03_01;

import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;

/**
* Defines values for AccountType.
*/
public final class AccountType extends ExpandableStringEnum<AccountType> {
/** Static value GeneralPurposeStorage for AccountType. */
public static final AccountType GENERAL_PURPOSE_STORAGE = fromString("GeneralPurposeStorage");

/** Static value BlobStorage for AccountType. */
public static final AccountType BLOB_STORAGE = fromString("BlobStorage");

/**
* Creates or finds a AccountType from its string representation.
* @param name a name to look for
* @return the corresponding AccountType
*/
@JsonCreator
public static AccountType fromString(String name) {
return fromString(name, AccountType.class);
}

/**
* @return known AccountType values
*/
public static Collection<AccountType> values() {
return values(AccountType.class);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/

package com.microsoft.azure.management.databoxedge.v2019_03_01;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
* The shipping address of the customer.
*/
public class Address {
/**
* The address line1.
*/
@JsonProperty(value = "addressLine1", required = true)
private String addressLine1;

/**
* The address line2.
*/
@JsonProperty(value = "addressLine2")
private String addressLine2;

/**
* The address line3.
*/
@JsonProperty(value = "addressLine3")
private String addressLine3;

/**
* The postal code.
*/
@JsonProperty(value = "postalCode", required = true)
private String postalCode;

/**
* The city name.
*/
@JsonProperty(value = "city", required = true)
private String city;

/**
* The state name.
*/
@JsonProperty(value = "state", required = true)
private String state;

/**
* The country name.
*/
@JsonProperty(value = "country", required = true)
private String country;

/**
* Get the address line1.
*
* @return the addressLine1 value
*/
public String addressLine1() {
return this.addressLine1;
}

/**
* Set the address line1.
*
* @param addressLine1 the addressLine1 value to set
* @return the Address object itself.
*/
public Address withAddressLine1(String addressLine1) {
this.addressLine1 = addressLine1;
return this;
}

/**
* Get the address line2.
*
* @return the addressLine2 value
*/
public String addressLine2() {
return this.addressLine2;
}

/**
* Set the address line2.
*
* @param addressLine2 the addressLine2 value to set
* @return the Address object itself.
*/
public Address withAddressLine2(String addressLine2) {
this.addressLine2 = addressLine2;
return this;
}

/**
* Get the address line3.
*
* @return the addressLine3 value
*/
public String addressLine3() {
return this.addressLine3;
}

/**
* Set the address line3.
*
* @param addressLine3 the addressLine3 value to set
* @return the Address object itself.
*/
public Address withAddressLine3(String addressLine3) {
this.addressLine3 = addressLine3;
return this;
}

/**
* Get the postal code.
*
* @return the postalCode value
*/
public String postalCode() {
return this.postalCode;
}

/**
* Set the postal code.
*
* @param postalCode the postalCode value to set
* @return the Address object itself.
*/
public Address withPostalCode(String postalCode) {
this.postalCode = postalCode;
return this;
}

/**
* Get the city name.
*
* @return the city value
*/
public String city() {
return this.city;
}

/**
* Set the city name.
*
* @param city the city value to set
* @return the Address object itself.
*/
public Address withCity(String city) {
this.city = city;
return this;
}

/**
* Get the state name.
*
* @return the state value
*/
public String state() {
return this.state;
}

/**
* Set the state name.
*
* @param state the state value to set
* @return the Address object itself.
*/
public Address withState(String state) {
this.state = state;
return this;
}

/**
* Get the country name.
*
* @return the country value
*/
public String country() {
return this.country;
}

/**
* Set the country name.
*
* @param country the country value to set
* @return the Address object itself.
*/
public Address withCountry(String country) {
this.country = country;
return this;
}

}
Loading

0 comments on commit 37a9a86

Please sign in to comment.