Skip to content

Commit 55f668a

Browse files
author
SDK Automation
committed
Update from master
1 parent 3f2d7db commit 55f668a

File tree

6 files changed

+844
-41
lines changed

6 files changed

+844
-41
lines changed

sdk/network/mgmt-v2019_06_01/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<parent>
1212
<groupId>com.microsoft.azure</groupId>
1313
<artifactId>azure-arm-parent</artifactId>
14-
<version>1.2.0</version>
15-
<relativePath>../../parents/azure-arm-parent</relativePath>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
1616
</parent>
1717
<artifactId>azure-mgmt-network</artifactId>
18-
<version>1.0.0-beta-1</version>
18+
<version>1.0.0-beta</version>
1919
<packaging>jar</packaging>
2020
<name>Microsoft Azure SDK for Network Management</name>
2121
<description>This package contains Microsoft Network Management SDK.</description>

sdk/network/mgmt-v2019_06_01/src/main/java/com/microsoft/azure/management/network/v2019_06_01/PrivateLinkServiceConnectionState.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public class PrivateLinkServiceConnectionState {
3232
* A message indicating if changes on the service provider require any
3333
* updates on the consumer.
3434
*/
35-
@JsonProperty(value = "actionRequired")
36-
private String actionRequired;
35+
@JsonProperty(value = "actionsRequired")
36+
private String actionsRequired;
3737

3838
/**
3939
* Get indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
@@ -78,20 +78,20 @@ public PrivateLinkServiceConnectionState withDescription(String description) {
7878
/**
7979
* Get a message indicating if changes on the service provider require any updates on the consumer.
8080
*
81-
* @return the actionRequired value
81+
* @return the actionsRequired value
8282
*/
83-
public String actionRequired() {
84-
return this.actionRequired;
83+
public String actionsRequired() {
84+
return this.actionsRequired;
8585
}
8686

8787
/**
8888
* Set a message indicating if changes on the service provider require any updates on the consumer.
8989
*
90-
* @param actionRequired the actionRequired value to set
90+
* @param actionsRequired the actionsRequired value to set
9191
* @return the PrivateLinkServiceConnectionState object itself.
9292
*/
93-
public PrivateLinkServiceConnectionState withActionRequired(String actionRequired) {
94-
this.actionRequired = actionRequired;
93+
public PrivateLinkServiceConnectionState withActionsRequired(String actionsRequired) {
94+
this.actionsRequired = actionsRequired;
9595
return this;
9696
}
9797

0 commit comments

Comments
 (0)