ApplicationGatewayUrlConfiguration Class

  • java.lang.Object
    • com.microsoft.azure.management.network.ApplicationGatewayUrlConfiguration

public class ApplicationGatewayUrlConfiguration

Url configuration of the Actions set in Application Gateway.

Constructor Summary

Constructor Description
ApplicationGatewayUrlConfiguration()

Method Summary

Modifier and Type Method and Description
java.lang.String modifiedPath()

Get url path which user has provided for url rewrite.

java.lang.String modifiedQueryString()

Get query string which user has provided for url rewrite.

java.lang.Boolean reroute()

Get if set as true, it will re-evaluate the url path map provided in path based request routing rules using modified path.

ApplicationGatewayUrlConfiguration withModifiedPath(String modifiedPath)

Set url path which user has provided for url rewrite.

ApplicationGatewayUrlConfiguration withModifiedQueryString(String modifiedQueryString)

Set query string which user has provided for url rewrite.

ApplicationGatewayUrlConfiguration withReroute(Boolean reroute)

Set if set as true, it will re-evaluate the url path map provided in path based request routing rules using modified path.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

ApplicationGatewayUrlConfiguration

public ApplicationGatewayUrlConfiguration()

Method Details

modifiedPath

public String modifiedPath()

Get url path which user has provided for url rewrite. Null means no path will be updated. Default value is null.

Returns:

the modifiedPath value

modifiedQueryString

public String modifiedQueryString()

Get query string which user has provided for url rewrite. Null means no query string will be updated. Default value is null.

Returns:

the modifiedQueryString value

reroute

public Boolean reroute()

Get if set as true, it will re-evaluate the url path map provided in path based request routing rules using modified path. Default value is false.

Returns:

the reroute value

withModifiedPath

public ApplicationGatewayUrlConfiguration withModifiedPath(String modifiedPath)

Set url path which user has provided for url rewrite. Null means no path will be updated. Default value is null.

Parameters:

modifiedPath - the modifiedPath value to set

Returns:

the ApplicationGatewayUrlConfiguration object itself.

withModifiedQueryString

public ApplicationGatewayUrlConfiguration withModifiedQueryString(String modifiedQueryString)

Set query string which user has provided for url rewrite. Null means no query string will be updated. Default value is null.

Parameters:

modifiedQueryString - the modifiedQueryString value to set

Returns:

the ApplicationGatewayUrlConfiguration object itself.

withReroute

public ApplicationGatewayUrlConfiguration withReroute(Boolean reroute)

Set if set as true, it will re-evaluate the url path map provided in path based request routing rules using modified path. Default value is false.

Parameters:

reroute - the reroute value to set

Returns:

the ApplicationGatewayUrlConfiguration object itself.

Applies to