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 sdk/network/mgmt-v2019_06_01] [Merge from master] Add InboundSecurityRule, virtualRouterPeerAdvertisedRoute and virtualRouterPeerLearnedRoute #3923

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
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