| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.ResourceManager.Network.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> Application gateway backendhealth http settings. </summary> |
| | | 11 | | public partial class ApplicationGatewayBackendHealthServer |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of ApplicationGatewayBackendHealthServer. </summary> |
| | 0 | 14 | | internal ApplicationGatewayBackendHealthServer() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of ApplicationGatewayBackendHealthServer. </summary> |
| | | 19 | | /// <param name="address"> IP address or FQDN of backend server. </param> |
| | | 20 | | /// <param name="ipConfiguration"> Reference to IP configuration of backend server. </param> |
| | | 21 | | /// <param name="health"> Health of backend server. </param> |
| | | 22 | | /// <param name="healthProbeLog"> Health Probe Log. </param> |
| | 0 | 23 | | internal ApplicationGatewayBackendHealthServer(string address, NetworkInterfaceIPConfiguration ipConfiguration, |
| | | 24 | | { |
| | 0 | 25 | | Address = address; |
| | 0 | 26 | | IpConfiguration = ipConfiguration; |
| | 0 | 27 | | Health = health; |
| | 0 | 28 | | HealthProbeLog = healthProbeLog; |
| | 0 | 29 | | } |
| | | 30 | | |
| | | 31 | | /// <summary> IP address or FQDN of backend server. </summary> |
| | 0 | 32 | | public string Address { get; } |
| | | 33 | | /// <summary> Reference to IP configuration of backend server. </summary> |
| | 0 | 34 | | public NetworkInterfaceIPConfiguration IpConfiguration { get; } |
| | | 35 | | /// <summary> Health of backend server. </summary> |
| | 0 | 36 | | public ApplicationGatewayBackendHealthServerHealth? Health { get; } |
| | | 37 | | /// <summary> Health Probe Log. </summary> |
| | 0 | 38 | | public string HealthProbeLog { get; } |
| | | 39 | | } |
| | | 40 | | } |