Skip to content

Commit

Permalink
Update from master
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Jul 24, 2020
1 parent 03119b5 commit 83a0214
Show file tree
Hide file tree
Showing 6 changed files with 844 additions and 41 deletions.
6 changes: 3 additions & 3 deletions sdk/network/mgmt-v2019_06_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.2.0</version>
<relativePath>../../parents/azure-arm-parent</relativePath>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-network</artifactId>
<version>1.0.0-beta-1</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for Network Management</name>
<description>This package contains Microsoft Network Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public class PrivateLinkServiceConnectionState {
* A message indicating if changes on the service provider require any
* updates on the consumer.
*/
@JsonProperty(value = "actionRequired")
private String actionRequired;
@JsonProperty(value = "actionsRequired")
private String actionsRequired;

/**
* Get indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
Expand Down Expand Up @@ -78,20 +78,20 @@ public PrivateLinkServiceConnectionState withDescription(String description) {
/**
* Get a message indicating if changes on the service provider require any updates on the consumer.
*
* @return the actionRequired value
* @return the actionsRequired value
*/
public String actionRequired() {
return this.actionRequired;
public String actionsRequired() {
return this.actionsRequired;
}

/**
* Set a message indicating if changes on the service provider require any updates on the consumer.
*
* @param actionRequired the actionRequired value to set
* @param actionsRequired the actionsRequired value to set
* @return the PrivateLinkServiceConnectionState object itself.
*/
public PrivateLinkServiceConnectionState withActionRequired(String actionRequired) {
this.actionRequired = actionRequired;
public PrivateLinkServiceConnectionState withActionsRequired(String actionsRequired) {
this.actionsRequired = actionsRequired;
return this;
}

Expand Down
Loading

0 comments on commit 83a0214

Please sign in to comment.