Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR compute/resource-manager/v2017_03_30] [Mirror] add clear-output-folder in resource-manager readme.typescript.md to f… #1019

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
10 changes: 6 additions & 4 deletions compute/resource-manager/v2017_03_30/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-compute</artifactId>
<version>1.0.0-beta-1</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for Compute Management</name>
<description>This package contains Microsoft Compute Management SDK.</description>
<url>https://github.com/Azure/azure-libraries-for-java</url>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
Expand All @@ -28,8 +28,8 @@
</license>
</licenses>
<scm>
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-libraries-for-java.git</connection>
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down Expand Up @@ -71,6 +71,8 @@
<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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class AdditionalUnattendContent {
private String content;

/**
* Get the passName value.
* Get the pass name. Currently, the only allowable value is OobeSystem. Possible values include: 'OobeSystem'.
*
* @return the passName value
*/
Expand All @@ -58,7 +58,7 @@ public PassNames passName() {
}

/**
* Set the passName value.
* Set the pass name. Currently, the only allowable value is OobeSystem. Possible values include: 'OobeSystem'.
*
* @param passName the passName value to set
* @return the AdditionalUnattendContent object itself.
Expand All @@ -69,7 +69,7 @@ public AdditionalUnattendContent withPassName(PassNames passName) {
}

/**
* Get the componentName value.
* Get the component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup. Possible values include: 'Microsoft-Windows-Shell-Setup'.
*
* @return the componentName value
*/
Expand All @@ -78,7 +78,7 @@ public ComponentNames componentName() {
}

/**
* Set the componentName value.
* Set the component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup. Possible values include: 'Microsoft-Windows-Shell-Setup'.
*
* @param componentName the componentName value to set
* @return the AdditionalUnattendContent object itself.
Expand All @@ -89,7 +89,7 @@ public AdditionalUnattendContent withComponentName(ComponentNames componentName)
}

/**
* Get the settingName value.
* Get specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon. Possible values include: 'AutoLogon', 'FirstLogonCommands'.
*
* @return the settingName value
*/
Expand All @@ -98,7 +98,7 @@ public SettingNames settingName() {
}

/**
* Set the settingName value.
* Set specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon. Possible values include: 'AutoLogon', 'FirstLogonCommands'.
*
* @param settingName the settingName value to set
* @return the AdditionalUnattendContent object itself.
Expand All @@ -109,7 +109,7 @@ public AdditionalUnattendContent withSettingName(SettingNames settingName) {
}

/**
* Get the content value.
* Get specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
*
* @return the content value
*/
Expand All @@ -118,7 +118,7 @@ public String content() {
}

/**
* Set the content value.
* Set specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
*
* @param content the content value to set
* @return the AdditionalUnattendContent object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
public class ApiEntityReference {
/**
* The ARM resource id in the form of
* /subscriptions/{SubcriptionId}/resourceGroups/{ResourceGroupName}/...
* /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
*/
@JsonProperty(value = "id")
private String id;

/**
* Get the id value.
* Get the ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
*
* @return the id value
*/
Expand All @@ -31,7 +31,7 @@ public String id() {
}

/**
* Set the id value.
* Set the ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
*
* @param id the id value to set
* @return the ApiEntityReference object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class ApiError {
private String message;

/**
* Get the details value.
* Get the Api error details.
*
* @return the details value
*/
Expand All @@ -55,7 +55,7 @@ public List<ApiErrorBase> details() {
}

/**
* Set the details value.
* Set the Api error details.
*
* @param details the details value to set
* @return the ApiError object itself.
Expand All @@ -66,7 +66,7 @@ public ApiError withDetails(List<ApiErrorBase> details) {
}

/**
* Get the innererror value.
* Get the Api inner error.
*
* @return the innererror value
*/
Expand All @@ -75,7 +75,7 @@ public InnerError innererror() {
}

/**
* Set the innererror value.
* Set the Api inner error.
*
* @param innererror the innererror value to set
* @return the ApiError object itself.
Expand All @@ -86,7 +86,7 @@ public ApiError withInnererror(InnerError innererror) {
}

/**
* Get the code value.
* Get the error code.
*
* @return the code value
*/
Expand All @@ -95,7 +95,7 @@ public String code() {
}

/**
* Set the code value.
* Set the error code.
*
* @param code the code value to set
* @return the ApiError object itself.
Expand All @@ -106,7 +106,7 @@ public ApiError withCode(String code) {
}

/**
* Get the target value.
* Get the target of the particular error.
*
* @return the target value
*/
Expand All @@ -115,7 +115,7 @@ public String target() {
}

/**
* Set the target value.
* Set the target of the particular error.
*
* @param target the target value to set
* @return the ApiError object itself.
Expand All @@ -126,7 +126,7 @@ public ApiError withTarget(String target) {
}

/**
* Get the message value.
* Get the error message.
*
* @return the message value
*/
Expand All @@ -135,7 +135,7 @@ public String message() {
}

/**
* Set the message value.
* Set the error message.
*
* @param message the message value to set
* @return the ApiError object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class ApiErrorBase {
private String message;

/**
* Get the code value.
* Get the error code.
*
* @return the code value
*/
Expand All @@ -42,7 +42,7 @@ public String code() {
}

/**
* Set the code value.
* Set the error code.
*
* @param code the code value to set
* @return the ApiErrorBase object itself.
Expand All @@ -53,7 +53,7 @@ public ApiErrorBase withCode(String code) {
}

/**
* Get the target value.
* Get the target of the particular error.
*
* @return the target value
*/
Expand All @@ -62,7 +62,7 @@ public String target() {
}

/**
* Set the target value.
* Set the target of the particular error.
*
* @param target the target value to set
* @return the ApiErrorBase object itself.
Expand All @@ -73,7 +73,7 @@ public ApiErrorBase withTarget(String target) {
}

/**
* Get the message value.
* Get the error message.
*
* @return the message value
*/
Expand All @@ -82,7 +82,7 @@ public String message() {
}

/**
* Set the message value.
* Set the error message.
*
* @param message the message value to set
* @return the ApiErrorBase object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.Resource;
import com.microsoft.azure.arm.resources.models.GroupableResourceCore;
import com.microsoft.azure.arm.resources.models.HasResourceGroup;
import com.microsoft.azure.arm.model.Refreshable;
import com.microsoft.azure.arm.model.Updatable;
import com.microsoft.azure.arm.model.Appliable;
import com.microsoft.azure.arm.model.Creatable;
import com.microsoft.azure.arm.resources.models.GroupableResourceCore;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.compute.v2017_03_30.implementation.ComputeManager;
import java.util.List;
Expand Down Expand Up @@ -74,41 +74,49 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<Wit
}

/**
* The stage of the availabilityset update allowing to specify PlatformFaultDomainCount.
* The stage of the availabilityset definition allowing to specify PlatformFaultDomainCount.
*/
interface WithPlatformFaultDomainCount {
/**
* Specifies platformFaultDomainCount.
* @param platformFaultDomainCount Fault Domain count
* @return the next definition stage
*/
WithCreate withPlatformFaultDomainCount(Integer platformFaultDomainCount);
}

/**
* The stage of the availabilityset update allowing to specify PlatformUpdateDomainCount.
* The stage of the availabilityset definition allowing to specify PlatformUpdateDomainCount.
*/
interface WithPlatformUpdateDomainCount {
/**
* Specifies platformUpdateDomainCount.
* @param platformUpdateDomainCount Update Domain count
* @return the next definition stage
*/
WithCreate withPlatformUpdateDomainCount(Integer platformUpdateDomainCount);
}

/**
* The stage of the availabilityset update allowing to specify Sku.
* The stage of the availabilityset definition allowing to specify Sku.
*/
interface WithSku {
/**
* Specifies sku.
* @param sku Sku of the availability set
* @return the next definition stage
*/
WithCreate withSku(Sku sku);
}

/**
* The stage of the availabilityset update allowing to specify VirtualMachines.
* The stage of the availabilityset definition allowing to specify VirtualMachines.
*/
interface WithVirtualMachines {
/**
* Specifies virtualMachines.
* @param virtualMachines A list of references to all virtual machines in the availability set
* @return the next definition stage
*/
WithCreate withVirtualMachines(List<SubResource> virtualMachines);
}
Expand All @@ -132,41 +140,49 @@ interface Update extends Appliable<AvailabilitySet>, Resource.UpdateWithTags<Upd
*/
interface UpdateStages {
/**
* The stage of the availabilityset {0} allowing to specify PlatformFaultDomainCount.
* The stage of the availabilityset update allowing to specify PlatformFaultDomainCount.
*/
interface WithPlatformFaultDomainCount {
/**
* Specifies platformFaultDomainCount.
* @param platformFaultDomainCount Fault Domain count
* @return the next update stage
*/
Update withPlatformFaultDomainCount(Integer platformFaultDomainCount);
}

/**
* The stage of the availabilityset {0} allowing to specify PlatformUpdateDomainCount.
* The stage of the availabilityset update allowing to specify PlatformUpdateDomainCount.
*/
interface WithPlatformUpdateDomainCount {
/**
* Specifies platformUpdateDomainCount.
* @param platformUpdateDomainCount Update Domain count
* @return the next update stage
*/
Update withPlatformUpdateDomainCount(Integer platformUpdateDomainCount);
}

/**
* The stage of the availabilityset {0} allowing to specify Sku.
* The stage of the availabilityset update allowing to specify Sku.
*/
interface WithSku {
/**
* Specifies sku.
* @param sku Sku of the availability set
* @return the next update stage
*/
Update withSku(Sku sku);
}

/**
* The stage of the availabilityset {0} allowing to specify VirtualMachines.
* The stage of the availabilityset update allowing to specify VirtualMachines.
*/
interface WithVirtualMachines {
/**
* Specifies virtualMachines.
* @param virtualMachines A list of references to all virtual machines in the availability set
* @return the next update stage
*/
Update withVirtualMachines(List<SubResource> virtualMachines);
}
Expand Down
Loading