
com.microsoft.azure.management.network.ApplicationGatewayBackendHealthServer Maven / Gradle / Ivy
/**
* 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.network;
import com.microsoft.azure.SubResource;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Application gateway backendhealth http settings.
*/
public class ApplicationGatewayBackendHealthServer {
/**
* IP address or FQDN of backend server.
*/
@JsonProperty(value = "address")
private String address;
/**
* Reference of IP configuration of backend server.
*/
@JsonProperty(value = "ipConfiguration")
private SubResource ipConfiguration;
/**
* Health of backend server. Possible values are: 'Unknown', 'Up', 'Down',
* and 'Partial'. Possible values include: 'Unknown', 'Up', 'Down',
* 'Partial'.
*/
@JsonProperty(value = "health")
private ApplicationGatewayBackendHealthServerHealth health;
/**
* Get the address value.
*
* @return the address value
*/
public String address() {
return this.address;
}
/**
* Set the address value.
*
* @param address the address value to set
* @return the ApplicationGatewayBackendHealthServer object itself.
*/
public ApplicationGatewayBackendHealthServer withAddress(String address) {
this.address = address;
return this;
}
/**
* Get the ipConfiguration value.
*
* @return the ipConfiguration value
*/
public SubResource ipConfiguration() {
return this.ipConfiguration;
}
/**
* Set the ipConfiguration value.
*
* @param ipConfiguration the ipConfiguration value to set
* @return the ApplicationGatewayBackendHealthServer object itself.
*/
public ApplicationGatewayBackendHealthServer withIPConfiguration(SubResource ipConfiguration) {
this.ipConfiguration = ipConfiguration;
return this;
}
/**
* Get the health value.
*
* @return the health value
*/
public ApplicationGatewayBackendHealthServerHealth health() {
return this.health;
}
/**
* Set the health value.
*
* @param health the health value to set
* @return the ApplicationGatewayBackendHealthServer object itself.
*/
public ApplicationGatewayBackendHealthServer withHealth(ApplicationGatewayBackendHealthServerHealth health) {
this.health = health;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy