Show / Hide Table of Contents

Class HttpRouteRedirect

The specification for redirecting traffic.

Inheritance
object
HttpRouteRedirect
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.NetworkServices.v1.Data
Assembly: Google.Apis.NetworkServices.v1.dll
Syntax
public class HttpRouteRedirect : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

HostRedirect

The host that will be used in the redirect response instead of the one that was supplied in the request.

Declaration
[JsonProperty("hostRedirect")]
public virtual string HostRedirect { get; set; }
Property Value
Type Description
string

HttpsRedirect

If set to true, the URL scheme in the redirected request is set to https. If set to false, the URL scheme of the redirected request will remain the same as that of the request. The default is set to false.

Declaration
[JsonProperty("httpsRedirect")]
public virtual bool? HttpsRedirect { get; set; }
Property Value
Type Description
bool?

PathRedirect

The path that will be used in the redirect response instead of the one that was supplied in the request. path_redirect can not be supplied together with prefix_redirect. Supply one alone or neither. If neither is supplied, the path of the original request will be used for the redirect.

Declaration
[JsonProperty("pathRedirect")]
public virtual string PathRedirect { get; set; }
Property Value
Type Description
string

PortRedirect

The port that will be used in the redirected request instead of the one that was supplied in the request.

Declaration
[JsonProperty("portRedirect")]
public virtual int? PortRedirect { get; set; }
Property Value
Type Description
int?

PrefixRewrite

Indicates that during redirection, the matched prefix (or path) should be swapped with this value. This option allows URLs be dynamically created based on the request.

Declaration
[JsonProperty("prefixRewrite")]
public virtual string PrefixRewrite { get; set; }
Property Value
Type Description
string

ResponseCode

The HTTP Status code to use for the redirect.

Declaration
[JsonProperty("responseCode")]
public virtual string ResponseCode { get; set; }
Property Value
Type Description
string

StripQuery

if set to true, any accompanying query portion of the original URL is removed prior to redirecting the request. If set to false, the query portion of the original URL is retained. The default is set to false.

Declaration
[JsonProperty("stripQuery")]
public virtual bool? StripQuery { get; set; }
Property Value
Type Description
bool?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX