| | 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> Details of on demand test probe request. </summary> |
| | 11 | | public partial class ApplicationGatewayOnDemandProbe |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of ApplicationGatewayOnDemandProbe. </summary> |
| 0 | 14 | | public ApplicationGatewayOnDemandProbe() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of ApplicationGatewayOnDemandProbe. </summary> |
| | 19 | | /// <param name="protocol"> The protocol used for the probe. </param> |
| | 20 | | /// <param name="host"> Host name to send the probe to. </param> |
| | 21 | | /// <param name="path"> Relative path of probe. Valid path starts from '/'. Probe is sent to <Proto |
| | 22 | | /// <param name="timeout"> The probe timeout in seconds. Probe marked as failed if valid response is not receive |
| | 23 | | /// <param name="pickHostNameFromBackendHttpSettings"> Whether the host header should be picked from the backend |
| | 24 | | /// <param name="match"> Criterion for classifying a healthy probe response. </param> |
| | 25 | | /// <param name="backendAddressPool"> Reference to backend pool of application gateway to which probe request wi |
| | 26 | | /// <param name="backendHttpSettings"> Reference to backend http setting of application gateway to be used for t |
| 0 | 27 | | internal ApplicationGatewayOnDemandProbe(ApplicationGatewayProtocol? protocol, string host, string path, int? ti |
| | 28 | | { |
| 0 | 29 | | Protocol = protocol; |
| 0 | 30 | | Host = host; |
| 0 | 31 | | Path = path; |
| 0 | 32 | | Timeout = timeout; |
| 0 | 33 | | PickHostNameFromBackendHttpSettings = pickHostNameFromBackendHttpSettings; |
| 0 | 34 | | Match = match; |
| 0 | 35 | | BackendAddressPool = backendAddressPool; |
| 0 | 36 | | BackendHttpSettings = backendHttpSettings; |
| 0 | 37 | | } |
| | 38 | |
|
| | 39 | | /// <summary> The protocol used for the probe. </summary> |
| 0 | 40 | | public ApplicationGatewayProtocol? Protocol { get; set; } |
| | 41 | | /// <summary> Host name to send the probe to. </summary> |
| 0 | 42 | | public string Host { get; set; } |
| | 43 | | /// <summary> Relative path of probe. Valid path starts from '/'. Probe is sent to <Protocol>:// |
| 0 | 44 | | public string Path { get; set; } |
| | 45 | | /// <summary> The probe timeout in seconds. Probe marked as failed if valid response is not received with this t |
| 0 | 46 | | public int? Timeout { get; set; } |
| | 47 | | /// <summary> Whether the host header should be picked from the backend http settings. Default value is false. < |
| 0 | 48 | | public bool? PickHostNameFromBackendHttpSettings { get; set; } |
| | 49 | | /// <summary> Criterion for classifying a healthy probe response. </summary> |
| 0 | 50 | | public ApplicationGatewayProbeHealthResponseMatch Match { get; set; } |
| | 51 | | /// <summary> Reference to backend pool of application gateway to which probe request will be sent. </summary> |
| 0 | 52 | | public SubResource BackendAddressPool { get; set; } |
| | 53 | | /// <summary> Reference to backend http setting of application gateway to be used for test probe. </summary> |
| 0 | 54 | | public SubResource BackendHttpSettings { get; set; } |
| | 55 | | } |
| | 56 | | } |