Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.cdn;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
Defines the RemoteAddress condition for the delivery rule.
/**
* Defines the RemoteAddress condition for the delivery rule.
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "name", defaultImpl = DeliveryRuleRemoteAddressCondition.class)
@JsonTypeName("RemoteAddress")
public class DeliveryRuleRemoteAddressCondition extends DeliveryRuleCondition {
Defines the parameters for the condition.
/**
* Defines the parameters for the condition.
*/
@JsonProperty(value = "parameters", required = true)
private RemoteAddressMatchConditionParameters parameters;
Get defines the parameters for the condition.
Returns: the parameters value
/**
* Get defines the parameters for the condition.
*
* @return the parameters value
*/
public RemoteAddressMatchConditionParameters parameters() {
return this.parameters;
}
Set defines the parameters for the condition.
Params: - parameters – the parameters value to set
Returns: the DeliveryRuleRemoteAddressCondition object itself.
/**
* Set defines the parameters for the condition.
*
* @param parameters the parameters value to set
* @return the DeliveryRuleRemoteAddressCondition object itself.
*/
public DeliveryRuleRemoteAddressCondition withParameters(RemoteAddressMatchConditionParameters parameters) {
this.parameters = parameters;
return this;
}
}