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 network/resource-manager] Readonlyremove #46

Merged
merged 1 commit into from
Apr 11, 2018
Merged
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
Expand Up @@ -41,19 +41,19 @@ public class ExpressRouteCrossConnectionInner extends Resource {
/**
* The peering location of the ExpressRoute circuit.
*/
@JsonProperty(value = "properties.peeringLocation", access = JsonProperty.Access.WRITE_ONLY)
@JsonProperty(value = "properties.peeringLocation")
private String peeringLocation;

/**
* The circuit bandwidth In Mbps.
*/
@JsonProperty(value = "properties.bandwidthInMbps", access = JsonProperty.Access.WRITE_ONLY)
@JsonProperty(value = "properties.bandwidthInMbps")
private Integer bandwidthInMbps;

/**
* The ExpressRouteCircuit.
*/
@JsonProperty(value = "properties.expressRouteCircuit", access = JsonProperty.Access.WRITE_ONLY)
@JsonProperty(value = "properties.expressRouteCircuit")
private ExpressRouteCircuitReference expressRouteCircuit;

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

/**
* Set the peeringLocation value.
*
* @param peeringLocation the peeringLocation value to set
* @return the ExpressRouteCrossConnectionInner object itself.
*/
public ExpressRouteCrossConnectionInner withPeeringLocation(String peeringLocation) {
this.peeringLocation = peeringLocation;
return this;
}

/**
* Get the bandwidthInMbps value.
*
Expand All @@ -136,6 +147,17 @@ public Integer bandwidthInMbps() {
return this.bandwidthInMbps;
}

/**
* Set the bandwidthInMbps value.
*
* @param bandwidthInMbps the bandwidthInMbps value to set
* @return the ExpressRouteCrossConnectionInner object itself.
*/
public ExpressRouteCrossConnectionInner withBandwidthInMbps(Integer bandwidthInMbps) {
this.bandwidthInMbps = bandwidthInMbps;
return this;
}

/**
* Get the expressRouteCircuit value.
*
Expand All @@ -145,6 +167,17 @@ public ExpressRouteCircuitReference expressRouteCircuit() {
return this.expressRouteCircuit;
}

/**
* Set the expressRouteCircuit value.
*
* @param expressRouteCircuit the expressRouteCircuit value to set
* @return the ExpressRouteCrossConnectionInner object itself.
*/
public ExpressRouteCrossConnectionInner withExpressRouteCircuit(ExpressRouteCircuitReference expressRouteCircuit) {
this.expressRouteCircuit = expressRouteCircuit;
return this;
}

/**
* Get the serviceProviderProvisioningState value.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public class ExpressRouteCrossConnectionPeeringInner extends SubResource {
/**
* The GatewayManager Etag.
*/
@JsonProperty(value = "properties.gatewayManagerEtag", access = JsonProperty.Access.WRITE_ONLY)
@JsonProperty(value = "properties.gatewayManagerEtag")
private String gatewayManagerEtag;

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

/**
* Set the gatewayManagerEtag value.
*
* @param gatewayManagerEtag the gatewayManagerEtag value to set
* @return the ExpressRouteCrossConnectionPeeringInner object itself.
*/
public ExpressRouteCrossConnectionPeeringInner withGatewayManagerEtag(String gatewayManagerEtag) {
this.gatewayManagerEtag = gatewayManagerEtag;
return this;
}

/**
* Get the lastModifiedBy value.
*
Expand Down