Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.1 (2021-05-07)

- Azure Resource Manager DevTestLabs client library for Java. This package contains Microsoft Azure SDK for DevTestLabs Management SDK. The DevTest Labs Client. Package tag package-2018-09. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## 1.0.0-beta.1 (2021-04-15)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-devtestlabs</artifactId>
<version>1.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class ScheduleCreationParameter {
/*
* The location of the new virtual machine or environment
*/
@JsonProperty(value = "location")
@JsonProperty(value = "location", access = JsonProperty.Access.WRITE_ONLY)
private String location;

/*
Expand Down Expand Up @@ -115,17 +115,6 @@ public String location() {
return this.location;
}

/**
* Set the location property: The location of the new virtual machine or environment.
*
* @param location the location value to set.
* @return the ScheduleCreationParameter object itself.
*/
public ScheduleCreationParameter withLocation(String location) {
this.location = location;
return this;
}

/**
* Get the tags property: The tags of the resource.
*
Expand Down