Share via


ProbeV1.HttpGet Property

Definition

Represents a configuration for an HTTP GET request action as part of a Kubernetes probe mechanism.

[YamlDotNet.Serialization.YamlMember(Alias="httpGet")]
public Aspire.Hosting.Kubernetes.Resources.HttpGetActionV1? HttpGet { get; set; }
[<YamlDotNet.Serialization.YamlMember(Alias="httpGet")>]
member this.HttpGet : Aspire.Hosting.Kubernetes.Resources.HttpGetActionV1 with get, set
Public Property HttpGet As HttpGetActionV1

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Remarks

This property specifies the behavior of an HTTP GET request when used for health checks, event handling, or other similar functionalities within Kubernetes resources. It typically includes the scheme, host, HTTP headers, path, and port necessary to construct the request. The configuration helps determine service or application availability by probing specified endpoints.

Applies to