Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR Microsoft.Azure.Management.Cdn] Fix json format by prettier #487

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public Endpoint()
/// <param name="contentTypesToCompress">List of content types on which
/// compression applies. The value should be a valid MIME type.</param>
/// <param name="originHostHeader">The host header value sent to the
/// origin with each request. This proerty at Endpoint is only allowed
/// origin with each request. This property at Endpoint is only allowed
/// when endpoint uses single origin and can be overridden by the same
/// property specified at origin.If you leave this blank, the request
/// hostname determines this value. Azure CDN origins, such as Web
Expand Down Expand Up @@ -147,7 +147,7 @@ public Endpoint()

/// <summary>
/// Gets or sets the host header value sent to the origin with each
/// request. This proerty at Endpoint is only allowed when endpoint
/// request. This property at Endpoint is only allowed when endpoint
/// uses single origin and can be overridden by the same property
/// specified at origin.If you leave this blank, the request hostname
/// determines this value. Azure CDN origins, such as Web Apps, Blob
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public EndpointUpdateParameters()
/// <param name="contentTypesToCompress">List of content types on which
/// compression applies. The value should be a valid MIME type.</param>
/// <param name="originHostHeader">The host header value sent to the
/// origin with each request. This proerty at Endpoint is only allowed
/// origin with each request. This property at Endpoint is only allowed
/// when endpoint uses single origin and can be overridden by the same
/// property specified at origin.If you leave this blank, the request
/// hostname determines this value. Azure CDN origins, such as Web
Expand Down Expand Up @@ -130,7 +130,7 @@ public EndpointUpdateParameters()

/// <summary>
/// Gets or sets the host header value sent to the origin with each
/// request. This proerty at Endpoint is only allowed when endpoint
/// request. This property at Endpoint is only allowed when endpoint
/// uses single origin and can be overridden by the same property
/// specified at origin.If you leave this blank, the request hostname
/// determines this value. Azure CDN origins, such as Web Apps, Blob
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public ResponseBasedOriginErrorDetectionParameters()
/// percentage of failed requests in the sample where failover should
/// trigger.</param>
/// <param name="httpErrorRanges">The list of Http status code ranges
/// that are considered as server errors for origin to be deeemed
/// that are considered as server errors for origin and it is marked as
/// unhealthy.</param>
public ResponseBasedOriginErrorDetectionParameters(ResponseBasedDetectedErrorTypes? responseBasedDetectedErrorTypes = default(ResponseBasedDetectedErrorTypes?), int? responseBasedFailoverThresholdPercentage = default(int?), IList<HttpErrorRangeParameters> httpErrorRanges = default(IList<HttpErrorRangeParameters>))
{
Expand Down Expand Up @@ -75,7 +75,8 @@ public ResponseBasedOriginErrorDetectionParameters()

/// <summary>
/// Gets or sets the list of Http status code ranges that are
/// considered as server errors for origin to be deeemed unhealthy.
/// considered as server errors for origin and it is marked as
/// unhealthy.
/// </summary>
[JsonProperty(PropertyName = "httpErrorRanges")]
public IList<HttpErrorRangeParameters> HttpErrorRanges { get; set; }
Expand Down